Skip to content

Commit

Permalink
add api files for ltss-5
Browse files Browse the repository at this point in the history
  • Loading branch information
Rocio De Santiago authored and Rocio De Santiago committed Dec 11, 2024
1 parent c8b9ef8 commit 7e199af
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 1 deletion.
13 changes: 13 additions & 0 deletions services/app-api/forms/cmit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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: "",
},
];
58 changes: 57 additions & 1 deletion services/app-api/forms/qm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<MeasureTemplateName, MeasurePageTemplate>,
};

0 comments on commit 7e199af

Please sign in to comment.