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/enteralcontinuous (JSON)

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

Raw JSON (canonical form + also see JSON Format Specification)

Nutrition Order Enteral Continuous Feeding Example

{
  "resourceType" : "NutritionOrder",
  "id" : "enteralcontinuous",
  "identifier" : [{
    "system" : "http://www.acme.org/nutritionorders",
    "value" : "123"
  }],
  "status" : "active",
  "intent" : "order",
  "subject" : {
    "reference" : "Patient/example",
    "display" : "Peter Chalmers"
  },
  "encounter" : {
    "reference" : "Encounter/example",
    "display" : "Inpatient"
  },
  "dateTime" : "2014-09-17",
  "orderer" : {
    "reference" : "Practitioner/example",
    "display" : "Dr Adam Careful"
  },
  "enteralFormula" : {
    "caloricDensity" : {
      "value" : 1,
      "unit" : "calories per milliliter",
      "system" : "http://unitsofmeasure.org",
      "code" : "cal/mL"
    },
    "routeOfAdministration" : [{
      "coding" : [{
        "system" : "http://terminology.hl7.org/CodeSystem/v3-RouteOfAdministration",
        "code" : "NGT",
        "display" : "Instillation, nasogastric tube"
      }]
    }],
    "administration" : [{
      "schedule" : {
        "timing" : [{
          "repeat" : {
            "boundsPeriod" : {
              "start" : "2014-09-17T07:00:00Z"
            }
          }
        }]
      },
      "rateQuantity" : {
        "value" : 60,
        "unit" : "ml/hr",
        "system" : "http://unitsofmeasure.org",
        "code" : "mL/h"
      }
    },
    {
      "schedule" : {
        "timing" : [{
          "repeat" : {
            "boundsPeriod" : {
              "start" : "2014-09-17T11:00:00Z"
            }
          }
        }]
      },
      "rateQuantity" : {
        "value" : 80,
        "unit" : "ml/hr",
        "system" : "http://unitsofmeasure.org",
        "code" : "mL/h"
      }
    },
    {
      "schedule" : {
        "timing" : [{
          "repeat" : {
            "boundsPeriod" : {
              "start" : "2014-09-17T15:00:00Z"
            }
          }
        }]
      },
      "rateQuantity" : {
        "value" : 100,
        "unit" : "ml/hr",
        "system" : "http://unitsofmeasure.org",
        "code" : "mL/h"
      }
    }],
    "administrationInstruction" : "Hold feedings from 7 pm to 7 am. Add MCT oil to increase calories from 1.0 cal/mL to 1.5 cal/mL"
  }
}

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.