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 loinc: <http://loinc.org/rdf#> .
@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:Observation;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "obsDynamicHead"];
fhir:Resource.meta [
fhir:Meta.profile [
fhir:value "https://www.ehealth.fgov.be/standards/fhir/StructureDefinition/be-observation-laboratory";
fhir:index 0;
fhir:link <https://www.ehealth.fgov.be/standards/fhir/StructureDefinition/be-observation-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 \"obsDynamicHead\" </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-be-observation-laboratory.html\">BeObservationLaboratory</a></p></div><p><b>status</b>: final</p><p><b>code</b>: Glucose tolerance 4 hours panel - Serum or Plasma <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"https://loinc.org/\">LOINC</a>#72171-2)</span></p><p><b>effective</b>: 2015-11-04 09:16:00-0500</p><p><b>issued</b>: Nov 4, 2015, 2:16:00 PM</p><p><b>performer</b>: <a href=\"Practitioner-practitioner10.html\">Practitioner/practitioner10</a> \" DAVOUST\"</p><p><b>hasMember</b>: </p><ul><li><a href=\"Observation-obsDynamic0.html\">Observation/obsDynamic0</a></li><li><a href=\"Observation-obsDynamic1.html\">Observation/obsDynamic1</a></li><li><a href=\"Observation-obsDynamic2.html\">Observation/obsDynamic2</a></li></ul><blockquote><p><b>component</b></p><p><b>code</b>: Substance amount <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"https://browser.ihtsdotools.org/\">SNOMED CT</a>#118555000)</span></p><p><b>value</b>: 75 g<span style=\"background: LightGoldenRodYellow\"> (Details: UCUM code g = 'g')</span></p></blockquote><blockquote><p><b>component</b></p><p><b>code</b>: Product name <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"https://browser.ihtsdotools.org/\">SNOMED CT</a>#774167006)</span></p><p><b>value</b>: syrupy glucose solution</p></blockquote></div>"
];
fhir:Observation.status [ fhir:value "final"];
fhir:Observation.code [
fhir:CodeableConcept.coding [
fhir:index 0;
a loinc:72171-2;
fhir:Coding.system [ fhir:value "http://loinc.org" ];
fhir:Coding.code [ fhir:value "72171-2" ];
fhir:Coding.display [ fhir:value "Glucose tolerance 4 hours panel - Serum or Plasma" ] ]
];
fhir:Observation.effectiveDateTime [ fhir:value "2015-11-04T09:16:00-05:00"^^xsd:dateTime];
fhir:Observation.issued [ fhir:value "2015-11-04T09:16:00-05:00"^^xsd:dateTime];
fhir:Observation.performer [
fhir:index 0;
fhir:Reference.reference [ fhir:value "Practitioner/practitioner10" ]
];
fhir:Observation.hasMember [
fhir:index 0;
fhir:Reference.reference [ fhir:value "Observation/obsDynamic0" ]
], [
fhir:index 1;
fhir:Reference.reference [ fhir:value "Observation/obsDynamic1" ]
], [
fhir:index 2;
fhir:Reference.reference [ fhir:value "Observation/obsDynamic2" ]
];
fhir:Observation.component [
fhir:index 0;
fhir:Observation.component.code [
fhir:CodeableConcept.coding [
fhir:index 0;
a sct:118555000;
fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
fhir:Coding.code [ fhir:value "118555000" ];
fhir:Coding.display [ fhir:value "Substance amount" ] ] ];
fhir:Observation.component.valueQuantity [
fhir:Quantity.value [ fhir:value "75"^^xsd:decimal ];
fhir:Quantity.unit [ fhir:value "g" ];
fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ];
fhir:Quantity.code [ fhir:value "g" ] ]
], [
fhir:index 1;
fhir:Observation.component.code [
fhir:CodeableConcept.coding [
fhir:index 0;
a sct:774167006;
fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
fhir:Coding.code [ fhir:value "774167006" ];
fhir:Coding.display [ fhir:value "Product name" ] ] ];
fhir:Observation.component.valueString [ fhir:value "syrupy glucose solution" ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.