R6 Ballot (3rd Draft)

Publish-box (todo)

Example Observation/lipidpanel-organizer (Turtle)

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

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

An example of a lipid panel using an organizer Observation.

@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

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

<http://hl7.org/fhir/Observation/lipidpanel-organizer> a fhir:Observation ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "lipidpanel-organizer"] ; # 
  fhir:status [ fhir:v "final"] ; # 
  fhir:category ( [
     fhir:coding ( [
       fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/observation-category"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "laboratory" ] ;
       fhir:display [ fhir:v "Laboratory" ]
     ] ) ;
     fhir:text [ fhir:v "Laboratory" ]
  ] ) ; # 
  fhir:code [
     fhir:text [ fhir:v "Lipid Panel" ]
  ] ; # 
  fhir:subject [
     fhir:link <http://hl7.org/fhir/Patient/pat2> ;
     fhir:reference [ fhir:v "Patient/pat2" ]
  ] ; # 
  fhir:organizer [ fhir:v true] ; # 
  fhir:effective [
     a fhir:dateTime ;
     fhir:v "2015-08-16T06:40:17Z"^^xsd:dateTime
  ] ; # 
  fhir:issued [ fhir:v "2015-08-16T08:40:17Z"^^xsd:dateTime] ; # 
  fhir:hasMember ( [
     fhir:link <http://hl7.org/fhir/Observation/cholesterol> ;
     fhir:reference [ fhir:v "Observation/cholesterol" ]
  ] [
     fhir:link <http://hl7.org/fhir/Observation/hdl> ;
     fhir:reference [ fhir:v "Observation/hdl" ]
  ] [
     fhir:link <http://hl7.org/fhir/Observation/ldl> ;
     fhir:reference [ fhir:v "Observation/ldl" ]
  ] [
     fhir:link <http://hl7.org/fhir/Observation/non-hdl> ;
     fhir:reference [ fhir:v "Observation/non-hdl" ]
  ] [
     fhir:link <http://hl7.org/fhir/Observation/triglycerides> ;
     fhir:reference [ fhir:v "Observation/triglycerides" ]
  ] [
     fhir:link <http://hl7.org/fhir/Observation/vldl> ;
     fhir:reference [ fhir:v "Observation/vldl" ]
  ] ) . # 

<http://hl7.org/fhir/Patient/pat2> a fhir:Patient .

<http://hl7.org/fhir/Observation/cholesterol> a fhir:Observation .

<http://hl7.org/fhir/Observation/hdl> a fhir:Observation .

<http://hl7.org/fhir/Observation/ldl> a fhir:Observation .

<http://hl7.org/fhir/Observation/non-hdl> a fhir:Observation .

<http://hl7.org/fhir/Observation/triglycerides> a fhir:Observation .

<http://hl7.org/fhir/Observation/vldl> a fhir:Observation .

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


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.