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:ServiceRequest;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "servicerequest1"];
fhir:Resource.meta [
fhir:Meta.profile [
fhir:value "https://www.ehealth.fgov.be/standards/fhir/StructureDefinition/be-servicerequest";
fhir:index 0;
fhir:link <https://www.ehealth.fgov.be/standards/fhir/StructureDefinition/be-servicerequest> ]
];
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 \"servicerequest1\" </p><p style=\"margin-bottom: 0px\">Profile: <code>https://www.ehealth.fgov.be/standards/fhir/StructureDefinition/be-servicerequest</code></p></div><p><b>status</b>: active</p><p><b>intent</b>: order</p><p><b>category</b>: Laboratory procedure <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"https://browser.ihtsdotools.org/\">SNOMED CT</a>#108252007)</span></p><p><b>subject</b>: <a href=\"Patient-patient1.html\">Patient/patient1</a> \" LA PARADISIO\"</p><p><b>authoredOn</b>: 2015-11-01 02:41:00+0100</p><p><b>requester</b>: <a href=\"Practitioner-practitioner1.html\">Practitioner/practitioner1</a> \" PULASKI\"</p><p><b>specimen</b>: <a href=\"Bundle-hematologyStudiesAsBundleCollection.html#Specimen_specimen1\">Specimen/specimen1</a></p></div>"
];
fhir:ServiceRequest.status [ fhir:value "active"];
fhir:ServiceRequest.intent [ fhir:value "order"];
fhir:ServiceRequest.category [
fhir:index 0;
fhir:CodeableConcept.coding [
fhir:index 0;
a sct:108252007;
fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
fhir:Coding.code [ fhir:value "108252007" ];
fhir:Coding.display [ fhir:value "Laboratory procedure" ] ]
];
fhir:ServiceRequest.subject [
fhir:Reference.reference [ fhir:value "Patient/patient1" ]
];
fhir:ServiceRequest.authoredOn [ fhir:value "2015-11-01T14:41:00+01:00"^^xsd:dateTime];
fhir:ServiceRequest.requester [
fhir:Reference.reference [ fhir:value "Practitioner/practitioner1" ]
];
fhir:ServiceRequest.specimen [
fhir:index 0;
fhir:Reference.reference [ fhir:value "Specimen/specimen1" ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.