Saltar al contenido principal

Conditions

The result.conclusions array represents the list of possible conditions identified, each with a probability and standardized coding. Every entry follows the same coding[] shape as condition.pathology: a proprietary entry plus an ICD-11 mapping.

"conclusions": [
{
"pathology": {
"coding": [
{
"code": "Psoriasis",
"display": "Psoriasis",
"system": "https://legit.health/integration/json-only/codes/conditions"
},
{
"code": "EA90",
"display": "Psoriasis",
"system": "ICD-11"
}
]
},
"probability": 100.0
},
...
]
  • pathology.coding[0].code: The code that identifies the condition (e.g. "Psoriasis"). Stable, human-readable internal identifier from the proprietary catalog.
  • pathology.coding[0].display: Human-friendly label for the condition (e.g. "Psoriasis").
  • pathology.coding[1]: The ICD-11 mapping of the same condition. system is the literal string "ICD-11" (with hyphen). code may be a single ICD-11 code (e.g. "EA90") or several comma-separated codes when one proprietary condition maps to multiple ICD-11 entries (e.g. "EA90.42, EA90.5Y"). code is null when no ICD-11 mapping has been recorded for that condition. display mirrors the proprietary display.
  • probability: The likelihood of this condition being correct, expressed as a percentage.