@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Patient; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "FranzMinimum"]; 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 \"FranzMinimum\"

Profile: CH CRL Patient

identifier: id: 756.9217.0769.85

name: Franz Minimum

gender: male

birthDate: 1950-03-04

deceased: false

address: 8001

" ]; 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.0769.85" ] ]; fhir:Patient.name [ fhir:index 0; fhir:HumanName.family [ fhir:value "Minimum" ]; fhir:HumanName.given [ fhir:value "Franz"; fhir:index 0 ] ]; fhir:Patient.gender [ fhir:value "male"]; fhir:Patient.birthDate [ fhir:value "1950-03-04"^^xsd:date]; fhir:Patient.deceasedBoolean [ fhir:value "false"^^xsd:boolean]; fhir:Patient.address [ fhir:index 0; fhir:Address.postalCode [ fhir:value "8001" ] ] . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl . # -------------------------------------------------------------------------------------