Search



Page tree

  

Nutrition Intervention Data and Associated FHIR Resources

Nutrition Intervention involves planning and implementing actions to address the nutrition diagnosis.

Several FHIR resources can be used to document these interventions:

  • NutritionOrder Resource : Documents detailed nutrition care plans and orders.
  • NutritionProduct Resource: Documents foods, fluids and oral nutrition supplements consumed by the patient.
  • Procedure Resource: Records specific nutrition-related procedures and interventions.

  • CarePlan Resource: Provides a comprehensive plan of care that includes nutrition interventions.

Types of Data CollectedPurposeExampleFHIR Resource
Food and Nutrient DeliveryDocument specific details of diets, oral supplements, or enteral/parenteral nutrition plans, including prescribed nutrition interventions.High-protein diet, Tube feeding with formulaNutritionOrder, NutritionProduct
Timing and FrequencySpecify schedules for meals, oral supplements (e.g., protein shakes), or other forms of nutrition support.TPN daily at night, Supplements twice dailyNutritionOrder
Nutrition CounselingCapture details of counseling sessions and educational interventions to improve nutrition knowledge or behavior.Nutrition education session on diabetic dietProcedure
Feeding Tube PlacementRecord details of procedures related to the placement of feeding tubes for enteral nutrition support.Placement of nasogastric feeding tubeProcedure
Goals and ObjectivesOutline specific, measurable nutrition-related goals that guide the overall care plan.Increase weight by 2 kg in 1 monthCarePlan
Activities and InterventionsCoordinate actions such as administering supplements, monitoring tube feeding, or adjusting dietary plans as needed.Administer supplements, Monitor tube feedingCarePlan

Examples

Nutrition Order

This example demonstrates how the NutritionOrder resource can be used to document and manage dietary requirements, restrictions, and preferences for a patient. It illustrates a comprehensive cardiac diet order for an inpatient, including specific instructions, nutrient modifications, and food exclusions.

Key features highlighted in this example:

  • Diet Type: Includes a low sodium diet and fluid-restricted diet to address cardiac health needs.
  • Nutrient Specifications: Details on limiting sodium intake to 2 grams per day and fluids to 1500 milliliters per day.
  • Allergies and Exclusions: Accounts for patient-specific allergies (e.g., cashew nuts) and excludes related food items.
  • Personalization: Modifiers for food preferences, such as dairy-free options, to cater to the patient’s dietary needs and preferences.
  • Instructions: Provides specific guidance on meal preparation and fluid allowances.

This example is based on the official FHIR documentation and showcases how NutritionOrder supports structured, interoperable dietary management in healthcare.

For more examples and detailed use cases, refer to the FHIR NutritionOrder documentation and FHIR NutritionOrder examples.


Nutrition Order
{
  "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"
  }
}  

Feedback
  • No labels