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/diabeticsupplement (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 Diabetic Supplement Example

{
  "resourceType" : "NutritionOrder",
  "id" : "diabeticsupplement",
  "identifier" : [{
    "system" : "http://goodhealthhospital.org/nutrition-requests",
    "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"
  },
  "allergyIntolerance" : [{
    "reference" : "AllergyIntolerance/example",
    "display" : "Cashew Nuts"
  }],
  "foodPreferenceModifier" : [{
    "coding" : [{
      "system" : "http://terminology.hl7.org/CodeSystem/diet",
      "code" : "kosher"
    }]
  }],
  "excludeFoodModifier" : [{
    "coding" : [{
      "system" : "http://snomed.info/sct",
      "code" : "227493005",
      "display" : "Cashew Nut"
    }]
  }],
  "supplement" : [{
    "type" : {
      "concept" : {
        "coding" : [{
          "system" : "http://snomed.info/sct",
          "code" : "443051000124104",
          "display" : "Adult diabetic specialty formula"
        },
        {
          "system" : "http://goodhealthhospital.org/supplement-type-codes",
          "code" : "1010",
          "display" : "Adult diabetic formula"
        }],
        "text" : "Adult diabetic formula"
      }
    },
    "productName" : "Glucerna",
    "schedule" : {
      "timing" : [{
        "repeat" : {
          "boundsPeriod" : {
            "start" : "2015-02-10T15:00:00Z"
          },
          "frequency" : 1,
          "period" : 24,
          "periodUnit" : "h"
        }
      },
      {
        "repeat" : {
          "duration" : 1,
          "durationUnit" : "h",
          "when" : ["HS"]
        }
      }]
    },
    "quantity" : {
      "value" : 1,
      "unit" : "8 oz bottle"
    }
  }]
}

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.