This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions
Example NutritionOrder/infantenteral (Turtle)
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 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/NutritionOrder/infantenteral> 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:link <http://hl7.org/fhir/Patient/example> ;
fhir:reference [ fhir:v "Patient/example" ] ;
fhir:display [ fhir:v "Peter Chalmers" ]
] ; #
fhir:encounter [
fhir:link <http://hl7.org/fhir/Encounter/example> ;
fhir:reference [ fhir:v "Encounter/example" ] ;
fhir:display [ fhir:v "Inpatient" ]
] ; #
fhir:dateTime [ fhir:v "2014-09-17"^^xsd:date] ; #
fhir:enteralFormula [
fhir:type [ ] ;
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 ]
] )
] ) ;
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
] ; #
fhir:additive ( [
fhir:modularType [
fhir:concept [
fhir:coding ( [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/entformula-additive"^^xsd:anyURI ] ;
fhir:code [ fhir:v "carbohydrate" ] ;
fhir:display [ fhir:v "Carbohydrate" ]
] )
]
] ;
fhir:productName [ fhir:v "Acme High Carbohydrate Additive" ]
] ) . #
<http://hl7.org/fhir/Patient/example> a fhir:Patient .
<http://hl7.org/fhir/Encounter/example> a fhir:Encounter .
# -------------------------------------------------------------------------------------
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.