@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Patient; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "MaxMuster"]; # fhir:Resource.meta [ fhir:Meta.profile [ fhir:value "http://fhir.ch/ig/ch-core/StructureDefinition/ch-core-patient"; fhir:index 0; fhir:link ], [ fhir:value "http://fhir.ch/ig/ch-core/StructureDefinition/ch-core-patient-epr"; fhir:index 1; fhir:link ] ]; # fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "

Max Muster (OFFICIAL) male, DoB: 1938-12-12 ( Medical record number: 8733)


Contact Details:
Links:
" ]; # fhir:Patient.identifier [ fhir:index 0; fhir:Identifier.type [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0203" ]; fhir:Coding.code [ fhir:value "MR" ] ] ]; fhir:Identifier.system [ fhir:value "urn:oid:2.16.756.888888.3.1" ]; fhir:Identifier.value [ fhir:value "8733" ] ]; # fhir:Patient.name [ fhir:index 0; fhir:HumanName.use [ fhir:value "official" ]; fhir:HumanName.family [ fhir:value "Muster"; fhir:Element.extension [ fhir:index 0; fhir:Extension.url [ fhir:value "http://fhir.ch/ig/ch-core/StructureDefinition/ch-ext-ech-11-name" ]; fhir:Extension.valueCode [ fhir:value "officialName" ] ] ]; fhir:HumanName.given [ fhir:value "Max"; fhir:index 0; fhir:Element.extension [ fhir:index 0; fhir:Extension.url [ fhir:value "http://fhir.ch/ig/ch-core/StructureDefinition/ch-ext-ech-11-firstname" ]; fhir:Extension.valueCode [ fhir:value "officialFirstName" ] ] ] ]; # fhir:Patient.telecom [ fhir:index 0; fhir:ContactPoint.system [ fhir:value "phone" ]; fhir:ContactPoint.value [ fhir:value "+41326851234" ]; fhir:ContactPoint.use [ fhir:value "home" ] ], [ fhir:index 1; fhir:ContactPoint.system [ fhir:value "phone" ]; fhir:ContactPoint.value [ fhir:value "+41321237788" ]; fhir:ContactPoint.use [ fhir:value "work" ] ], [ fhir:index 2; fhir:ContactPoint.system [ fhir:value "email" ]; fhir:ContactPoint.value [ fhir:value "max.muster@sampledomain.ch" ]; fhir:ContactPoint.use [ fhir:value "home" ] ]; # fhir:Patient.gender [ fhir:value "male"]; # fhir:Patient.birthDate [ fhir:value "1938-12-12"^^xsd:date]; # fhir:Patient.address [ fhir:index 0; fhir:Address.use [ fhir:value "home" ]; fhir:Address.line [ fhir:value "Leidensweg"; fhir:index 0 ], [ fhir:value "10"; fhir:index 1 ]; fhir:Address.city [ fhir:value "Specimendorf" ]; fhir:Address.postalCode [ fhir:value "9999" ]; fhir:Address.country [ fhir:value "CH" ] ]; # fhir:Patient.managingOrganization [ fhir:link ; fhir:Reference.reference [ fhir:value "Organization/GruppenpraxisCH" ] ] . # # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl . # -------------------------------------------------------------------------------------