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/fiberrestricteddiet (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 Low Fat and Fiber Restricted Diet Example

{
  "resourceType" : "NutritionOrder",
  "id" : "fiberrestricteddiet",
  "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" : "15108003",
        "display" : "Restricted fiber diet"
      },
      {
        "system" : "http://goodhealthhospital.org/diet-type-codes",
        "code" : "1000",
        "display" : "Fiber restricted"
      }],
      "text" : "Fiber restricted diet"
    },
    {
      "coding" : [{
        "system" : "http://snomed.info/sct",
        "code" : "16208003",
        "display" : "Low fat diet"
      },
      {
        "system" : "http://goodhealthhospital.org/diet-type-codes",
        "code" : "1100",
        "display" : "Low Fat"
      }],
      "text" : "Low fat diet"
    }],
    "schedule" : {
      "timing" : [{
        "repeat" : {
          "boundsPeriod" : {
            "start" : "2015-02-10"
          },
          "frequency" : 3,
          "period" : 1,
          "periodUnit" : "d"
        }
      }]
    },
    "nutrient" : [{
      "modifier" : {
        "coding" : [{
          "system" : "http://snomed.info/sct",
          "code" : "256674009",
          "display" : "Fat"
        }]
      },
      "amount" : {
        "value" : 50,
        "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.