PatientMedicalCondition
Reference data entity for medical conditions and diagnoses with standardized coding. Provides a catalog of conditions using ICD-10, ICD-11, or SNOMED-CT codes for consistent documentation across healthcare systems.
Overview
PatientMedicalCondition defines medical conditions that can be assigned to patients. Each condition is identified by a standardized code from recognized medical coding systems (ICD-10, SNOMED-CT), categorized by type (chronic, acute, infectious), and includes human-readable descriptions. This reference data ensures consistent condition documentation, enables interoperability, and supports clinical analytics.
Key Concepts
Medical Coding Systems
Conditions are coded using standard terminologies:
| System | Full Name | Usage |
|---|---|---|
| ICD-10 | International Classification of Diseases, 10th Revision | Billing, statistics, most common worldwide |
| ICD-11 | International Classification of Diseases, 11th Revision | Newer standard, gradual adoption |
| SNOMED-CT | Systematized Nomenclature of Medicine - Clinical Terms | Detailed clinical documentation |
| other | Other systems | Legacy or regional coding systems |
Condition Categories
The category field groups conditions by clinical type:
By Duration
chronic- Long-term conditions requiring ongoing management (diabetes, hypertension)acute- Short-term conditions that resolve (pneumonia, fractures)
By Cause/Nature
infectious- Caused by pathogens (COVID-19, tuberculosis)genetic- Inherited conditions (cystic fibrosis, sickle cell)autoimmune- Immune system attacking own tissue (lupus, rheumatoid arthritis)metabolic- Metabolism disorders (diabetes, thyroid conditions)
By Body System
cardiovascular- Heart and blood vessel conditionsrespiratory- Lung and airway conditionsneurological- Brain and nervous system conditionsmental-health- Psychiatric and psychological conditionsother- Conditions not fitting above categories
Condition Identification
Each condition record contains:
code- Standardized code (e.g., "E11.9" for Type 2 Diabetes)system- Which coding system the code belongs tolabel- Human-readable condition namedescription- Additional clinical details
Use Cases
Problem List Documentation
When adding to patient's problem list:
- Search conditions by label or code
- Select matching condition from reference
- Link to patient with status and dates
- Associate with PatientConditionStatus for tracking
Clinical Decision Support
For automated alerts and recommendations:
- Query patient's active conditions by code
- Check for drug-condition interactions
- Apply condition-specific clinical rules
- Generate appropriate care recommendations
Billing and Claims
When coding for reimbursement:
- Select conditions with ICD-10 codes
- Ensure code specificity requirements met
- Link conditions to encounters and procedures
- Submit accurate diagnosis codes on claims
Analytics and Reporting
For population health:
- Query conditions by category
- Identify patients with chronic conditions
- Track disease prevalence trends
- Generate quality measure reports
Interoperability
When exchanging patient data:
- Use standard codes (ICD-10, SNOMED-CT)
- Include both code and coding system
- Map between systems if needed
- Ensure receiving system can interpret codes
Related Entities
| Entity | Relationship | Description |
|---|---|---|
| PatientConditionStatus | Used with | Status tracking for patient-specific conditions |
| PatientDietaryRegime | Referenced by | Dietary regimes linked to medical conditions |
| Diagnosis | Used by | Diagnosis records that reference conditions |
Enums
system
| Value | Description |
|---|---|
ICD-10 | International Classification of Diseases, 10th Revision - WHO standard for diagnostic coding |
ICD-11 | International Classification of Diseases, 11th Revision - Latest WHO classification standard |
SNOMED-CT | Systematized Nomenclature of Medicine - Clinical terminology for detailed clinical concepts |
other | Other coding systems not listed above |
category
| Value | Description |
|---|---|
chronic | Long-term conditions requiring ongoing management |
acute | Short-term conditions that typically resolve |
infectious | Conditions caused by bacteria, viruses, or other pathogens |
genetic | Inherited or gene-related conditions |
autoimmune | Conditions where immune system attacks own tissues |
metabolic | Conditions affecting metabolism and biochemical processes |
cardiovascular | Heart and circulatory system conditions |
respiratory | Lung and airway conditions |
neurological | Brain and nervous system conditions |
mental-health | Psychiatric and psychological conditions |
other | Conditions not fitting other categories |
Properties
| Property | Type | Mode | Description | Required |
|---|---|---|---|---|
| code | string | stored | Standardized condition code Example: | Required |
| system | string | stored | Coding system used Values: Example: | Required |
| label | string | stored | Human-readable name of the condition Example: | Required |
| category | string | stored | Category of condition Values: Example: | Optional |
| description | string | stored | Additional details about the condition | Optional |
Examples
Example 1
{
"@type": "PatientMedicalCondition",
"code": "E11.9",
"system": "ICD-10",
"label": "Type 2 Diabetes Mellitus",
"category": "metabolic",
"description": "Chronic metabolic disorder characterized by high blood sugar"
}Example 2
{
"@type": "PatientMedicalCondition",
"code": "I10",
"system": "ICD-10",
"label": "Essential Hypertension",
"category": "cardiovascular",
"description": "Persistently elevated arterial blood pressure"
}Example 3
{
"@type": "PatientMedicalCondition",
"code": "J45.20",
"system": "ICD-10",
"label": "Mild Intermittent Asthma",
"category": "respiratory",
"description": "Chronic inflammatory disease of the airways"
}Example 4
{
"@type": "PatientMedicalCondition",
"code": "F32.1",
"system": "ICD-10",
"label": "Major Depressive Disorder",
"category": "mental-health",
"description": "Mood disorder causing persistent feelings of sadness"
}Example 5
{
"@type": "PatientMedicalCondition",
"code": "M54.5",
"system": "ICD-10",
"label": "Low Back Pain",
"category": "other",
"description": "Pain in the lumbar region of the spine"
}