HL7 BE Laboratory Result WG Implementation Guide (work in progress), published by HL7 Belgium. This is not an authorized publication; it is the continuous build for version 0.0.7). This version is based on the current content of https://github.com/hl7-be/hl7-be-fhir-laboratory-report/ and changes regularly. 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/StructureDefinition/be-specimen-laboratory";
fhir:index 0;
fhir:link <https://www.ehealth.fgov.be/standards/fhir/StructureDefinition/be-specimen-laboratory> ]
];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\">Resource \"urine1\" Version \"1\" </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-be-specimen-laboratory.html\">BeSpecimenLaboratory</a></p></div><p><b>status</b>: available</p><p><b>type</b>: Urine <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"https://browser.ihtsdotools.org/\">SNOMED CT</a>#78014005)</span></p><p><b>receivedTime</b>: 2015-11-04</p><p><b>note</b>: 24u urinecollectie</p></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.