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:Observation;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "example-laboratory-observation"];
fhir:Resource.meta [
fhir:Meta.profile [
fhir:value "http://i-tech-uw.github.io/laboratory-workflows-ig/StructureDefinition/laboratory-observation";
fhir:index 0;
fhir:link <http://i-tech-uw.github.io/laboratory-workflows-ig/StructureDefinition/laboratory-observation> ]
];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: Observation</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 Observation \"example-laboratory-observation\" </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-laboratory-observation.html\">Laboratory Observation</a></p></div><p><b>identifier</b>: id: ebf83ba0-9d3c-497f-9aa0-d839ec506202</p><p><b>status</b>: final</p><p><b>category</b>: Laboratory <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://terminology.hl7.org/3.1.0/CodeSystem-observation-category.html\">Observation Category Codes</a>#laboratory)</span></p><p><b>code</b>: Cholesterol in LDL [Moles/volume] in Serum or Plasma <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"https://loinc.org/\">LOINC</a>#22748-8)</span></p><p><b>subject</b>: <a href=\"Patient-example-laboratory-patient.html\">Patient/example-laboratory-patient</a> \" MUTESA\"</p><p><b>effective</b>: 2011-03-04 08:30:00+1100</p><p><b>performer</b>: <a href=\"Practitioner-example-laboratory-practitioner.html\">Practitioner/example-laboratory-practitioner</a> \"\"</p><p><b>value</b>: 55 UI/L<span style=\"background: LightGoldenRodYellow\"> (Details: UCUM code 88 = '88')</span></p></div>"
];
fhir:Observation.identifier [
fhir:index 0;
fhir:Identifier.system [ fhir:value "https://isanteplusdemo.com/openmrs/ws/fhir2/" ];
fhir:Identifier.value [ fhir:value "ebf83ba0-9d3c-497f-9aa0-d839ec506202" ]
];
fhir:Observation.status [ fhir:value "final"];
fhir:Observation.category [
fhir:index 0;
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/observation-category" ];
fhir:Coding.code [ fhir:value "laboratory" ] ]
];
fhir:Observation.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:Observation.subject [
fhir:Reference.reference [ fhir:value "Patient/example-laboratory-patient" ];
fhir:Reference.type [ fhir:value "Patient" ]
];
fhir:Observation.effectiveDateTime [ fhir:value "2011-03-04T08:30:00+11:00"^^xsd:dateTime];
fhir:Observation.performer [
fhir:index 0;
fhir:Reference.reference [ fhir:value "Practitioner/example-laboratory-practitioner" ]
];
fhir:Observation.valueQuantity [
fhir:Quantity.value [ fhir:value "55"^^xsd:decimal ];
fhir:Quantity.unit [ fhir:value "UI/L" ];
fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ];
fhir:Quantity.code [ fhir:value "88" ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.