@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Patient; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "ElisabethBroennimannByBFH"]; # fhir:Resource.meta [ fhir:Meta.source [ fhir:value "https://www.ti.bfh.ch/de/bachelor/medizininformatik.html" ]; fhir:Meta.profile [ fhir:value "http://fhir.ch/ig/ch-core/StructureDefinition/ch-core-patient"; fhir:index 0; fhir:link ] ]; # fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "

Elisabeth Brönnimann-Bertholet female, DoB: 1937-05-03


Marital Status:verheiratet
Contact Details:
Links:
" ]; # fhir:Patient.name [ fhir:index 0; fhir:HumanName.family [ fhir:value "Brönnimann-Bertholet" ]; fhir:HumanName.given [ fhir:value "Elisabeth"; fhir:index 0 ] ]; # fhir:Patient.telecom [ fhir:index 0; fhir:ContactPoint.system [ fhir:value "phone" ]; fhir:ContactPoint.value [ fhir:value "+41 32 321 61 11" ]; fhir:ContactPoint.use [ fhir:value "home" ] ], [ fhir:index 1; fhir:ContactPoint.system [ fhir:value "email" ]; fhir:ContactPoint.value [ fhir:value "elisabeth@broennimann.today" ] ]; # fhir:Patient.gender [ fhir:value "female"]; # fhir:Patient.birthDate [ fhir:value "1937-05-03"^^xsd:date]; # fhir:Patient.address [ fhir:index 0; fhir:Address.use [ fhir:value "home" ]; fhir:Address.line [ fhir:value "Kreuzweg 11"; fhir:index 0 ]; fhir:Address.city [ fhir:value "Biel/Bienne" ]; fhir:Address.postalCode [ fhir:value "2500" ] ]; # fhir:Patient.maritalStatus [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://fhir.ch/ig/ch-core/CodeSystem/ech-11-maritalstatus" ]; fhir:Coding.code [ fhir:value "2" ]; fhir:Coding.display [ fhir:value "verheiratet" ] ], [ fhir:index 1; fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus" ]; fhir:Coding.code [ fhir:value "M" ]; fhir:Coding.display [ fhir:value "married" ] ] ]; # fhir:Patient.generalPractitioner [ fhir:index 0; fhir:link ; fhir:Reference.reference [ fhir:value "Practitioner/HanspeterWengerByBFH" ] ] . # # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl . # -------------------------------------------------------------------------------------