HL7 BE Laboratory WG Implementation Guide
1.0.0 - STU
This page is part of the HL7 Belgium FHIR Implementation Guide - Lab related profiles (v1.0.0: Trial Use) based on FHIR R4. This is the current published version. 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 "patient1"];
fhir:Resource.meta [
fhir:Meta.profile [
fhir:value "https://www.ehealth.fgov.be/standards/fhir/core/StructureDefinition/be-patient";
fhir:index 0;
fhir:link <https://www.ehealth.fgov.be/standards/fhir/core/StructureDefinition/be-patient> ]
];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "empty" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">empty</div>"
];
fhir:Patient.identifier [
fhir:index 0;
fhir:Identifier.use [ fhir:value "official" ];
fhir:Identifier.system [ fhir:value "https://www.ehealth.fgov.be/standards/fhir/core/NamingSystem/ssin" ];
fhir:Identifier.value [ fhir:value "79121137740" ]
];
fhir:Patient.active [ fhir:value "true"^^xsd:boolean];
fhir:Patient.name [
fhir:index 0;
fhir:HumanName.family [ fhir:value "La Paradisio" ];
fhir:HumanName.given [
fhir:value "Josephine";
fhir:index 0 ], [
fhir:value "Nessa";
fhir:index 1 ]
];
fhir:Patient.telecom [
fhir:index 0;
fhir:ContactPoint.system [ fhir:value "email" ];
fhir:ContactPoint.value [ fhir:value "nessa.laparadisio@belgium.be" ]
], [
fhir:index 1;
fhir:ContactPoint.system [ fhir:value "phone" ];
fhir:ContactPoint.value [ fhir:value "+322476792979" ];
fhir:ContactPoint.use [ fhir:value "mobile" ]
], [
fhir:index 2;
fhir:ContactPoint.system [ fhir:value "phone" ];
fhir:ContactPoint.value [ fhir:value "+3226718655" ];
fhir:ContactPoint.use [ fhir:value "home" ]
], [
fhir:index 3;
fhir:ContactPoint.system [ fhir:value "phone" ];
fhir:ContactPoint.value [ fhir:value "+322476799" ];
fhir:ContactPoint.use [ fhir:value "work" ]
];
fhir:Patient.gender [ fhir:value "female"];
fhir:Patient.birthDate [
fhir:value "1979-12-11"^^xsd:date;
fhir:Element.extension [
fhir:index 0;
fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/patient-birthTime" ];
fhir:Extension.valueDateTime [ fhir:value "1979-12-11T13:28:17-05:00"^^xsd:dateTime ] ]
];
fhir:Patient.address [
fhir:index 0;
fhir:Address.use [ fhir:value "home" ];
fhir:Address.type [ fhir:value "both" ];
fhir:Address.text [ fhir:value "Sloordelle 42, 1160 Oudergem" ];
fhir:Address.line [
fhir:value "Sloordelle 42";
fhir:index 0 ];
fhir:Address.city [ fhir:value "Oudergem" ];
fhir:Address.postalCode [ fhir:value "1160" ];
fhir:Address.country [ fhir:value "BE" ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.