Order Catalog Implementation Guide
0.1.0 - STU Ballot 1

This page is part of the Order Catalog Implementation Guide (v0.1.0: STU 1 Ballot 1) based on FHIR R4. . For a full list of available versions, see the Directory of published versions

: Lab specimen - venous serum 3 mL - TTL Representation

Raw ttl | Download

@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 xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

 a fhir:SpecimenDefinition;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "example-specimen-3ml-serum"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/uv/order-catalog/StructureDefinition/LabSpecimenDefinition";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/uv/order-catalog/StructureDefinition/LabSpecimenDefinition>     ]
  ];
  fhir:Resource.language [ fhir:value "en-US"];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en-US\" lang=\"en-US\"><p><b>Generated Narrative</b></p><p><b>id</b>: example-specimen-3ml-serum</p><p><b>meta</b>: </p><p><b>language</b>: en-US</p><blockquote><p><b>typeTested</b></p><p><b>type</b>: <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/v2-0487 SER}\">Serum</span></p><p><b>preference</b>: preferred</p><h3>Containers</h3><table class=\"grid\"><tr><td>-</td><td><b>Capacity</b></td><td><b>MinimumVolume[x]</b></td></tr><tr><td>*</td><td>5 milliliter</td><td>3 mL</td></tr></table><p><b>retentionTime</b>: 24 hour</p><p><b>rejectionCriterion</b>: <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/rejection-criteria hemolized}\">blood specimen hemolized</span></p><h3>Handlings</h3><table class=\"grid\"><tr><td>-</td><td><b>TemperatureQualifier</b></td><td><b>MaxDuration</b></td></tr><tr><td>*</td><td><span title=\"Codes: \">room temperature or refrigerated</span></td><td>4 day</td></tr></table></blockquote></div>"
  ];
  fhir:SpecimenDefinition.typeTested [
     fhir:index 0;
     fhir:SpecimenDefinition.typeTested.type [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0487" ];
         fhir:Coding.code [ fhir:value "SER" ];
         fhir:Coding.display [ fhir:value "Serum" ]       ]     ];
     fhir:SpecimenDefinition.typeTested.preference [ fhir:value "preferred" ];
     fhir:SpecimenDefinition.typeTested.container [
       fhir:SpecimenDefinition.typeTested.container.capacity [
         fhir:Quantity.value [ fhir:value "5"^^xsd:decimal ];
         fhir:Quantity.unit [ fhir:value "milliliter" ];
         fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ];
         fhir:Quantity.code [ fhir:value "mL" ]       ];
       fhir:SpecimenDefinition.typeTested.container.minimumVolumeQuantity [
         fhir:Quantity.value [ fhir:value "3"^^xsd:decimal ];
         fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ];
         fhir:Quantity.code [ fhir:value "mL" ]       ]     ];
     fhir:SpecimenDefinition.typeTested.retentionTime [
       fhir:Quantity.value [ fhir:value "24"^^xsd:decimal ];
       fhir:Quantity.unit [ fhir:value "hour" ];
       fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ];
       fhir:Quantity.code [ fhir:value "h" ]     ];
     fhir:SpecimenDefinition.typeTested.rejectionCriterion [
       fhir:index 0;
       fhir:CodeableConcept.coding [
         fhir:index 0;
         fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/rejection-criteria" ];
         fhir:Coding.code [ fhir:value "hemolized" ]       ];
       fhir:CodeableConcept.text [ fhir:value "blood specimen hemolized" ]     ];
     fhir:SpecimenDefinition.typeTested.handling [
       fhir:index 0;
       fhir:SpecimenDefinition.typeTested.handling.temperatureQualifier [
         fhir:CodeableConcept.text [ fhir:value "room temperature or refrigerated" ]       ];
       fhir:SpecimenDefinition.typeTested.handling.maxDuration [
         fhir:Quantity.value [ fhir:value "4"^^xsd:decimal ];
         fhir:Quantity.unit [ fhir:value "day" ];
         fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ];
         fhir:Quantity.code [ fhir:value "d" ]       ]     ]
  ].

# - ontology header ------------------------------------------------------------

 a owl:Ontology;
  owl:imports fhir:fhir.ttl.