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/ambulatory-outpatient (Turtle)

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

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

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

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

<http://hl7.org/fhir/NutritionOrder/ambulatory-outpatient> a fhir:NutritionOrder ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "ambulatory-outpatient"] ; # 
  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 "Ambulatory/Outpatient" ]
  ] ; # 
  fhir:dateTime [ fhir:v "2024-10-23T00:00:00Z"^^xsd:dateTime] ; # 
  fhir:oralDiet [
     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" ]
       ] )
     ] [
       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" ]
       ] )
     ] )
  ] ; # 
  fhir:enteralFormula [
     fhir:caloricDensity [
       fhir:value [ fhir:v "750"^^xsd:decimal ] ;
       fhir:unit [ fhir:v "kcal" ] ;
       fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "kcal" ]
     ] ;
     fhir:routeOfAdministration ( [
       fhir:coding ( [
         fhir:system [ fhir:v "https://terminology.hl7.org/"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "GT" ] ;
         fhir:display [ fhir:v "Instillation, gastrostomy feeding" ]
       ] )
     ] ) ;
     fhir:administration ( [
       fhir:schedule [ ] ;
       fhir:quantity [
         fhir:value [ fhir:v "750"^^xsd:decimal ] ;
         fhir:unit [ fhir:v "mL" ] ;
         fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "mL" ]
       ]
     ] ) ;
     fhir:administrationInstruction [ fhir:v "750 mL of high-protein formula via bolus at 7:00 pm at 100ml/hr." ]
  ] . # 

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

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


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.