feat(assessments): layered clinical assessment engine end-to-end
Deploy Ladill Care / deploy (push) Successful in 1m26s
Deploy Ladill Care / deploy (push) Successful in 1m26s
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.
This commit is contained in:
@@ -0,0 +1,137 @@
|
||||
{
|
||||
"template": {
|
||||
"code": "dementia_core",
|
||||
"name": "Dementia assessment",
|
||||
"category": "disease",
|
||||
"version": 1,
|
||||
"is_current": true,
|
||||
"is_active": true,
|
||||
"scoring_strategy": null,
|
||||
"description": "MMSE/MoCA scores, ADL, behaviour, caregiver burden.",
|
||||
"meta": {
|
||||
"capture_roles": [
|
||||
"doctor",
|
||||
"nurse"
|
||||
],
|
||||
"specialty": "neurology",
|
||||
"estimated_minutes": 8,
|
||||
"pathway_codes": [
|
||||
"dementia"
|
||||
],
|
||||
"attribution": "Ladill Care Dementia assessment content pack (platform-authored clinical checklist)."
|
||||
}
|
||||
},
|
||||
"questions": [
|
||||
{
|
||||
"code": "mmse",
|
||||
"section": "Cognition",
|
||||
"label": "MMSE score (0\u201330)",
|
||||
"answer_type": "number",
|
||||
"is_required": false,
|
||||
"sort_order": 10,
|
||||
"options": {
|
||||
"min": 0,
|
||||
"max": 30
|
||||
},
|
||||
"validation": {
|
||||
"min": 0,
|
||||
"max": 30
|
||||
}
|
||||
},
|
||||
{
|
||||
"code": "moca",
|
||||
"section": "Cognition",
|
||||
"label": "MoCA score (0\u201330)",
|
||||
"answer_type": "number",
|
||||
"is_required": false,
|
||||
"sort_order": 20,
|
||||
"options": {
|
||||
"min": 0,
|
||||
"max": 30
|
||||
},
|
||||
"validation": {
|
||||
"min": 0,
|
||||
"max": 30
|
||||
}
|
||||
},
|
||||
{
|
||||
"code": "adl",
|
||||
"section": "Function",
|
||||
"label": "ADL independence",
|
||||
"answer_type": "single_choice",
|
||||
"is_required": true,
|
||||
"sort_order": 30,
|
||||
"options": {
|
||||
"choices": [
|
||||
{
|
||||
"code": "independent",
|
||||
"label": "Independent"
|
||||
},
|
||||
{
|
||||
"code": "partial",
|
||||
"label": "Partial help"
|
||||
},
|
||||
{
|
||||
"code": "dependent",
|
||||
"label": "Dependent"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"code": "behavioural_symptoms",
|
||||
"section": "Behaviour",
|
||||
"label": "Behavioural symptoms",
|
||||
"answer_type": "single_choice",
|
||||
"is_required": false,
|
||||
"sort_order": 40,
|
||||
"options": {
|
||||
"choices": [
|
||||
{
|
||||
"code": "none",
|
||||
"label": "None"
|
||||
},
|
||||
{
|
||||
"code": "mild",
|
||||
"label": "Mild"
|
||||
},
|
||||
{
|
||||
"code": "moderate",
|
||||
"label": "Moderate"
|
||||
},
|
||||
{
|
||||
"code": "severe",
|
||||
"label": "Severe"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"code": "caregiver_burden",
|
||||
"section": "Caregiver",
|
||||
"label": "Caregiver burden (0\u201310)",
|
||||
"answer_type": "scale",
|
||||
"is_required": false,
|
||||
"sort_order": 50,
|
||||
"options": {
|
||||
"min": 0,
|
||||
"max": 10
|
||||
},
|
||||
"validation": {
|
||||
"min": 0,
|
||||
"max": 10
|
||||
}
|
||||
},
|
||||
{
|
||||
"code": "notes",
|
||||
"section": "Notes",
|
||||
"label": "Notes",
|
||||
"answer_type": "textarea",
|
||||
"is_required": false,
|
||||
"sort_order": 100,
|
||||
"validation": {
|
||||
"max": 5000
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user