FHIR CI-Build

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

Example NutritionIntake/enteral-formula (Turtle)

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

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

Enteral Formula Intake

@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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

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

<http://hl7.org/fhir/NutritionIntake/enteral-formula> a fhir:NutritionIntake ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "enteral-formula"] ; # 
  fhir:status [ fhir:v "completed"] ; # 
  fhir:subject [
     fhir:display [ fhir:v "Paula Patient Chalmers" ]
  ] ; # 
  fhir:nutritionItem ( [
     fhir:type [
       fhir:coding ( [
         fhir:system [ fhir:v "http://hl7.org/fhir/CodeSystem/nutrition-product-category"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "enteral-formula" ] ;
         fhir:display [ fhir:v "Enteral formula" ]
       ] )
     ] ;
     fhir:nutritionProduct [
       fhir:reference [
         fhir:link <http://hl7.org/fhir/NutritionProduct/high-protein-formula> ;
         fhir:reference [ fhir:v "NutritionProduct/high-protein-formula" ]
       ]
     ] ;
     fhir:consumedItem ( [
       fhir:schedule [
         fhir:repeat [
           fhir:frequency [ fhir:v "1"^^xsd:positiveInteger ] ;
           fhir:timeOfDay ( [ fhir:v "19:00:00"^^xsd:time ] )
         ]
       ] ;
       fhir:amount [
         fhir:value [ fhir:v "711"^^xsd:decimal ] ;
         fhir:unit [ fhir:v "ml" ] ;
         fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "ml" ]
       ] ;
       fhir:totalIntake ( [
         fhir:nutrient [
           fhir:concept [
             fhir:coding ( [
               fhir:system [ fhir:v "http://hl7.org/fhir/CodeSystem/nutrient-code"^^xsd:anyURI ] ;
               fhir:code [ fhir:v "735252001" ] ;
               fhir:display [ fhir:v "Protein and/or protein derivative (substance)" ]
             ] )
           ]
         ] ;
         fhir:amount [
           fhir:value [ fhir:v "45"^^xsd:decimal ] ;
           fhir:unit [ fhir:v "grams" ] ;
           fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
           fhir:code [ fhir:v "g" ]
         ] ;
         fhir:energy [
           fhir:value [ fhir:v "711"^^xsd:decimal ] ;
           fhir:unit [ fhir:v "kilocalories" ] ;
           fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
           fhir:code [ fhir:v "kcal" ]
         ]
       ] )
     ] )
  ] [
     fhir:type [
       fhir:coding ( [
         a sct:1255823003 ;
         fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "1255823003" ] ;
         fhir:display [ fhir:v "International Dysphagia Diet Standardisation Initiative Framework - Minced and Moist Level 5 food (regime/therapy)" ]
       ] )
     ] ;
     fhir:nutritionProduct [
       fhir:concept [
         fhir:text [ fhir:v "IDDSI Minced and Moist Level 5 foods" ]
       ]
     ] ;
     fhir:consumedItem ( [
       fhir:amount [
         fhir:value [ fhir:v "50"^^xsd:decimal ] ;
         fhir:unit [ fhir:v "%" ] ;
         fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "%" ]
       ]
     ] )
  ] [
     fhir:type [
       fhir:coding ( [
         a sct:1255822008 ;
         fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "1255822008" ] ;
         fhir:display [ fhir:v "International Dysphagia Diet Standardisation Initiative Framework - Mildly Thick Level 2 drinks (regime/therapy)" ]
       ] )
     ] ;
     fhir:nutritionProduct [
       fhir:concept [
         fhir:text [ fhir:v "IDDSI Mildly Thick Level 2 drinks" ]
       ]
     ] ;
     fhir:consumedItem ( [
       fhir:amount [
         fhir:value [ fhir:v "50"^^xsd:decimal ] ;
         fhir:unit [ fhir:v "%" ] ;
         fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "%" ]
       ]
     ] )
  ] ) . # 

<http://hl7.org/fhir/NutritionProduct/high-protein-formula> a fhir:NutritionProduct .

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


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.