Files
ladill-care/database/data/assessments/mrs.v1.json
T
isaacclad 2ce4bc8993
Deploy Ladill Care / deploy (push) Successful in 1m26s
feat(assessments): layered clinical assessment engine end-to-end
Add a template-driven assessment system with universal intake, clinical
pathways, disease instruments (stroke MVP + extended, diabetes, and ten
specialty packs), scoring, patient outcome trends, REST/API + FHIR
export, and Enterprise org-level assessment analytics. Seed packs and
design/licensing docs ship for deploy and pre-GA review.
2026-07-16 22:58:09 +00:00

46 lines
1.9 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"template": {
"code": "mrs",
"name": "Modified Rankin Scale",
"category": "disease",
"version": 1,
"is_current": true,
"is_active": true,
"scoring_strategy": "single_value",
"description": "Global disability scale after stroke (06). Required on stroke pathway activation.",
"meta": {
"capture_roles": ["doctor"],
"specialty": "neurology",
"estimated_minutes": 2,
"pathway_codes": ["stroke"],
"attribution": "Modified Rankin Scale (mRS) — clinical instrument for educational/clinical use. Verify commercial redistribution rights before packaging for sale."
}
},
"questions": [
{
"code": "mrs_score",
"section": "Disability",
"label": "Modified Rankin Scale score",
"help_text": "Select the grade that best describes the patient.",
"answer_type": "score_item",
"is_required": true,
"sort_order": 1,
"score_key": "total",
"options": {
"min": 0,
"max": 6,
"choices": [
{ "code": "0", "label": "No symptoms at all", "score": 0 },
{ "code": "1", "label": "No significant disability despite symptoms; able to carry out all usual duties and activities", "score": 1 },
{ "code": "2", "label": "Slight disability; unable to carry out all previous activities, but able to look after own affairs without assistance", "score": 2 },
{ "code": "3", "label": "Moderate disability; requiring some help, but able to walk without assistance", "score": 3 },
{ "code": "4", "label": "Moderately severe disability; unable to walk without assistance and unable to attend to own bodily needs without assistance", "score": 4 },
{ "code": "5", "label": "Severe disability; bedridden, incontinent and requiring constant nursing care and attention", "score": 5 },
{ "code": "6", "label": "Dead", "score": 6 }
]
},
"validation": { "min": 0, "max": 6 }
}
]
}