FHIR CI-Build

This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions

Example SpecimenDefinition/7 (Turtle)

Orders and Observations Work GroupMaturity Level: N/AStandards Status: InformativeCompartments: No defined compartments

Raw Turtle (+ also see Turtle/RDF Format Specification)

Example definition of venous blood specimen.

@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:id [ fhir:v "7"] ; # 
  fhir:extension ( [
     fhir:url [ fhir:v "http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "oo" ]
  ] ) ; # 
  fhir:url [ fhir:v "http://example-lab.com/specdef/123455"^^xsd:anyURI] ; # 
  fhir:identifier [
     fhir:value [ fhir:v "123455" ]
  ] ; # 
  fhir:title [ fhir:v "Venous blood specimen"] ; # 
  fhir:status [ fhir:v "active"] ; # 
  fhir:experimental [ fhir:v "true"^^xsd:boolean] ; # 
  fhir:publisher [ fhir:v "HL7 International / Orders and Observations"] ; # 
  fhir:contact ( [
     fhir:telecom ( [
       fhir:system [ fhir:v "url" ] ;
       fhir:value [ fhir:v "http://www.hl7.org/Special/committees/orders" ]
     ] )
  ] ) ; # 
  fhir:typeCollected [
     fhir:coding ( [
       a sct:122555007 ;
       fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "122555007" ]
     ] ) ;
     fhir:text [ fhir:v "Venous blood specimen (specimen)" ]
  ] ; # 
  fhir:patientPreparation ( [
     fhir:text [ fhir:v "no strict fasting" ]
  ] ) ; # 
  fhir:typeTested ( [
     fhir:isDerived [ fhir:v "true"^^xsd:boolean ] ;
     fhir:type [
       fhir:coding ( [
         a sct:119364003 ;
         fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "119364003" ]
       ] ) ;
       fhir:text [ fhir:v "Serum specimen (specimen)" ]
     ] ;
     fhir:preference [ fhir:v "preferred" ] ;
     fhir:container [
       fhir:material [
         fhir:text [ fhir:v "glass" ]
       ] ;
       fhir:type [
         fhir:coding ( [
           a sct:702281005 ;
           fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
           fhir:code [ fhir:v "702281005" ] ;
           fhir:display [ fhir:v "Evacuated blood collection tube with thrombin and clot activator and gel separator" ]
         ] )
       ] ;
       fhir:cap [
         fhir:coding ( [
           fhir:system [ fhir:v "http://terminology.hl7.org/5.1.0/CodeSystem-container-cap.html"^^xsd:anyURI ] ;
           fhir:code [ fhir:v "yellow" ] ;
           fhir:display [ fhir:v "yellow cap" ]
         ] )
       ] ;
       fhir:minimumVolume [
         a fhir:Quantity ;
         fhir:value [ fhir:v "2"^^xsd:decimal ] ;
         fhir:unit [ fhir:v "ml" ] ;
         fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "mL" ]
       ]
     ] ;
     fhir:handling ( [
       fhir:temperatureQualifier [
         fhir:coding ( [
           fhir:code [ fhir:v "room" ] ;
           fhir:display [ fhir:v "room temperature" ]
         ] )
       ] ;
       fhir:temperatureRange [
         fhir:low [
           fhir:value [ fhir:v "15"^^xsd:decimal ] ;
           fhir:unit [ fhir:v "°C" ] ;
           fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
           fhir:code [ fhir:v "Cel" ]
         ] ;
         fhir:high [
           fhir:value [ fhir:v "25"^^xsd:decimal ] ;
           fhir:unit [ fhir:v "°C" ] ;
           fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
           fhir:code [ fhir:v "Cel" ]
         ]
       ] ;
       fhir:maxDuration [
         fhir:value [ fhir:v "12"^^xsd:decimal ] ;
         fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "h" ]
       ]
     ] )
  ] )] . # 

# -------------------------------------------------------------------------------------


Usage note: every effort has been made to ensure that the examples are correct and useful, but they are not a normative part of the specification.