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
@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:SpecimenDefinition; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "example-specimen-urine-24h"]; 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-urine-24h</p><p><b>meta</b>: </p><p><b>language</b>: en-US</p><p><b>collection</b>: <span title=\"Codes: {http://snomed.info/sct 2475000}\">Urine specimen collection, 24 hours (procedure)</span></p><blockquote><p><b>typeTested</b></p><p><b>type</b>: <span title=\"Codes: {http://snomed.info/sct 122575003}\">Urine specimen (specimen)</span></p><p><b>preference</b>: preferred</p><h3>Containers</h3><table class=\"grid\"><tr><td>-</td><td><b>Type</b></td></tr><tr><td>*</td><td><span title=\"Codes: {http://snomed.info/sct 706055000}\">24-hour urine specimen container (physical object)</span></td></tr></table><blockquote><p><b>handling</b></p><p><b>temperatureQualifier</b>: <span title=\"Codes: \">room temperature</span></p><p><b>maxDuration</b>: 2 hour</p></blockquote><blockquote><p><b>handling</b></p><p><b>temperatureQualifier</b>: <span title=\"Codes: \">refrigerated</span></p><p><b>maxDuration</b>: 24 hour</p></blockquote></blockquote></div>" ]; fhir:SpecimenDefinition.collection [ fhir:index 0; fhir:CodeableConcept.coding [ fhir:index 0; a sct:2475000; fhir:Coding.system [ fhir:value "http://snomed.info/sct" ]; fhir:Coding.code [ fhir:value "2475000" ]; fhir:Coding.display [ fhir:value "Urine specimen collection, 24 hours (procedure)" ] ] ]; fhir:SpecimenDefinition.typeTested [ fhir:index 0; fhir:SpecimenDefinition.typeTested.type [ fhir:CodeableConcept.coding [ fhir:index 0; a sct:122575003; fhir:Coding.system [ fhir:value "http://snomed.info/sct" ]; fhir:Coding.code [ fhir:value "122575003" ]; fhir:Coding.display [ fhir:value "Urine specimen (specimen)" ] ] ]; fhir:SpecimenDefinition.typeTested.preference [ fhir:value "preferred" ]; fhir:SpecimenDefinition.typeTested.container [ fhir:SpecimenDefinition.typeTested.container.type [ fhir:CodeableConcept.coding [ fhir:index 0; a sct:706055000; fhir:Coding.system [ fhir:value "http://snomed.info/sct" ]; fhir:Coding.code [ fhir:value "706055000" ]; fhir:Coding.display [ fhir:value "24-hour urine specimen container (physical object)" ] ] ] ]; fhir:SpecimenDefinition.typeTested.handling [ fhir:index 0; fhir:SpecimenDefinition.typeTested.handling.temperatureQualifier [ fhir:CodeableConcept.text [ fhir:value "room temperature" ] ]; fhir:SpecimenDefinition.typeTested.handling.maxDuration [ fhir:Quantity.value [ fhir:value "2"^^xsd:decimal ]; fhir:Quantity.unit [ fhir:value "hour" ]; fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ]; fhir:Quantity.code [ fhir:value "h" ] ] ], [ fhir:index 1; fhir:SpecimenDefinition.typeTested.handling.temperatureQualifier [ fhir:CodeableConcept.text [ fhir:value "refrigerated" ] ]; fhir:SpecimenDefinition.typeTested.handling.maxDuration [ 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" ] ] ] ]. # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl.