CH Core (R4)
1.0.0 - Trial use
This page is part of the CH Core (R4) (v1.0.0: STU 1) based on FHIR (HL7® FHIR® Standard) R4. The current version which supersedes this version is 6.0.0. For a full list of available versions, see the Directory of published versions
Source view
@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 xsd: <http://www.w3.org/2001/XMLSchema#> . # - 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 <http://fhir.ch/ig/ch-core/StructureDefinition/ch-core-patient> ] ]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n <p>\n <b>Generated Narrative with Details</b>\n </p>\n <p>\n <b>id</b>: ElisabethBroennimannByBFH\n </p>\n <p>\n <b>meta</b>: \n </p>\n <p>\n <b>name</b>: Elisabeth Brönnimann-Bertholet \n </p>\n <p>\n <b>telecom</b>: ph: +41 32 321 61 11(HOME), elisabeth@broennimann.today\n </p>\n <p>\n <b>gender</b>: FEMALE\n </p>\n <p>\n <b>birthDate</b>: May 3, 1937\n </p>\n <p>\n <b>address</b>: Kreuzweg 11 Biel/Bienne 2500 (HOME)\n </p>\n <p>\n <b>maritalStatus</b>: verheiratet \n <span style=\"background: LightGoldenRodYellow\">(Details : {http://fhir.ch/ig/ch-core/CodeSystem/ech-11-maritalstatus code '2' = '2', given as 'verheiratet'}; {http://terminology.hl7.org/CodeSystem/v3-MaritalStatus code 'M' = 'Married', given as 'married'})</span>\n </p>\n </div>" ]; 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:Reference.reference [ fhir:value "Practitioner/HanspeterWengerByBFH" ] ]. # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl.