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

{
  "resourceType" : "NutritionOrder",
  "id" : "renaldiet",
  "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" : "33489005",
        "display" : "Renal diet"
      },
      {
        "system" : "http://goodhealthhospital.org/diet-type-codes",
        "code" : "1050",
        "display" : "Renal"
      }],
      "text" : "Renal Diet"
    }],
    "schedule" : {
      "timing" : [{
        "repeat" : {
          "boundsPeriod" : {
            "start" : "2015-02-10"
          },
          "frequency" : 3,
          "period" : 1,
          "periodUnit" : "d"
        }
      }]
    },
    "nutrient" : [{
      "modifier" : {
        "coding" : [{
          "system" : "http://snomed.info/sct",
          "code" : "39972003",
          "display" : "Sodium"
        }]
      },
      "amount" : {
        "value" : 2,
        "unit" : "grams",
        "system" : "http://unitsofmeasure.org",
        "code" : "g"
      }
    },
    {
      "modifier" : {
        "coding" : [{
          "system" : "http://snomed.info/sct",
          "code" : "30820000",
          "display" : "Phosphorus"
        }]
      },
      "amount" : {
        "value" : 1000,
        "unit" : "milligrams",
        "system" : "http://unitsofmeasure.org",
        "code" : "mg"
      }
    },
    {
      "modifier" : {
        "coding" : [{
          "system" : "http://snomed.info/sct",
          "code" : "88480006",
          "display" : "Potassium"
        }]
      },
      "amount" : {
        "value" : 2,
        "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.