HealthReferenceDietaryRegime

Reference data entity for dietary regimes and meal restrictions. Defines standardized diet types for medical, allergy, religious, and lifestyle requirements.

Overview

HealthReferenceDietaryRegime provides a catalog of dietary regimes used in healthcare settings. Diets are categorized by their purpose: medical necessity, allergy avoidance, religious observance, or lifestyle choice. This reference data is used by PatientDietaryRegime to assign specific diets to patients.

Key Concepts

Diet Categories

Dietary regimes are organized by purpose:

CategoryPurposeExamples
medicalTherapeutic/treatment dietsDiabetic, renal, cardiac, NPO
allergyAllergen avoidanceGluten-free, nut-free, lactose-free
religiousFaith-based requirementsHalal, kosher
lifestylePersonal choiceVegetarian, vegan

Medical Diets

Prescribed for clinical conditions:

CodeDietIndication
DIABETICDiabetic DietBlood sugar control
LOW_SODIUMLow SodiumHypertension, heart failure
RENALRenal DietKidney disease
CARDIACCardiac DietHeart conditions
SOFTSoft DietSwallowing difficulties
LIQUIDLiquid DietPost-surgical, GI issues
NPONothing by MouthPre-operative, procedures

Allergy Diets

Exclude specific allergens:

CodeDietAvoids
GLUTEN_FREEGluten-FreeWheat, barley, rye
LACTOSE_FREELactose-FreeDairy products
NUT_FREENut-FreeTree nuts, peanuts

Religious Diets

Faith-based dietary laws:

CodeDietRequirements
HALALHalalIslamic dietary laws
KOSHERKosherJewish dietary laws

Lifestyle Diets

Personal dietary choices:

CodeDietExcludes
VEGETARIANVegetarianMeat, fish
VEGANVeganAll animal products

Diet Identification

Each regime record contains:

  • code - Unique diet code (e.g., "DIABETIC", "HALAL")
  • label - Human-readable name
  • category - Classification by purpose
  • description - Specific requirements and restrictions

Use Cases

Hospital Meal Service

When preparing patient meals:

  1. Query patient's active dietary regimes
  2. Apply all applicable restrictions
  3. Generate compliant menu options
  4. Label trays with diet codes
  5. Verify meals match requirements

Diet Order Entry

When prescribing a diet:

  1. Select appropriate diet from reference
  2. Link to patient via PatientDietaryRegime
  3. Specify duration (temporary vs. permanent)
  4. Document clinical reason
  5. Alert nutrition services

Pre-Operative Preparation

For surgical patients:

  1. Order NPO regime before procedure
  2. Set specific timing (midnight before)
  3. Progress to clear liquids post-op
  4. Advance diet as tolerated
  5. Document each progression

Allergy Accommodation

For patients with food allergies:

  1. Identify allergen-free diet requirement
  2. Cross-reference with patient allergies
  3. Ensure no cross-contamination
  4. Label meals with allergen warnings
  5. Verify kitchen compliance

Cultural Competency

For religious dietary needs:

  1. Identify patient's dietary preferences
  2. Source appropriate food supplies
  3. Ensure proper preparation methods
  4. Accommodate during religious observances
  5. Document for future admissions

Related Entities

EntityRelationshipDescription
PatientDietaryRegimeReferenced byPatient-specific diet assignments

Enums

category

ValueDescription
medicalTherapeutic diets prescribed for clinical conditions (diabetic, renal, cardiac, NPO)
allergyDiets that exclude specific allergens (gluten-free, nut-free, lactose-free)
religiousDiets following religious dietary laws (halal, kosher)
lifestyleDiets based on personal choice (vegetarian, vegan)
otherDietary regimes not fitting other categories
4 properties
Schema

Properties

PropertyTypeModeDescriptionRequired
codestring
stored

Unique code identifying the dietary regime

Example: "DIABETIC"

Required
labelstring
stored

Human-readable name of the dietary regime

Example: "Diabetic Diet"

Required
categorystring
stored

Category of dietary regime

Values: medical, allergy, religious, lifestyle, other

Example: "medical"

Required
descriptionstring
stored

Details about the dietary regime

Optional

Examples

Example 1

{
  "@type": "HealthReferenceDietaryRegime",
  "code": "DIABETIC",
  "label": "Diabetic Diet",
  "category": "medical",
  "description": "Low sugar and controlled carbohydrate diet"
}

Example 2

{
  "@type": "HealthReferenceDietaryRegime",
  "code": "LOW_SODIUM",
  "label": "Low Sodium Diet",
  "category": "medical",
  "description": "Reduced salt intake for hypertension or heart conditions"
}

Example 3

{
  "@type": "HealthReferenceDietaryRegime",
  "code": "RENAL",
  "label": "Renal Diet",
  "category": "medical",
  "description": "Restricted protein, sodium, potassium and phosphorus for kidney disease"
}

Example 4

{
  "@type": "HealthReferenceDietaryRegime",
  "code": "CARDIAC",
  "label": "Cardiac Diet",
  "category": "medical",
  "description": "Low fat, low cholesterol diet for heart conditions"
}

Example 5

{
  "@type": "HealthReferenceDietaryRegime",
  "code": "GLUTEN_FREE",
  "label": "Gluten-Free Diet",
  "category": "allergy",
  "description": "No gluten for celiac disease or gluten intolerance"
}

Example 6

{
  "@type": "HealthReferenceDietaryRegime",
  "code": "LACTOSE_FREE",
  "label": "Lactose-Free Diet",
  "category": "allergy",
  "description": "No dairy products for lactose intolerance"
}

Example 7

{
  "@type": "HealthReferenceDietaryRegime",
  "code": "NUT_FREE",
  "label": "Nut-Free Diet",
  "category": "allergy",
  "description": "No nuts or nut products for nut allergies"
}

Example 8

{
  "@type": "HealthReferenceDietaryRegime",
  "code": "HALAL",
  "label": "Halal Diet",
  "category": "religious",
  "description": "Food prepared according to Islamic dietary laws"
}

Example 9

{
  "@type": "HealthReferenceDietaryRegime",
  "code": "KOSHER",
  "label": "Kosher Diet",
  "category": "religious",
  "description": "Food prepared according to Jewish dietary laws"
}

Example 10

{
  "@type": "HealthReferenceDietaryRegime",
  "code": "VEGETARIAN",
  "label": "Vegetarian Diet",
  "category": "lifestyle",
  "description": "No meat or fish"
}

Example 11

{
  "@type": "HealthReferenceDietaryRegime",
  "code": "VEGAN",
  "label": "Vegan Diet",
  "category": "lifestyle",
  "description": "No animal products"
}

Example 12

{
  "@type": "HealthReferenceDietaryRegime",
  "code": "SOFT",
  "label": "Soft Diet",
  "category": "medical",
  "description": "Soft or pureed foods for swallowing difficulties"
}

Example 13

{
  "@type": "HealthReferenceDietaryRegime",
  "code": "LIQUID",
  "label": "Liquid Diet",
  "category": "medical",
  "description": "Clear or full liquids only"
}

Example 14

{
  "@type": "HealthReferenceDietaryRegime",
  "code": "NPO",
  "label": "Nothing by Mouth",
  "category": "medical",
  "description": "No food or drink, typically before surgery"
}