HealthReferenceSeverity

Reference data entity for severity levels of medical conditions, reactions, and clinical findings. Provides a standardized scale for assessing clinical urgency and risk.

Overview

HealthReferenceSeverity defines a consistent severity scale used across healthcare entities. The scale ranges from low (mild symptoms, minimal risk) to life-threatening (immediate danger). Each level includes a sort order for proper sequencing in displays and alerts. This enables consistent severity assessment for allergies, diagnoses, symptoms, and adverse reactions.

Key Concepts

Severity Scale

The standard severity levels with clinical interpretation:

OrderCodeLabelClinical Meaning
0UNABLE_TO_ASSESSUnable to assessCannot determine severity
1LOWLowMild symptoms, minimal risk, self-limiting
2MODERATEModerateNoticeable symptoms, requires attention
3HIGHHighSevere symptoms, significant risk
4LIFE_THREATENINGLife-threateningCritical, immediate danger to life

Order Field

The order field enables:

  • Proper sorting (most severe first or last)
  • Numeric comparisons (severity >= HIGH)
  • Alert escalation thresholds
  • Clinical decision rules

Clinical Applications

Severity is used to assess:

ContextLowModerateHighLife-threatening
AllergyMild rashSignificant hivesSevere swellingAnaphylaxis
PainMild discomfortInterferes with activityIncapacitatingExcruciating
InfectionLocalized, minorSpreading, systemic signsSepsisSeptic shock
BleedingMinor, controlledRequires interventionSignificant blood lossHemorrhagic shock

Alert Levels

Severity drives clinical alerting:

SeverityAlert TypeResponse
LowInformationalDocument, monitor
ModerateWarningReview, consider action
HighHard alertAction required
Life-threateningCritical alertImmediate intervention

Use Cases

Allergy Severity

When documenting allergies:

  1. Assess reaction severity based on manifestations
  2. Select appropriate severity level
  3. Drive alert behavior in prescribing
  4. Guide epinephrine prescription decisions

Triage Assessment

During emergency triage:

  1. Evaluate patient condition severity
  2. Assign severity for prioritization
  3. Route to appropriate care level
  4. Trigger rapid response if life-threatening

Clinical Decision Support

For automated alerts:

  1. Configure alert thresholds by severity
  2. Escalate high/life-threatening findings
  3. Suppress low-severity informational alerts
  4. Customize by clinical context

Risk Stratification

For population health:

  1. Identify high-severity conditions
  2. Prioritize care management
  3. Allocate resources by severity
  4. Track severity changes over time

Quality Reporting

For outcome measurement:

  1. Report adverse event severity
  2. Track severity distribution
  3. Benchmark against standards
  4. Identify severity reduction opportunities

Related Entities

EntityRelationshipDescription
PatientAllergyReferenced byAllergy severity assessment
DiagnosisReferenced byDiagnosis severity classification
AdverseEventReferenced byAdverse event severity rating

Standard Values

CodeLabelOrderDescription
UNABLE_TO_ASSESSUnable to assess0Severity cannot be determined due to insufficient information
LOWLow1Mild symptoms with minimal risk, typically self-limiting
MODERATEModerate2Noticeable symptoms requiring attention, manageable risk
HIGHHigh3Severe symptoms with significant risk, requires intervention
LIFE_THREATENINGLife-threatening4Critical symptoms with immediate danger to life
4 properties
Schema

Properties

PropertyTypeModeDescriptionRequired
codestring
stored

Unique code identifying the severity level

Example: "HIGH"

Required
labelstring
stored

Human-readable name of the severity level

Example: "High"

Required
ordernumber
stored

Sort order for severity levels (higher = more severe)

Example: 3

Required
descriptionstring
stored

Description of what this severity level means

Optional

Examples

Example 1

{
  "@type": "HealthReferenceSeverity",
  "code": "LOW",
  "label": "Low",
  "order": 1,
  "description": "Mild symptoms, minimal risk"
}

Example 2

{
  "@type": "HealthReferenceSeverity",
  "code": "MODERATE",
  "label": "Moderate",
  "order": 2,
  "description": "Noticeable symptoms, manageable risk"
}

Example 3

{
  "@type": "HealthReferenceSeverity",
  "code": "HIGH",
  "label": "High",
  "order": 3,
  "description": "Severe symptoms, significant risk"
}

Example 4

{
  "@type": "HealthReferenceSeverity",
  "code": "LIFE_THREATENING",
  "label": "Life-threatening",
  "order": 4,
  "description": "Critical symptoms, immediate danger to life"
}

Example 5

{
  "@type": "HealthReferenceSeverity",
  "code": "UNABLE_TO_ASSESS",
  "label": "Unable to assess",
  "order": 0,
  "description": "Severity cannot be determined"
}