@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix sct: . @prefix xsd: . # - 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 "
Ambulation procedure was not done
" ]; 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:link ; 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:link ; fhir:Reference.reference [ fhir:value "Patient/example" ] ]; fhir:Procedure.performer [ fhir:index 0; fhir:Procedure.performer.actor [ fhir:link ; fhir:Reference.reference [ fhir:value "Practitioner/f204" ]; fhir:Reference.display [ fhir:value "Carla Espinosa" ] ]; fhir:Procedure.performer.onBehalfOf [ fhir:link ; fhir:Reference.reference [ fhir:value "Organization/f001" ]; fhir:Reference.display [ fhir:value "University Medical Hospital" ] ] ]; fhir:Procedure.location [ fhir:link ; fhir:Reference.reference [ fhir:value "Location/1" ]; fhir:Reference.display [ fhir:value "Burgers University Medical Center, South Wing, second floor" ] ]; fhir:Procedure.reasonReference [ fhir:index 0; fhir:link ; fhir:Reference.reference [ fhir:value "Observation/blood-pressure" ]; fhir:Reference.display [ fhir:value "Blood Pressure" ] ] . a fhir:CarePlan . a fhir:Patient . a fhir:Practitioner . a fhir:Organization . a fhir:Location . a fhir:Observation . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl; owl:versionIRI . # -------------------------------------------------------------------------------------