diff --git a/services/app-api/forms/cmit.ts b/services/app-api/forms/cmit.ts index 773d72ef..70ea0d6b 100644 --- a/services/app-api/forms/cmit.ts +++ b/services/app-api/forms/cmit.ts @@ -58,6 +58,16 @@ 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], + deliverySystem: [DeliverySystem.MLTSS], + dataSource: DataSource.Hybrid, + options: "", + }, { cmit: 20, name: "LTSS-6: Admission to a Facility from the Community", diff --git a/services/app-api/forms/qm.ts b/services/app-api/forms/qm.ts index 5f6beecf..56df7352 100644 --- a/services/app-api/forms/qm.ts +++ b/services/app-api/forms/qm.ts @@ -889,7 +889,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, }; diff --git a/services/ui-src/src/cmit.ts b/services/ui-src/src/cmit.ts index 58ea0edf..0781dea8 100644 --- a/services/ui-src/src/cmit.ts +++ b/services/ui-src/src/cmit.ts @@ -54,6 +54,16 @@ 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], + deliverySystem: [DeliverySystem.MLTSS], + dataSource: DataSource.Hybrid, + options: "", + }, { cmit: 20, name: "LTSS-6: Admission to a Facility from the Community",