@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix sct: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Encounter; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "2-Einsatz"]; fhir:Resource.meta [ fhir:Meta.profile [ fhir:value "http://fhir.ch/ig/ch-ems/StructureDefinition/ch-ems-encounter"; fhir:index 0; fhir:link ] ]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "" ]; fhir:Encounter.identifier [ fhir:index 0; fhir:Identifier.system [ fhir:value "urn:oid:2.16.756.5.30.1.9999999999.1" ]; fhir:Identifier.value [ fhir:value "S12345678" ] ]; fhir:Encounter.status [ fhir:value "finished"]; fhir:Encounter.class [ fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ActCode" ]; fhir:Coding.code [ fhir:value "EMER" ]; fhir:Coding.display [ fhir:value "emergency" ] ]; fhir:Encounter.subject [ fhir:link ; fhir:Reference.reference [ fhir:value "Patient/2-PatientUnbekannt" ] ]; fhir:Encounter.basedOn [ fhir:index 0; fhir:link ; fhir:Reference.reference [ fhir:value "ServiceRequest/2-AufbietendeOrganisation" ] ]; fhir:Encounter.participant [ fhir:index 0; fhir:Element.extension [ fhir:index 0; fhir:Extension.url [ fhir:value "http://fhir.ch/ig/ch-ems/StructureDefinition/ch-ems-ext-teamrole" ]; fhir:Extension.valueCodeableConcept [ fhir:CodeableConcept.coding [ fhir:index 0; a sct:133932002; fhir:Coding.system [ fhir:value "http://snomed.info/sct" ]; fhir:Coding.code [ fhir:value "133932002" ]; fhir:Coding.display [ fhir:value "Caregiver" ] ] ] ]; fhir:Encounter.participant.individual [ fhir:link ; fhir:Reference.reference [ fhir:value "Practitioner/1-TeamMemberPetraMuster" ] ] ], [ fhir:index 1; fhir:Element.extension [ fhir:index 0; fhir:Extension.url [ fhir:value "http://fhir.ch/ig/ch-ems/StructureDefinition/ch-ems-ext-teamrole" ]; fhir:Extension.valueCodeableConcept [ fhir:CodeableConcept.coding [ fhir:index 0; a sct:133932002; fhir:Coding.system [ fhir:value "http://snomed.info/sct" ]; fhir:Coding.code [ fhir:value "133932002" ]; fhir:Coding.display [ fhir:value "Caregiver" ] ] ] ]; fhir:Encounter.participant.individual [ fhir:link ; fhir:Reference.reference [ fhir:value "Practitioner/1-TeamMemberHansBeispiel" ] ] ]; fhir:Encounter.period [ fhir:Period.start [ fhir:value "2016-12-10"^^xsd:date ] ]; fhir:Encounter.hospitalization [ fhir:Encounter.hospitalization.destination [ fhir:link ; fhir:Reference.reference [ fhir:value "Location/1-Zielort" ] ] ]; fhir:Encounter.location [ fhir:index 0; fhir:Encounter.location.location [ fhir:link ; fhir:Reference.reference [ fhir:value "Location/2-Einsatzort" ] ] ] . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl . # -------------------------------------------------------------------------------------