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/diabeticdiet (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 Diet Example

{
  "resourceType" : "NutritionOrder",
  "id" : "diabeticdiet",
  "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" : "dairy-free"
    }]
  }],
  "excludeFoodModifier" : [{
    "coding" : [{
      "system" : "http://snomed.info/sct",
      "code" : "227493005",
      "display" : "Cashew Nut"
    }]
  }],
  "oralDiet" : {
    "type" : [{
      "coding" : [{
        "system" : "http://snomed.info/sct",
        "code" : "160670007",
        "display" : "Diabetic diet"
      },
      {
        "system" : "http://goodhealthhospital.org/diet-type-codes",
        "code" : "1030",
        "display" : "DD - Diabetic diet"
      }],
      "text" : "DD - Diabetic diet"
    }],
    "schedule" : {
      "timing" : [{
        "repeat" : {
          "boundsPeriod" : {
            "start" : "2015-02-10"
          },
          "frequency" : 3,
          "period" : 1,
          "periodUnit" : "d"
        }
      }]
    },
    "nutrient" : [{
      "modifier" : {
        "coding" : [{
          "system" : "http://snomed.info/sct",
          "code" : "2331003",
          "display" : "Carbohydrate"
        }]
      },
      "amount" : {
        "value" : 75,
        "unit" : "grams",
        "system" : "http://unitsofmeasure.org",
        "code" : "g"
      }
    }]
  }
}

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.