Example Procedure/ambulation (Turtle)
Raw Turtle (+ also see Turtle/RDF Format Specification)
Example of ambulation procedure
@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
[a fhir:Procedure;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "ambulation"];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Ambulation procedure was not done</div>"
];
fhir:Procedure.identifier [
fhir:index 0;
fhir:Identifier.value [ fhir:value "12345" ]
];
fhir:Procedure.instantiatesUri [
fhir:value "http://example.org/protocol-for-hypertension-during-pregnancy";
fhir:index 0
];
fhir:Procedure.basedOn [
fhir:index 0;
fhir:Reference.reference [ fhir:value "CarePlan/preg" ];
fhir:Reference.display [ fhir:value "Maternity care plan" ]
];
fhir:Procedure.status [ fhir:value "not-done"];
fhir:Procedure.statusReason [
fhir:CodeableConcept.coding [
fhir:index 0;
a sct:398254007;
fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
fhir:Coding.code [ fhir:value "398254007" ];
fhir:Coding.display [ fhir:value " Pre-eclampsia (disorder)" ]
];
fhir:CodeableConcept.text [ fhir:value "Pre-eclampsia" ]
];
fhir:Procedure.code [
fhir:CodeableConcept.coding [
fhir:index 0;
a sct:62013009;
fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
fhir:Coding.code [ fhir:value "62013009" ];
fhir:Coding.display [ fhir:value "Ambulating patient (procedure)" ]
];
fhir:CodeableConcept.text [ fhir:value "Ambulation" ]
];
fhir:Procedure.subject [
fhir:Reference.reference [ fhir:value "Patient/example" ]
];
fhir:Procedure.performer [
fhir:index 0;
fhir:Procedure.performer.actor [
fhir:Reference.reference [ fhir:value "Practitioner/f204" ];
fhir:Reference.display [ fhir:value "Carla Espinosa" ]
];
fhir:Procedure.performer.onBehalfOf [
fhir:Reference.reference [ fhir:value "Organization/f001" ];
fhir:Reference.display [ fhir:value "University Medical Hospital" ]
]
];
fhir:Procedure.location [
fhir:Reference.reference [ fhir:value "Location/1" ];
fhir:Reference.display [ fhir:value "Burgers University Medical Center, South Wing, second floor" ]
];
fhir:Procedure.reason [
fhir:index 0;
fhir:CodeableReference.reference [
fhir:Reference.reference [ fhir:value "Observation/blood-pressure" ];
fhir:Reference.display [ fhir:value "Blood Pressure" ]
]
]] .
# - ontology header ------------------------------------------------------------
[a owl:Ontology;
owl:imports fhir:fhir.ttl] .
# -------------------------------------------------------------------------------------
Usage note: every effort has been made to ensure that the
examples are correct and useful, but they are not a normative part
of the specification.