Files
ladill-care/database/data/assessments/orthopaedics_core.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

145 lines
3.1 KiB
JSON

{
"template": {
"code": "orthopaedics_core",
"name": "Orthopaedics assessment",
"category": "disease",
"version": 1,
"is_current": true,
"is_active": true,
"scoring_strategy": null,
"description": "Injury/region, pain, weight-bearing, fracture status.",
"meta": {
"capture_roles": [
"doctor",
"nurse"
],
"specialty": "orthopaedics",
"estimated_minutes": 8,
"pathway_codes": [
"orthopaedics"
],
"attribution": "Ladill Care Orthopaedics assessment content pack (platform-authored clinical checklist)."
}
},
"questions": [
{
"code": "region",
"section": "Injury",
"label": "Anatomical region",
"answer_type": "text",
"is_required": true,
"sort_order": 10,
"validation": {
"max": 5000
}
},
{
"code": "weight_bearing",
"section": "Function",
"label": "Weight-bearing status",
"answer_type": "single_choice",
"is_required": true,
"sort_order": 20,
"options": {
"choices": [
{
"code": "full",
"label": "Full"
},
{
"code": "partial",
"label": "Partial"
},
{
"code": "non",
"label": "Non-weight-bearing"
}
]
}
},
{
"code": "pain_score",
"section": "Symptoms",
"label": "Pain score (0\u201310)",
"answer_type": "scale",
"is_required": false,
"sort_order": 30,
"options": {
"min": 0,
"max": 10
},
"validation": {
"min": 0,
"max": 10
}
},
{
"code": "fracture_status",
"section": "Imaging",
"label": "Fracture status",
"answer_type": "single_choice",
"is_required": false,
"sort_order": 40,
"options": {
"choices": [
{
"code": "none",
"label": "No fracture"
},
{
"code": "suspected",
"label": "Suspected"
},
{
"code": "confirmed",
"label": "Confirmed"
},
{
"code": "healed",
"label": "Healing/healed"
}
]
}
},
{
"code": "operative_plan",
"section": "Plan",
"label": "Operative plan",
"answer_type": "single_choice",
"is_required": false,
"sort_order": 50,
"options": {
"choices": [
{
"code": "none",
"label": "Conservative"
},
{
"code": "planned",
"label": "Surgery planned"
},
{
"code": "done",
"label": "Post-op"
},
{
"code": "unknown",
"label": "Unknown"
}
]
}
},
{
"code": "notes",
"section": "Notes",
"label": "Notes",
"answer_type": "textarea",
"is_required": false,
"sort_order": 100,
"validation": {
"max": 5000
}
}
]
}