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 "MarvinMuster"];
fhir:Resource.meta [
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 "additional" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n <p>\n <b>id</b>\n : MarvinMuster\n </p>\n <p>\n <b>meta</b>\n :\n </p>\n <p>\n <b>identifier</b>\n : 7562295883070\n </p>\n <p>\n <b>name</b>\n : Marvin Muster\n </p>\n <p>\n <b>gender</b>\n : MALE\n </p>\n <p>\n <b>birthDate</b>\n : Jan 26, 1997\n </p>\n <p>\n <b>maritalStatus</b>\n : in eingetragener Partnerschaft\n <span style=\"background: LightGoldenRodYellow\">(Details : {http://fhir.ch/ig/ch-core/CodeSystem/ech-11-maritalstatus code '6' = '6', given as 'in eingetragener Partnerschaft'})</span>\n </p>\n <h3>Communications</h3>\n <table class=\"grid\">\n <tr>\n <td>-</td>\n <td>\n <b>Language</b>\n </td>\n <td>\n <b>Preferred</b>\n </td>\n </tr>\n <tr>\n <td>*</td>\n <td>\n Deutsch (Schweiz)\n <span style=\"background: LightGoldenRodYellow\">(Details : {urn:ietf:bcp:47 code 'de-CH' = 'German (Region=Switzerland))</span>\n </td>\n <td>true</td>\n </tr>\n </table>\n </div>"
];
fhir:DomainResource.extension [
fhir:index 0;
fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/patient-birthPlace" ];
fhir:Extension.valueAddress [
fhir:Address.city [ fhir:value "Salzburg" ];
fhir:Address.country [ fhir:value "Österreich" ] ]
], [
fhir:index 1;
fhir:Extension.url [ fhir:value "http://fhir.ch/ig/ch-core/StructureDefinition/ch-core-patient-ech-11-placeoforigin" ];
fhir:Extension.valueAddress [
fhir:Address.city [ fhir:value "Zug" ];
fhir:Address.state [ fhir:value "ZG" ] ]
], [
fhir:index 2;
fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/patient-religion" ];
fhir:Extension.valueCodeableConcept [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ReligiousAffiliation" ];
fhir:Coding.code [ fhir:value "1036" ];
fhir:Coding.display [ fhir:value "Orthodox" ] ] ]
];
fhir:Patient.identifier [
fhir:index 0;
fhir:Identifier.system [ fhir:value "urn:oid:2.16.756.5.32" ];
fhir:Identifier.value [ fhir:value "7562295883070" ]
];
fhir:Patient.name [
fhir:index 0;
fhir:HumanName.family [ fhir:value "Muster" ];
fhir:HumanName.given [
fhir:value "Marvin";
fhir:index 0 ]
];
fhir:Patient.gender [ fhir:value "male"];
fhir:Patient.birthDate [ fhir:value "1997-01-26"^^xsd:date];
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 "6" ];
fhir:Coding.display [ fhir:value "in eingetragener Partnerschaft" ] ]
];
fhir:Patient.communication [
fhir:index 0;
fhir:Patient.communication.language [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "urn:ietf:bcp:47" ];
fhir:Coding.code [ fhir:value "de-CH" ] ];
fhir:CodeableConcept.text [ fhir:value "Deutsch (Schweiz)" ] ];
fhir:Patient.communication.preferred [ fhir:value "true"^^xsd:boolean ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.