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

Generated Narrative

Resource \"RobertMeier\"

Profile: CH CRL Patient

identifier: id: 756.9217.0023.43

name: Robert Meier

gender: male

birthDate: 1955-01-27

deceased: false

address: Winterthurerstrasse 13a Wallisellen ZH 8304

" ]; fhir:Patient.identifier [ fhir:index 0; fhir:Identifier.system [ fhir:value "urn:oid:2.16.756.5.32" ]; fhir:Identifier.value [ fhir:value "756.9217.0023.43" ] ]; fhir:Patient.name [ fhir:index 0; fhir:HumanName.family [ fhir:value "Meier" ]; fhir:HumanName.given [ fhir:value "Robert"; fhir:index 0 ] ]; fhir:Patient.gender [ fhir:value "male"]; fhir:Patient.birthDate [ fhir:value "1955-01-27"^^xsd:date]; fhir:Patient.deceasedBoolean [ fhir:value "false"^^xsd:boolean]; fhir:Patient.address [ fhir:index 0; fhir:Address.line [ fhir:value "Winterthurerstrasse 13a"; fhir:index 0 ]; fhir:Address.city [ fhir:value "Wallisellen" ]; fhir:Address.state [ fhir:value "ZH" ]; fhir:Address.postalCode [ fhir:value "8304" ] ] . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl . # -------------------------------------------------------------------------------------