FHIR CI-Build

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

Example NutritionOrder/infantenteral (Turtle)

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

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

Nutrition Order Infant Enteral Feeding Example

@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:NutritionOrder ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "infantenteral"] ; #   id = infantenteral  file name = nutritionorder-infantenteral-example.xml  Name= Infant Enteral  Description = Nutrition Order Infant Enteral Feeding Canonical Example
#edited by Eric Haas Health eData Inc
# 
  fhir:identifier ( [
     fhir:system [ fhir:v "http://www.acme.org/nutritionorders"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "123" ]
  ] ) ; # 
  fhir:status [ fhir:v "active"] ; # 
  fhir:intent [ fhir:v "order"] ; # 
  fhir:subject [
     fhir:reference [ fhir:v "Patient/example" ] ;
     fhir:display [ fhir:v "Peter Chalmers" ]
  ] ; # 
  fhir:encounter [
     fhir:reference [ fhir:v "Encounter/example" ] ;
     fhir:display [ fhir:v "Inpatient" ]
  ] ; # 
  fhir:dateTime [ fhir:v "2014-09-17"^^xsd:date] ; # 
  fhir:orderer [
     fhir:reference [ fhir:v "Practitioner/example" ] ;
     fhir:display [ fhir:v "Dr Adam Careful" ]
  ] ; # 
  fhir:enteralFormula [
     fhir:caloricDensity [
       fhir:value [ fhir:v "20"^^xsd:decimal ] ;
       fhir:unit [ fhir:v "calories per ounce" ] ;
       fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "cal/[foz_us]" ]
     ] ;
     fhir:routeOfAdministration ( [
       fhir:coding ( [
         fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v3-RouteOfAdministration"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "PO" ] ;
         fhir:display [ fhir:v "Swallow, oral" ] ;
         fhir:userSelected [ fhir:v "true"^^xsd:boolean ]
       ] )
     ] ) ;
     fhir:administration ( [
       fhir:schedule [
         fhir:timing ( [
           fhir:repeat [
             fhir:bounds [
               a fhir:Period ;
               fhir:start [ fhir:v "2014-09-17"^^xsd:date ]
             ] ;
             fhir:frequency [ fhir:v "1"^^xsd:positiveInteger ] ;
             fhir:period [ fhir:v "3"^^xsd:decimal ] ;
             fhir:periodUnit [ fhir:v "h" ]
           ]
         ] )
       ] ; #   scheduled 4 oz every 3hrs not to exceed 32 oz\/day 
       fhir:quantity [
         fhir:value [ fhir:v "4"^^xsd:decimal ] ;
         fhir:unit [ fhir:v "ounces" ] ;
         fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "[foz_us]" ]
       ]
     ] ) ;
     fhir:administrationInstruction [ fhir:v "Add high calorie high carbohydrate additive to increase cal/oz from 24 cal/oz to 27 cal/oz." ] #   EH infant feeding instruction and additional instructions  
  ]] . # 

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


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.