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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
a fhir:Specimen;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "urine1"];
fhir:Resource.meta [
fhir:Meta.versionId [ fhir:value "1" ];
fhir:Meta.profile [
fhir:value "https://www.ehealth.fgov.be/standards/fhir/lab/StructureDefinition/be-specimen-laboratory";
fhir:index 0;
fhir:link <https://www.ehealth.fgov.be/standards/fhir/lab/StructureDefinition/be-specimen-laboratory> ]
];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "empty" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">empty</div>"
];
fhir:Specimen.status [ fhir:value "available"];
fhir:Specimen.type [
fhir:CodeableConcept.coding [
fhir:index 0;
a sct:78014005;
fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
fhir:Coding.code [ fhir:value "78014005" ];
fhir:Coding.display [ fhir:value "Urine" ] ]
];
fhir:Specimen.receivedTime [ fhir:value "2015-11-04"^^xsd:date];
fhir:Specimen.note [
fhir:index 0;
fhir:Annotation.text [ fhir:value "24u urinecollectie" ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.