diff --git a/services/app-api/forms/cmit.ts b/services/app-api/forms/cmit.ts index fd64de51..25c680d0 100644 --- a/services/app-api/forms/cmit.ts +++ b/services/app-api/forms/cmit.ts @@ -32,4 +32,17 @@ export const CMIT_LIST: CMIT[] = [ dataSource: DataSource.Hybrid, options: "", }, + { + cmit: 1255, + name: "LTSS-5: Screening, Risk Assessment, and Plan of Care to Prevent Future Falls", + uid: "1255", + measureSteward: "CMS", + measureSpecification: [ + MeasureSpecification.CMS, + MeasureSpecification.HEDIS, + ], + deliverySystem: [], + dataSource: DataSource.Hybrid, + options: "", + }, ]; diff --git a/services/app-api/forms/qm.ts b/services/app-api/forms/qm.ts index 233f8370..4f089695 100644 --- a/services/app-api/forms/qm.ts +++ b/services/app-api/forms/qm.ts @@ -473,7 +473,63 @@ export const qmReportTemplate: ReportTemplate = { "LTSS-5: Screening, Risk Assessment, and Plan of Care to Prevent Future Falls", type: PageType.Measure, sidebar: false, - elements: [], + elements: [ + { + type: ElementType.ButtonLink, + label: "Return to Optional Measures Dashboard", + to: "optional-measure-result", + }, + { + type: ElementType.Header, + text: "{measureName}", + }, + { + type: ElementType.Accordion, + label: "Instructions", + value: + "[Optional instructional content that could support the user in completing this page]", + }, + { + type: ElementType.SubHeader, + text: "Measure Details", + }, + { + type: ElementType.Radio, + label: "Were the reported measure results audited or validated?", + value: [ + { label: "No, I am reporting on this measure", value: "no" }, + { + label: "Yes, CMS is reporting on my behalf", + value: "yes", + checkedChildren: [ + { + type: ElementType.Textbox, + label: + "What is the name of the agency of entity that audited or validated the report?", + }, + ], + }, + ], + }, + { + type: ElementType.Radio, + label: + "Did you deviate from the [reportYear] Technical Specifications?", + value: [ + { label: "No", value: "no" }, + { + label: "Yes", + value: "yes", + checkedChildren: [ + { + type: ElementType.Textbox, + label: "Please explain the deviation.", + }, + ], + }, + ], + }, + ], }, } as Record, };