CH Core (R4)
2.1.0 - STU 3 Ballot
This page is part of the CH Core (R4) (v2.1.0: STU 3) based on FHIR R4. . For a full list of available versions, see the Directory of published versions
@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 "MaxMuster"];
fhir:Resource.meta [
fhir:Meta.profile [
fhir:value "http://fhir.ch/ig/ch-core/StructureDefinition/ch-core-patient-epr";
fhir:index 0;
fhir:link <http://fhir.ch/ig/ch-core/StructureDefinition/ch-core-patient-epr> ]
];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Max Muster (OFFICIAL)</b> male, DoB: 1938-12-12 ( Medical record number: 8733)</p></div>"
];
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:Reference.reference [ fhir:value "Organization/GruppenpraxisCH" ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.