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/cardiacdiet (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 Sodium and Fluid Restricted Diet Example

{
  "resourceType" : "NutritionOrder",
  "id" : "cardiacdiet",
  "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" : "386619000",
        "display" : "Low sodium diet"
      },
      {
        "system" : "http://goodhealthhospital.org/diet-type-codes",
        "code" : "1040",
        "display" : "Low Sodium Diet"
      }],
      "text" : "Low sodium diet"
    },
    {
      "coding" : [{
        "system" : "http://snomed.info/sct",
        "code" : "226208002",
        "display" : "Fluid restricted diet"
      },
      {
        "system" : "http://goodhealthhospital.org/diet-type-codes",
        "code" : "1040",
        "display" : "Fluid restricted diet"
      }],
      "text" : "Fluid restricted diet"
    }],
    "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" : "33463005",
          "display" : "Fluid"
        }]
      },
      "amount" : {
        "value" : 1500,
        "unit" : "milliliter",
        "system" : "http://unitsofmeasure.org",
        "code" : "mL"
      }
    }],
    "instruction" : "Starting on 2/10 breakfast, maximum 400 ml fluids per meal"
  }
}

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.