FHIR CI-Build

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

Example ServiceRequest/lipid (Turtle)

Orders and Observations Work GroupMaturity Level: N/AStandards Status: InformativeCompartments: Device, Encounter, Patient, Practitioner, RelatedPerson

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

Lipid Panel Order

@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <https://loinc.org/rdf/> .
@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:ServiceRequest ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "lipid"] ; # 
  fhir:contained ( [
     a fhir:Observation ;
     fhir:id [ fhir:v "fasting" ] ;
     fhir:status [ fhir:v "final" ] ; #      the mandatory quality flag:     
     fhir:code [
       fhir:coding ( [
         a loinc:49541-6 ;
         fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "49541-6" ] ;
         fhir:display [ fhir:v "Fasting status - Reported" ]
       ] )
     ] ;
     fhir:subject [
       fhir:reference [ fhir:v "Patient/example" ]
     ] ;
     fhir:value [
       a fhir:CodeableConcept ;
       fhir:coding ( [
         fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0136"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "Y" ] ;
         fhir:display [ fhir:v "Yes" ]
       ] )
     ]
  ] [
     a fhir:Specimen ;
     fhir:id [ fhir:v "serum" ] ;
     fhir:identifier ( [
       fhir:system [ fhir:v "http://acme.org/specimens"^^xsd:anyURI ] ;
       fhir:value [ fhir:v "20150107-0012" ]
     ] ) ;
     fhir:type [
       fhir:coding ( [
         a sct:119364003 ;
         fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "119364003" ] ;
         fhir:display [ fhir:v "Serum sample" ]
       ] )
     ] ;
     fhir:subject [
       fhir:reference [ fhir:v "Patient/example" ]
     ] ;
     fhir:collection [
       fhir:collected [ fhir:v "2015-08-16T06:40:17Z"^^xsd:dateTime ]
     ]
  ] ) ; # 
  fhir:identifier ( [
     fhir:type [
       fhir:coding ( [
         fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "PLAC" ]
       ] ) ;
       fhir:text [ fhir:v "Placer" ]
     ] ;
     fhir:system [ fhir:v "urn:oid:1.3.4.5.6.7"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "2345234234234" ]
  ] ) ; # 
  fhir:status [ fhir:v "active"] ; # 
  fhir:intent [ fhir:v "original-order"] ; # 
  fhir:code [
     fhir:concept [
       fhir:coding ( [
         fhir:system [ fhir:v "http://acme.org/tests"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "LIPID" ]
       ] ) ;
       fhir:text [ fhir:v "Lipid Panel" ]
     ]
  ] ; # 
  fhir:subject [
     fhir:reference [ fhir:v "Patient/example" ]
  ] ; # 
  fhir:encounter [
     fhir:reference [ fhir:v "Encounter/example" ]
  ] ; # 
  fhir:occurrence [ fhir:v "2013-05-02T16:16:00-07:00"^^xsd:dateTime] ; # 
  fhir:requester [
     fhir:reference [ fhir:v "Practitioner/example" ]
  ] ; # 
  fhir:performer ( [
     fhir:reference [ fhir:v "Practitioner/f202" ]
  ] ) ; # 
  fhir:reason ( [
     fhir:concept [
       fhir:coding ( [
         fhir:system [ fhir:v "http://hl7.org/fhir/sid/icd-9"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "V173" ] ;
         fhir:display [ fhir:v "Fam hx-ischem heart dis" ]
       ] )
     ]
  ] ) ; # 
  fhir:supportingInfo ( [
     fhir:reference [
       fhir:reference [ fhir:v "#fasting" ] ;
       fhir:display [ fhir:v "Fasting status" ]
     ]
  ] ) ; # 
  fhir:specimen ( [
     fhir:reference [ fhir:v "#serum" ] ;
     fhir:display [ fhir:v "Serum specimen" ]
  ] ) ; # 
  fhir:note ( [
     fhir:text [ fhir:v "patient is afraid of needles" ]
  ] )] . # 

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


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.