Laboratory Workflows Implementation Guide
0.3.0 - ci-build
Laboratory Workflows Implementation Guide - Local Development build (v0.3.0). 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 xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
a fhir:DiagnosticReport;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "example-laboratory-diagnostic-report"];
fhir:Resource.meta [
fhir:Meta.profile [
fhir:value "http://i-tech-uw.github.io/laboratory-workflows-ig/StructureDefinition/laboratory-diagnostic-report";
fhir:index 0;
fhir:link <http://i-tech-uw.github.io/laboratory-workflows-ig/StructureDefinition/laboratory-diagnostic-report> ]
];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><h2><span title=\"Codes: {http://loinc.org 22748-8}\">Cholesterol in LDL [Moles/volume] in Serum or Plasma</span> (<span title=\"Codes: {http://loinc.org 22748-8}\">Cholesterol in LDL [Moles/volume] in Serum or Plasma</span>) </h2><table class=\"grid\"><tr><td>Subject</td><td>Unable to get Patient Details</td></tr><tr><td>When For</td><td>2011-03-04 08:30:00+1100</td></tr></table><p><b>Report Details</b></p><table class=\"grid\"><tr><td><b>Code</b></td><td><b>Value</b></td></tr><tr><td><a href=\"Observation-example-laboratory-observation.html\"><span title=\"Codes: {http://loinc.org 22748-8}\">Cholesterol in LDL [Moles/volume] in Serum or Plasma</span></a></td><td>55 UI/L</td></tr></table></div>"
];
fhir:DiagnosticReport.status [ fhir:value "final"];
fhir:DiagnosticReport.category [
fhir:index 0;
fhir:CodeableConcept.coding [
fhir:index 0;
a loinc:22748-8;
fhir:Coding.system [ fhir:value "http://loinc.org" ];
fhir:Coding.code [ fhir:value "22748-8" ] ]
];
fhir:DiagnosticReport.code [
fhir:CodeableConcept.coding [
fhir:index 0;
a loinc:22748-8;
fhir:Coding.system [ fhir:value "http://loinc.org" ];
fhir:Coding.code [ fhir:value "22748-8" ] ]
];
fhir:DiagnosticReport.subject [
fhir:Reference.reference [ fhir:value "example-laboratory-patient" ];
fhir:Reference.type [ fhir:value "Patient" ]
];
fhir:DiagnosticReport.effectiveDateTime [ fhir:value "2011-03-04T08:30:00+11:00"^^xsd:dateTime];
fhir:DiagnosticReport.result [
fhir:index 0;
fhir:Reference.reference [ fhir:value "Observation/example-laboratory-observation" ];
fhir:Reference.type [ fhir:value "Observation" ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.