From cf14febc68aeecdaf93e82ec2ff32c4cc39426e4 Mon Sep 17 00:00:00 2001 From: James Dinh Date: Wed, 8 Jan 2025 10:09:06 -0800 Subject: [PATCH 01/11] fix(initial verbiage fix): Email verbiage fixes from qa (#974) * correct verbage for med and chip spa * fix issues with verbiage need confirmation * remove comment * add date and attachment logic * update snapshots * Update ChipSpaState.tsx --- lib/libs/email/content/email-components.tsx | 13 +- .../emailTemplates/ChipSpaCMS.tsx | 2 +- .../emailTemplates/ChipSpaState.tsx | 26 +- .../emailTemplates/MedSpaState.tsx | 4 +- .../emailTemplates/Waiver1915bCMS.tsx | 8 +- .../emailTemplates/Waiver1915bState.tsx | 18 +- .../email/content/new-submission/index.tsx | 6 +- .../respondToRai/emailTemplates/MedSpaCMS.tsx | 2 +- .../InitialSubmissionCMS.test.tsx.snap | 2044 ++++++++++++----- .../InitialSubmissionState.test.tsx.snap | 1578 +++++-------- .../__snapshots__/ResToRaiCMS.test.tsx.snap | 1146 +++++---- .../__snapshots__/ResToRaiState.test.tsx.snap | 86 +- .../__snapshots__/UpSubDocCMS.test.tsx.snap | 1549 +++++++++---- .../__snapshots__/UpSubDocState.test.tsx.snap | 1549 +++++++++---- .../WithdrawPackageState.test.tsx.snap | 30 +- .../__snapshots__/WithdrwRaiCMS.test.tsx.snap | 550 +++-- .../WithdrawRaiState.test.tsx.snap | 250 +- .../WithdrawConfirmationState.test.tsx.snap | 30 +- .../shared-types/events/capitated-initial.ts | 24 +- .../events/contracting-initial.ts | 9 +- lib/packages/shared-utils/action-type.ts | 3 + lib/packages/shared-utils/date-helper.ts | 11 +- lib/packages/shared-utils/index.ts | 1 + 23 files changed, 5743 insertions(+), 3196 deletions(-) create mode 100644 lib/packages/shared-utils/action-type.ts diff --git a/lib/libs/email/content/email-components.tsx b/lib/libs/email/content/email-components.tsx index 7f070719c6..12712ad7d8 100644 --- a/lib/libs/email/content/email-components.tsx +++ b/lib/libs/email/content/email-components.tsx @@ -156,7 +156,12 @@ const Attachments = ({ verticalAlign: "top", }} > - {group.label}: + {group.files.map((file, index) => ( + + {group.label}:{" "} + {index < (group.files?.length ?? 0) - 1 &&
} +
+ ))} @@ -218,9 +223,11 @@ const MailboxNotice = ({ type }: { type: "SPA" | "Waiver" }) => ( const FollowUpNotice = ({ isChip, includeStateLead = true, + includeDidNotExpect = true, }: { isChip?: boolean; includeStateLead?: boolean; + includeDidNotExpect?: boolean; }) => ( <> @@ -237,7 +244,9 @@ const FollowUpNotice = ({ ) : (
- If you have any questions or did not expect this email, please contact{" "} + {`If you have any questions${ + includeDidNotExpect ? " or did not expect this email" : "" + }, please contact `} {EMAIL_CONFIG.SPA_EMAIL} diff --git a/lib/libs/email/content/new-submission/emailTemplates/ChipSpaCMS.tsx b/lib/libs/email/content/new-submission/emailTemplates/ChipSpaCMS.tsx index 663728a594..0713a4b0bd 100644 --- a/lib/libs/email/content/new-submission/emailTemplates/ChipSpaCMS.tsx +++ b/lib/libs/email/content/new-submission/emailTemplates/ChipSpaCMS.tsx @@ -27,7 +27,7 @@ export const ChipSpaCMSEmail = (props: { details={{ "State or Territory": variables.territory, Name: variables.submitterName, - Email: variables.submitterEmail, + "Email Address": variables.submitterEmail, "CHIP SPA Package ID": variables.id, Summary: variables.additionalInformation, }} diff --git a/lib/libs/email/content/new-submission/emailTemplates/ChipSpaState.tsx b/lib/libs/email/content/new-submission/emailTemplates/ChipSpaState.tsx index 54d363bed5..e891196ad8 100644 --- a/lib/libs/email/content/new-submission/emailTemplates/ChipSpaState.tsx +++ b/lib/libs/email/content/new-submission/emailTemplates/ChipSpaState.tsx @@ -1,12 +1,7 @@ import { Events } from "shared-types"; import { CommonEmailVariables } from "shared-types"; -import { Text } from "@react-email/components"; -import { - PackageDetails, - FollowUpNotice, - DetailsHeading, - MailboxNotice, -} from "../../email-components"; +import { Link, Text } from "@react-email/components"; +import { PackageDetails, DetailsHeading } from "../../email-components"; import { BaseEmailTemplate } from "../../email-templates"; import { styles } from "../../email-styles"; @@ -15,21 +10,21 @@ export const ChipSpaStateEmail = (props: { }) => { const variables = props.variables; const previewText = `CHIP SPA ${variables.id} Submitted`; - const heading = "This response confirms the submission of your CHIP State Plan Amendment to CMS:"; + const heading = + "This is confirmation that you submitted a CHIP State Plan Amendment to CMS for review:"; return ( } > - + + {" "} + If you have questions or did not expect this email, please contact{" "} + + CHIPSPASubmissionMailBox@CMS.HHS.gov + + ); }; diff --git a/lib/libs/email/content/new-submission/emailTemplates/MedSpaState.tsx b/lib/libs/email/content/new-submission/emailTemplates/MedSpaState.tsx index 9820fa6298..403f767bfb 100644 --- a/lib/libs/email/content/new-submission/emailTemplates/MedSpaState.tsx +++ b/lib/libs/email/content/new-submission/emailTemplates/MedSpaState.tsx @@ -22,7 +22,6 @@ export const MedSpaStateEmail = (props: { previewText={previewText} heading={heading} applicationEndpointUrl={variables.applicationEndpointUrl} - footerContent={} > {`This response confirms the receipt of your Medicaid State Plan Amendment - (SPA). You can expect a formal response to your submittal to be issued + (SPA or your response to a SPA Request for Additional Information (RAI)). You can expect a formal response to your submittal to be issued within 90 days, before ${formatNinetyDaysDate(variables.timestamp)}.`} + ); }; diff --git a/lib/libs/email/content/new-submission/emailTemplates/Waiver1915bCMS.tsx b/lib/libs/email/content/new-submission/emailTemplates/Waiver1915bCMS.tsx index 4eef496cb2..f3193af2fe 100644 --- a/lib/libs/email/content/new-submission/emailTemplates/Waiver1915bCMS.tsx +++ b/lib/libs/email/content/new-submission/emailTemplates/Waiver1915bCMS.tsx @@ -7,7 +7,7 @@ import { BasicFooter, } from "../../email-components"; import { BaseEmailTemplate } from "../../email-templates"; -import { formatDate } from "shared-utils"; +import { formatDate, formatActionType } from "shared-utils"; export const Waiver1915bCMSEmail = (props: { variables: @@ -16,7 +16,9 @@ export const Waiver1915bCMSEmail = (props: { }) => { const variables = props.variables; const previewText = `${variables.authority} ${variables.actionType} Submitted`; - const heading = `The OneMAC Submission Portal received a ${variables.authority} ${variables.actionType} Submission:`; + const heading = `The OneMAC Submission Portal received a ${ + variables.authority + } ${formatActionType(variables.actionType)} Submission:`; return ( { const variables = props.variables; - const previewText = `${variables.authority} ${variables.actionType} Submitted`; - const heading = `This response confirms the submission of your ${variables.authority} ${variables.actionType} to CMS for review:`; + const previewText = `${variables.authority} ${formatActionType(variables.actionType)} Submitted`; + const heading = `This response confirms the submission of your ${ + variables.authority + } ${formatActionType(variables.actionType)} waiver to CMS for review:`; return ( } + footerContent={} > - - {`This response confirms the receipt of your Waiver request. You + {`This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, before ${formatNinetyDaysDate(variables.timestamp)} .`} + ); }; diff --git a/lib/libs/email/content/new-submission/index.tsx b/lib/libs/email/content/new-submission/index.tsx index 23bc775fb1..5cabd22291 100644 --- a/lib/libs/email/content/new-submission/index.tsx +++ b/lib/libs/email/content/new-submission/index.tsx @@ -1,6 +1,6 @@ import { Events, Authority, EmailAddresses, CommonEmailVariables } from "shared-types"; +import { formatActionType } from "lib/packages/shared-utils"; import { AuthoritiesWithUserTypesTemplate } from "../.."; - import { MedSpaCMSEmail, MedSpaStateEmail, @@ -76,7 +76,9 @@ export const newSubmission: AuthoritiesWithUserTypesTemplate = { ) => { return { to: [`${variables.submitterName} <${variables.submitterEmail}>`], - subject: `Your ${variables.actionType} ${variables.id} has been submitted to CMS`, + subject: `Your ${formatActionType(variables.actionType)} ${ + variables.id + } has been submitted to CMS`, body: await render(), }; }, diff --git a/lib/libs/email/content/respondToRai/emailTemplates/MedSpaCMS.tsx b/lib/libs/email/content/respondToRai/emailTemplates/MedSpaCMS.tsx index 3fa1fec30e..cbdc9cf6a0 100644 --- a/lib/libs/email/content/respondToRai/emailTemplates/MedSpaCMS.tsx +++ b/lib/libs/email/content/respondToRai/emailTemplates/MedSpaCMS.tsx @@ -26,7 +26,7 @@ export const MedSpaCMSEmail = (props: { details={{ "State or Territory": variables.territory, Name: variables.submitterName, - Email: variables.submitterEmail, + "Email Address": variables.submitterEmail, "Medicaid SPA Package ID": variables.id, Summary: variables.additionalInformation, }} diff --git a/lib/libs/email/preview/Initial Submissions/CMS/__snapshots__/InitialSubmissionCMS.test.tsx.snap b/lib/libs/email/preview/Initial Submissions/CMS/__snapshots__/InitialSubmissionCMS.test.tsx.snap index e7b53f37b2..536e24db13 100644 --- a/lib/libs/email/preview/Initial Submissions/CMS/__snapshots__/InitialSubmissionCMS.test.tsx.snap +++ b/lib/libs/email/preview/Initial Submissions/CMS/__snapshots__/InitialSubmissionCMS.test.tsx.snap @@ -460,12 +460,15 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a AppkCMSEmail Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- 1915(c) Appendix K Amendment Waiver Template - : -

+ +

+ 1915(c) Appendix K Amendment Waiver Template + : +

+ +
renders a AppkCMSEmail Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a AppkCMSEmail Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- 1915(c) Appendix K Amendment Waiver Template - : -

+ +

+ 1915(c) Appendix K Amendment Waiver Template + : +

+ +
renders a AppkCMSEmail Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Chipspa Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- 1915(c) Appendix K Amendment Waiver Template - : -

+ +

+ 1915(c) Appendix K Amendment Waiver Template + : +

+ +
renders a Chipspa Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Chipspa Preview

- Email + Email Address :

@@ -2143,12 +2161,35 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- CMS Form 179 - : -

+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
renders a Chipspa Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- SPA Pages - : -

+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
renders a Chipspa Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Cover Letter - : -

+ +

+ Cover Letter + : +

+ +
renders a Chipspa Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a Chipspa Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a Chipspa Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a Chipspa Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Chipspa Preview

- Email + Email Address :

@@ -2844,12 +2933,35 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- CMS Form 179 - : -

+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
renders a Chipspa Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- SPA Pages - : -

+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
renders a Chipspa Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Cover Letter - : -

+ +

+ Cover Letter + : +

+ +
renders a Chipspa Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a Chipspa Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a Chipspa Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a Chipspa Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- 1915(c) Appendix K Amendment Waiver Template - : -

+ +

+ 1915(c) Appendix K Amendment Waiver Template + : +

+ +
renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Medicaid Spa Pre

- Email + Email Address :

@@ -4179,12 +4345,35 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- CMS Form 179 - : -

+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- SPA Pages - : -

+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Cover Letter - : -

+ +

+ Cover Letter + : +

+ +
renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- CMS Form 179 - : -

+ +

+ CMS Form 179 + : +

+ +
renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Standard Funding Questions (SFQs) - : -

+ +

+ Standard Funding Questions (SFQs) + : +

+ +
renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- SPA Pages - : -

+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Cover Letter - : -

+ +

+ Cover Letter + : +

+ +
renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Document Demonstrating Good-Faith Tribal Engagement - : -

+ +

+ Document Demonstrating Good-Faith Tribal Engagement + : +

+ +
+
+ +

+ Document Demonstrating Good-Faith Tribal Engagement + : +

+ +
+
+ +

+ Document Demonstrating Good-Faith Tribal Engagement + : +

+ +
renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Existing State Plan Page(s) - : -

+ +

+ Existing State Plan Page(s) + : +

+ +
+
+ +

+ Existing State Plan Page(s) + : +

+ +
+
+ +

+ Existing State Plan Page(s) + : +

+ +
renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- CMS Form 179 - : -

+ +

+ CMS Form 179 + : +

+ +
renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Standard Funding Questions (SFQs) - : -

+ +

+ Standard Funding Questions (SFQs) + : +

+ +
renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- SPA Pages - : -

+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Cover Letter - : -

+ +

+ Cover Letter + : +

+ +
renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Document Demonstrating Good-Faith Tribal Engagement - : -

+ +

+ Document Demonstrating Good-Faith Tribal Engagement + : +

+ +
+
+ +

+ Document Demonstrating Good-Faith Tribal Engagement + : +

+ +
+
+ +

+ Document Demonstrating Good-Faith Tribal Engagement + : +

+ +
renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Existing State Plan Page(s) - : -

+ +

+ Existing State Plan Page(s) + : +

+ +
+
+ +

+ Existing State Plan Page(s) + : +

+ +
+
+ +

+ Existing State Plan Page(s) + : +

+ +
renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- 1915(c) Appendix K Amendment Waiver Template - : -

+ +

+ 1915(c) Appendix K Amendment Waiver Template + : +

+ +
renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a TempExt Preview

- Email + Email Address :

@@ -7191,12 +7668,35 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- CMS Form 179 - : -

+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- SPA Pages - : -

+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Cover Letter - : -

+ +

+ Cover Letter + : +

+ +
renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- CMS Form 179 - : -

+ +

+ CMS Form 179 + : +

+ +
renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Standard Funding Questions (SFQs) - : -

+ +

+ Standard Funding Questions (SFQs) + : +

+ +
renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- SPA Pages - : -

+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Cover Letter - : -

+ +

+ Cover Letter + : +

+ +
renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Document Demonstrating Good-Faith Tribal Engagement - : -

+ +

+ Document Demonstrating Good-Faith Tribal Engagement + : +

+ +
+
+ +

+ Document Demonstrating Good-Faith Tribal Engagement + : +

+ +
+
+ +

+ Document Demonstrating Good-Faith Tribal Engagement + : +

+ +
renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Existing State Plan Page(s) - : -

+ +

+ Existing State Plan Page(s) + : +

+ +
+
+ +

+ Existing State Plan Page(s) + : +

+ +
+
+ +

+ Existing State Plan Page(s) + : +

+ +
renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a TempExt Preview

- May 31, 2023 @ 11:59pm ET + Mar 2, 2023 @ 11:59pm EST

@@ -8805,12 +9470,35 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Waiver Extension Request - : -

+ +

+ Waiver Extension Request + : +

+ +
+
+ +

+ Waiver Extension Request + : +

+ +
+
+ +

+ Waiver Extension Request + : +

+ +
renders a TempExt Preview

- May 31, 2023 @ 11:59pm ET + Mar 2, 2023 @ 11:59pm EST

@@ -9318,12 +10006,35 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Waiver Extension Request - : -

+ +

+ Waiver Extension Request + : +

+ +
+
+ +

+ Waiver Extension Request + : +

+ +
+
+ +

+ Waiver Extension Request + : +

+ +
renders a Waiver Capitated data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- 1915(c) Appendix K Amendment Waiver Template - : -

+ +

+ 1915(c) Appendix K Amendment Waiver Template + : +

+ +
renders a Waiver Capitated data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Waiver Capitated

- Email + Email Address :

@@ -10389,12 +11106,35 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- CMS Form 179 - : -

+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
renders a Waiver Capitated data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- SPA Pages - : -

+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
renders a Waiver Capitated data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Cover Letter - : -

+ +

+ Cover Letter + : +

+ +
renders a Waiver Capitated data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a Waiver Capitated data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a Waiver Capitated data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a Waiver Capitated data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Waiver Capitated data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a Waiver Capitated data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- CMS Form 179 - : -

+ +

+ CMS Form 179 + : +

+ +
renders a Waiver Capitated data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Standard Funding Questions (SFQs) - : -

+ +

+ Standard Funding Questions (SFQs) + : +

+ +
renders a Waiver Capitated data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- SPA Pages - : -

+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
renders a Waiver Capitated data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Cover Letter - : -

+ +

+ Cover Letter + : +

+ +
renders a Waiver Capitated data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Document Demonstrating Good-Faith Tribal Engagement - : -

+ +

+ Document Demonstrating Good-Faith Tribal Engagement + : +

+ +
+
+ +

+ Document Demonstrating Good-Faith Tribal Engagement + : +

+ +
+
+ +

+ Document Demonstrating Good-Faith Tribal Engagement + : +

+ +
renders a Waiver Capitated data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Existing State Plan Page(s) - : -

+ +

+ Existing State Plan Page(s) + : +

+ +
+
+ +

+ Existing State Plan Page(s) + : +

+ +
+
+ +

+ Existing State Plan Page(s) + : +

+ +
renders a Waiver Capitated data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a Waiver Capitated data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Waiver Capitated

- May 31, 2023 @ 11:59pm ET + Mar 2, 2023 @ 11:59pm EST

@@ -12003,12 +12908,35 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Waiver Extension Request - : -

+ +

+ Waiver Extension Request + : +

+ +
+
+ +

+ Waiver Extension Request + : +

+ +
+
+ +

+ Waiver Extension Request + : +

+ +
renders a Waiver Capitated

- The OneMAC Submission Portal received a 1915(b) New Submission: + The OneMAC Submission Portal received a 1915(b) Initial Submission:


renders a Waiver Capitated

- New Number + Initial Waiver Number :

@@ -12515,12 +13443,15 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- 1915(b) Comprehensive (Capitated) Waiver Application Pre-print - : -

+ +

+ 1915(b) Comprehensive (Capitated) Waiver Application Pre-print + : +

+ +
renders a Waiver Capitated data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- 1915(b) Comprehensive (Capitated) Waiver Cost Effectiveness Spreadsheets - : -

+ +

+ 1915(b) Comprehensive (Capitated) Waiver Cost Effectiveness Spreadsheets + : +

+ +
renders a Waiver Capitated

- The OneMAC Submission Portal received a 1915(b) New Submission: + The OneMAC Submission Portal received a 1915(b) Initial Submission:


renders a Waiver Capitated

- New Number + Initial Waiver Number :

@@ -13062,12 +13996,15 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- 1915(b) Comprehensive (Capitated) Waiver Application Pre-print - : -

+ +

+ 1915(b) Comprehensive (Capitated) Waiver Application Pre-print + : +

+ +
renders a Waiver Capitated data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- 1915(b) Comprehensive (Capitated) Waiver Cost Effectiveness Spreadsheets - : -

+ +

+ 1915(b) Comprehensive (Capitated) Waiver Cost Effectiveness Spreadsheets + : +

+ +
renders a AppKCMSEmailPr

- Apr 1, 2023 @ 11:59pm ET + Jan 1, 2023 @ 11:59pm EST

@@ -407,7 +407,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a AppKCMSEmailPr This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, - before Apr 1, 2023 @ 11:59pm ET. + before Jan 1, 2023 @ 11:59pm EST.


renders a AppKCMSEmailPr

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a AppKCMSEmailPr

- Apr 1, 2023 @ 11:59pm ET + Jan 1, 2023 @ 11:59pm EST

@@ -908,7 +907,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a AppKCMSEmailPr This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, - before Apr 1, 2023 @ 11:59pm ET. + before Jan 1, 2023 @ 11:59pm EST.


renders a AppKCMSEmailPr

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Chipspa Previe

- Apr 1, 2023 @ 11:59pm ET + Jan 1, 2023 @ 11:59pm EST

@@ -1466,7 +1464,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Chipspa Previe This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, - before Apr 1, 2023 @ 11:59pm ET. + before Jan 1, 2023 @ 11:59pm EST.


renders a Chipspa Previe

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Chipspa Previe

- This response confirms the submission of your CHIP State Plan Amendment to CMS: + This is confirmation that you submitted a CHIP State Plan Amendment to CMS for review:


renders a Chipspa Previe

- Email + Email Address :

@@ -1856,10 +1853,18 @@ exports[`Initial Submission State Email Snapshot Test > renders a Chipspa Previe This response confirms the receipt of your CHIP State Plan Amendment (CHIP SPA). You can expect a formal response to your submittal from CMS at a later date.

- This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. - Any other correspondence will be disregarded. + + If you have questions or did not expect this email, please contact + + + CHIPSPASubmissionMailBox@CMS.HHS.gov +

renders a Chipspa Previe > - -


- - - - - - -
-

- If you have any questions, please contact - - - CHIPSPASubmissionMailBox@cms.hhs.gov - - or your state lead. -

-
- + @@ -1997,7 +1969,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Chipspa Previe

- This response confirms the submission of your CHIP State Plan Amendment to CMS: + This is confirmation that you submitted a CHIP State Plan Amendment to CMS for review:


renders a Chipspa Previe

- Email + Email Address :

@@ -2216,10 +2188,18 @@ exports[`Initial Submission State Email Snapshot Test > renders a Chipspa Previe This response confirms the receipt of your CHIP State Plan Amendment (CHIP SPA). You can expect a formal response to your submittal from CMS at a later date.

- This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. - Any other correspondence will be disregarded. + + If you have questions or did not expect this email, please contact + + + CHIPSPASubmissionMailBox@CMS.HHS.gov +

renders a Chipspa Previe > - -


- - - - - - -
-

- If you have any questions, please contact - - - CHIPSPASubmissionMailBox@cms.hhs.gov - - or your state lead. -

-
- + @@ -2690,7 +2637,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa P

- Apr 1, 2023 @ 11:59pm ET + Jan 1, 2023 @ 11:59pm EST

@@ -2743,7 +2690,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa P This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, - before Apr 1, 2023 @ 11:59pm ET. + before Jan 1, 2023 @ 11:59pm EST.


renders a Medicaid Spa P

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Medicaid Spa P

- This response confirms the submission of your CHIP State Plan Amendment to CMS: + This is confirmation that you submitted a CHIP State Plan Amendment to CMS for review:


renders a Medicaid Spa P

- Email + Email Address :

@@ -3133,10 +3079,18 @@ exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa P This response confirms the receipt of your CHIP State Plan Amendment (CHIP SPA). You can expect a formal response to your submittal from CMS at a later date.

- This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. - Any other correspondence will be disregarded. + + If you have questions or did not expect this email, please contact + + + CHIPSPASubmissionMailBox@CMS.HHS.gov +

renders a Medicaid Spa P > - -


- - - - - - -
-

- If you have any questions, please contact - - - CHIPSPASubmissionMailBox@cms.hhs.gov - - or your state lead. -

-
- + @@ -3518,7 +3439,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa P

- Apr 1, 2023 @ 11:59pm ET + Jan 1, 2023 @ 11:59pm EST

@@ -3566,8 +3487,8 @@ exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa P style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > This response confirms the receipt of your Medicaid State Plan Amendment - (SPA). You can expect a formal response to your submittal to be issued - within 90 days, before Apr 1, 2023 @ 11:59pm ET. + (SPA or your response to a SPA Request for Additional Information (RAI)). You can expect a formal response to your submittal to be issued + within 90 days, before Jan 1, 2023 @ 11:59pm EST.

renders a Medicaid Spa P This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. Any other correspondence will be disregarded.

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + spa@cms.hhs.gov + + . +

+

@@ -3592,40 +3544,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa P > - -


- - - - - - -
-

- If you have any questions or did not expect this email, please contact - - - spa@cms.hhs.gov - - or your state lead. -

-
- + @@ -3956,7 +3875,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa P

- Apr 1, 2023 @ 11:59pm ET + Jan 1, 2023 @ 11:59pm EST

@@ -4004,8 +3923,8 @@ exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa P style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > This response confirms the receipt of your Medicaid State Plan Amendment - (SPA). You can expect a formal response to your submittal to be issued - within 90 days, before Apr 1, 2023 @ 11:59pm ET. + (SPA or your response to a SPA Request for Additional Information (RAI)). You can expect a formal response to your submittal to be issued + within 90 days, before Jan 1, 2023 @ 11:59pm EST.

renders a Medicaid Spa P This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. Any other correspondence will be disregarded.

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + spa@cms.hhs.gov + + . +

+

@@ -4030,40 +3980,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa P > - -


- - - - - - -
-

- If you have any questions or did not expect this email, please contact - - - spa@cms.hhs.gov - - or your state lead. -

-
- + @@ -4482,7 +4399,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a TempExt Previe

- Apr 1, 2023 @ 11:59pm ET + Jan 1, 2023 @ 11:59pm EST

@@ -4535,7 +4452,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a TempExt Previe This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, - before Apr 1, 2023 @ 11:59pm ET. + before Jan 1, 2023 @ 11:59pm EST.


renders a TempExt Previe

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a TempExt Previe

- This response confirms the submission of your CHIP State Plan Amendment to CMS: + This is confirmation that you submitted a CHIP State Plan Amendment to CMS for review:


renders a TempExt Previe

- Email + Email Address :

@@ -4925,10 +4841,18 @@ exports[`Initial Submission State Email Snapshot Test > renders a TempExt Previe This response confirms the receipt of your CHIP State Plan Amendment (CHIP SPA). You can expect a formal response to your submittal from CMS at a later date.

- This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. - Any other correspondence will be disregarded. + + If you have questions or did not expect this email, please contact + + + CHIPSPASubmissionMailBox@CMS.HHS.gov +

renders a TempExt Previe > - -


- - - - - - -
-

- If you have any questions, please contact - - - CHIPSPASubmissionMailBox@cms.hhs.gov - - or your state lead. -

-
- + @@ -5310,7 +5201,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a TempExt Previe

- Apr 1, 2023 @ 11:59pm ET + Jan 1, 2023 @ 11:59pm EST

@@ -5358,8 +5249,8 @@ exports[`Initial Submission State Email Snapshot Test > renders a TempExt Previe style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > This response confirms the receipt of your Medicaid State Plan Amendment - (SPA). You can expect a formal response to your submittal to be issued - within 90 days, before Apr 1, 2023 @ 11:59pm ET. + (SPA or your response to a SPA Request for Additional Information (RAI)). You can expect a formal response to your submittal to be issued + within 90 days, before Jan 1, 2023 @ 11:59pm EST.

renders a TempExt Previe This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. Any other correspondence will be disregarded.

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + spa@cms.hhs.gov + + . +

+

@@ -5384,40 +5306,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a TempExt Previe > - -


- - - - - - -
-

- If you have any questions or did not expect this email, please contact - - - spa@cms.hhs.gov - - or your state lead. -

-
- + @@ -5737,7 +5626,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a TempExt Previe

- May 31, 2023 @ 11:59pm ET + Mar 2, 2023 @ 11:59pm EST

@@ -5809,12 +5698,35 @@ exports[`Initial Submission State Email Snapshot Test > renders a TempExt Previe data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Waiver Extension Request - : -

+ +

+ Waiver Extension Request + : +

+ +
+
+ +

+ Waiver Extension Request + : +

+ +
+
+ +

+ Waiver Extension Request + : +

+ +
renders a TempExt Previe

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a TempExt Previe

- May 31, 2023 @ 11:59pm ET + Mar 2, 2023 @ 11:59pm EST

@@ -6288,12 +6199,35 @@ exports[`Initial Submission State Email Snapshot Test > renders a TempExt Previe data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Waiver Extension Request - : -

+ +

+ Waiver Extension Request + : +

+ +
+
+ +

+ Waiver Extension Request + : +

+ +
+
+ +

+ Waiver Extension Request + : +

+ +
renders a TempExt Previe

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Waiver Capitat

- Apr 1, 2023 @ 11:59pm ET + Jan 1, 2023 @ 11:59pm EST

@@ -6846,7 +6779,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, - before Apr 1, 2023 @ 11:59pm ET. + before Jan 1, 2023 @ 11:59pm EST.


renders a Waiver Capitat

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Waiver Capitat

- This response confirms the submission of your CHIP State Plan Amendment to CMS: + This is confirmation that you submitted a CHIP State Plan Amendment to CMS for review:


renders a Waiver Capitat

- Email + Email Address :

@@ -7236,10 +7168,18 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat This response confirms the receipt of your CHIP State Plan Amendment (CHIP SPA). You can expect a formal response to your submittal from CMS at a later date.

- This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. - Any other correspondence will be disregarded. + + If you have questions or did not expect this email, please contact + + + CHIPSPASubmissionMailBox@CMS.HHS.gov +

renders a Waiver Capitat > - -


- - - - - - -
-

- If you have any questions, please contact - - - CHIPSPASubmissionMailBox@cms.hhs.gov - - or your state lead. -

-
- + @@ -7621,7 +7528,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat

- Apr 1, 2023 @ 11:59pm ET + Jan 1, 2023 @ 11:59pm EST

@@ -7669,8 +7576,8 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > This response confirms the receipt of your Medicaid State Plan Amendment - (SPA). You can expect a formal response to your submittal to be issued - within 90 days, before Apr 1, 2023 @ 11:59pm ET. + (SPA or your response to a SPA Request for Additional Information (RAI)). You can expect a formal response to your submittal to be issued + within 90 days, before Jan 1, 2023 @ 11:59pm EST.

renders a Waiver Capitat This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. Any other correspondence will be disregarded.

+
+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + spa@cms.hhs.gov + + . +

+

@@ -7695,40 +7633,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat > - -


- - - - - - -
-

- If you have any questions or did not expect this email, please contact - - - spa@cms.hhs.gov - - or your state lead. -

-
- + @@ -8048,7 +7953,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat

- May 31, 2023 @ 11:59pm ET + Mar 2, 2023 @ 11:59pm EST

@@ -8120,12 +8025,35 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Waiver Extension Request - : -

+ +

+ Waiver Extension Request + : +

+ +
+
+ +

+ Waiver Extension Request + : +

+ +
+
+ +

+ Waiver Extension Request + : +

+ +
renders a Waiver Capitat

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Waiver Capitat

- 1915(b) New Submitted + 1915(b) Initial Submitted
-  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
renders a Waiver Capitat

- This response confirms the submission of your 1915(b) New to CMS for review: + This response confirms the submission of your 1915(b) Initial waiver to CMS for review:


renders a Waiver Capitat

- New Number + Initial Waiver Number :

@@ -8574,7 +8501,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat

- Apr 1, 2023 @ 11:59pm ET + Jan 1, 2023 @ 11:59pm EST

@@ -8618,117 +8545,52 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat +

+ This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + . +

+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +


-

- Files: -

- - - - - - -
-

- 1915(b) Comprehensive (Capitated) Waiver Application Pre-print - : -

-
-

- - capitated-waiver-application.pdf -
-
- - capitated-waiver-application-2.pdf - -

-
- - - - - + +
-

- 1915(b) Comprehensive (Capitated) Waiver Cost Effectiveness Spreadsheets - : -

-
+

- - capitated-waiver-cost-effectiveness-spreadsheet.pdf - + If you have any questions, please contact + + spa@cms.hhs.gov + + or your state lead.

-

- This response confirms the receipt of your Waiver request. You - can expect a formal response to your submittal to be issued within - 90 days, before - Apr 1, 2023 @ 11:59pm ET - . -

-

- This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. - Any other correspondence will be disregarded. -

@@ -8747,33 +8609,29 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat -


@@ -8808,9 +8666,9 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat
- 1915(b) New Submitted + 1915(b) Initial Submitted
-  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
renders a Waiver Capitat

- This response confirms the submission of your 1915(b) New to CMS for review: + This response confirms the submission of your 1915(b) Initial waiver to CMS for review:


renders a Waiver Capitat

- New Number + Initial Waiver Number :

@@ -9148,7 +9006,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat

- Apr 1, 2023 @ 11:59pm ET + Jan 1, 2023 @ 11:59pm EST

@@ -9192,117 +9050,52 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat

- If you have any questions or did not expect this email, please contact - - - spa@cms.hhs.gov - - or your state lead. + U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244

+

+ This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + . +

+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +


-

- Files: -

- - - - - - - -
-

- 1915(b) Comprehensive (Capitated) Waiver Application Pre-print - : -

-
-

- - capitated-waiver-application.pdf -
-
- - capitated-waiver-application-2.pdf - -

-
- - - - + +
-

- 1915(b) Comprehensive (Capitated) Waiver Cost Effectiveness Spreadsheets - : -

-
+

- - capitated-waiver-cost-effectiveness-spreadsheet.pdf - + If you have any questions, please contact + + spa@cms.hhs.gov + + or your state lead.

-

- This response confirms the receipt of your Waiver request. You - can expect a formal response to your submittal to be issued within - 90 days, before - Apr 1, 2023 @ 11:59pm ET - . -

-

- This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. - Any other correspondence will be disregarded. -

@@ -9321,33 +9114,29 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat -


@@ -9772,7 +9561,7 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `

- Apr 1, 2023 @ 11:59pm ET + Jan 1, 2023 @ 11:59pm EST

@@ -9825,7 +9614,7 @@ exports[`renders a Waiver Contracting Preview Template 1`] = ` This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, - before Apr 1, 2023 @ 11:59pm ET. + before Jan 1, 2023 @ 11:59pm EST.


- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact - This response confirms the submission of your CHIP State Plan Amendment to CMS: + This is confirmation that you submitted a CHIP State Plan Amendment to CMS for review: - +

- If you have any questions or did not expect this email, please contact - - - spa@cms.hhs.gov - - or your state lead. + U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244

-
- - - - - - -
-

- If you have any questions, please contact - - - CHIPSPASubmissionMailBox@cms.hhs.gov - - or your state lead. -

-
-
@@ -10600,7 +10363,7 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `

- Apr 1, 2023 @ 11:59pm ET + Jan 1, 2023 @ 11:59pm EST

@@ -10648,8 +10411,8 @@ exports[`renders a Waiver Contracting Preview Template 1`] = ` style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > This response confirms the receipt of your Medicaid State Plan Amendment - (SPA). You can expect a formal response to your submittal to be issued - within 90 days, before Apr 1, 2023 @ 11:59pm ET. + (SPA or your response to a SPA Request for Additional Information (RAI)). You can expect a formal response to your submittal to be issued + within 90 days, before Jan 1, 2023 @ 11:59pm EST.

+


+ + + + + + +
+

+ If you have any questions or did not expect this email, please contact + + spa@cms.hhs.gov + + . +

+

@@ -10674,40 +10468,7 @@ exports[`renders a Waiver Contracting Preview Template 1`] = ` > - -


- - - - - - -
-

- If you have any questions or did not expect this email, please contact - - - spa@cms.hhs.gov - - or your state lead. -

-
- + @@ -11027,7 +10788,7 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `

- May 31, 2023 @ 11:59pm ET + Mar 2, 2023 @ 11:59pm EST

@@ -11099,12 +10860,35 @@ exports[`renders a Waiver Contracting Preview Template 1`] = ` data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Waiver Extension Request - : -

+ +

+ Waiver Extension Request + : +

+ +
+
+ +

+ Waiver Extension Request + : +

+ +
+
+ +

+ Waiver Extension Request + : +

+ +
- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact - 1915(b) New Submitted + 1915(b) Initial Submitted
-  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
- This response confirms the submission of your 1915(b) New to CMS for review: + This response confirms the submission of your 1915(b) Initial waiver to CMS for review:

- New Number + Initial Waiver Number :

@@ -11553,7 +11336,7 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `

- Apr 1, 2023 @ 11:59pm ET + Jan 1, 2023 @ 11:59pm EST

@@ -11597,117 +11380,52 @@ exports[`renders a Waiver Contracting Preview Template 1`] = ` +

+ This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + . +

+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +


-

- Files: -

- - - - - - -
-

- 1915(b) Comprehensive (Capitated) Waiver Application Pre-print - : -

-
-

- - capitated-waiver-application.pdf -
-
- - capitated-waiver-application-2.pdf - -

-
- - - - - + +
-

- 1915(b) Comprehensive (Capitated) Waiver Cost Effectiveness Spreadsheets - : -

-
+

- - capitated-waiver-cost-effectiveness-spreadsheet.pdf - + If you have any questions, please contact + + spa@cms.hhs.gov + + or your state lead.

-

- This response confirms the receipt of your Waiver request. You - can expect a formal response to your submittal to be issued within - 90 days, before - Apr 1, 2023 @ 11:59pm ET - . -

-

- This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. - Any other correspondence will be disregarded. -

@@ -11726,33 +11444,29 @@ exports[`renders a Waiver Contracting Preview Template 1`] = ` -


@@ -11786,9 +11500,9 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `
- 1915(b) New Submitted + 1915(b) Initial Submitted
-  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
- This response confirms the submission of your 1915(b) New to CMS for review: + This response confirms the submission of your 1915(b) Initial waiver to CMS for review:

- New Number + Initial Waiver Number :

@@ -12126,7 +11840,7 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `

- Apr 1, 2023 @ 11:59pm ET + Jan 1, 2023 @ 11:59pm EST

@@ -12170,75 +11884,52 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `

- If you have any questions or did not expect this email, please contact - - - spa@cms.hhs.gov - - or your state lead. + U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244

+

+ This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + . +

+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +


-

- Files: -

- - - - + +
-

- 1915(b) Comprehensive (Contracting) Waiver Application Pre-print - : -

-
+

- - contracting-waiver-application.pdf -
-
- - contracting-waiver-application-2.pdf - + If you have any questions, please contact + + spa@cms.hhs.gov + + or your state lead.

-

- This response confirms the receipt of your Waiver request. You - can expect a formal response to your submittal to be issued within - 90 days, before - Apr 1, 2023 @ 11:59pm ET - . -

-

- This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. - Any other correspondence will be disregarded. -

@@ -12257,33 +11948,29 @@ exports[`renders a Waiver Contracting Preview Template 1`] = ` -


@@ -12318,9 +12005,9 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `
- 1915(b) New Submitted + 1915(b) Initial Submitted
-  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
- This response confirms the submission of your 1915(b) New to CMS for review: + This response confirms the submission of your 1915(b) Initial waiver to CMS for review:

- New Number + Initial Waiver Number :

@@ -12658,7 +12345,7 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `

- Apr 1, 2023 @ 11:59pm ET + Jan 1, 2023 @ 11:59pm EST

@@ -12702,75 +12389,52 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `

- If you have any questions or did not expect this email, please contact - - - spa@cms.hhs.gov - - or your state lead. + U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244

+

+ This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + . +

+

+ This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +


-

- Files: -

- - - - + +
-

- 1915(b) Comprehensive (Contracting) Waiver Application Pre-print - : -

-
+

- - contracting-waiver-application.pdf -
-
- - contracting-waiver-application-2.pdf - + If you have any questions, please contact + + spa@cms.hhs.gov + + or your state lead.

-

- This response confirms the receipt of your Waiver request. You - can expect a formal response to your submittal to be issued within - 90 days, before - Apr 1, 2023 @ 11:59pm ET - . -

-

- This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. - Any other correspondence will be disregarded. -

@@ -12789,33 +12453,29 @@ exports[`renders a Waiver Contracting Preview Template 1`] = ` -


diff --git a/lib/libs/email/preview/Respond to Rai/CMS/__snapshots__/ResToRaiCMS.test.tsx.snap b/lib/libs/email/preview/Respond to Rai/CMS/__snapshots__/ResToRaiCMS.test.tsx.snap index 985c7609a1..101fdb6ea7 100644 --- a/lib/libs/email/preview/Respond to Rai/CMS/__snapshots__/ResToRaiCMS.test.tsx.snap +++ b/lib/libs/email/preview/Respond to Rai/CMS/__snapshots__/ResToRaiCMS.test.tsx.snap @@ -345,12 +345,15 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a AppKCMSEmailPreview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- 1915(c) Appendix K Amendment Waiver Template - : -

+ +

+ 1915(c) Appendix K Amendment Waiver Template + : +

+ +
@@ -4247,12 +4385,15 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
@@ -4884,12 +5060,15 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
@@ -6686,12 +6944,15 @@ exports[`Respond To RAI CMS Email Snapshot Test > renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
@@ -365,7 +365,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a AppKStateEmailPrev > This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal - to be issued within 90 days, before Apr 1, 2023 @ 11:59pm ET + to be issued within 90 days, before Jan 1, 2023 @ 11:59pm EST .

renders a AppKStateEmailPrev

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a AppKStateEmailPrev

- Apr 1, 2023 @ 11:59pm ET + Jan 1, 2023 @ 11:59pm EST

@@ -825,7 +824,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a AppKStateEmailPrev > This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal - to be issued within 90 days, before Apr 1, 2023 @ 11:59pm ET + to be issued within 90 days, before Jan 1, 2023 @ 11:59pm EST .

renders a AppKStateEmailPrev

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a ChipSPA Preview Te

- Apr 1, 2023 @ 11:59pm ET + Jan 1, 2023 @ 11:59pm EST

@@ -1342,7 +1340,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a ChipSPA Preview Te > This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal - to be issued within 90 days, before Apr 1, 2023 @ 11:59pm ET + to be issued within 90 days, before Jan 1, 2023 @ 11:59pm EST .

renders a ChipSPA Preview Te

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a ChipSPA Preview Te

- Apr 1, 2023 @ 11:59pm ET + Jan 1, 2023 @ 11:59pm EST

@@ -1760,7 +1757,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a ChipSPA Preview Te > This response confirms receipt of your CHIP State Plan Amendment (SPA) or your response to a SPA Request for Additional Information (RAI). You can expect a formal response to your - submittal to be issued within 90 days, before Apr 1, 2023 @ 11:59pm ET + submittal to be issued within 90 days, before Jan 1, 2023 @ 11:59pm EST .

renders a ChipSPA Preview Te

- Apr 1, 2023 @ 11:59pm ET + Jan 1, 2023 @ 11:59pm EST

@@ -2141,7 +2138,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a ChipSPA Preview Te > This response confirms receipt of your CHIP State Plan Amendment (SPA) or your response to a SPA Request for Additional Information (RAI). You can expect a formal response to your - submittal to be issued within 90 days, before Apr 1, 2023 @ 11:59pm ET + submittal to be issued within 90 days, before Jan 1, 2023 @ 11:59pm EST .

renders a Medicaid_SPA Previ

- Apr 1, 2023 @ 11:59pm ET + Jan 1, 2023 @ 11:59pm EST

@@ -2620,7 +2617,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a Medicaid_SPA Previ > This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal - to be issued within 90 days, before Apr 1, 2023 @ 11:59pm ET + to be issued within 90 days, before Jan 1, 2023 @ 11:59pm EST .

renders a Medicaid_SPA Previ

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Medicaid_SPA Previ

- Apr 1, 2023 @ 11:59pm ET + Jan 1, 2023 @ 11:59pm EST

@@ -3038,7 +3034,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a Medicaid_SPA Previ > This response confirms receipt of your CHIP State Plan Amendment (SPA) or your response to a SPA Request for Additional Information (RAI). You can expect a formal response to your - submittal to be issued within 90 days, before Apr 1, 2023 @ 11:59pm ET + submittal to be issued within 90 days, before Jan 1, 2023 @ 11:59pm EST .

renders a Medicaid_SPA Previ

- Apr 1, 2023 @ 11:59pm ET + Jan 1, 2023 @ 11:59pm EST

@@ -3418,7 +3414,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a Medicaid_SPA Previ > This response confirms receipt of your response to a SPA Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, - before Apr 1, 2023 @ 11:59pm ET. + before Jan 1, 2023 @ 11:59pm EST.

renders a Medicaid_SPA Previ

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Medicaid_SPA Previ

- Apr 1, 2023 @ 11:59pm ET + Jan 1, 2023 @ 11:59pm EST

@@ -3808,7 +3803,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a Medicaid_SPA Previ > This response confirms receipt of your response to a SPA Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, - before Apr 1, 2023 @ 11:59pm ET. + before Jan 1, 2023 @ 11:59pm EST.

renders a Medicaid_SPA Previ

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Waiver Capitated P

- Apr 1, 2023 @ 11:59pm ET + Jan 1, 2023 @ 11:59pm EST

@@ -4296,7 +4290,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a Waiver Capitated P > This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal - to be issued within 90 days, before Apr 1, 2023 @ 11:59pm ET + to be issued within 90 days, before Jan 1, 2023 @ 11:59pm EST .

renders a Waiver Capitated P

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Waiver Capitated P

- Apr 1, 2023 @ 11:59pm ET + Jan 1, 2023 @ 11:59pm EST

@@ -4714,7 +4707,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a Waiver Capitated P > This response confirms receipt of your CHIP State Plan Amendment (SPA) or your response to a SPA Request for Additional Information (RAI). You can expect a formal response to your - submittal to be issued within 90 days, before Apr 1, 2023 @ 11:59pm ET + submittal to be issued within 90 days, before Jan 1, 2023 @ 11:59pm EST .

renders a Waiver Capitated P

- Apr 1, 2023 @ 11:59pm ET + Jan 1, 2023 @ 11:59pm EST

@@ -5094,7 +5087,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a Waiver Capitated P > This response confirms receipt of your response to a SPA Request for Additional Information (RAI). You can expect a formal response to your submittal to be issued within 90 days, - before Apr 1, 2023 @ 11:59pm ET. + before Jan 1, 2023 @ 11:59pm EST.

renders a Waiver Capitated P

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Waiver Capitated P

- Apr 1, 2023 @ 11:59pm ET + Jan 1, 2023 @ 11:59pm EST

@@ -5524,7 +5516,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a Waiver Capitated P > This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal - to be issued within 90 days, before Apr 1, 2023 @ 11:59pm ET + to be issued within 90 days, before Jan 1, 2023 @ 11:59pm EST .

renders a Waiver Capitated P

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Waiver Capitated P

- Apr 1, 2023 @ 11:59pm ET + Jan 1, 2023 @ 11:59pm EST

@@ -5984,7 +5975,7 @@ exports[`Respond To Rai State Email Snapshot Test > renders a Waiver Capitated P > This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You can expect a formal response to your submittal - to be issued within 90 days, before Apr 1, 2023 @ 11:59pm ET + to be issued within 90 days, before Jan 1, 2023 @ 11:59pm EST .

renders a Waiver Capitated P

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a AppKCMSE data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- 1915(c) Appendix K Amendment Waiver Template - : -

+ +

+ 1915(c) Appendix K Amendment Waiver Template + : +

+ +
- + - + + + +

- If you have any questions or did not expect this email, please contact - - - spa@cms.hhs.gov - - or your state lead. + U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244

renders a AppKCMSEmailPreview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a AppKCMSEmailPreview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- 1915(c) Appendix K Amendment Waiver Template - : -

+ +

+ 1915(c) Appendix K Amendment Waiver Template + : +

+ +
renders a AppKCMSEmailPreview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a ChipSPA Preview Temp data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- 1915(c) Appendix K Amendment Waiver Template - : -

+ +

+ 1915(c) Appendix K Amendment Waiver Template + : +

+ +
renders a ChipSPA Preview Temp data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a ChipSPA Preview Temp data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a ChipSPA Preview Temp data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a ChipSPA Preview Temp data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a ChipSPA Preview Temp data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a ChipSPA Preview Temp data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a ChipSPA Preview Temp data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a ChipSPA Preview Temp data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a ChipSPA Preview Temp data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a ChipSPA Preview Temp data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a ChipSPA Preview Temp data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a ChipSPA Preview Temp data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a ChipSPA Preview Temp data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- 1915(c) Appendix K Amendment Waiver Template - : -

+ +

+ 1915(c) Appendix K Amendment Waiver Template + : +

+ +
renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Medicaid_SPA Preview

- Email + Email Address :

renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Medicaid_SPA Preview

- Email + Email Address :

renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a Medicaid_SPA Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- 1915(c) Appendix K Amendment Waiver Template - : -

+ +

+ 1915(c) Appendix K Amendment Waiver Template + : +

+ +
renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Waiver Capitated Pre

- Email + Email Address :

renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a AppKStateEmailPrev

- Apr 1, 2023 @ 11:59pm ET + Jan 1, 2023 @ 11:59pm EST

renders a AppKCMSE data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a AppKCMSE data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- 1915(c) Appendix K Amendment Waiver Template - : -

+ +

+ 1915(c) Appendix K Amendment Waiver Template + : +

+ +
renders a AppKCMSE data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- 1915(c) Appendix K Amendment Waiver Template - : -

+ +

+ 1915(c) Appendix K Amendment Waiver Template + : +

+ +
renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- CMS Form 179 - : -

+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- SPA Pages - : -

+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Cover Letter - : -

+ +

+ Cover Letter + : +

+ +
renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- CMS Form 179 - : -

+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- SPA Pages - : -

+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Cover Letter - : -

+ +

+ Cover Letter + : +

+ +
renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- 1915(c) Appendix K Amendment Waiver Template - : -

+ +

+ 1915(c) Appendix K Amendment Waiver Template + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- CMS Form 179 - : -

-
+

+ CMS Form 179 + : +

+ +
+ + +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
+
@@ -3201,12 +3390,25 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- SPA Pages - : -

+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Cover Letter - : -

+ +

+ Cover Letter + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- CMS Form 179 - : -

+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- SPA Pages - : -

+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Cover Letter - : -

+ +

+ Cover Letter + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- CMS Form 179 - : -

+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- SPA Pages - : -

+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Cover Letter - : -

+ +

+ Cover Letter + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- 1915(c) Appendix K Amendment Waiver Template - : -

+ +

+ 1915(c) Appendix K Amendment Waiver Template + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- CMS Form 179 - : -

+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- SPA Pages - : -

+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Cover Letter - : -

+ +

+ Cover Letter + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- CMS Form 179 - : -

+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- SPA Pages - : -

+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Cover Letter - : -

+ +

+ Cover Letter + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- CMS Form 179 - : -

+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- SPA Pages - : -

+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Cover Letter - : -

+ +

+ Cover Letter + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- CMS Form 179 - : -

+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- SPA Pages - : -

+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Cover Letter - : -

+ +

+ Cover Letter + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a AppKCMSE data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- 1915(c) Appendix K Amendment Waiver Template - : -

+ +

+ 1915(c) Appendix K Amendment Waiver Template + : +

+ +
renders a AppKCMSE data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a AppKCMSE data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- 1915(c) Appendix K Amendment Waiver Template - : -

+ +

+ 1915(c) Appendix K Amendment Waiver Template + : +

+ +
renders a AppKCMSE data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- 1915(c) Appendix K Amendment Waiver Template - : -

+ +

+ 1915(c) Appendix K Amendment Waiver Template + : +

+ +
renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- CMS Form 179 - : -

+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- SPA Pages - : -

+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Cover Letter - : -

+ +

+ Cover Letter + : +

+ +
renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- CMS Form 179 - : -

+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- SPA Pages - : -

+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Cover Letter - : -

+ +

+ Cover Letter + : +

+ +
renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a ChipSPA data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- 1915(c) Appendix K Amendment Waiver Template - : -

+ +

+ 1915(c) Appendix K Amendment Waiver Template + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- CMS Form 179 - : -

-
+

+ CMS Form 179 + : +

+ +
+ + +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
+
@@ -3541,12 +3730,25 @@ exports[`Upload Subsequent Document CMS Email Snapshot Test > renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- SPA Pages - : -

+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Cover Letter - : -

+ +

+ Cover Letter + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- CMS Form 179 - : -

+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- SPA Pages - : -

+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Cover Letter - : -

+ +

+ Cover Letter + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- CMS Form 179 - : -

+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- SPA Pages - : -

+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Cover Letter - : -

+ +

+ Cover Letter + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a Medicaid data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- 1915(c) Appendix K Amendment Waiver Template - : -

+ +

+ 1915(c) Appendix K Amendment Waiver Template + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- CMS Form 179 - : -

+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- SPA Pages - : -

+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Cover Letter - : -

+ +

+ Cover Letter + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- CMS Form 179 - : -

+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- SPA Pages - : -

+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Cover Letter - : -

+ +

+ Cover Letter + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- CMS Form 179 - : -

+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- SPA Pages - : -

+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Cover Letter - : -

+ +

+ Cover Letter + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- CMS Form 179 - : -

+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
+
+ +

+ CMS Form 179 + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- SPA Pages - : -

+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Cover Letter - : -

+ +

+ Cover Letter + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Appk Preview Tem

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Appk Preview Tem

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a ChipSPA Preview

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Medicaid_SPA Pre

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Medicaid_SPA Pre

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Medicaid_SPA Pre

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Waiver Capitated

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Waiver Capitated

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Waiver Capitated

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Waiver Capitated

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Appk Preview Template data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Appk Preview Template data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Appk Preview Template data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a Appk Preview Template data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a Appk Preview Template data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a Appk Preview Template data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Appk Preview Template data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Appk Preview Template data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Appk Preview Template data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a Appk Preview Template data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a Appk Preview Template data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a Appk Preview Template data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a ChipSPA Preview Templa data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a ChipSPA Preview Templa data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a ChipSPA Preview Templa data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a ChipSPA Preview Templa data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a ChipSPA Preview Templa data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a ChipSPA Preview Templa data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Medicaid_SPA Preview T data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Medicaid_SPA Preview T data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Medicaid_SPA Preview T data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a Medicaid_SPA Preview T data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a Medicaid_SPA Preview T data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a Medicaid_SPA Preview T data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Waiver Capitated Previ data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Waiver Capitated Previ data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Waiver Capitated Previ data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a Waiver Capitated Previ data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a Waiver Capitated Previ data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a Waiver Capitated Previ data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Appk Preview Templat

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Appk Preview Templat

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a ChipSPA Preview Temp

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Medicaid_SPA Preview

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Medicaid_SPA Preview

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Medicaid_SPA Preview

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Waiver Capitated Pre

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Waiver Capitated Pre

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Waiver Capitated Pre

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Budget Documents - : -

+ +

+ Budget Documents + : +

+ +
renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Public Notice - : -

+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Tribal Consultation - : -

+ +

+ Tribal Consultation + : +

+ +
renders a Waiver Capitated Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > -

- Other - : -

+ +

+ Other + : +

+ +
renders a Waiver Capitated Pre

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Appk Previe

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Appk Previe

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a ChipSPA Pre

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Medicaid_SP

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Medicaid_SP

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Medicaid_SP

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Waiver Prev

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Waiver Prev

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Waiver Prev

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact renders a Waiver Prev

- If you have any questions or did not expect this email, please contact - + If you have any questions or did not expect this email, please contact { + const jan = new Date(date).getTimezoneOffset(); + const jul = new Date(new Date(date).setMonth(6)).getTimezoneOffset(); + return new Date(date).getTimezoneOffset() < Math.max(jan, jul); + }; + + const timezoneAbbreviation = isDST(date) ? "EDT" : "EST"; + return dateFns.format(new Date(date), `MMM d, yyyy '@ 11:59pm ${timezoneAbbreviation}'`); } diff --git a/lib/packages/shared-utils/index.ts b/lib/packages/shared-utils/index.ts index d43c85293f..c6721d63cb 100644 --- a/lib/packages/shared-utils/index.ts +++ b/lib/packages/shared-utils/index.ts @@ -10,3 +10,4 @@ export * from "./decode"; export * from "./validate-env-variable"; export * from "./date-helper"; export * from "./package-actions/getAvailableActions"; +export * from "./action-type"; From 11ac25a08a5b7e6ccf6de8f6e044fccfdf8414fc Mon Sep 17 00:00:00 2001 From: Thomas Walker Date: Wed, 8 Jan 2025 13:23:19 -0500 Subject: [PATCH 02/11] test(email): proces email test (#979) * feat(test)proces email test * Removed console.log * linter correction * removed a ine * remove brackets * add region * Address change reqeust --- lib/lambda/processEmails.test.ts | 152 ++++++++++++++++++++ lib/lambda/processEmails.text.ts | 223 ----------------------------- lib/lambda/processEmails.ts | 2 +- lib/libs/email/getAllStateUsers.ts | 7 +- lib/vitest.setup.ts | 3 + mocks/data/items.ts | 23 ++- mocks/data/secrets.ts | 20 +++ mocks/handlers/aws/cognito.ts | 12 +- mocks/handlers/aws/email.ts | 35 +++++ mocks/handlers/aws/index.ts | 3 +- 10 files changed, 247 insertions(+), 233 deletions(-) create mode 100644 lib/lambda/processEmails.test.ts delete mode 100644 lib/lambda/processEmails.text.ts create mode 100644 mocks/handlers/aws/email.ts diff --git a/lib/lambda/processEmails.test.ts b/lib/lambda/processEmails.test.ts new file mode 100644 index 0000000000..4676964c2c --- /dev/null +++ b/lib/lambda/processEmails.test.ts @@ -0,0 +1,152 @@ +import { describe, it, expect, vi } from "vitest"; +import { Context } from "aws-lambda"; +import { SESClient } from "@aws-sdk/client-ses"; +import { sendEmail, validateEmailTemplate, handler } from "./processEmails"; +import { KafkaRecord, KafkaEvent } from "node_modules/shared-types"; + +describe("process emails Handler", () => { + it("should return 200 with a proper email", async () => { + const params = { + Source: "sender@example.com", + Destination: { ToAddresses: ["recipient@example.com"] }, + Message: { + Subject: { Data: "Mocked Email", Charset: "UTF-8" }, + Body: { Text: { Data: "This is a mocked email body.", Charset: "UTF-8" } }, + }, + }; + const test = await sendEmail(params, "us-east-1"); + expect(test.status).toStrictEqual(200); + }); + it("should throw an error", async () => { + const params = { + Source: "sender@example.com", + Destination: { ToAddresses: ["recipient@example.com"] }, + Message: { + Subject: { Data: "Mocked Email", Charset: "UTF-8" }, + Body: { Text: { Data: "This is a mocked email body.", Charset: "UTF-8" } }, + }, + }; + await expect(sendEmail(params, "test")).rejects.toThrowError(); + }); + it("should validate the email template and throw an error", async () => { + const template = { + to: "Person", + from: "Other Guy", + body: "body", + }; + expect(() => validateEmailTemplate(template)).toThrowError(); + }); + it("should make a handler", async () => { + const callback = vi.fn(); + const secSPY = vi.spyOn(SESClient.prototype, "send"); + const mockEvent: KafkaEvent = { + records: { + "mock-topic": [ + { + key: Buffer.from("VA").toString("base64"), + value: Buffer.from( + JSON.stringify({ + origin: "mako", + event: "new-medicaid-submission", + authority: "medicaid spa", + }), + ).toString("base64"), + headers: {}, + timestamp: 1732645041557, + offset: "0", + partition: 0, + topic: "mock-topic", + } as unknown as KafkaRecord, + ], + }, + eventSource: "", + bootstrapServers: "", + }; + + await handler(mockEvent, {} as Context, callback); + expect(secSPY).toHaveBeenCalledTimes(2); + }); + it("should not be mako therefor not do an event", async () => { + const callback = vi.fn(); + const mockEvent: KafkaEvent = { + records: { + "mock-topic": [ + { + key: Buffer.from("VA").toString("base64"), + value: Buffer.from( + JSON.stringify({ + origin: "not mako", + event: "new-medicaid-submission", + authority: "medicaid spa", + }), + ).toString("base64"), + headers: {}, + timestamp: 1732645041557, + offset: "0", + partition: 0, + topic: "mock-topic", + } as unknown as KafkaRecord, + ], + }, + eventSource: "", + bootstrapServers: "", + }; + const secSPY = vi.spyOn(SESClient.prototype, "send"); + + await handler(mockEvent, {} as Context, callback); + expect(secSPY).toHaveBeenCalledTimes(0); + }); + it("should be missing a value, so nothing sent", async () => { + const callback = vi.fn(); + const mockEvent: KafkaEvent = { + records: { + "mock-topic": [ + { + key: Buffer.from("VA").toString("base64"), + headers: {}, + timestamp: 1732645041557, + offset: "0", + partition: 0, + topic: "mock-topic", + } as unknown as KafkaRecord, + ], + }, + eventSource: "", + bootstrapServers: "", + }; + const secSPY = vi.spyOn(SESClient.prototype, "send"); + + await handler(mockEvent, {} as Context, callback); + expect(secSPY).toHaveBeenCalledTimes(0); + }); + it("should be missing an environment variable", async () => { + const callback = vi.fn(); + delete process.env.osDomain; + const mockEvent: KafkaEvent = { + records: { + "mock-topic": [ + { + key: Buffer.from("VA").toString("base64"), + value: Buffer.from( + JSON.stringify({ + origin: "mako", + event: "new-medicaid-submission", + authority: "medicaid spa", + }), + ).toString("base64"), + headers: {}, + timestamp: 1732645041557, + offset: "0", + partition: 0, + topic: "mock-topic", + } as unknown as KafkaRecord, + ], + }, + eventSource: "", + bootstrapServers: "", + }; + await expect(handler(mockEvent, {} as Context, callback)).rejects.toThrowError( + "Missing required environment variables: osDomain", + ); + }); +}); diff --git a/lib/lambda/processEmails.text.ts b/lib/lambda/processEmails.text.ts deleted file mode 100644 index baa5c4fdd4..0000000000 --- a/lib/lambda/processEmails.text.ts +++ /dev/null @@ -1,223 +0,0 @@ -import { - createEmailParams, - handler as processEmailsHandler, - processRecord, - sendEmail, -} from "./processEmails"; -import { KafkaEvent, KafkaRecord } from "shared-types"; -import { SESClient, SendEmailCommand } from "@aws-sdk/client-ses"; -import { getAllStateUsers } from "libs/email"; -import { getSecret } from "shared-utils"; -import * as os from "libs/opensearch-lib"; -import { Context } from "aws-lambda"; -import { vi, Mock, beforeAll, afterAll, beforeEach, afterEach, describe, it, expect } from "vitest"; -import { EmailAddresses } from "shared-types"; - -// Add this near the top of your test file, after the imports -const mockEmailAddresses: EmailAddresses = { - osgEmail: ["osg@example.com"], - dpoEmail: ["dpo@example.com"], - dmcoEmail: ["dmco@example.com"], - dhcbsooEmail: ["dhcbsoo@example.com"], - chipInbox: ["chip.inbox@example.com"], - chipCcList: ["chip.cc1@example.com", "chip.cc2@example.com"], - sourceEmail: "source@example.com", - srtEmails: ["srt1@example.com", "srt2@example.com"], - cpocEmail: ["cpoc@example.com"], -}; - -vi.mock("@aws-sdk/client-ses"); -beforeAll(() => { - vi.clearAllMocks(); - - // Mock environment variables - vi.stubEnv("region", "us-east-1"); - vi.stubEnv("stage", "test"); - vi.stubEnv("indexNamespace", "test-index"); - vi.stubEnv("osDomain", "https://mock-opensearch-domain.com"); - vi.stubEnv("applicationEndpointUrl", "https://mock-app-endpoint.com"); //pragma: allowlist secret - vi.stubEnv("emailAddressLookupSecretName", "mock-email-secret"); //pragma: allowlist secret - vi.stubEnv("EMAIL_ATTEMPTS_TABLE", "mock-email-attempts-table"); - vi.stubEnv("MAX_RETRY_ATTEMPTS", "3"); - vi.stubEnv("userPoolId", "mock-user-pool-id"); //pragma: allowlist secret - - // Mock the getSecret function - (getSecret as Mock).mockResolvedValue(JSON.stringify(mockEmailAddresses)); - - // Add any other mocks or setup needed for your tests -}); -afterAll(() => { - // Clear stubbed environment variables after each test - vi.unstubAllEnvs(); -}); -describe("createEmailParams", () => { - const emailDetails = { - to: ["recipient@example.com"], - from: "sender@example.com", - subject: "Test Email", - html: "Test", - text: "Test", - }; - beforeEach(() => { - vi.clearAllMocks(); - - vi.stubEnv("region", "us-east-1"); - vi.stubEnv("emailAddressLookupSecretName", "mock-email-secret"); //pragma: allowlist secret - vi.stubEnv("applicationEndpointUrl", "https://mock-app-endpoint.com"); - vi.stubEnv("openSearchDomainEndpoint", "https://mock-opensearch-domain.com"); - // Mock environment variables - vi.stubEnv("indexNamespace", "https://mock-opensearch-endpoint.com"); - (getSecret as Mock).mockResolvedValue(JSON.stringify(mockEmailAddresses)); - - // Add any other environment variables your code expects - }); - - afterEach(() => { - // Clear stubbed environment variables after each test - vi.unstubAllEnvs(); - }); - - it("should create email parameters correctly", () => { - const params = createEmailParams(emailDetails, emailDetails.from, "topicName"); - expect(params).toEqual({ - Destination: { - ToAddresses: emailDetails.to, - }, - Message: { - Body: { - Html: { - Charset: "UTF-8", - Data: emailDetails.html, - }, - Text: { - Charset: "UTF-8", - Data: emailDetails.text, - }, - }, - Subject: { - Charset: "UTF-8", - Data: emailDetails.subject, - }, - }, - Source: emailDetails.from, - }); - }); -}); - -describe("sendEmail", () => { - const mockSesClient = new SESClient(); - const emailDetails = { - to: ["recipient@example.com"], - from: "sender@example.com", - subject: "Test Email", - html: "Test", - text: "Test", - }; - - beforeEach(() => { - vi.clearAllMocks(); - }); - - it("should send email successfully", async () => { - (mockSesClient.send as Mock).mockResolvedValue({}); - const params = createEmailParams(emailDetails, emailDetails.from, "topicName"); - - await sendEmail(params, "topicName"); - expect(mockSesClient.send).toHaveBeenCalledWith(expect.any(SendEmailCommand)); - }); - - it("should throw an error when there is an issue sending an email", async () => { - (mockSesClient.send as Mock).mockRejectedValue(new Error("Error sending email")); - const params = createEmailParams(emailDetails, emailDetails.from, "topicName"); - - await expect(sendEmail(params, "topicName")).rejects.toThrow("Error sending email"); - }); -}); - -describe("processEmails", () => { - vi.mock("@aws-sdk/client-ses"); - vi.mock("./../libs/email"); - vi.mock("shared-utils"); - vi.mock("../libs/opensearch-lib"); - const mockKafkaEvent: KafkaEvent = { - eventSource: "aws:kafka", - bootstrapServers: - "b-1.master-msk.zf7e0q.c7.kafka.us-east-1.amazonaws.com:9094,b-2.master-msk.zf7e0q.c7.kafka.us-east-1.amazonaws.com:9094,b-3.master-msk.zf7e0q.c7.kafka.us-east-1.amazonaws.com:9094", - records: { - "topic-partition": [ - { - key: "key", - value: "value", - timestamp: 1234567890, - topic: "topic", - partition: 0, - offset: 0, - timestampType: "CREATE_TIME", - headers: {}, - }, - ], - }, - }; - - const mockContext = {} as Context; // Create a mock Context object - const mockThirdArgument = () => {}; // Add the appropriate third argument here - - beforeEach(() => { - vi.clearAllMocks(); - - // Mock environment variables - vi.stubEnv("OPENSEARCH_ENDPOINT", "https://mock-opensearch-endpoint.com"); - vi.stubEnv("INDEX_NAMESPACE", "mock-index-namespace"); - (getSecret as Mock).mockResolvedValue(JSON.stringify(mockEmailAddresses)); - - // Add any other environment variables your code expects - }); - - afterEach(() => { - // Clear stubbed environment variables after each test - vi.unstubAllEnvs(); - }); - - it("should process Kafka event successfully", async () => { - (getAllStateUsers as Mock).mockResolvedValue([]); - (getSecret as Mock).mockResolvedValue("{}"); - (os.getItem as Mock).mockResolvedValue({}); - - await processEmailsHandler(mockKafkaEvent, mockContext, mockThirdArgument); - expect(getAllStateUsers).toHaveBeenCalled(); - expect(getSecret).toHaveBeenCalled(); - expect(os.getItem).toHaveBeenCalled(); - }); - - it("should handle tombstone event", async () => { - const tombstoneRecord: KafkaRecord = { - key: "base64-encoded-key", - value: "", - topic: "example-topic", - partition: 0, - offset: 0, - timestamp: Date.now(), - timestampType: "CREATE_TIME", - headers: {}, - }; - - await processRecord(tombstoneRecord, { - emailAddressLookupSecretName: "emailAddressLookupSecretName", //pragma: allowlist secret - applicationEndpointUrl: "applicationEndpointUrl", //pragma: allowlist secret - osDomain: "osDomain", - indexNamespace: "indexNamespace", - region: "region", - DLQ_URL: "DLQ_URL", - userPoolId: "userPoolId", - }); - expect(getAllStateUsers).not.toHaveBeenCalled(); - }); - - it("should throw an error when there is an issue processing email event", async () => { - (getAllStateUsers as Mock).mockRejectedValue(new Error("Error fetching users")); - - await expect( - processEmailsHandler(mockKafkaEvent, mockContext, mockThirdArgument), - ).rejects.toThrow(); - }); -}); diff --git a/lib/lambda/processEmails.ts b/lib/lambda/processEmails.ts index d3542cae39..e6ee16d07d 100644 --- a/lib/lambda/processEmails.ts +++ b/lib/lambda/processEmails.ts @@ -134,7 +134,7 @@ export async function processRecord(kafkaRecord: KafkaRecord, config: ProcessEma } } -function validateEmailTemplate(template: any) { +export function validateEmailTemplate(template: any) { const requiredFields = ["to", "subject", "body"]; const missingFields = requiredFields.filter((field) => !template[field]); diff --git a/lib/libs/email/getAllStateUsers.ts b/lib/libs/email/getAllStateUsers.ts index 8b2c4a619b..b481fb5341 100644 --- a/lib/libs/email/getAllStateUsers.ts +++ b/lib/libs/email/getAllStateUsers.ts @@ -12,7 +12,9 @@ export type StateUser = { formattedEmailAddress: string; }; -const cognitoClient = new CognitoIdentityProviderClient(); +const cognitoClient = new CognitoIdentityProviderClient({ + region: process.env.region, +}); export const getAllStateUsers = async ({ userPoolId, @@ -26,14 +28,12 @@ export const getAllStateUsers = async ({ UserPoolId: userPoolId, Limit: 60, }; - const command = new ListUsersCommand(params); const response: ListUsersCommandOutput = await cognitoClient.send(command); if (!response.Users || response.Users.length === 0) { return []; } - const filteredStateUsers = response.Users.filter((user) => { const stateAttribute = user.Attributes?.find((attr) => attr.Name === "custom:state"); return stateAttribute?.Value?.split(",").includes(state); @@ -42,7 +42,6 @@ export const getAllStateUsers = async ({ acc[attr.Name as any] = attr.Value; return acc; }, {} as Record); - return { firstName: attributes?.["given_name"], lastName: attributes?.["family_name"], diff --git a/lib/vitest.setup.ts b/lib/vitest.setup.ts index 0253f06766..3b94b69953 100644 --- a/lib/vitest.setup.ts +++ b/lib/vitest.setup.ts @@ -80,6 +80,9 @@ beforeEach(() => { process.env.idmClientIssuer = USER_POOL_CLIENT_DOMAIN; process.env.osDomain = OPENSEARCH_DOMAIN; process.env.indexNamespace = OPENSEARCH_INDEX_NAMESPACE; + process.env.emailAddressLookupSecretName = "mock-email-secret"; // pragma: allowlist secret + process.env.DLQ_URL = "https://sqs.us-east-1.amazonaws.com/123/test"; + process.env.configurationSetName = "SES"; }); afterEach(() => { diff --git a/mocks/data/items.ts b/mocks/data/items.ts index d302cfdac3..7db383eee6 100644 --- a/mocks/data/items.ts +++ b/mocks/data/items.ts @@ -8,7 +8,7 @@ export const EXISTING_ITEM_APPROVED_AMEND_ID = "MD-0000.R00.01"; export const EXISTING_ITEM_APPROVED_RENEW_ID = "MD-0000.R01.00"; export const EXISTING_ITEM_ID = "MD-00-0000"; export const NOT_FOUND_ITEM_ID = "MD-0004.R00.00"; -export const NOT_EXISTING_ITEM_ID = "MD-11-0000" +export const NOT_EXISTING_ITEM_ID = "MD-11-0000"; export const TEST_ITEM_ID = "MD-0005.R01.00"; export const EXISTING_ITEM_TEMPORARY_EXTENSION_ID = "MD-0005.R01.TE00"; export const HI_TEST_ITEM_ID = "HI-0000.R00.00"; @@ -32,6 +32,27 @@ const items: Record = { actionType: "New", }, }, + ["VA"]: { + _id: EXISTING_ITEM_ID, + found: true, + _source: { + leadAnalystEmail: "michael.chen@cms.hhs.gov", + leadAnalystName: "Michael Chen", + reviewTeam: [ + { + email: "john.doe@medicaid.gov", + name: "John Doe", + }, + { + email: "emily.rodriguez@medicaid.gov", + name: "Emily Rodriguez", + }, + ], + id: EXISTING_ITEM_ID, + seatoolStatus: SEATOOL_STATUS.APPROVED, + actionType: "New", + }, + }, [EXISTING_ITEM_APPROVED_NEW_ID]: { _id: EXISTING_ITEM_APPROVED_NEW_ID, found: true, diff --git a/mocks/data/secrets.ts b/mocks/data/secrets.ts index 1889504ad4..8b222242b1 100644 --- a/mocks/data/secrets.ts +++ b/mocks/data/secrets.ts @@ -5,6 +5,7 @@ export const TEST_SECRET_TO_DELETE_ID = "test-secret-to-delete"; // pragma: allo export const TEST_SECRET_NO_VALUE_ID = "test-secret-no-value"; // pragma: allowlist secret export const TEST_SECRET_ERROR_ID = "Throw Get Secret Error"; // pragma: allowlist secret export const TEST_PW_ARN = "test-arn-create-update-user"; // pragma: allowlist secret +export const TEST_EMAIL_ID = "mock-email-secret"; const secrets: Record = { [TEST_SECRET_ID]: { @@ -39,6 +40,25 @@ const secrets: Record = { VersionId: "1.0", VersionStages: ["prod"], }, + [TEST_EMAIL_ID]: { + ARN: `arn://${TEST_EMAIL_ID}`, + CreatedDate: new Date("2023-01-01T12:00:00Z").getTime(), + Name: TEST_EMAIL_ID, + SecretString: + "{" + + '"osgEmail": ["osg@example.com"],' + + '"dpoEmail": ["dpo@example.com"],' + + '"dmcoEmail": ["dmco@example.com"],' + + '"dhcbsooEmail": ["dhcbsoo@example.com"],' + + '"chipInbox": ["chip.inbox@example.com"],' + + '"chipCcList": ["chip.cc1@example.com", "chip.cc2@example.com"],' + + '"sourceEmail": "source@example.com",' + + '"srtEmails": ["srt1@example.com", "srt2@example.com"],' + + '"cpocEmail": ["cpoc@example.com"]' + + "}", + VersionId: "1.0", + VersionStages: ["prod"], + }, }; export default secrets; diff --git a/mocks/handlers/aws/cognito.ts b/mocks/handlers/aws/cognito.ts index 4cd07fb707..e830dfc187 100644 --- a/mocks/handlers/aws/cognito.ts +++ b/mocks/handlers/aws/cognito.ts @@ -343,10 +343,16 @@ export const identityProviderServiceHandler = http.post< } if (target == "AWSCognitoIdentityProviderService.ListUsers") { - const { Filter } = (await request.json()) as IdpListUsersRequestBody; - const username = - Filter.replace("sub = ", "").replaceAll('"', "") || process.env.MOCK_USER_USERNAME; + let username: string = ""; + try { + const { Filter } = (await request.json()) as IdpListUsersRequestBody; + username = Filter.replace("sub = ", "").replaceAll('"', ""); + } catch { + if (process.env.MOCK_USER_USERNAME) { + username = process.env.MOCK_USER_USERNAME; + } + } if (username) { const user = findUserByUsername(username); if (user) { diff --git a/mocks/handlers/aws/email.ts b/mocks/handlers/aws/email.ts new file mode 100644 index 0000000000..5ec43f75f8 --- /dev/null +++ b/mocks/handlers/aws/email.ts @@ -0,0 +1,35 @@ +import { http, HttpResponse, PathParams } from "msw"; + +export const emailHandlers = [ + http.post("f", async (request) => { + // Extract the body from the request + if (request.request.url === "https://email.us-east-1.amazonaws.com/") { + return HttpResponse.xml(` + + + mocked-message-id-12345 + + + mocked-request-id-67890 + + + `); + } + return new HttpResponse(null, { status: 500 }); + }), + http.post("https://sqs.us-east-1.amazonaws.com/", async () => { + return new HttpResponse(null, { status: 200 }); + }), + http.post("https://email.us-east-1.amazonaws.com/", async () => { + return HttpResponse.xml(` + + + mocked-message-id-12345 + + + mocked-request-id-67890 + + + `); + }), +]; diff --git a/mocks/handlers/aws/index.ts b/mocks/handlers/aws/index.ts index 7856eff9c6..9b4f5cfb7c 100644 --- a/mocks/handlers/aws/index.ts +++ b/mocks/handlers/aws/index.ts @@ -4,7 +4,7 @@ import { credentialHandlers } from "./credentials"; import { lambdaHandlers } from "./lambda"; import { secretsManagerHandlers } from "./secretsManager"; import { stepFunctionHandlers } from "./stepFunctions"; - +import { emailHandlers } from "./email"; export const awsHandlers = [ ...cloudFormationHandlers, ...cognitoHandlers, @@ -12,6 +12,7 @@ export const awsHandlers = [ ...lambdaHandlers, ...secretsManagerHandlers, ...stepFunctionHandlers, + ...emailHandlers, ]; export { errorCloudFormationHandler } from "./cloudFormation"; From 6fab5d0d2086560aedfb08ab617581908594bc06 Mon Sep 17 00:00:00 2001 From: Thomas Walker Date: Wed, 8 Jan 2025 14:35:59 -0500 Subject: [PATCH 03/11] feat(test)-submit lambda (#987) * feat(test)-submit lambda * Update withdrawpackage to withdrawrai * linter corrections * Fix some test * Test for malformed objects * Remove import vs code added in * remove console.log * Updatign to use get requestcontext --- lib/lambda/search.test.ts | 2 +- lib/lambda/submit/index.test.ts | 257 ++++++++++++++ .../submit/indexMissingAttachments.test.ts | 193 +++++++++++ .../submissionPayloads/capitated-amendment.ts | 15 +- .../upload-subsequent-documents.ts | 17 +- lib/libs/api/auth/user.ts | 34 +- mocks/data/items.ts | 15 +- mocks/data/submit/attachments.ts | 319 ++++++++++++++++++ mocks/data/submit/base.ts | 207 ++++++++++++ mocks/data/submit/baseMissingAttachments.ts | 160 +++++++++ mocks/handlers/opensearch/main.ts | 26 +- 11 files changed, 1186 insertions(+), 59 deletions(-) create mode 100644 lib/lambda/submit/index.test.ts create mode 100644 lib/lambda/submit/indexMissingAttachments.test.ts create mode 100644 mocks/data/submit/attachments.ts create mode 100644 mocks/data/submit/base.ts create mode 100644 mocks/data/submit/baseMissingAttachments.ts diff --git a/lib/lambda/search.test.ts b/lib/lambda/search.test.ts index 07f10acfad..2d51b35d21 100644 --- a/lib/lambda/search.test.ts +++ b/lib/lambda/search.test.ts @@ -29,7 +29,7 @@ describe("getSearchData Handler", () => { const body = JSON.parse(res.body); expect(body).toBeTruthy(); expect(body?.hits?.hits).toBeTruthy(); - expect(body?.hits?.hits?.length).toEqual(11); + expect(body?.hits?.hits?.length).toEqual(12); }); it("should handle errors during processing", async () => { diff --git a/lib/lambda/submit/index.test.ts b/lib/lambda/submit/index.test.ts new file mode 100644 index 0000000000..c40f3c42ed --- /dev/null +++ b/lib/lambda/submit/index.test.ts @@ -0,0 +1,257 @@ +import { submit } from "./index"; +import { APIGatewayEvent } from "node_modules/shared-types"; +import { describe, it, expect, vi, afterEach, beforeEach } from "vitest"; +import { getRequestContext } from "mocks"; +import { + capitatedAmendmentBase, + appkBase, + capitatedInitial, + capitatedRenewal, + contractingAmmendment, + contractingInitial, + contractingRenewal, + newChipSubmission, + newMedicaidSubmission, + respondToRai, + temporaryExtension, + toggleWithdrawRai, + uploadSubsequentDocuments, + withdrawPackage, + withdrawRai, +} from "mocks/data/submit/base"; + +vi.mock("kafkajs", () => { + const producer = { + connect: vi.fn(), + send: vi.fn(), + disconnect: vi.fn(), + }; + const kafka = { + producer: () => producer, + }; + return { + Kafka: vi.fn(() => kafka), + Producer: vi.fn(() => producer), + }; +}); +describe("submit Lambda function", () => { + let brokerString: string | undefined; + beforeEach(() => { + brokerString = process.env.brokerString; + process.env.brokerString = "broker1,broker2"; + }); + + afterEach(() => { + process.env.brokerString = brokerString; + }); + it("should have no body", async () => { + const event = {} as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(400); + expect(result.body).toEqual('"Event body required"'); + }); + it("should have no event in the body", async () => { + const event = { + body: `{"event": ""}`, + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(400); + expect(result.body).toEqual('{"message":"Bad Request - Missing event name in body"}'); + }); + + it("should have a bad event in the body", async () => { + const event = { + body: `{"event": "Not a real event"}`, + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(400); + expect(result.body).toEqual('{"message":"Bad Request - Unknown event type Not a real event"}'); + }); + it("should start to create an capitated ammendment event", async () => { + const base = JSON.stringify(capitatedAmendmentBase); + + const event = { + body: base, + requestContext: getRequestContext(), + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(200); + expect(result.body).toEqual('{"message":"success"}'); + }); + it("should start to create an capitated ammendment event", async () => { + const base = JSON.stringify(capitatedAmendmentBase); + + const event = { + body: base, + requestContext: getRequestContext(), + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(200); + expect(result.body).toEqual('{"message":"success"}'); + }); + it("should start to create an app-k event", async () => { + const base = JSON.stringify(appkBase); + + const event = { + body: base, + requestContext: getRequestContext(), + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(200); + expect(result.body).toEqual('{"message":"success"}'); + }); + it("should start to create an capitated initial event", async () => { + const base = JSON.stringify(capitatedInitial); + + const event = { + body: base, + requestContext: getRequestContext(), + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(200); + expect(result.body).toEqual('{"message":"success"}'); + }); + it("should start to create an contracting ammendment event", async () => { + const base = JSON.stringify(contractingAmmendment); + + const event = { + body: base, + requestContext: getRequestContext(), + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(200); + expect(result.body).toEqual('{"message":"success"}'); + }); + it("should start to create an contracting initial event", async () => { + const base = JSON.stringify(contractingInitial); + + const event = { + body: base, + requestContext: getRequestContext(), + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(200); + expect(result.body).toEqual('{"message":"success"}'); + }); + it("should start to create an contracting renewal event", async () => { + const base = JSON.stringify(contractingRenewal); + + const event = { + body: base, + requestContext: getRequestContext(), + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(200); + expect(result.body).toEqual('{"message":"success"}'); + }); + it("should start to create an new chip submission event", async () => { + const base = JSON.stringify(newChipSubmission); + + const event = { + body: base, + requestContext: getRequestContext(), + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(200); + expect(result.body).toEqual('{"message":"success"}'); + }); + it("should start to create an new chip medicaid submission event", async () => { + const base = JSON.stringify(newMedicaidSubmission); + + const event = { + body: base, + requestContext: getRequestContext(), + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(200); + expect(result.body).toEqual('{"message":"success"}'); + }); + it("should start to create an new respond to rai event", async () => { + const base = JSON.stringify(respondToRai); + + const event = { + body: base, + requestContext: getRequestContext(), + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(200); + expect(result.body).toEqual('{"message":"success"}'); + }); + it("should start to create an temporary extension event", async () => { + const base = JSON.stringify(temporaryExtension); + + const event = { + body: base, + requestContext: getRequestContext(), + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(200); + expect(result.body).toEqual('{"message":"success"}'); + }); + it("should start to create an toggle withdraw event", async () => { + const base = JSON.stringify(toggleWithdrawRai); + + const event = { + body: base, + requestContext: getRequestContext(), + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(200); + expect(result.body).toEqual('{"message":"success"}'); + }); + it("should start to create an withdraw package event", async () => { + const base = JSON.stringify(withdrawPackage); + + const event = { + body: base, + requestContext: getRequestContext(), + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(200); + expect(result.body).toEqual('{"message":"success"}'); + }); + it("should start to create an withdraw rai event", async () => { + const base = JSON.stringify(withdrawRai); + + const event = { + body: base, + requestContext: getRequestContext(), + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(200); + expect(result.body).toEqual('{"message":"success"}'); + }); + it("should start to create an capitated renewal event", async () => { + const base = JSON.stringify(capitatedRenewal); + + const event = { + body: base, + requestContext: getRequestContext(), + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(200); + expect(result.body).toEqual('{"message":"success"}'); + }); + it("should start to create an contracting initial event", async () => { + const base = JSON.stringify(contractingInitial); + + const event = { + body: base, + requestContext: getRequestContext(), + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(200); + expect(result.body).toEqual('{"message":"success"}'); + }); + it("should start to create an upload subsequent documents event", async () => { + const base = JSON.stringify(uploadSubsequentDocuments); + + const event = { + body: base, + requestContext: getRequestContext(), + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(200); + expect(result.body).toEqual('{"message":"success"}'); + }); +}); diff --git a/lib/lambda/submit/indexMissingAttachments.test.ts b/lib/lambda/submit/indexMissingAttachments.test.ts new file mode 100644 index 0000000000..464d06d77d --- /dev/null +++ b/lib/lambda/submit/indexMissingAttachments.test.ts @@ -0,0 +1,193 @@ +import { submit } from "./index"; +import { APIGatewayEvent } from "node_modules/shared-types"; +import { describe, it, expect, vi, afterEach, beforeEach } from "vitest"; +import { bma } from "mocks/data/submit/baseMissingAttachments"; +import { getRequestContext } from "mocks"; + +vi.mock("kafkajs", () => { + const producer = { + connect: vi.fn(), + send: vi.fn(), + disconnect: vi.fn(), + }; + const kafka = { + producer: () => producer, + }; + return { + Kafka: vi.fn(() => kafka), + Producer: vi.fn(() => producer), + }; +}); +describe("submit Lambda function missing objects in event", () => { + let brokerString: string | undefined; + beforeEach(() => { + brokerString = process.env.brokerString; + process.env.brokerString = "broker1,broker2"; + }); + + afterEach(() => { + process.env.brokerString = brokerString; + }); + + it("should start to create an capitated ammendment event", async () => { + const base = JSON.stringify(bma.capitatedAmendmentBase); + + const event = { + body: base, + requestContext: getRequestContext(), + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(500); + }); + + it("should start to create an app-k event", async () => { + const base = JSON.stringify(bma.appkBase); + + const event = { + body: base, + requestContext: getRequestContext(), + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(500); + }); + it("should start to create an capitated initial event", async () => { + const base = JSON.stringify(bma.capitatedInitial); + + const event = { + body: base, + requestContext: getRequestContext(), + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(500); + }); + it("should start to create an contracting ammendment event", async () => { + const base = JSON.stringify(bma.contractingAmmendment); + + const event = { + body: base, + requestContext: getRequestContext(), + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(500); + }); + it("should start to create an contracting initial event", async () => { + const base = JSON.stringify(bma.contractingInitial); + + const event = { + body: base, + requestContext: getRequestContext(), + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(500); + }); + it("should start to create an contracting renewal event", async () => { + const base = JSON.stringify(bma.contractingRenewal); + + const event = { + body: base, + requestContext: getRequestContext(), + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(500); + }); + it("should start to create an new chip submission event", async () => { + const base = JSON.stringify(bma.newChipSubmission); + + const event = { + body: base, + requestContext: getRequestContext(), + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(500); + }); + it("should start to create an new chip medicaid submission event", async () => { + const base = JSON.stringify(bma.newMedicaidSubmission); + + const event = { + body: base, + requestContext: getRequestContext(), + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(500); + }); + it("should start to create an new respond to rai event", async () => { + const base = JSON.stringify(bma.respondToRai); + + const event = { + body: base, + requestContext: getRequestContext(), + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(500); + }); + it("should start to create an temporary extension event", async () => { + const base = JSON.stringify(bma.temporaryExtension); + + const event = { + body: base, + requestContext: getRequestContext(), + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(500); + }); + it("should start to create an toggle withdraw event", async () => { + const base = JSON.stringify(bma.toggleWithdrawRai); + + const event = { + body: base, + requestContext: getRequestContext(), + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(500); + }); + it("should start to create an withdraw package event", async () => { + const base = JSON.stringify(bma.withdrawPackage); + + const event = { + body: base, + requestContext: getRequestContext(), + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(500); + }); + it("should start to create an withdraw rai event", async () => { + const base = JSON.stringify(bma.withdrawRai); + + const event = { + body: base, + requestContext: getRequestContext(), + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(500); + }); + it("should start to create an capitated renewal event", async () => { + const base = JSON.stringify(bma.capitatedRenewal); + + const event = { + body: base, + requestContext: getRequestContext(), + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(500); + }); + it("should start to create an contracting initial event", async () => { + const base = JSON.stringify(bma.contractingInitial); + + const event = { + body: base, + requestContext: getRequestContext(), + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(500); + }); + it("should start to create an upload subsequent documents event", async () => { + const base = JSON.stringify(bma.uploadSubsequentDocuments); + + const event = { + body: base, + requestContext: getRequestContext(), + } as unknown as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(500); + }); +}); diff --git a/lib/lambda/submit/submissionPayloads/capitated-amendment.ts b/lib/lambda/submit/submissionPayloads/capitated-amendment.ts index 97b1c8eb99..6bbb429583 100644 --- a/lib/lambda/submit/submissionPayloads/capitated-amendment.ts +++ b/lib/lambda/submit/submissionPayloads/capitated-amendment.ts @@ -1,20 +1,14 @@ // can/should add the additional frontend checks here import { events } from "shared-types/events"; -import { - isAuthorized, - getAuthDetails, - lookupUserAttributes, -} from "../../../libs/api/auth/user"; +import { isAuthorized, getAuthDetails, lookupUserAttributes } from "../../../libs/api/auth/user"; import { type APIGatewayEvent } from "aws-lambda"; import { itemExists } from "libs/api/package"; export const capitatedAmendment = async (event: APIGatewayEvent) => { if (!event.body) return; - const parsedResult = events["capitated-amendment"].baseSchema.safeParse( - JSON.parse(event.body), - ); + const parsedResult = events["capitated-amendment"].baseSchema.safeParse(JSON.parse(event.body)); if (!parsedResult.success) { throw parsedResult.error; } @@ -30,10 +24,7 @@ export const capitatedAmendment = async (event: APIGatewayEvent) => { } const authDetails = getAuthDetails(event); - const userAttr = await lookupUserAttributes( - authDetails.userId, - authDetails.poolId, - ); + const userAttr = await lookupUserAttributes(authDetails.userId, authDetails.poolId); const submitterEmail = userAttr.email; const submitterName = `${userAttr.given_name} ${userAttr.family_name}`; diff --git a/lib/lambda/submit/submissionPayloads/upload-subsequent-documents.ts b/lib/lambda/submit/submissionPayloads/upload-subsequent-documents.ts index 8d2a0e05b0..5c9baebbad 100644 --- a/lib/lambda/submit/submissionPayloads/upload-subsequent-documents.ts +++ b/lib/lambda/submit/submissionPayloads/upload-subsequent-documents.ts @@ -1,14 +1,14 @@ import { APIGatewayEvent } from "aws-lambda"; -import { getAuthDetails, lookupUserAttributes } from "lib/libs/api/auth/user"; -import { itemExists } from "lib/libs/api/package"; -import { events } from "lib/packages/shared-types"; +import { getAuthDetails, lookupUserAttributes } from "libs/api/auth/user"; +import { itemExists } from "libs/api/package"; +import { events } from "shared-types"; export const uploadSubsequentDocuments = async (event: APIGatewayEvent) => { if (event.body === null) return; - const parsedResult = events[ - "upload-subsequent-documents" - ].baseSchema.safeParse(JSON.parse(event.body)); + const parsedResult = events["upload-subsequent-documents"].baseSchema.safeParse( + JSON.parse(event.body), + ); if (parsedResult.success === false) { throw parsedResult.error; @@ -19,10 +19,7 @@ export const uploadSubsequentDocuments = async (event: APIGatewayEvent) => { } const authDetails = getAuthDetails(event); - const userAttr = await lookupUserAttributes( - authDetails.userId, - authDetails.poolId, - ); + const userAttr = await lookupUserAttributes(authDetails.userId, authDetails.poolId); const submitterEmail = userAttr.email; const submitterName = `${userAttr.given_name} ${userAttr.family_name}`; diff --git a/lib/libs/api/auth/user.ts b/lib/libs/api/auth/user.ts index 71a2544d3e..9a2608d4e1 100644 --- a/lib/libs/api/auth/user.ts +++ b/lib/libs/api/auth/user.ts @@ -9,8 +9,7 @@ import { isCmsWriteUser, isCmsUser } from "shared-utils"; // Retrieve user authentication details from the APIGatewayEvent export function getAuthDetails(event: APIGatewayEvent) { - const authProvider = - event.requestContext.identity.cognitoAuthenticationProvider; + const authProvider = event.requestContext.identity.cognitoAuthenticationProvider; if (!authProvider) { throw new Error("No auth provider!"); } @@ -74,38 +73,27 @@ export async function fetchUserFromCognito( try { const listUsersResponse = await cognitoClient.send(commandListUsers); - if ( - listUsersResponse.Users === undefined || - listUsersResponse.Users.length !== 1 - ) { + if (listUsersResponse.Users === undefined || listUsersResponse.Users.length !== 1) { throw new Error("No user found with this sub"); } const currentUser = listUsersResponse.Users[0]; return currentUser; } catch (error) { - if ( - error instanceof Error && - error.message === "No user found with this sub" - ) { + if (error instanceof Error && error.message === "No user found with this sub") { throw error; } throw new Error("Error fetching user from Cognito"); } } -export const isAuthorized = async ( - event: APIGatewayEvent, - stateCode?: string | null, -) => { +export const isAuthorized = async (event: APIGatewayEvent, stateCode?: string | null) => { // Retrieve authentication details of the user const authDetails = getAuthDetails(event); // Look up user attributes from Cognito - const userAttributes = await lookupUserAttributes( - authDetails.userId, - authDetails.poolId, - ); + const userAttributes = await lookupUserAttributes(authDetails.userId, authDetails.poolId); + console.log(userAttributes); return ( isCmsUser(userAttributes) || (stateCode && userAttributes?.["custom:state"]?.includes(stateCode)) @@ -120,10 +108,7 @@ export const isAuthorizedToGetPackageActions = async ( const authDetails = getAuthDetails(event); // Look up user attributes from Cognito - const userAttributes = await lookupUserAttributes( - authDetails.userId, - authDetails.poolId, - ); + const userAttributes = await lookupUserAttributes(authDetails.userId, authDetails.poolId); return ( isCmsWriteUser(userAttributes) || (stateCode && userAttributes?.["custom:state"]?.includes(stateCode)) @@ -136,10 +121,7 @@ export const getStateFilter = async (event: APIGatewayEvent) => { const authDetails = getAuthDetails(event); // Look up user attributes from Cognito - const userAttributes = await lookupUserAttributes( - authDetails.userId, - authDetails.poolId, - ); + const userAttributes = await lookupUserAttributes(authDetails.userId, authDetails.poolId); if (!isCmsUser(userAttributes)) { if (userAttributes["custom:state"]) { diff --git a/mocks/data/items.ts b/mocks/data/items.ts index 7db383eee6..9bb2742052 100644 --- a/mocks/data/items.ts +++ b/mocks/data/items.ts @@ -4,6 +4,7 @@ import type { TestItemResult } from "../index.d"; export const EXISTING_ITEM_PENDING_ID = "MD-0002.R00.00"; export const EXISTING_ITEM_APPROVED_NEW_ID = "MD-0000.R00.00"; export const VALID_ITEM_TEMPORARY_EXTENSION_ID = "MD-0000.R00.TE00"; +export const VALID_ITEM_EXTENSION_ID = "VA-1111.R11.00"; export const EXISTING_ITEM_APPROVED_AMEND_ID = "MD-0000.R00.01"; export const EXISTING_ITEM_APPROVED_RENEW_ID = "MD-0000.R01.00"; export const EXISTING_ITEM_ID = "MD-00-0000"; @@ -17,7 +18,7 @@ export const CAPITATED_AMEND_ITEM_ID = "MD-006.R00.01"; export const CONTRACTING_INITIAL_ITEM_ID = "MD-007.R00.00"; export const CONTRACTING_AMEND_ITEM_ID = "MD-007.R00.01"; export const MISSING_CHANGELOG_ITEM_ID = "MD-008.R00.00"; -export const WITHDRAWN_CHANGELOG_ITEM_ID = "MD-009.R00.01"; +export const WITHDRAWN_CHANGELOG_ITEM_ID = "VA-11-2020"; export const INITIAL_RELEASE_APPK_ITEM_ID = "MD-010.R00.01"; export const SUBMISSION_ERROR_ITEM_ID = "Throw Submission Error"; export const GET_ERROR_ITEM_ID = "Throw Get Item Error"; @@ -65,6 +66,18 @@ const items: Record = { state: "MD", }, }, + [VALID_ITEM_EXTENSION_ID]: { + _id: VALID_ITEM_EXTENSION_ID, + found: true, + _source: { + id: VALID_ITEM_EXTENSION_ID, + seatoolStatus: SEATOOL_STATUS.APPROVED, + actionType: "New", + authority: "1915(b)", + origin: "OneMAC", + state: "MD", + }, + }, [EXISTING_ITEM_APPROVED_AMEND_ID]: { _id: EXISTING_ITEM_APPROVED_AMEND_ID, found: true, diff --git a/mocks/data/submit/attachments.ts b/mocks/data/submit/attachments.ts new file mode 100644 index 0000000000..1a08b179eb --- /dev/null +++ b/mocks/data/submit/attachments.ts @@ -0,0 +1,319 @@ +const bCapWaiverApplication = { + bCapWaiverApplication: { + label: "1915(b) Comprehensive (Capitated) Waiver Application Pre-print", + files: [ + { + filename: "appendix-k-amendment.docx", + title: "Appendix K Waiver Amendment", + bucket: "mako-outbox-attachments-635052997545", + key: "8b56f7ab-e1ad-4782-87f4-d43ab9d2f5d7.docx", + uploadDate: Date.now(), + }, + ], + }, +}; +const bCapCostSpreadsheets = { + bCapCostSpreadsheets: { + label: "1915(b) Comprehensive (Capitated) Waiver Cost Effectiveness Spreadsheets", + files: [ + { + filename: "appendix-k-amendment.docx", + title: "Appendix K Waiver Amendment", + bucket: "mako-outbox-attachments-635052997545", + key: "8b56f7ab-e1ad-4782-87f4-d43ab9d2f5d7.docx", + uploadDate: Date.now(), + }, + ], + }, +}; +const tribalConsultation = { + tribalConsultation: { + label: "Tribal Consultation", + files: [ + { + filename: "appendix-k-amendment.docx", + title: "Appendix K Waiver Amendment", + bucket: "mako-outbox-attachments-635052997545", + key: "8b56f7ab-e1ad-4782-87f4-d43ab9d2f5d7.docx", + uploadDate: Date.now(), + }, + ], + }, +}; +const other = { + other: { + files: [ + { + filename: "misc-documents.pdf", + title: "Additional Supporting Documents", + bucket: "mako-outbox-attachments-635052997545", + key: "c22aa4dc-e1b6-41d5-bf64-e45b6f74f5af.pdf", + uploadDate: Date.now(), + }, + ], + label: "Other", + }, +}; +const appk = { + appk: { + label: "Appendix K Template", + files: [ + { + filename: "appendix-k-amendment.docx", + title: "Appendix K Waiver Amendment", + bucket: "mako-outbox-attachments-635052997545", + key: "8b56f7ab-e1ad-4782-87f4-d43ab9d2f5d7.docx", + uploadDate: Date.now(), + }, + ], + }, +}; +const b4Waiver = { + b4WaiverApplication: { + label: "1915(b)(4) FFS Selective Contracting (Streamlined) Waiver Application Pre-print", + files: [ + { + filename: "appendix-k-amendment.docx", + title: "Appendix K Waiver Amendment", + bucket: "mako-outbox-attachments-635052997545", + key: "8b56f7ab-e1ad-4782-87f4-d43ab9d2f5d7.docx", + uploadDate: Date.now(), + }, + ], + }, +}; +const b4IndependentAssessment = { + b4IndependentAssessment: { + label: + "1915(b)(4) FFS Selective Contracting (Streamlined) Independent Assessment (first two renewals only)", + files: [ + { + filename: "appendix-k-amendment.docx", + title: "Appendix K Waiver Amendment", + bucket: "mako-outbox-attachments-635052997545", + key: "8b56f7ab-e1ad-4782-87f4-d43ab9d2f5d7.docx", + uploadDate: Date.now(), + }, + ], + }, +}; +const currentStatePlan = { + currentStatePlan: { + label: "Current State Plan", + files: [ + { + filename: "appendix-k-amendment.docx", + title: "Appendix K Waiver Amendment", + bucket: "mako-outbox-attachments-635052997545", + key: "8b56f7ab-e1ad-4782-87f4-d43ab9d2f5d7.docx", + uploadDate: Date.now(), + }, + ], + }, +}; +const ammendedLanguage = { + amendedLanguage: { + label: "Amended State Plan Language", + files: [ + { + filename: "appendix-k-amendment.docx", + title: "Appendix K Waiver Amendment", + bucket: "mako-outbox-attachments-635052997545", + key: "8b56f7ab-e1ad-4782-87f4-d43ab9d2f5d7.docx", + uploadDate: Date.now(), + }, + ], + }, +}; +const coverLetter = { + coverLetter: { + label: "Cover Letter", + files: [ + { + filename: "appendix-k-amendment.docx", + title: "Appendix K Waiver Amendment", + bucket: "mako-outbox-attachments-635052997545", + key: "8b56f7ab-e1ad-4782-87f4-d43ab9d2f5d7.docx", + uploadDate: Date.now(), + }, + ], + }, +}; +const budgetDocuments = { + budgetDocuments: { + label: "Budget Document", + files: [ + { + filename: "appendix-k-amendment.docx", + title: "Appendix K Waiver Amendment", + bucket: "mako-outbox-attachments-635052997545", + key: "8b56f7ab-e1ad-4782-87f4-d43ab9d2f5d7.docx", + uploadDate: Date.now(), + }, + ], + }, +}; +const publicNotice = { + publicNotice: { + label: "Public Notice", + files: [ + { + filename: "appendix-k-amendment.docx", + title: "Appendix K Waiver Amendment", + bucket: "mako-outbox-attachments-635052997545", + key: "8b56f7ab-e1ad-4782-87f4-d43ab9d2f5d7.docx", + uploadDate: Date.now(), + }, + ], + }, +}; +const cmsForm = { + cmsForm179: { + label: "CMS Form 179", + files: [ + { + filename: "appendix-k-amendment.docx", + title: "Appendix K Waiver Amendment", + bucket: "mako-outbox-attachments-635052997545", + key: "8b56f7ab-e1ad-4782-87f4-d43ab9d2f5d7.docx", + uploadDate: Date.now(), + }, + ], + }, +}; +export const spaPages = { + spaPages: { + label: "Spa Pages", + files: [ + { + filename: "appendix-k-amendment.docx", + title: "Appendix K Waiver Amendment", + bucket: "mako-outbox-attachments-635052997545", + key: "8b56f7ab-e1ad-4782-87f4-d43ab9d2f5d7.docx", + uploadDate: Date.now(), + }, + ], + }, +}; +const existingStatePlanPages = { + existingStatePlanPages: { + label: "Existing State Plan Page(s)", + files: [ + { + filename: "appendix-k-amendment.docx", + title: "Appendix K Waiver Amendment", + bucket: "mako-outbox-attachments-635052997545", + key: "8b56f7ab-e1ad-4782-87f4-d43ab9d2f5d7.docx", + uploadDate: Date.now(), + }, + ], + }, +}; +const sfq = { + sfq: { + label: "Standard Funding Questions (SFQs)", + files: [ + { + filename: "appendix-k-amendment.docx", + title: "Appendix K Waiver Amendment", + bucket: "mako-outbox-attachments-635052997545", + key: "8b56f7ab-e1ad-4782-87f4-d43ab9d2f5d7.docx", + uploadDate: Date.now(), + }, + ], + }, +}; +const tribalEngagement = { + tribalEngagement: { + label: "Document Demonstrating Good-Faith Tribal Engagement", + files: [ + { + filename: "appendix-k-amendment.docx", + title: "Appendix K Waiver Amendment", + bucket: "mako-outbox-attachments-635052997545", + key: "8b56f7ab-e1ad-4782-87f4-d43ab9d2f5d7.docx", + uploadDate: Date.now(), + }, + ], + }, +}; +const raiResponseLetter = { + raiResponseLetter: { + label: "RAI Response Letter", + files: [ + { + filename: "appendix-k-amendment.docx", + title: "Appendix K Waiver Amendment", + bucket: "mako-outbox-attachments-635052997545", + key: "8b56f7ab-e1ad-4782-87f4-d43ab9d2f5d7.docx", + uploadDate: Date.now(), + }, + ], + }, +}; +const waiverExtensionRequest = { + waiverExtensionRequest: { + label: "RAI Response Letter", + files: [ + { + filename: "appendix-k-amendment.docx", + title: "Appendix K Waiver Amendment", + bucket: "mako-outbox-attachments-635052997545", + key: "8b56f7ab-e1ad-4782-87f4-d43ab9d2f5d7.docx", + uploadDate: Date.now(), + }, + ], + }, +}; +const supportingDocumentation = { + supportingDocumentation: { + label: "Supporting Documentation", + files: [ + { + filename: "appendix-k-amendment.docx", + title: "Appendix K Waiver Amendment", + bucket: "mako-outbox-attachments-635052997545", + key: "8b56f7ab-e1ad-4782-87f4-d43ab9d2f5d7.docx", + uploadDate: Date.now(), + }, + ], + }, +}; +const bCapIndependentAssessment = { + bCapIndependentAssessment: { + label: + "1915(b) Comprehensive (Capitated) Waiver Independent Assessment (first two renewals only)", + files: [ + { + filename: "appendix-k-amendment.docx", + title: "Appendix K Waiver Amendment", + bucket: "mako-outbox-attachments-635052997545", + key: "8b56f7ab-e1ad-4782-87f4-d43ab9d2f5d7.docx", + uploadDate: Date.now(), + }, + ], + }, +}; +export const attachments = { + ammendedLanguage, + appk, + bCapIndependentAssessment, + bCapCostSpreadsheets, + bCapWaiverApplication, + b4IndependentAssessment, + b4Waiver, + budgetDocuments, + cmsForm, + coverLetter, + currentStatePlan, + existingStatePlanPages, + publicNotice, + raiResponseLetter, + sfq, + spaPages, + supportingDocumentation, + tribalConsultation, + tribalEngagement, + waiverExtensionRequest, + other, +}; diff --git a/mocks/data/submit/base.ts b/mocks/data/submit/base.ts new file mode 100644 index 0000000000..4a134ce37c --- /dev/null +++ b/mocks/data/submit/base.ts @@ -0,0 +1,207 @@ +import { attachments } from "./attachments"; +export const capitatedAmendmentBase = { + id: "VA-1234.R11.01", + event: "capitated-amendment", + authority: "1915(c)", + proposedEffectiveDate: 1700000000, + title: "Sample Title for Appendix K", + attachments: { + ...attachments.bCapWaiverApplication, + ...attachments.bCapCostSpreadsheets, + ...attachments.tribalConsultation, + ...attachments.other, + }, + additionalInformation: "Some additional information about this submission.", + waiverNumber: "VA-1111.R11.11", +}; +export const appkBase = { + id: "VA-1234.R11.01", + event: "app-k", + authority: "1915(c)", + proposedEffectiveDate: 1700000000, + title: "Sample Title for Appendix K", + attachments: { + ...attachments.appk, + ...attachments.other, + }, + additionalInformation: "Some additional information about this submission.", +}; +export const capitatedInitial = { + id: "VA-1234.R00.00", + event: "capitated-initial", + authority: "1915(c)", + proposedEffectiveDate: 1700000000, + title: "Sample Title for Appendix K", + attachments: { + ...attachments.bCapWaiverApplication, + ...attachments.bCapCostSpreadsheets, + ...attachments.tribalConsultation, + ...attachments.other, + }, + additionalInformation: "Some additional information about this submission.", + waiverNumber: "VA-1111.R11.11", +}; +export const capitatedRenewal = { + id: "VA-1234.R01.00", + event: "capitated-renewal", + authority: "1915(c)", + proposedEffectiveDate: 1700000000, + title: "Sample Title for Appendix K", + attachments: { + ...attachments.bCapIndependentAssessment, + ...attachments.bCapWaiverApplication, + ...attachments.bCapCostSpreadsheets, + ...attachments.tribalConsultation, + ...attachments.other, + }, + additionalInformation: "Some additional information about this submission.", + waiverNumber: "VA-1111.R11.11", +}; +export const contractingAmmendment = { + id: "VA-1234.R11.01", + event: "contracting-amendment", + authority: "1915(b)", + proposedEffectiveDate: 1700000000, + title: "Sample Title for Appendix K", + attachments: { + ...attachments.b4Waiver, + ...attachments.tribalConsultation, + ...attachments.other, + }, + additionalInformation: "Some additional information about this submission.", + waiverNumber: "VA-1111.R11.11", +}; +export const contractingInitial = { + id: "VA-1234.R00.00", + event: "contracting-initial", + authority: "1915(b)", + proposedEffectiveDate: 1700000000, + title: "Sample Title for Appendix K", + attachments: { + ...attachments.b4Waiver, + ...attachments.tribalConsultation, + ...attachments.other, + }, + additionalInformation: "Some additional information about this submission.", + waiverNumber: "VA-1111.R11.11", +}; +export const contractingRenewal = { + id: "VA-1234.R01.00", + event: "contracting-renewal", + authority: "1915(b)", + proposedEffectiveDate: 1700000000, + title: "Sample Title for Appendix K", + attachments: { + ...attachments.b4IndependentAssessment, + ...attachments.b4Waiver, + ...attachments.tribalConsultation, + ...attachments.other, + }, + additionalInformation: "Some additional information about this submission.", + waiverNumber: "VA-1111.R01.00", +}; +export const newChipSubmission = { + id: "VA-11-2021", + event: "new-chip-submission", + authority: "1915(b)", + proposedEffectiveDate: 1700000000, + title: "Sample Title for Appendix K", + attachments: { + ...attachments.currentStatePlan, + ...attachments.ammendedLanguage, + ...attachments.coverLetter, + ...attachments.budgetDocuments, + ...attachments.publicNotice, + ...attachments.tribalConsultation, + ...attachments.other, + }, + additionalInformation: "Some additional information about this submission.", + waiverNumber: "VA-1111.R11.11", +}; +export const newMedicaidSubmission = { + id: "VA-11-2021", + event: "new-medicaid-submission", + authority: "1915(b)", + proposedEffectiveDate: 1700000000, + title: "Sample Title for Appendix K", + attachments: { + ...attachments.cmsForm, + ...attachments.spaPages, + ...attachments.coverLetter, + ...attachments.tribalEngagement, + ...attachments.existingStatePlanPages, + ...attachments.publicNotice, + ...attachments.sfq, + ...attachments.tribalConsultation, + ...attachments.other, + }, + additionalInformation: "Some additional information about this submission.", + waiverNumber: "VA-1111.R11.11", +}; +export const respondToRai = { + id: "VA-11-2020", + event: "respond-to-rai", + authority: "1915(b)", + proposedEffectiveDate: 1700000000, + title: "Sample Title for Appendix K", + attachments: { + ...attachments.raiResponseLetter, + ...attachments.other, + }, + additionalInformation: "Some additional information about this submission.", + waiverNumber: "VA-1111.R11.11", +}; +export const temporaryExtension = { + id: "VA-1234.R11.TE12", + event: "temporary-extension", + authority: "1915(b)", + proposedEffectiveDate: 1700000000, + title: "Sample Title for Appendix K", + attachments: { + ...attachments.waiverExtensionRequest, + ...attachments.other, + }, + additionalInformation: "Some additional information about this submission.", + waiverNumber: "VA-1111.R11.00", +}; +export const toggleWithdrawRai = { + id: "VA-11-2020", + event: "toggle-withdraw-rai", + authority: "1915(b)", + raiWithdrawEnabled: true, + proposedEffectiveDate: 1700000000, +}; +export const withdrawPackage = { + id: "VA-11-2020", + event: "withdraw-package", + authority: "1915(b)", + proposedEffectiveDate: 1700000000, + title: "Sample Title for Appendix K", + attachments: { + ...attachments.supportingDocumentation, + }, + additionalInformation: "Some additional information about this submission.", + waiverNumber: "VA-1111.R11.00", +}; +export const withdrawRai = { + id: "VA-11-2020", + event: "withdraw-rai", + authority: "1915(b)", + proposedEffectiveDate: 1700000000, + title: "Sample Title for Appendix K", + attachments: { + ...attachments.supportingDocumentation, + }, + additionalInformation: "Some additional information about this submission.", + waiverNumber: "VA-1111.R11.00", +}; +export const uploadSubsequentDocuments = { + id: "VA-1111.R11.00", + event: "upload-subsequent-documents", + authority: "1915(b)", + proposedEffectiveDate: 1700000000, + title: "Sample Title for Appendix K", + attachments: {}, + additionalInformation: "Some additional information about this submission.", + waiverNumber: "VA-1111.R11.00", +}; diff --git a/mocks/data/submit/baseMissingAttachments.ts b/mocks/data/submit/baseMissingAttachments.ts new file mode 100644 index 0000000000..81cf3d70d2 --- /dev/null +++ b/mocks/data/submit/baseMissingAttachments.ts @@ -0,0 +1,160 @@ +const capitatedAmendmentBase = { + id: "SS-1234.R11.01", + event: "capitated-amendment", + authority: "1915(c)", + proposedEffectiveDate: 1700000000, + title: "Sample Title for Appendix K", + attachments: {}, + additionalInformation: "Some additional information about this submission.", + waiverNumber: "SS-1111.R11.11", +}; +const appkBase = { + id: "SS-1234.R11.01", + event: "app-k", + authority: "1915(c)", + proposedEffectiveDate: 1700000000, + title: "Sample Title for Appendix K", + attachments: {}, + additionalInformation: "Some additional information about this submission.", +}; +const capitatedInitial = { + id: "SS-1234.R00.00", + event: "capitated-initial", + authority: "1915(c)", + proposedEffectiveDate: 1700000000, + title: "Sample Title for Appendix K", + attachments: {}, + additionalInformation: "Some additional information about this submission.", + waiverNumber: "SS-1111.R11.11", +}; +const capitatedRenewal = { + id: "SS-1234.R01.00", + event: "capitated-renewal", + authority: "1915(c)", + proposedEffectiveDate: 1700000000, + title: "Sample Title for Appendix K", + attachments: {}, + additionalInformation: "Some additional information about this submission.", + waiverNumber: "SS-1111.R11.11", +}; +const contractingAmmendment = { + id: "SS-1234.R11.01", + event: "contracting-amendment", + authority: "1915(b)", + proposedEffectiveDate: 1700000000, + title: "Sample Title for Appendix K", + attachments: {}, + additionalInformation: "Some additional information about this submission.", + waiverNumber: "SS-1111.R11.11", +}; +const contractingInitial = { + id: "SS-1234.R00.00", + event: "contracting-initial", + authority: "1915(b)", + proposedEffectiveDate: 1700000000, + title: "Sample Title for Appendix K", + attachments: {}, + additionalInformation: "Some additional information about this submission.", + waiverNumber: "SS-1111.R11.11", +}; +const contractingRenewal = { + id: "SS-1234.R01.00", + event: "contracting-renewal", + authority: "1915(b)", + proposedEffectiveDate: 1700000000, + title: "Sample Title for Appendix K", + attachments: {}, + additionalInformation: "Some additional information about this submission.", + waiverNumber: "SS-1111.R01.00", +}; +const newChipSubmission = { + id: "SS-11-2021", + event: "new-chip-submission", + authority: "1915(b)", + proposedEffectiveDate: 1700000000, + title: "Sample Title for Appendix K", + attachments: {}, + additionalInformation: "Some additional information about this submission.", + waiverNumber: "SS-1111.R11.11", +}; +const newMedicaidSubmission = { + id: "SS-11-2021", + event: "new-medicaid-submission", + authority: "1915(b)", + proposedEffectiveDate: 1700000000, + title: "Sample Title for Appendix K", + attachments: {}, + additionalInformation: "Some additional information about this submission.", + waiverNumber: "SS-1111.R11.11", +}; +const respondToRai = { + id: "SS-11-2020", + event: "respond-to-rai", + authority: "1915(b)", + proposedEffectiveDate: 1700000000, + title: "Sample Title for Appendix K", + attachments: {}, + additionalInformation: "Some additional information about this submission.", + waiverNumber: "SS-1111.R11.11", +}; +const temporaryExtension = { + id: "SS-1234.R11.TE1213112", + event: "temporary-extension", + authority: "1915(b)", + proposedEffectiveDate: 1700000000, + title: "Sample Title for Appendix K", + attachments: {}, + additionalInformation: "Some additional information about this submission.", + waiverNumber: "SS-1111.R11.00", +}; +const toggleWithdrawRai = { + id: "SS-11-2020", + event: "toggle-withdraw-rai", + authority: "1915(b)", +}; +const withdrawPackage = { + id: "SS-11-202213210", + event: "withdraw-package", + authority: "1915(b)", + proposedEffectiveDate: 1700000000, + title: "Sample Title for Appendix K", + attachments: {}, + additionalInformation: "Some additional information about this submission.", + waiverNumber: "SS-1111.R11.00", +}; +const withdrawRai = { + id: "SS-11-2023220", + event: "withdraw-rai", + authority: "1915(b)", + proposedEffectiveDate: 1700000000, + title: "Sample Title for Appendix K", + attachments: {}, + additionalInformation: "Some additional information about this submission.", + waiverNumber: "SS-1111.R11.00", +}; +const uploadSubsequentDocuments = { + id: "SS-1111.R11.1300", + event: "upload-subsequent-documents", + authority: "1915(b)", + proposedEffectiveDate: 1700000000, + attachments: {}, + additionalInformation: "Some additional information about this submission.", + waiverNumber: "SS-1111.R11.00", +}; +export const bma = { + appkBase, + capitatedAmendmentBase, + capitatedInitial, + capitatedRenewal, + uploadSubsequentDocuments, + withdrawRai, + withdrawPackage, + toggleWithdrawRai, + temporaryExtension, + respondToRai, + newMedicaidSubmission, + newChipSubmission, + contractingRenewal, + contractingInitial, + contractingAmmendment, +}; diff --git a/mocks/handlers/opensearch/main.ts b/mocks/handlers/opensearch/main.ts index 9617c9b4ba..8f4398987e 100644 --- a/mocks/handlers/opensearch/main.ts +++ b/mocks/handlers/opensearch/main.ts @@ -19,8 +19,11 @@ const defaultMainDocumentHandler = http.get( } const itemId = id && Array.isArray(id) ? id[0] : id; const item = items[itemId] || null; - - return item ? HttpResponse.json(item) : new HttpResponse(null, { status: 404 }); + return item + ? HttpResponse.json(item) + : HttpResponse.json({ + found: false, + }); }, ); @@ -28,18 +31,19 @@ const defaultMainSearchHandler = http.post( "https://vpc-opensearchdomain-mock-domain.us-east-1.es.amazonaws.com/test-namespace-main/_search", async ({ request }) => { const { query } = await request.json(); - console.log({ query }) + console.log({ query }); if (query?.match_all?.id == "throw-error") { return new HttpResponse("Internal server error", { status: 500 }); } const must = query?.bool?.must; - console.log("must: ", JSON.stringify(must)) + console.log("must: ", JSON.stringify(must)); const mustTerms = getTermKeys(must); - console.log({ mustTerms }) + console.log({ mustTerms }); - const appkParentIdValue = getTermValues(must, "appkParentId.keyword") || getTermValues(must, "appkParentId"); + const appkParentIdValue = + getTermValues(must, "appkParentId.keyword") || getTermValues(must, "appkParentId"); if (appkParentIdValue) { const appkParentId = @@ -64,7 +68,11 @@ const defaultMainSearchHandler = http.post( "", ) as keyof TestAppkDocument; if (filterValue) { - appkChildren = filterItemsByTerm(appkChildren, filterTerm, filterValue); + appkChildren = filterItemsByTerm( + appkChildren, + filterTerm, + filterValue, + ); } }); } @@ -95,12 +103,12 @@ const defaultMainSearchHandler = http.post( if (itemHits.length > 0) { mustTerms.forEach((term) => { const filterValue = getTermValues(must, term); - console.log({ filterValue }) + console.log({ filterValue }); const filterTerm: keyof TestMainDocument = term.replace( ".keyword", "", ) as keyof TestMainDocument; - console.log({ filterTerm }) + console.log({ filterTerm }); if (filterValue) { itemHits = filterItemsByTerm(itemHits, filterTerm, filterValue); } From ea3e3508450573fe73bb307dc1001e690a633e2e Mon Sep 17 00:00:00 2001 From: Thomas Walker Date: Wed, 8 Jan 2025 15:00:04 -0500 Subject: [PATCH 04/11] feat(test) fix email test (#991) * feat(test) fix email test * Update processEmails.test.ts --- lib/lambda/processEmails.test.ts | 2 +- lib/libs/email/content/new-submission/index.tsx | 2 +- lib/libs/email/getAllStateUsers.ts | 7 +++---- mocks/handlers/aws/email.ts | 2 +- 4 files changed, 6 insertions(+), 7 deletions(-) diff --git a/lib/lambda/processEmails.test.ts b/lib/lambda/processEmails.test.ts index 4676964c2c..cb608b48ab 100644 --- a/lib/lambda/processEmails.test.ts +++ b/lib/lambda/processEmails.test.ts @@ -26,7 +26,7 @@ describe("process emails Handler", () => { Body: { Text: { Data: "This is a mocked email body.", Charset: "UTF-8" } }, }, }; - await expect(sendEmail(params, "test")).rejects.toThrowError(); + await expect(sendEmail(params, "bad-test")).rejects.toThrowError(); }); it("should validate the email template and throw an error", async () => { const template = { diff --git a/lib/libs/email/content/new-submission/index.tsx b/lib/libs/email/content/new-submission/index.tsx index 5cabd22291..ad327030db 100644 --- a/lib/libs/email/content/new-submission/index.tsx +++ b/lib/libs/email/content/new-submission/index.tsx @@ -1,5 +1,5 @@ import { Events, Authority, EmailAddresses, CommonEmailVariables } from "shared-types"; -import { formatActionType } from "lib/packages/shared-utils"; +import { formatActionType } from "shared-utils"; import { AuthoritiesWithUserTypesTemplate } from "../.."; import { MedSpaCMSEmail, diff --git a/lib/libs/email/getAllStateUsers.ts b/lib/libs/email/getAllStateUsers.ts index b481fb5341..e2b2572679 100644 --- a/lib/libs/email/getAllStateUsers.ts +++ b/lib/libs/email/getAllStateUsers.ts @@ -12,10 +12,6 @@ export type StateUser = { formattedEmailAddress: string; }; -const cognitoClient = new CognitoIdentityProviderClient({ - region: process.env.region, -}); - export const getAllStateUsers = async ({ userPoolId, state, @@ -29,6 +25,9 @@ export const getAllStateUsers = async ({ Limit: 60, }; const command = new ListUsersCommand(params); + const cognitoClient = new CognitoIdentityProviderClient({ + region: process.env.region, + }); const response: ListUsersCommandOutput = await cognitoClient.send(command); if (!response.Users || response.Users.length === 0) { diff --git a/mocks/handlers/aws/email.ts b/mocks/handlers/aws/email.ts index 5ec43f75f8..79064d1611 100644 --- a/mocks/handlers/aws/email.ts +++ b/mocks/handlers/aws/email.ts @@ -20,7 +20,7 @@ export const emailHandlers = [ http.post("https://sqs.us-east-1.amazonaws.com/", async () => { return new HttpResponse(null, { status: 200 }); }), - http.post("https://email.us-east-1.amazonaws.com/", async () => { + http.post(`https://email.us-east-1.amazonaws.com/`, async () => { return HttpResponse.xml(` From cdfae2a578d65d5999a830c10b02be690c8b1321 Mon Sep 17 00:00:00 2001 From: Tiffany Forkner Date: Wed, 8 Jan 2025 15:55:12 -0500 Subject: [PATCH 05/11] fix(os) helpers for getting domain and index for opensearch (#992) * created helpers for getting domain and index for opensearch * fixed import --- lib/lambda/deleteIndex.ts | 19 +-- lib/lambda/getAttachmentUrl.test.ts | 2 +- lib/lambda/getAttachmentUrl.ts | 21 ++-- lib/lambda/getCpocs.ts | 13 +-- lib/lambda/getSubTypes.ts | 11 +- lib/lambda/getTypes.ts | 11 +- lib/lambda/itemExists.test.ts | 6 +- lib/lambda/search.test.ts | 2 +- lib/lambda/search.ts | 13 ++- lib/lambda/sinkChangelog.ts | 4 +- lib/lambda/sinkMain.test.ts | 2 +- lib/lambda/sinkMainProcessors.test.ts | 2 +- lib/lambda/update/getPackageType.ts | 6 +- lib/lambda/update/updatePackage.ts | 2 +- lib/libs/api/package/appk.test.ts | 108 ++++++++---------- lib/libs/api/package/appk.ts | 30 ++--- lib/libs/api/package/changelog.ts | 30 ++--- lib/libs/api/package/getPackage.ts | 14 +-- lib/libs/api/package/itemExists.ts | 20 +++- .../emailTemplates/ChipSpaCMS.tsx | 2 +- .../emailTemplates/ChipSpaState.tsx | 2 +- lib/libs/opensearch-lib.ts | 11 +- lib/libs/sink-lib.ts | 29 +---- lib/libs/utils.ts | 52 +++++++++ mocks/data/items.ts | 33 ++++++ mocks/handlers/opensearch/main.ts | 11 +- 26 files changed, 238 insertions(+), 218 deletions(-) create mode 100644 lib/libs/utils.ts diff --git a/lib/lambda/deleteIndex.ts b/lib/lambda/deleteIndex.ts index 67492361a4..0a7238d951 100644 --- a/lib/lambda/deleteIndex.ts +++ b/lib/lambda/deleteIndex.ts @@ -8,19 +8,20 @@ export const handler: Handler = async (event, __, callback) => { }; let errorResponse = null; try { - if (!event.osDomain) throw "process.env.osDomain cannot be undefined"; + const { osDomain, indexNamespace = "" } = event; + if (!osDomain) throw "osDomain cannot be undefined"; const indices: Index[] = [ - `${event.indexNamespace}main`, - `${event.indexNamespace}changelog`, - `${event.indexNamespace}insights`, - `${event.indexNamespace}types`, - `${event.indexNamespace}subtypes`, - `${event.indexNamespace}legacyinsights`, - `${event.indexNamespace}cpocs`, + `${indexNamespace}main`, + `${indexNamespace}changelog`, + `${indexNamespace}insights`, + `${indexNamespace}types`, + `${indexNamespace}subtypes`, + `${indexNamespace}legacyinsights`, + `${indexNamespace}cpocs`, ]; for (const index of indices) { - await os.deleteIndex(event.osDomain, index); + await os.deleteIndex(osDomain, index); } } catch (error: any) { response.statusCode = 500; diff --git a/lib/lambda/getAttachmentUrl.test.ts b/lib/lambda/getAttachmentUrl.test.ts index 0ee3102e18..3fd589f891 100644 --- a/lib/lambda/getAttachmentUrl.test.ts +++ b/lib/lambda/getAttachmentUrl.test.ts @@ -70,7 +70,7 @@ describe("Lambda Handler", () => { expect(response).toHaveBeenCalledWith({ statusCode: 500, - body: { message: "ERROR: osDomain env variable is required" }, + body: { message: "ERROR: process.env.osDomain must be defined" }, }); }); diff --git a/lib/lambda/getAttachmentUrl.ts b/lib/lambda/getAttachmentUrl.ts index 7f94231bd9..394b9f62c8 100644 --- a/lib/lambda/getAttachmentUrl.ts +++ b/lib/lambda/getAttachmentUrl.ts @@ -7,27 +7,25 @@ import { getSignedUrl } from "@aws-sdk/s3-request-presigner"; import { getStateFilter } from "../libs/api/auth/user"; import { getPackage, getPackageChangelog } from "../libs/api/package"; +import { getDomain } from "libs/utils"; // Handler function to get Seatool data export const handler = async (event: APIGatewayEvent) => { - if (!process.env.osDomain) { + try { + getDomain(); + } catch (error) { return response({ statusCode: 500, - body: { message: "ERROR: osDomain env variable is required" }, + body: { message: `ERROR: ${error?.message || error}` }, }); } + if (!event.body) { return response({ statusCode: 400, body: { message: "Event body required" }, }); } - if (!process.env.osDomain) { - return response({ - statusCode: 500, - body: { message: "Handler is missing process.env.osDomain env var" }, - }); - } try { const body = JSON.parse(event.body); @@ -72,12 +70,7 @@ export const handler = async (event: APIGatewayEvent) => { } // Now we can generate the presigned url - const url = await generatePresignedUrl( - body.bucket, - body.key, - body.filename, - 60, - ); + const url = await generatePresignedUrl(body.bucket, body.key, body.filename, 60); return response({ statusCode: 200, diff --git a/lib/lambda/getCpocs.ts b/lib/lambda/getCpocs.ts index 5efc373159..c98d5a5867 100644 --- a/lib/lambda/getCpocs.ts +++ b/lib/lambda/getCpocs.ts @@ -2,13 +2,12 @@ import { handleOpensearchError } from "./utils"; import { APIGatewayEvent } from "aws-lambda"; import * as os from "libs/opensearch-lib"; import { response } from "libs/handler-lib"; +import { getDomainAndNamespace } from "libs/utils"; // type GetCpocsBody = object; export const queryCpocs = async () => { - if (!process.env.osDomain) { - throw new Error("process.env.osDomain must be defined"); - } + const { index, domain } = getDomainAndNamespace("cpocs"); const query = { size: 1000, @@ -20,11 +19,7 @@ export const queryCpocs = async () => { }, ], }; - return await os.search( - process.env.osDomain, - `${process.env.indexNamespace}cpocs`, - query, - ); + return await os.search(domain, index, query); }; export const getCpocs = async (event: APIGatewayEvent) => { @@ -47,7 +42,7 @@ export const getCpocs = async (event: APIGatewayEvent) => { body: result, }); } catch (err) { - return response(handleOpensearchError(err)) + return response(handleOpensearchError(err)); } }; diff --git a/lib/lambda/getSubTypes.ts b/lib/lambda/getSubTypes.ts index 3f1d44f56e..95ae6ff9f3 100644 --- a/lib/lambda/getSubTypes.ts +++ b/lib/lambda/getSubTypes.ts @@ -1,7 +1,8 @@ -import { handleOpensearchError } from "./utils"; +import { handleOpensearchError } from "./utils"; import { APIGatewayEvent } from "aws-lambda"; import { response } from "libs/handler-lib"; import * as os from "libs/opensearch-lib"; +import { getDomainAndNamespace } from "libs/utils"; type GetSubTypesBody = { authorityId: string; @@ -9,9 +10,7 @@ type GetSubTypesBody = { }; export const querySubTypes = async (authorityId: string, typeIds: string[]) => { - if (!process.env.osDomain) { - throw new Error("process.env.osDomain must be defined"); - } + const { index, domain } = getDomainAndNamespace("subtypes"); const query = { size: 200, @@ -49,7 +48,7 @@ export const querySubTypes = async (authorityId: string, typeIds: string[]) => { ], }; - return await os.search(process.env.osDomain, `${process.env.indexNamespace}subtypes`, query); + return await os.search(domain, index, query); }; export const getSubTypes = async (event: APIGatewayEvent) => { @@ -74,7 +73,7 @@ export const getSubTypes = async (event: APIGatewayEvent) => { body: result, }); } catch (err) { - return response(handleOpensearchError(err)) + return response(handleOpensearchError(err)); } }; diff --git a/lib/lambda/getTypes.ts b/lib/lambda/getTypes.ts index 21eb17d7ab..ff3f5c0e2f 100644 --- a/lib/lambda/getTypes.ts +++ b/lib/lambda/getTypes.ts @@ -2,15 +2,14 @@ import { handleOpensearchError } from "./utils"; import { APIGatewayEvent } from "aws-lambda"; import * as os from "libs/opensearch-lib"; import { response } from "libs/handler-lib"; +import { getDomainAndNamespace } from "libs/utils"; type GetTypesBody = { authorityId: string; }; export const queryTypes = async (authorityId: string) => { - if (!process.env.osDomain) { - throw new Error("process.env.osDomain must be defined"); - } + const { index, domain } = getDomainAndNamespace("types"); const query = { size: 200, @@ -42,11 +41,7 @@ export const queryTypes = async (authorityId: string) => { }, ], }; - return await os.search( - process.env.osDomain, - `${process.env.indexNamespace}types`, - query, - ); + return await os.search(domain, index, query); }; export const getTypes = async (event: APIGatewayEvent) => { diff --git a/lib/lambda/itemExists.test.ts b/lib/lambda/itemExists.test.ts index fba774d836..e1613b2980 100644 --- a/lib/lambda/itemExists.test.ts +++ b/lib/lambda/itemExists.test.ts @@ -55,7 +55,7 @@ describe("Handler for checking if record exists", () => { ); }); - it("should return 500 error occurs during processing", async () => { + it("should return 200 and exists: false if an error occurs during processing", async () => { const event = { body: JSON.stringify({ id: GET_ERROR_ITEM_ID }), } as APIGatewayEvent; @@ -63,9 +63,9 @@ describe("Handler for checking if record exists", () => { const res = await handler(event); expect(res).toBeTruthy(); - expect(res.statusCode).toEqual(500); + expect(res.statusCode).toEqual(200); expect(res.body).toEqual( - JSON.stringify({ error: "Internal server error", message: "Response Error" }), + JSON.stringify({ message: "No record found for the given id", exists: false }), ); }); }); diff --git a/lib/lambda/search.test.ts b/lib/lambda/search.test.ts index 2d51b35d21..9e7e779fc7 100644 --- a/lib/lambda/search.test.ts +++ b/lib/lambda/search.test.ts @@ -29,7 +29,7 @@ describe("getSearchData Handler", () => { const body = JSON.parse(res.body); expect(body).toBeTruthy(); expect(body?.hits?.hits).toBeTruthy(); - expect(body?.hits?.hits?.length).toEqual(12); + expect(body?.hits?.hits?.length).toEqual(13); }); it("should handle errors during processing", async () => { diff --git a/lib/lambda/search.ts b/lib/lambda/search.ts index f823579122..6e4a4aa8d1 100644 --- a/lib/lambda/search.ts +++ b/lib/lambda/search.ts @@ -1,21 +1,26 @@ import { handleOpensearchError } from "./utils"; import { APIGatewayEvent } from "aws-lambda"; import { response } from "libs/handler-lib"; -import { Index } from "shared-types/opensearch"; +import { BaseIndex } from "shared-types/opensearch"; import { validateEnvVariable } from "shared-utils"; import { getStateFilter } from "../libs/api/auth/user"; import { getAppkChildren } from "../libs/api/package"; import * as os from "../libs/opensearch-lib"; +import { getDomainAndNamespace } from "libs/utils"; // Handler function to search index export const getSearchData = async (event: APIGatewayEvent) => { validateEnvVariable("osDomain"); + if (!event.pathParameters || !event.pathParameters.index) { return response({ statusCode: 400, body: { message: "Index path parameter required" }, }); } + + const { domain, index } = getDomainAndNamespace(event.pathParameters.index as BaseIndex); + try { let query: any = {}; if (event.body) { @@ -42,11 +47,7 @@ export const getSearchData = async (event: APIGatewayEvent) => { query.from = query.from || 0; query.size = query.size || 100; - const results = await os.search( - process.env.osDomain as string, - `${process.env.indexNamespace}${event.pathParameters.index}` as Index, - query, - ); + const results = await os.search(domain, index, query); for (let i = 0; i < results?.hits?.hits?.length; i++) { if (results.hits.hits[i]._source?.appkParent) { diff --git a/lib/lambda/sinkChangelog.ts b/lib/lambda/sinkChangelog.ts index d2fe78a00c..038c003afd 100644 --- a/lib/lambda/sinkChangelog.ts +++ b/lib/lambda/sinkChangelog.ts @@ -1,13 +1,13 @@ import { Handler } from "aws-lambda"; import { decodeBase64WithUtf8 } from "shared-utils"; import { KafkaEvent, KafkaRecord, opensearch } from "shared-types"; -import { ErrorType, bulkUpdateDataWrapper, getTopic, logError } from "../libs/sink-lib"; +import { ErrorType, bulkUpdateDataWrapper, getTopic, logError } from "libs/sink-lib"; import { transformUpdateValuesSchema, transformDeleteSchema, transformedUpdateIdSchema, } from "./update/adminChangeSchemas"; -import { getPackageChangelog } from "lib/libs/api/package"; +import { getPackageChangelog } from "libs/api/package"; // One notable difference between this handler and sinkMain's... // The order in which records are processed for the changelog doesn't matter. diff --git a/lib/lambda/sinkMain.test.ts b/lib/lambda/sinkMain.test.ts index 1efa64a139..54516cd6ff 100644 --- a/lib/lambda/sinkMain.test.ts +++ b/lib/lambda/sinkMain.test.ts @@ -1,7 +1,7 @@ import { describe, it, expect, vi, afterEach } from "vitest"; import { handler } from "./sinkMain"; import * as sinkMainProcessors from "./sinkMainProcessors"; -import { KafkaEvent } from "lib/packages/shared-types"; +import { KafkaEvent } from "shared-types"; const createKafkaEvent = (records: KafkaEvent["records"]) => ({ eventSource: "SelfManagedKafka", diff --git a/lib/lambda/sinkMainProcessors.test.ts b/lib/lambda/sinkMainProcessors.test.ts index 4e4f31f5ee..c40744308a 100644 --- a/lib/lambda/sinkMainProcessors.test.ts +++ b/lib/lambda/sinkMainProcessors.test.ts @@ -7,7 +7,7 @@ import { import * as sinkLib from "libs"; import { Document, seatool } from "shared-types/opensearch/main"; import { offsetToUtc } from "shared-utils"; -import { KafkaRecord } from "lib/packages/shared-types"; +import { KafkaRecord } from "shared-types"; const convertObjToBase64 = (obj: object) => Buffer.from(JSON.stringify(obj)).toString("base64"); diff --git a/lib/lambda/update/getPackageType.ts b/lib/lambda/update/getPackageType.ts index 7383efae94..f1eca6e296 100644 --- a/lib/lambda/update/getPackageType.ts +++ b/lib/lambda/update/getPackageType.ts @@ -1,6 +1,6 @@ -import { response } from "lib/libs/handler-lib"; -import { events } from "lib/packages/shared-types"; -import { getPackageChangelog } from "lib/libs/api/package"; +import { response } from "libs/handler-lib"; +import { events } from "shared-types"; +import { getPackageChangelog } from "libs/api/package"; export const getPackageType = async (packageId: string) => { // use event of current package to determine how ID should be formatted diff --git a/lib/lambda/update/updatePackage.ts b/lib/lambda/update/updatePackage.ts index 24592a66a6..dd9c4109f5 100644 --- a/lib/lambda/update/updatePackage.ts +++ b/lib/lambda/update/updatePackage.ts @@ -4,7 +4,7 @@ import { getPackage } from "libs/api/package"; import { produceMessage } from "libs/api/kafka"; import { ItemResult } from "shared-types/opensearch/main"; import { getPackageType } from "./getPackageType"; -import { events } from "lib/packages/shared-types"; +import { events } from "shared-types"; import { z } from "zod"; const sendDeleteMessage = async (packageId: string) => { diff --git a/lib/libs/api/package/appk.test.ts b/lib/libs/api/package/appk.test.ts index 8beb6c179a..64717451b0 100644 --- a/lib/libs/api/package/appk.test.ts +++ b/lib/libs/api/package/appk.test.ts @@ -1,87 +1,75 @@ -import { describe, it, expect, vi, beforeEach, afterEach } from "vitest"; -import * as os from "../../opensearch-lib"; +import { describe, it, expect, vi, afterEach } from "vitest"; import { getAppkChildren } from "./appk"; -import { opensearch } from "shared-types"; - -vi.mock("../../opensearch-lib"); +import { + OPENSEARCH_DOMAIN, + INITIAL_RELEASE_APPK_ITEM_ID, + EXISTING_ITEM_APPROVED_APPK_ITEM_ID, +} from "mocks"; describe("getAppkChildren", () => { - const mockOsDomain = "mock-os-domain"; - const mockIndexNamespace = "mock-index-namespace"; - const mockPackageId = "mock-package-id"; - const mockFilter = [{ term: { status: "active" } }]; - const mockResponse = { - hits: { - hits: [ - { - _source: { - timestamp: "2024-01-01T00:00:00Z", - change: "Initial release", - }, - }, - ], - }, - } as unknown as opensearch.main.Response; - - beforeEach(() => { - vi.resetModules(); - process.env.osDomain = mockOsDomain; - process.env.indexNamespace = mockIndexNamespace; - }); - afterEach(() => { vi.clearAllMocks(); }); it("should throw an error if osDomain is not defined", async () => { delete process.env.osDomain; - await expect(getAppkChildren(mockPackageId)).rejects.toThrow( + await expect(getAppkChildren(INITIAL_RELEASE_APPK_ITEM_ID)).rejects.toThrow( "process.env.osDomain must be defined", ); + process.env.osDomain = OPENSEARCH_DOMAIN; }); it("should return the children with the specified packageId and no additional filters", async () => { - vi.mocked(os.search).mockResolvedValue(mockResponse); + const result = await getAppkChildren(INITIAL_RELEASE_APPK_ITEM_ID); - const result = await getAppkChildren(mockPackageId); - - expect(os.search).toHaveBeenCalledWith( - mockOsDomain, - `${mockIndexNamespace}main`, - { - from: 0, - size: 200, - query: { - bool: { - must: [{ term: { "appkParentId.keyword": mockPackageId } }], + expect(result).toEqual( + expect.objectContaining({ + hits: { + total: { + value: 1, + relation: "eq", }, + max_score: null, + hits: [ + { + _source: { + changedDate: "2024-01-01T00:00:00Z", + title: "Initial release", + cmsStatus: "Pending", + stateStatus: "Under Review", + }, + }, + ], }, - }, + }), ); - expect(result).toEqual(mockResponse); }); it("should return the children with the specified packageId and additional filters", async () => { - vi.mocked(os.search).mockResolvedValue(mockResponse); - - const result = await getAppkChildren(mockPackageId, mockFilter); + const result = await getAppkChildren(EXISTING_ITEM_APPROVED_APPK_ITEM_ID, [ + { term: { cmsStatus: "Approved" } }, + ]); - expect(os.search).toHaveBeenCalledWith( - mockOsDomain, - `${mockIndexNamespace}main`, - { - from: 0, - size: 200, - query: { - bool: { - must: [ - { term: { "appkParentId.keyword": mockPackageId } }, - ...mockFilter, - ], + expect(result).toEqual( + expect.objectContaining({ + hits: { + total: { + value: 1, + relation: "eq", }, + max_score: null, + hits: [ + { + _source: { + changedDate: "2025-01-08T00:00:00Z", + title: "Approved release", + cmsStatus: "Approved", + stateStatus: "Approved", + }, + }, + ], }, - }, + }), ); - expect(result).toEqual(mockResponse); }); }); diff --git a/lib/libs/api/package/appk.ts b/lib/libs/api/package/appk.ts index 72b417935c..cb49354e39 100644 --- a/lib/libs/api/package/appk.ts +++ b/lib/libs/api/package/appk.ts @@ -1,29 +1,19 @@ import * as os from "../../opensearch-lib"; import { opensearch } from "shared-types"; +import { getDomainAndNamespace } from "../../utils"; -export const getAppkChildren = async ( - packageId: string, - filter: any[] = [], -) => { - if (!process.env.osDomain) { - throw new Error("process.env.osDomain must be defined"); - } +export const getAppkChildren = async (packageId: string, filter: any[] = []) => { + const { domain, index } = getDomainAndNamespace("main"); - const response = (await os.search( - process.env.osDomain, - `${process.env.indexNamespace}main`, - { - from: 0, - size: 200, - query: { - bool: { - must: [{ term: { "appkParentId.keyword": packageId } }].concat( - filter, - ), - }, + const response = (await os.search(domain, index, { + from: 0, + size: 200, + query: { + bool: { + must: [{ term: { "appkParentId.keyword": packageId } }].concat(filter), }, }, - )) as opensearch.main.Response; + })) as opensearch.main.Response; return response; }; diff --git a/lib/libs/api/package/changelog.ts b/lib/libs/api/package/changelog.ts index 83682b5856..8f1f81c2c4 100644 --- a/lib/libs/api/package/changelog.ts +++ b/lib/libs/api/package/changelog.ts @@ -1,26 +1,18 @@ import * as os from "libs/opensearch-lib"; import { opensearch } from "shared-types"; +import { getDomainAndNamespace } from "../../utils"; -export const getPackageChangelog = async ( - packageId: string, - filter: any[] = [], -) => { - if (!process.env.osDomain) { - throw new Error("process.env.osDomain must be defined"); - } +export const getPackageChangelog = async (packageId: string, filter: any[] = []) => { + const { domain, index } = getDomainAndNamespace("changelog"); - return (await os.search( - process.env.osDomain, - `${process.env.indexNamespace}changelog`, - { - from: 0, - size: 200, - sort: [{ timestamp: "desc" }], - query: { - bool: { - must: [{ term: { "packageId.keyword": packageId } }].concat(filter), - }, + return (await os.search(domain, index, { + from: 0, + size: 200, + sort: [{ timestamp: "desc" }], + query: { + bool: { + must: [{ term: { "packageId.keyword": packageId } }].concat(filter), }, }, - )) as opensearch.changelog.Response; + })) as opensearch.changelog.Response; }; diff --git a/lib/libs/api/package/getPackage.ts b/lib/libs/api/package/getPackage.ts index cf66117315..5ca6d28c20 100644 --- a/lib/libs/api/package/getPackage.ts +++ b/lib/libs/api/package/getPackage.ts @@ -1,18 +1,14 @@ -import { ItemResult } from "lib/packages/shared-types/opensearch/main"; +import { ItemResult } from "shared-types/opensearch/main"; import * as os from "libs/opensearch-lib"; +import { getDomainAndNamespace } from "../../utils"; export interface ExtendedItemResult extends ItemResult { appkChildren?: any[]; } export const getPackage = async (id: string): Promise => { - if (!process.env.osDomain) { - throw new Error("process.env.osDomain must be defined"); - } - const packageResult = await os.getItem( - process.env.osDomain, - `${process.env.indexNamespace}main`, - id, - ); + const { domain, index } = getDomainAndNamespace("main"); + + const packageResult = await os.getItem(domain, index, id); return packageResult; }; diff --git a/lib/libs/api/package/itemExists.ts b/lib/libs/api/package/itemExists.ts index 694315baa0..c5172f161b 100644 --- a/lib/libs/api/package/itemExists.ts +++ b/lib/libs/api/package/itemExists.ts @@ -1,14 +1,22 @@ import * as os from "../../../libs/opensearch-lib"; +import { getDomain, getNamespace } from "libs/utils"; +import { BaseIndex } from "lib/packages/shared-types/opensearch"; export async function itemExists(params: { id: string; osDomain?: string; indexNamespace?: string; }): Promise { - const packageResult = await os.getItem( - params.osDomain || process.env.osDomain!, - `${params.indexNamespace || process.env.indexNamespace!}main`, - params.id, - ); - return !!packageResult?._source; + try { + const domain = params.osDomain || getDomain(); + const index: `${string}${BaseIndex}` = params.indexNamespace + ? `${params.indexNamespace}main` + : getNamespace("main"); + + const packageResult = await os.getItem(domain, index, params.id); + return !!packageResult?._source; + } catch (error) { + console.error(error); + return false; + } } diff --git a/lib/libs/email/content/withdrawPackage/emailTemplates/ChipSpaCMS.tsx b/lib/libs/email/content/withdrawPackage/emailTemplates/ChipSpaCMS.tsx index af88ecdedd..755e587165 100644 --- a/lib/libs/email/content/withdrawPackage/emailTemplates/ChipSpaCMS.tsx +++ b/lib/libs/email/content/withdrawPackage/emailTemplates/ChipSpaCMS.tsx @@ -1,4 +1,4 @@ -import { CommonEmailVariables, Events } from "lib/packages/shared-types"; +import { CommonEmailVariables, Events } from "shared-types"; import { BasicFooter, Divider, PackageDetails } from "../../email-components"; import { BaseEmailTemplate } from "../../email-templates"; diff --git a/lib/libs/email/content/withdrawPackage/emailTemplates/ChipSpaState.tsx b/lib/libs/email/content/withdrawPackage/emailTemplates/ChipSpaState.tsx index e7e3ed7110..a60d8fb927 100644 --- a/lib/libs/email/content/withdrawPackage/emailTemplates/ChipSpaState.tsx +++ b/lib/libs/email/content/withdrawPackage/emailTemplates/ChipSpaState.tsx @@ -1,4 +1,4 @@ -import { CommonEmailVariables, Events } from "lib/packages/shared-types"; +import { CommonEmailVariables, Events } from "shared-types"; import { BasicFooter, FollowUpNotice, Divider, PackageDetails } from "../../email-components"; import { BaseEmailTemplate } from "../../email-templates"; diff --git a/lib/libs/opensearch-lib.ts b/lib/libs/opensearch-lib.ts index 25ef6020c6..521b17d969 100644 --- a/lib/libs/opensearch-lib.ts +++ b/lib/libs/opensearch-lib.ts @@ -4,9 +4,9 @@ import { Client, Connection, errors as OpensearchErrors } from "@opensearch-proj import * as aws4 from "aws4"; import { aws4Interceptor } from "aws4-axios"; import axios from "axios"; -import { ItemResult, Document as OSDocument } from "lib/packages/shared-types/opensearch/main"; +import { ItemResult, Document as OSDocument } from "shared-types/opensearch/main"; import { opensearch } from "shared-types"; -import { getDomainAndNamespace } from "./sink-lib"; +import { getDomainAndNamespace } from "./utils"; let client: Client; @@ -185,9 +185,12 @@ export async function getItem( const response = await client.get({ id, index }); return decodeUtf8(response).body; } catch (error) { - if (error instanceof OpensearchErrors.ResponseError && error.statusCode === 404 || error.meta?.statusCode === 404) { + if ( + (error instanceof OpensearchErrors.ResponseError && error.statusCode === 404) || + error.meta?.statusCode === 404 + ) { console.log("Error (404) retrieving in OpenSearch:", error); - return undefined + return undefined; } throw error; } diff --git a/lib/libs/sink-lib.ts b/lib/libs/sink-lib.ts index 491387ff01..524e8a3cb8 100644 --- a/lib/libs/sink-lib.ts +++ b/lib/libs/sink-lib.ts @@ -2,7 +2,8 @@ import pino from "pino"; const logger = pino(); import * as os from "./opensearch-lib"; -import { BaseIndex } from "lib/packages/shared-types/opensearch"; +import { BaseIndex } from "shared-types/opensearch"; +import { getDomainAndNamespace } from "./utils"; export function getTopic(topicPartition: string) { return topicPartition.split("--").pop()?.split("-").slice(0, -1)[0]; @@ -82,32 +83,6 @@ const prettyPrintJsonInObject = (obj: any): any => { return obj; }; -/** - * Returns the `osDomain` and `indexNamespace` env variables. Passing `baseIndex` appends the arg to the `index` variable - * @throws if env variables are not defined, `getDomainAndNamespace` throws error indicating which variable is missing - * @returns - */ -export function getDomainAndNamespace( - baseIndex: T, -): { domain: string; index: `${string}${T}` }; - -export function getDomainAndNamespace(baseIndex?: BaseIndex) { - const domain = process.env.osDomain; - const indexNamespace = process.env.indexNamespace ?? ""; - - if (domain === undefined) { - throw new Error("osDomain is undefined in environment variables"); - } - - if (indexNamespace == "" && process.env.isDev == "true") { - throw new Error("indexName is undefined in environment variables"); - } - - const index = `${indexNamespace}${baseIndex}`; - - return { index, domain }; -} - export async function bulkUpdateDataWrapper( docs: { id: string; [key: string]: unknown }[], baseIndex: BaseIndex, diff --git a/lib/libs/utils.ts b/lib/libs/utils.ts new file mode 100644 index 0000000000..fb7809d806 --- /dev/null +++ b/lib/libs/utils.ts @@ -0,0 +1,52 @@ +import { BaseIndex, Index } from "lib/packages/shared-types/opensearch"; + +/** + * Returns the `osDomain` + * @throws if env variables are not defined, `getDomain` throws error indicating if variable is missing + * @returns the value of `osDomain` + */ +export function getDomain(): string; +export function getDomain(): string { + const domain = process.env.osDomain; + + if (domain === undefined) { + throw new Error("process.env.osDomain must be defined"); + } + + return domain; +} + +/** + * Returns the `indexNamespace` env variables. Passing `baseIndex` appends the arg to the `index` variable + * @throws if env variables are not defined, `getNamespace` throws error indicating if variable is missing and + * the environment the application is running on `isDev` + * @returns the value of `indexNamespace` or empty string if not in development + */ +export function getNamespace(baseIndex?: T): Index; +export function getNamespace(baseIndex?: BaseIndex) { + const indexNamespace = process.env.indexNamespace ?? ""; + + if (indexNamespace == "" && process.env.isDev == "true") { + throw new Error("process.env.indexNamespace must be defined"); + } + + const index = `${indexNamespace}${baseIndex}`; + + return index; +} + +/** + * Returns the `osDomain` and `indexNamespace` env variables. Passing `baseIndex` appends the arg to the `index` variable + * @throws if env variables are not defined, `getDomainAndNamespace` throws error indicating which variable is missing + * @returns + */ +export function getDomainAndNamespace( + baseIndex: T, +): { domain: string; index: Index }; + +export function getDomainAndNamespace(baseIndex: BaseIndex) { + const domain = getDomain(); + const index = getNamespace(baseIndex); + + return { index, domain }; +} diff --git a/mocks/data/items.ts b/mocks/data/items.ts index 9bb2742052..f515b75e38 100644 --- a/mocks/data/items.ts +++ b/mocks/data/items.ts @@ -20,6 +20,7 @@ export const CONTRACTING_AMEND_ITEM_ID = "MD-007.R00.01"; export const MISSING_CHANGELOG_ITEM_ID = "MD-008.R00.00"; export const WITHDRAWN_CHANGELOG_ITEM_ID = "VA-11-2020"; export const INITIAL_RELEASE_APPK_ITEM_ID = "MD-010.R00.01"; +export const EXISTING_ITEM_APPROVED_APPK_ITEM_ID = "MD-012.R00.01"; export const SUBMISSION_ERROR_ITEM_ID = "Throw Submission Error"; export const GET_ERROR_ITEM_ID = "Throw Get Item Error"; @@ -368,6 +369,38 @@ const items: Record = { _source: { changedDate: "2024-01-01T00:00:00Z", title: "Initial release", + cmsStatus: "Pending", + stateStatus: "Under Review", + }, + }, + ], + }, + }, + [EXISTING_ITEM_APPROVED_APPK_ITEM_ID]: { + _id: EXISTING_ITEM_APPROVED_APPK_ITEM_ID, + found: true, + _source: { + id: EXISTING_ITEM_APPROVED_APPK_ITEM_ID, + seatoolStatus: SEATOOL_STATUS.APPROVED, + actionType: "New", + authority: "1915(c)", + state: "MD", + origin: "OneMAC", + appkChildren: [ + { + _source: { + changedDate: "2024-01-01T00:00:00Z", + title: "Initial release", + cmsStatus: "Pending", + stateStatus: "Under Review", + }, + }, + { + _source: { + changedDate: "2025-01-08T00:00:00Z", + title: "Approved release", + cmsStatus: "Approved", + stateStatus: "Approved", }, }, ], diff --git a/mocks/handlers/opensearch/main.ts b/mocks/handlers/opensearch/main.ts index 8f4398987e..517f1154d0 100644 --- a/mocks/handlers/opensearch/main.ts +++ b/mocks/handlers/opensearch/main.ts @@ -31,16 +31,13 @@ const defaultMainSearchHandler = http.post( "https://vpc-opensearchdomain-mock-domain.us-east-1.es.amazonaws.com/test-namespace-main/_search", async ({ request }) => { const { query } = await request.json(); - console.log({ query }); if (query?.match_all?.id == "throw-error") { return new HttpResponse("Internal server error", { status: 500 }); } const must = query?.bool?.must; - console.log("must: ", JSON.stringify(must)); const mustTerms = getTermKeys(must); - console.log({ mustTerms }); const appkParentIdValue = getTermValues(must, "appkParentId.keyword") || getTermValues(must, "appkParentId"); @@ -61,7 +58,11 @@ const defaultMainSearchHandler = http.post( let appkChildren: TestAppkItemResult[] = (item._source?.appkChildren as TestAppkItemResult[]) || []; if (appkChildren.length > 0) { - mustTerms.forEach((term) => { + // TODO We don't have this field in the TypeScript, not sure what the parent field actually is + const filteredTerms = mustTerms.filter( + (term) => term !== "appkParentId.keyword" && term !== "appkParentId", + ); + filteredTerms.forEach((term) => { const filterValue = getTermValues(must, term); const filterTerm: keyof TestAppkDocument = term.replace( ".keyword", @@ -103,12 +104,10 @@ const defaultMainSearchHandler = http.post( if (itemHits.length > 0) { mustTerms.forEach((term) => { const filterValue = getTermValues(must, term); - console.log({ filterValue }); const filterTerm: keyof TestMainDocument = term.replace( ".keyword", "", ) as keyof TestMainDocument; - console.log({ filterTerm }); if (filterValue) { itemHits = filterItemsByTerm(itemHits, filterTerm, filterValue); } From d12b141d1b18c3fff1009defaef98f93d8ccd91a Mon Sep 17 00:00:00 2001 From: Tiffany Forkner Date: Thu, 9 Jan 2025 09:14:28 -0500 Subject: [PATCH 06/11] feat(test) updates to s3 calls on backend (#985) * updates to s3 calls on backend --- lib/lambda/getAttachmentUrl.test.ts | 197 ++++++------------ lib/lambda/getAttachmentUrl.ts | 6 +- lib/lambda/getCpocs.test.ts | 8 +- lib/lambda/getPackageActions.test.ts | 4 +- lib/lambda/getSubTypes.test.ts | 38 ++-- lib/lambda/getTypes.test.ts | 30 +-- lib/lambda/getUploadUrl.test.ts | 71 +++---- lib/lambda/item.test.ts | 4 +- lib/lambda/processEmails.test.ts | 2 +- lib/lambda/processEmails.ts | 2 +- lib/lambda/search.test.ts | 4 +- lib/lambda/utils.ts | 12 +- lib/vitest.setup.ts | 36 +--- mocks/consts.ts | 2 + mocks/data/items.ts | 8 + mocks/handlers/aws/cloudFormation.ts | 3 +- mocks/handlers/aws/cognito.ts | 13 +- mocks/handlers/aws/credentials.ts | 41 ++-- mocks/handlers/aws/lambda.ts | 13 +- mocks/handlers/aws/secretsManager.ts | 1 + mocks/handlers/aws/stepFunctions.ts | 1 + mocks/handlers/index.ts | 18 +- .../package/package-activity/index.test.tsx | 10 + 23 files changed, 222 insertions(+), 302 deletions(-) diff --git a/lib/lambda/getAttachmentUrl.test.ts b/lib/lambda/getAttachmentUrl.test.ts index 3fd589f891..26a7932d39 100644 --- a/lib/lambda/getAttachmentUrl.test.ts +++ b/lib/lambda/getAttachmentUrl.test.ts @@ -1,57 +1,36 @@ -import { describe, it, expect, vi, beforeEach } from "vitest"; +import { describe, it, expect, vi, afterEach } from "vitest"; import { APIGatewayEvent } from "aws-lambda"; import { handler } from "./getAttachmentUrl"; -import { response } from "libs/handler-lib"; import { getSignedUrl } from "@aws-sdk/s3-request-presigner"; -import { getStateFilter } from "../libs/api/auth/user"; -import { getPackage, getPackageChangelog } from "../libs/api/package"; - -vi.mock("libs/handler-lib", () => ({ - response: vi.fn(), -})); - -vi.mock("@aws-sdk/client-sts", () => ({ - STSClient: vi.fn().mockImplementation(() => ({ - send: vi.fn(), - })), - AssumeRoleCommand: vi.fn(), -})); - -vi.mock("@aws-sdk/client-s3", () => ({ - S3Client: vi.fn().mockImplementation(() => ({ - send: vi.fn(), - })), - GetObjectCommand: vi.fn(), -})); +import { + OPENSEARCH_DOMAIN, + getRequestContext, + NOT_FOUND_ITEM_ID, + HI_TEST_ITEM_ID, + TEST_ITEM_ID, + WITHDRAWN_CHANGELOG_ITEM_ID, + GET_ERROR_ITEM_ID, + ATTACHMENT_BUCKET_NAME, + ATTACHMENT_BUCKET_REGION, +} from "mocks"; vi.mock("@aws-sdk/s3-request-presigner", () => ({ getSignedUrl: vi.fn(), })); -vi.mock("../libs/api/auth/user", () => ({ - getStateFilter: vi.fn(), -})); - -vi.mock("../libs/api/package", () => ({ - getPackage: vi.fn(), - getPackageChangelog: vi.fn(), -})); - describe("Lambda Handler", () => { - beforeEach(() => { + afterEach(() => { vi.clearAllMocks(); - process.env.osDomain = "test-domain"; // Set the environment variable before each test }); it("should return 400 if event body is missing", async () => { const event = {} as APIGatewayEvent; - await handler(event); + const res = await handler(event); - expect(response).toHaveBeenCalledWith({ - statusCode: 400, - body: { message: "Event body required" }, - }); + expect(res).toBeTruthy(); + expect(res.statusCode).toEqual(400); + expect(res.body).toEqual(JSON.stringify({ message: "Event body required" })); }); it("should return 500 if osDomain is missing", async () => { @@ -60,155 +39,117 @@ describe("Lambda Handler", () => { const event = { body: JSON.stringify({ id: "test-id", - bucket: "test-bucket", + bucket: ATTACHMENT_BUCKET_NAME, key: "test-key", filename: "test-file", }), } as APIGatewayEvent; - await handler(event); + const res = await handler(event); + + expect(res).toBeTruthy(); + expect(res.statusCode).toEqual(500); + expect(res.body).toEqual( + JSON.stringify({ message: "ERROR: process.env.osDomain must be defined" }), + ); - expect(response).toHaveBeenCalledWith({ - statusCode: 500, - body: { message: "ERROR: process.env.osDomain must be defined" }, - }); + process.env.osDomain = OPENSEARCH_DOMAIN; }); it("should return 404 if no package is found", async () => { - vi.mocked(getPackage).mockResolvedValueOnce(null); - const event = { body: JSON.stringify({ - id: "test-id", - bucket: "test-bucket", + id: NOT_FOUND_ITEM_ID, + bucket: ATTACHMENT_BUCKET_NAME, key: "test-key", filename: "test-file", }), + requestContext: getRequestContext(), } as APIGatewayEvent; - await handler(event); + const res = await handler(event); - expect(response).toHaveBeenCalledWith({ - statusCode: 404, - body: { message: "No record found for the given id" }, - }); + expect(res).toBeTruthy(); + expect(res.statusCode).toEqual(404); + expect(res.body).toEqual(JSON.stringify({ message: "No record found for the given id" })); }); it("should return 404 if state access is not permitted", async () => { - vi.mocked(getPackage).mockResolvedValueOnce({ - _source: { state: "test-state" }, - }); - vi.mocked(getStateFilter).mockResolvedValueOnce({ - terms: { state: ["other-state"] }, - }); - const event = { body: JSON.stringify({ - id: "test-id", - bucket: "test-bucket", + id: HI_TEST_ITEM_ID, + bucket: ATTACHMENT_BUCKET_NAME, key: "test-key", filename: "test-file", }), + requestContext: getRequestContext(), } as APIGatewayEvent; - await handler(event); + const res = await handler(event); - expect(response).toHaveBeenCalledWith({ - statusCode: 404, - body: { message: "state access not permitted for the given id" }, - }); + expect(res).toBeTruthy(); + expect(res.statusCode).toEqual(403); + expect(res.body).toEqual( + JSON.stringify({ message: "state access not permitted for the given id" }), + ); }); it("should return 500 if attachment details are not found", async () => { - vi.mocked(getPackage).mockResolvedValueOnce({ - _source: { state: "test-state" }, - }); - vi.mocked(getStateFilter).mockResolvedValueOnce({ - terms: { state: ["test-state"] }, - }); - vi.mocked(getPackageChangelog).mockResolvedValueOnce({ - hits: { - hits: [ - { - _source: { - attachments: [{ bucket: "other-bucket", key: "other-key" }], - }, - }, - ], - }, - }); - const event = { body: JSON.stringify({ - id: "test-id", - bucket: "test-bucket", + id: TEST_ITEM_ID, + bucket: ATTACHMENT_BUCKET_NAME, key: "test-key", filename: "test-file", }), + requestContext: getRequestContext(), } as APIGatewayEvent; - await handler(event); + const res = await handler(event); - expect(response).toHaveBeenCalledWith({ - statusCode: 500, - body: { message: "Attachment details not found for given record id." }, - }); + expect(res).toBeTruthy(); + expect(res.statusCode).toEqual(500); + expect(res.body).toEqual( + JSON.stringify({ message: "Attachment details not found for given record id." }), + ); }); it("should return 200 with the presigned URL if all checks pass", async () => { - vi.mocked(getPackage).mockResolvedValueOnce({ - _source: { state: "test-state" }, - }); - vi.mocked(getStateFilter).mockResolvedValueOnce({ - terms: { state: ["test-state"] }, - }); - vi.mocked(getPackageChangelog).mockResolvedValueOnce({ - hits: { - hits: [ - { - _source: { - attachments: [{ bucket: "test-bucket", key: "test-key" }], - }, - }, - ], - }, - }); - vi.mocked(getSignedUrl).mockResolvedValueOnce("test-presigned-url"); + const mockUrl = `https://${ATTACHMENT_BUCKET_NAME}.s3.${ATTACHMENT_BUCKET_REGION}.amazonaws.com/123e4567-e89b-12d3-a456-426614174000`; + vi.mocked(getSignedUrl).mockResolvedValueOnce(mockUrl); const event = { body: JSON.stringify({ - id: "test-id", - bucket: "test-bucket", - key: "test-key", - filename: "test-file", + id: WITHDRAWN_CHANGELOG_ITEM_ID, + bucket: ATTACHMENT_BUCKET_NAME, + key: "doc001", + filename: "contract_amendment_2024.pdf", }), + requestContext: getRequestContext(), } as APIGatewayEvent; - await handler(event); + const res = await handler(event); - expect(response).toHaveBeenCalledWith({ - statusCode: 200, - body: { url: "test-presigned-url" }, - }); + expect(res).toBeTruthy(); + expect(res.statusCode).toEqual(200); + expect(res.body).toEqual(JSON.stringify({ url: mockUrl })); }); it("should handle errors during processing", async () => { - vi.mocked(getPackage).mockRejectedValueOnce(new Error("Test error")); - const event = { body: JSON.stringify({ - id: "test-id", - bucket: "test-bucket", + id: GET_ERROR_ITEM_ID, + bucket: ATTACHMENT_BUCKET_NAME, key: "test-key", filename: "test-file", }), + requestContext: getRequestContext(), } as APIGatewayEvent; - await handler(event); + const res = await handler(event); - expect(response).toHaveBeenCalledWith({ - statusCode: 500, - body: { message: "Internal server error" }, - }); + expect(res).toBeTruthy(); + expect(res.statusCode).toEqual(500); + expect(res.body).toEqual(JSON.stringify({ message: "Internal server error" })); }); }); diff --git a/lib/lambda/getAttachmentUrl.ts b/lib/lambda/getAttachmentUrl.ts index 394b9f62c8..e35139e72c 100644 --- a/lib/lambda/getAttachmentUrl.ts +++ b/lib/lambda/getAttachmentUrl.ts @@ -31,7 +31,7 @@ export const handler = async (event: APIGatewayEvent) => { const body = JSON.parse(event.body); const mainResult = await getPackage(body.id); - if (!mainResult) { + if (!mainResult || !mainResult.found) { return response({ statusCode: 404, body: { message: "No record found for the given id" }, @@ -46,7 +46,7 @@ export const handler = async (event: APIGatewayEvent) => { if (!stateAccessAllowed) { return response({ - statusCode: 404, + statusCode: 403, body: { message: "state access not permitted for the given id" }, }); } @@ -97,7 +97,7 @@ async function getClient(bucket: string) { const assumedCredentials = assumedRoleResponse.Credentials; if (!assumedCredentials) { - throw new Error("No assumed redentials"); + throw new Error("No assumed credentials"); } // Create S3 client using the assumed role's credentials diff --git a/lib/lambda/getCpocs.test.ts b/lib/lambda/getCpocs.test.ts index 7765ca6b9a..79c86c3491 100644 --- a/lib/lambda/getCpocs.test.ts +++ b/lib/lambda/getCpocs.test.ts @@ -12,10 +12,10 @@ describe("getCpocs Handler", () => { const res = await handler(event); expect(res.statusCode).toEqual(400); - expect(res.body).toEqual(JSON.stringify({ message: "Event body required" })) + expect(res.body).toEqual(JSON.stringify({ message: "Event body required" })); }); - // TODO - should this be removed? when will the result be empty and not + // TODO - should this be removed? when will the result be empty and not // just a result with an empty hit array it("should return 400 if no Cpocs are found", async () => { mockedServiceServer.use(emptyCpocSearchHandler); @@ -25,7 +25,7 @@ describe("getCpocs Handler", () => { const res = await handler(event); expect(res.statusCode).toEqual(400); - expect(res.body).toEqual(JSON.stringify({ message: "No Cpocs found" })) + expect(res.body).toEqual(JSON.stringify({ message: "No Cpocs found" })); }); it("should return 200 with the result if Cpocs are found", async () => { @@ -46,6 +46,6 @@ describe("getCpocs Handler", () => { const res = await handler(event); expect(res.statusCode).toEqual(500); - expect(res.body).toEqual(JSON.stringify({ error: "Internal server error", message: "Response Error" })) + expect(res.body).toEqual(JSON.stringify({ message: "Internal server error" })); }); }); diff --git a/lib/lambda/getPackageActions.test.ts b/lib/lambda/getPackageActions.test.ts index 7edb00baa9..3d77dbdfce 100644 --- a/lib/lambda/getPackageActions.test.ts +++ b/lib/lambda/getPackageActions.test.ts @@ -70,8 +70,6 @@ describe("getPackageActions Handler", () => { expect(res).toBeTruthy(); expect(res.statusCode).toEqual(500); - expect(res.body).toEqual( - JSON.stringify({ error: "Internal server error", message: "Response Error" }), - ); + expect(res.body).toEqual(JSON.stringify({ message: "Internal server error" })); }); }); diff --git a/lib/lambda/getSubTypes.test.ts b/lib/lambda/getSubTypes.test.ts index 1f8dd3fc65..7c34e22793 100644 --- a/lib/lambda/getSubTypes.test.ts +++ b/lib/lambda/getSubTypes.test.ts @@ -1,18 +1,18 @@ import { describe, it, expect } from "vitest"; import { APIGatewayEvent } from "aws-lambda"; import { handler } from "./getSubTypes"; -import { - MEDICAID_SPA_AUTHORITY_ID, +import { + MEDICAID_SPA_AUTHORITY_ID, CHIP_SPA_AUTHORITY_ID, NOT_FOUND_AUTHORITY_ID, - TYPE_ONE_ID, - TYPE_TWO_ID, + TYPE_ONE_ID, + TYPE_TWO_ID, TYPE_THREE_ID, DO_NOT_USE_TYPE_ID, ERROR_AUTHORITY_ID, medicaidSubtypes, - chipSubtypes -} from "mocks/data/types" + chipSubtypes, +} from "mocks/data/types"; import { TestSubtypeItemResult } from "mocks"; describe("getSubTypes Handler", () => { @@ -22,10 +22,10 @@ describe("getSubTypes Handler", () => { const res = await handler(event); expect(res.statusCode).toEqual(400); - expect(res.body).toEqual(JSON.stringify({ message: "Event body required" })) + expect(res.body).toEqual(JSON.stringify({ message: "Event body required" })); }); - // TODO - should this be removed? when will the result be empty and not + // TODO - should this be removed? when will the result be empty and not // just a result with an empty hit array it.skip("should return 400 if no subtypes are found", async () => { const event = { @@ -38,7 +38,9 @@ describe("getSubTypes Handler", () => { const res = await handler(event); expect(res.statusCode).toEqual(400); - expect(res.body).toEqual(JSON.stringify({ message: "No record found for the given authority" })); + expect(res.body).toEqual( + JSON.stringify({ message: "No record found for the given authority" }), + ); }); it("should return 200 with the result if subtypes are found", async () => { @@ -53,15 +55,15 @@ describe("getSubTypes Handler", () => { const body = JSON.parse(res.body); expect(res.statusCode).toEqual(200); - expect(body.hits.hits).toEqual(medicaidSubtypes) + expect(body.hits.hits).toEqual(medicaidSubtypes); }); it("should filter out types with names that include Do Not Use", async () => { const event = { - body: JSON.stringify({ + body: JSON.stringify({ authorityId: CHIP_SPA_AUTHORITY_ID, - typeIds: [TYPE_THREE_ID, DO_NOT_USE_TYPE_ID ] - }) + typeIds: [TYPE_THREE_ID, DO_NOT_USE_TYPE_ID], + }), } as APIGatewayEvent; const res = await handler(event); @@ -70,10 +72,10 @@ describe("getSubTypes Handler", () => { expect(res.statusCode).toEqual(200); expect(body.hits.hits).toEqual(chipSubtypes); body.hits.hits.forEach((type: TestSubtypeItemResult) => { - expect(type?._source?.name).toBeTruthy() - expect(type?._source?.name?.match(/Do Not Use/)).toBeFalsy() - }) - }) + expect(type?._source?.name).toBeTruthy(); + expect(type?._source?.name?.match(/Do Not Use/)).toBeFalsy(); + }); + }); it("should return 500 if an error occurs during processing", async () => { const event = { @@ -86,6 +88,6 @@ describe("getSubTypes Handler", () => { const res = await handler(event); expect(res.statusCode).toEqual(500); - expect(res.body).toEqual(JSON.stringify({ error: "Internal server error", message: "Response Error" })) + expect(res.body).toEqual(JSON.stringify({ message: "Internal server error" })); }); }); diff --git a/lib/lambda/getTypes.test.ts b/lib/lambda/getTypes.test.ts index a6036c8795..4cfce9211f 100644 --- a/lib/lambda/getTypes.test.ts +++ b/lib/lambda/getTypes.test.ts @@ -1,14 +1,14 @@ import { describe, it, expect } from "vitest"; import { APIGatewayEvent } from "aws-lambda"; import { handler } from "./getTypes"; -import { - CHIP_SPA_AUTHORITY_ID, - MEDICAID_SPA_AUTHORITY_ID, - NOT_FOUND_AUTHORITY_ID, +import { + CHIP_SPA_AUTHORITY_ID, + MEDICAID_SPA_AUTHORITY_ID, + NOT_FOUND_AUTHORITY_ID, ERROR_AUTHORITY_ID, medicaidTypes, - chipTypes -} from "mocks/data/types" + chipTypes, +} from "mocks/data/types"; import { TestTypeItemResult } from "mocks"; describe("getTypes Handler", () => { @@ -21,7 +21,7 @@ describe("getTypes Handler", () => { expect(res.body).toEqual(JSON.stringify({ message: "Event body required" })); }); - // TODO - should this be removed? when will the result be empty and not + // TODO - should this be removed? when will the result be empty and not // just a result with an empty hit array it.skip("should return 400 if no types are found", async () => { const event = { @@ -31,7 +31,9 @@ describe("getTypes Handler", () => { const res = await handler(event); expect(res.statusCode).toEqual(400); - expect(res.body).toEqual(JSON.stringify({ message: "No record found for the given authority" })); + expect(res.body).toEqual( + JSON.stringify({ message: "No record found for the given authority" }), + ); }); it("should return 200 with the result if types are found", async () => { @@ -43,7 +45,7 @@ describe("getTypes Handler", () => { const body = JSON.parse(res.body); expect(res.statusCode).toEqual(200); - expect(body.hits.hits).toEqual(medicaidTypes) + expect(body.hits.hits).toEqual(medicaidTypes); }); it("should filter out types with names that include Do Not Use", async () => { @@ -55,11 +57,11 @@ describe("getTypes Handler", () => { const body = JSON.parse(res.body); expect(res.statusCode).toEqual(200); - expect(body.hits.hits).toEqual(chipTypes) + expect(body.hits.hits).toEqual(chipTypes); body.hits.hits.forEach((type: TestTypeItemResult) => { - expect(type?._source?.name).toBeTruthy() - expect(type?._source?.name?.match(/Do Not Use/)).toBeFalsy() - }) + expect(type?._source?.name).toBeTruthy(); + expect(type?._source?.name?.match(/Do Not Use/)).toBeFalsy(); + }); }); it("should return 500 if an error occurs during processing", async () => { @@ -70,6 +72,6 @@ describe("getTypes Handler", () => { const res = await handler(event); expect(res.statusCode).toEqual(500); - expect(res.body).toEqual(JSON.stringify({ error: "Internal server error", message: "Response Error" })); + expect(res.body).toEqual(JSON.stringify({ message: "Internal server error" })); }); }); diff --git a/lib/lambda/getUploadUrl.test.ts b/lib/lambda/getUploadUrl.test.ts index 4c12a045fe..125dfe62fb 100644 --- a/lib/lambda/getUploadUrl.test.ts +++ b/lib/lambda/getUploadUrl.test.ts @@ -1,18 +1,9 @@ -import { describe, it, expect, vi, beforeEach, Mock } from "vitest"; +import { describe, it, expect, vi, beforeEach, afterEach, Mock } from "vitest"; import { APIGatewayEvent } from "aws-lambda"; import { handler } from "./getUploadUrl"; -import { response } from "libs/handler-lib"; import { getSignedUrl } from "@aws-sdk/s3-request-presigner"; import { v4 as uuidv4 } from "uuid"; - -vi.mock("libs/handler-lib", () => ({ - response: vi.fn(), -})); - -vi.mock("@aws-sdk/client-s3", () => ({ - S3Client: vi.fn().mockImplementation(() => ({})), - PutObjectCommand: vi.fn(), -})); +import { ATTACHMENT_BUCKET_NAME, ATTACHMENT_BUCKET_REGION } from "mocks"; vi.mock("@aws-sdk/s3-request-presigner", () => ({ getSignedUrl: vi.fn(), @@ -23,43 +14,41 @@ vi.mock("uuid", () => ({ })); describe("Handler for generating signed URL", () => { + const TEST_UUID = "123e4567-e89b-12d3-a456-426614174000"; + beforeEach(() => { + (uuidv4 as Mock).mockReturnValue(TEST_UUID); + }); + + afterEach(() => { vi.clearAllMocks(); - process.env.attachmentsBucketName = "test-bucket"; - process.env.attachmentsBucketRegion = "test-region"; - (uuidv4 as Mock).mockReturnValue("123e4567-e89b-12d3-a456-426614174000"); }); it("should return 400 if event body is missing", async () => { const event = {} as APIGatewayEvent; - await handler(event); + const res = await handler(event); - expect(response).toHaveBeenCalledWith({ - statusCode: 400, - body: { message: "Event body required" }, - }); + expect(res).toBeTruthy(); + expect(res.statusCode).toEqual(400); + expect(res.body).toEqual(JSON.stringify({ message: "Event body required" })); }); it("should return 200 with signed URL, bucket, and key", async () => { - const mockUrl = "https://example.com/signed-url"; + const mockUrl = `https://${ATTACHMENT_BUCKET_NAME}.s3.${ATTACHMENT_BUCKET_REGION}.amazonaws.com/${TEST_UUID}`; (getSignedUrl as Mock).mockResolvedValueOnce(mockUrl); const event = { body: JSON.stringify({ fileName: "test-file.pdf" }), } as APIGatewayEvent; - await handler(event); - - expect(response).toHaveBeenCalledWith({ - statusCode: 200, - body: { - url: mockUrl, - bucket: "test-bucket", - key: "123e4567-e89b-12d3-a456-426614174000.pdf", - }, - }); - expect(getSignedUrl).toHaveBeenCalled(); + const res = await handler(event); + + expect(res).toBeTruthy(); + expect(res.statusCode).toEqual(200); + expect(res.body).toEqual( + JSON.stringify({ url: mockUrl, bucket: ATTACHMENT_BUCKET_NAME, key: `${TEST_UUID}.pdf` }), + ); }); it("should return 500 if an error occurs during processing", async () => { @@ -69,22 +58,22 @@ describe("Handler for generating signed URL", () => { body: JSON.stringify({ fileName: "test-file.pdf" }), } as APIGatewayEvent; - await handler(event); + const res = await handler(event); - expect(response).toHaveBeenCalledWith({ - statusCode: 500, - body: { message: "Internal server error" }, - }); + expect(res).toBeTruthy(); + expect(res.statusCode).toEqual(500); + expect(res.body).toEqual(JSON.stringify({ message: "Internal server error" })); }); it("should throw an error if required environment variables are missing", async () => { delete process.env.attachmentsBucketName; - await handler({} as APIGatewayEvent); + const res = await handler({} as APIGatewayEvent); + + expect(res).toBeTruthy(); + expect(res.statusCode).toEqual(500); + expect(res.body).toEqual(JSON.stringify({ message: "Internal server error" })); - expect(response).toHaveBeenCalledWith({ - statusCode: 500, - body: { message: "Internal server error" }, - }); + process.env.attachmentsBucketName = ATTACHMENT_BUCKET_NAME; }); }); diff --git a/lib/lambda/item.test.ts b/lib/lambda/item.test.ts index a874595faf..b28cba08ad 100644 --- a/lib/lambda/item.test.ts +++ b/lib/lambda/item.test.ts @@ -73,8 +73,6 @@ describe("getItemData Handler", () => { expect(res).toBeTruthy(); expect(res.statusCode).toEqual(500); - expect(res.body).toEqual( - JSON.stringify({ error: "Internal server error", message: "Response Error" }), - ); + expect(res.body).toEqual(JSON.stringify({ message: "Internal server error" })); }); }); diff --git a/lib/lambda/processEmails.test.ts b/lib/lambda/processEmails.test.ts index cb608b48ab..e78f67e834 100644 --- a/lib/lambda/processEmails.test.ts +++ b/lib/lambda/processEmails.test.ts @@ -2,7 +2,7 @@ import { describe, it, expect, vi } from "vitest"; import { Context } from "aws-lambda"; import { SESClient } from "@aws-sdk/client-ses"; import { sendEmail, validateEmailTemplate, handler } from "./processEmails"; -import { KafkaRecord, KafkaEvent } from "node_modules/shared-types"; +import { KafkaRecord, KafkaEvent } from "shared-types"; describe("process emails Handler", () => { it("should return 200 with a proper email", async () => { diff --git a/lib/lambda/processEmails.ts b/lib/lambda/processEmails.ts index e6ee16d07d..efe4f96fde 100644 --- a/lib/lambda/processEmails.ts +++ b/lib/lambda/processEmails.ts @@ -3,7 +3,7 @@ import { EmailAddresses, KafkaEvent, KafkaRecord } from "shared-types"; import { decodeBase64WithUtf8, getSecret } from "shared-utils"; import { Handler } from "aws-lambda"; import { getEmailTemplates, getAllStateUsers } from "libs/email"; -import * as os from "./../libs/opensearch-lib"; +import * as os from "libs/opensearch-lib"; import { EMAIL_CONFIG, getCpocEmail, getSrtEmails } from "libs/email/content/email-components"; import { htmlToText, HtmlToTextOptions } from "html-to-text"; import pLimit from "p-limit"; diff --git a/lib/lambda/search.test.ts b/lib/lambda/search.test.ts index 9e7e779fc7..124064852e 100644 --- a/lib/lambda/search.test.ts +++ b/lib/lambda/search.test.ts @@ -43,8 +43,6 @@ describe("getSearchData Handler", () => { expect(res).toBeTruthy(); expect(res.statusCode).toEqual(500); - expect(res.body).toEqual( - JSON.stringify({ error: "Internal server error", message: "Response Error" }), - ); + expect(res.body).toEqual(JSON.stringify({ message: "Internal server error" })); }); }); diff --git a/lib/lambda/utils.ts b/lib/lambda/utils.ts index 683a4fa0a0..d6302887a8 100644 --- a/lib/lambda/utils.ts +++ b/lib/lambda/utils.ts @@ -3,10 +3,9 @@ import { errors as OpensearchErrors } from "@opensearch-project/opensearch"; export type ErrorResponse = { statusCode: number; body: { - error?: string; message?: string; - } -} + }; +}; export const handleOpensearchError = (error: unknown): ErrorResponse => { console.error({ error }); @@ -14,9 +13,8 @@ export const handleOpensearchError = (error: unknown): ErrorResponse => { return { statusCode: error.statusCode || error.meta?.statusCode || 500, body: { - error: error.body || error.meta?.body || error, - message: error.message, - } + message: error.body || error.meta?.body, + }, }; } @@ -24,4 +22,4 @@ export const handleOpensearchError = (error: unknown): ErrorResponse => { statusCode: 500, body: { message: "Internal server error" }, }; -} +}; diff --git a/lib/vitest.setup.ts b/lib/vitest.setup.ts index 3b94b69953..e354c3157b 100644 --- a/lib/vitest.setup.ts +++ b/lib/vitest.setup.ts @@ -12,43 +12,13 @@ import { USER_POOL_CLIENT_DOMAIN, USER_POOL_CLIENT_ID, USER_POOL_ID, + ATTACHMENT_BUCKET_NAME, + ATTACHMENT_BUCKET_REGION, setDefaultStateSubmitter, } from "mocks"; import { mockedServiceServer as mockedServer } from "mocks/server"; import { afterAll, afterEach, beforeAll, beforeEach, vi } from "vitest"; -// TODO to mock -// defaultApiTokenHandler: {} -// [MSW] Warning: intercepted a request without a matching request handler: -// • GET http://169.254.169.254/latest/meta-data/iam/security-credentials/ - -// starting MSW listener for lib tests -// stdout | local-constructs/manage-users/src/manageUsers.test.ts > Cognito User Lambda Handler > should handle errors and send FAILED response -// Error: Failed to get secret -// at /home/runner/work/macpro-mako/macpro-mako/lib/local-constructs/manage-users/src/manageUsers.test.ts:126:37 -// at file:///home/runner/work/macpro-mako/macpro-mako/node_modules/@vitest/runner/dist/index.js:146:14 -// at file:///home/runner/work/macpro-mako/macpro-mako/node_modules/@vitest/runner/dist/index.js:529:11 -// at runWithTimeout (file:///home/runner/work/macpro-mako/macpro-mako/node_modules/@vitest/runner/dist/index.js:61:7) -// at runTest (file:///home/runner/work/macpro-mako/macpro-mako/node_modules/@vitest/runner/dist/index.js:982:17) -// at processTicksAndRejections (node:internal/process/task_queues:95:5) -// at runSuite (file:///home/runner/work/macpro-mako/macpro-mako/node_modules/@vitest/runner/dist/index.js:1131:15) -// at runSuite (file:///home/runner/work/macpro-mako/macpro-mako/node_modules/@vitest/runner/dist/index.js:1131:15) -// at runFiles (file:///home/runner/work/macpro-mako/macpro-mako/node_modules/@vitest/runner/dist/index.js:1188:5) -// at startTests (file:///home/runner/work/macpro-mako/macpro-mako/node_modules/@vitest/runner/dist/index.js:1197:3) -// ✓ |lib| local-constructs/manage-users/src/manageUsers.test.ts (2 tests) 15ms - -// { username: '53832e35-1fbe-4c74-9111-4a0cd29ce2cf' } -// getAuthDetails event: {"requestContext":{"identity":{"cognitoAuthenticationProvider":"https://cognito-idp.us-east-1.amazonaws.com/us-east-1_userPool1,https://cognito-idp.us-east-1.amazonaws.com/us-east-1_userPool1:CognitoSignIn:53832e35-1fbe-4c74-9111-4a0cd29ce2cf"}}} -// { -// authDetails: { -// userId: '53832e35-1fbe-4c74-9111-4a0cd29ce2cf', -// poolId: 'us-east-1_userPool1' -// } -// } -// defaultApiTokenHandler: {} -// defaultSecurityCredentialsHandler: {} -// defaultSecurityCredentialsHandler: {} - Amplify.configure({ API: API_CONFIG, Auth: AUTH_CONFIG, @@ -80,6 +50,8 @@ beforeEach(() => { process.env.idmClientIssuer = USER_POOL_CLIENT_DOMAIN; process.env.osDomain = OPENSEARCH_DOMAIN; process.env.indexNamespace = OPENSEARCH_INDEX_NAMESPACE; + process.env.attachmentsBucketName = ATTACHMENT_BUCKET_NAME; + process.env.attachmentsBucketRegion = ATTACHMENT_BUCKET_REGION; process.env.emailAddressLookupSecretName = "mock-email-secret"; // pragma: allowlist secret process.env.DLQ_URL = "https://sqs.us-east-1.amazonaws.com/123/test"; process.env.configurationSetName = "SES"; diff --git a/mocks/consts.ts b/mocks/consts.ts index 976633c77c..67c78c1b92 100644 --- a/mocks/consts.ts +++ b/mocks/consts.ts @@ -10,6 +10,8 @@ export const COGNITO_IDP_DOMAIN = `https://cognito-idp.${REGION}.amazonaws.com/$ export const OPENSEARCH_DOMAIN = `https://vpc-opensearchdomain-mock-domain.${REGION}.es.amazonaws.com`; export const OPENSEARCH_INDEX_NAMESPACE = "test-namespace-"; export const CLOUDFORMATION_NOTIFICATION_DOMAIN = "https://test-cfn.amazonaws.com"; +export const ATTACHMENT_BUCKET_NAME = "test-bucket"; +export const ATTACHMENT_BUCKET_REGION = REGION; export const ACCESS_KEY_ID = "ASIAZHXA3XOU7XZ53M36"; // pragma: allowlist secret export const SECRET_KEY = "UWKCFxhrgbPnixgLnL1JKwFEwiK9ZKvTAtpk8cGa"; // pragma: allowlist secret diff --git a/mocks/data/items.ts b/mocks/data/items.ts index f515b75e38..e07e4e30fe 100644 --- a/mocks/data/items.ts +++ b/mocks/data/items.ts @@ -1,5 +1,6 @@ import { SEATOOL_STATUS } from "shared-types"; import type { TestItemResult } from "../index.d"; +import { ATTACHMENT_BUCKET_NAME } from "../consts"; export const EXISTING_ITEM_PENDING_ID = "MD-0002.R00.00"; export const EXISTING_ITEM_APPROVED_NEW_ID = "MD-0000.R00.00"; @@ -243,6 +244,7 @@ const items: Record = { key: "doc001", title: "Contract Amendment", filename: "contract_amendment_2024.pdf", + bucket: ATTACHMENT_BUCKET_NAME, }, ], additionalInformation: "Amendment to the capitated contract terms for 2024.", @@ -260,6 +262,7 @@ const items: Record = { key: "rai002", title: "Response to RAI", filename: "rai_response.docx", + bucket: ATTACHMENT_BUCKET_NAME, }, ], additionalInformation: "Detailed response to the request for additional information.", @@ -277,6 +280,7 @@ const items: Record = { key: "subdoc003", title: "Follow-Up Documents", filename: "followup_docs.zip", + bucket: ATTACHMENT_BUCKET_NAME, }, ], additionalInformation: "Supporting documents uploaded as follow-up.", @@ -294,6 +298,7 @@ const items: Record = { key: "subdoc004", title: "Compliance Files", filename: "compliance_documents.xlsx", + bucket: ATTACHMENT_BUCKET_NAME, }, ], additionalInformation: "Compliance review files uploaded.", @@ -311,6 +316,7 @@ const items: Record = { key: "withdraw005", title: "Withdrawal Notice", filename: "rai_withdrawal_notice.pdf", + bucket: ATTACHMENT_BUCKET_NAME, }, ], additionalInformation: "Official notice of RAI withdrawal submitted.", @@ -328,6 +334,7 @@ const items: Record = { key: "withdraw006", title: "Package Withdrawal", filename: "package_withdrawal_request.docx", + bucket: ATTACHMENT_BUCKET_NAME, }, ], additionalInformation: "Package has been withdrawn from submission pipeline.", @@ -345,6 +352,7 @@ const items: Record = { key: "misc007", title: "Miscellaneous File", filename: "miscellaneous_info.txt", + bucket: ATTACHMENT_BUCKET_NAME, }, ], additionalInformation: "Uncategorized file upload.", diff --git a/mocks/handlers/aws/cloudFormation.ts b/mocks/handlers/aws/cloudFormation.ts index ba87334946..557d5dd30e 100644 --- a/mocks/handlers/aws/cloudFormation.ts +++ b/mocks/handlers/aws/cloudFormation.ts @@ -4,7 +4,8 @@ import exports from "../../data/cloudFormationsExports"; const defaultCloudFormationHandler = http.post( `https://cloudformation.us-east-1.amazonaws.com/`, - async () => { + async ({ request }) => { + console.log("defaultCloudFormationHandler", { request, headers: request.headers }); let xmlResponse = ` diff --git a/mocks/handlers/aws/cognito.ts b/mocks/handlers/aws/cognito.ts index e830dfc187..026dbc017e 100644 --- a/mocks/handlers/aws/cognito.ts +++ b/mocks/handlers/aws/cognito.ts @@ -141,7 +141,8 @@ export const getRequestContext = (user?: TestUserData | string): APIGatewayEvent } as APIGatewayEventRequestContext; }; -export const signInHandler = http.post(/amazoncognito.com\/oauth2\/token/, async () => { +export const signInHandler = http.post(/amazoncognito.com\/oauth2\/token/, async ({ request }) => { + console.log("signInHandler", { request, headers: request.headers }); if (process.env.MOCK_USER_USERNAME) { const user = findUserByUsername(process.env.MOCK_USER_USERNAME); if (user) { @@ -163,10 +164,7 @@ export const signInHandler = http.post(/amazoncognito.com\/oauth2\/token/, async export const identityServiceHandler = http.post( /cognito-identity/, async ({ request }) => { - console.log("identityServiceHandler", { - request, - headers: request.headers, - }); + console.log("identityServiceHandler", { request, headers: request.headers }); const target = request.headers.get("x-amz-target"); if (target) { if (target == "AWSCognitoIdentityService.GetId") { @@ -238,10 +236,7 @@ export const identityProviderServiceHandler = http.post< PathParams, IdpRequestSessionBody | IdpRefreshRequestBody | IdpListUsersRequestBody | AdminGetUserRequestBody >(/https:\/\/cognito-idp.\S*.amazonaws.com\//, async ({ request }) => { - console.log("identityProviderServiceHandler", { - request, - headers: request.headers, - }); + console.log("identityProviderServiceHandler", { request, headers: request.headers }); const target = request.headers.get("x-amz-target"); if (target) { if (target == "AWSCognitoIdentityProviderService.InitiateAuth") { diff --git a/mocks/handlers/aws/credentials.ts b/mocks/handlers/aws/credentials.ts index 0ea1feed75..a5ab5d5385 100644 --- a/mocks/handlers/aws/credentials.ts +++ b/mocks/handlers/aws/credentials.ts @@ -10,24 +10,32 @@ const generateSessionToken = (): string | null => { return null; }; -const defaultApiTokenHandler = http.put(/\/api\/token/, () => { +const defaultApiTokenHandler = http.put(/\/api\/token/, ({ request }) => { + console.log("defaultApiTokenHandler", { request, headers: request.headers }); return HttpResponse.text(generateSessionToken()); }); -const defaultSecurityCredentialsHandler = http.get(/\/meta-data\/iam\/security-credentials/, () => { - return HttpResponse.json({ - Code: "Success", - LastUpdated: new Date().toISOString(), - Type: "AWS-HMAC", - AccessKeyId: ACCESS_KEY_ID, - SecretAccessKey: SECRET_KEY, - Token: generateSessionToken(), - Expiration: "2017-05-17T15:09:54Z", - }); -}); +const defaultSecurityCredentialsHandler = http.get( + /\/meta-data\/iam\/security-credentials/, + ({ request }) => { + console.log("defaultSecurityCredentialsHandler", { request, headers: request.headers }); + return HttpResponse.json({ + Code: "Success", + LastUpdated: new Date().toISOString(), + Type: "AWS-HMAC", + AccessKeyId: ACCESS_KEY_ID, + SecretAccessKey: SECRET_KEY, + Token: generateSessionToken(), + Expiration: "2017-05-17T15:09:54Z", + }); + }, +); -const defaultSecurityTokenServiceHandler = http.post("https://sts.us-east-1.amazonaws.com/", () => { - const xmlResponse = ` +const defaultSecurityTokenServiceHandler = http.post( + "https://sts.us-east-1.amazonaws.com/", + ({ request }) => { + console.log("defaultSecurityTokenServiceHandler", { request, headers: request.headers }); + const xmlResponse = ` DevUser123 @@ -49,8 +57,9 @@ const defaultSecurityTokenServiceHandler = http.post("https://sts.us-east-1.amaz `; - return HttpResponse.xml(xmlResponse); -}); + return HttpResponse.xml(xmlResponse); + }, +); export const errorSecurityTokenServiceHandler = http.post( "https://sts.us-east-1.amazonaws.com/", diff --git a/mocks/handlers/aws/lambda.ts b/mocks/handlers/aws/lambda.ts index 9eeea91e58..3c74d0d634 100644 --- a/mocks/handlers/aws/lambda.ts +++ b/mocks/handlers/aws/lambda.ts @@ -10,7 +10,7 @@ import { TestEventSourceMappingRequestBody } from "../../index.d"; const defaultListEventSourceMappingsHandler = http.get( "https://lambda.us-east-1.amazonaws.com/2015-03-31/event-source-mappings", async ({ request }) => { - console.log("get: ", { request }); + console.log("defaultListEventSourceMappingsHandler", { request, headers: request.headers }); const requestUrl = new URL(request.url); const functionName = requestUrl.searchParams.get("FunctionName") || ""; @@ -34,6 +34,7 @@ const defaultCreateEventSourceMappingsHandler = http.post< >( "https://lambda.us-east-1.amazonaws.com/2015-03-31/event-source-mappings", async ({ request }) => { + console.log("defaultCreateEventSourceMappingsHandler", { request, headers: request.headers }); const { FunctionName, Topics } = await request.json(); if (!FunctionName) { @@ -68,7 +69,12 @@ const defaultCreateEventSourceMappingsHandler = http.post< const defaultGetEventSourceMappingHandler = http.get( "https://lambda.us-east-1.amazonaws.com/2015-03-31/event-source-mappings/:uuid", - async ({ params }) => { + async ({ request, params }) => { + console.log("defaultGetEventSourceMappingHandler", { + request, + headers: request.headers, + params, + }); const { uuid } = params; if (!uuid) { @@ -89,7 +95,8 @@ const defaultGetEventSourceMappingHandler = http.get( const defaultDeleteEventSourceMappingHandler = http.delete( "https://lambda.us-east-1.amazonaws.com/2015-03-31/event-source-mappings/:uuid", - async ({ params }) => { + async ({ request, params }) => { + console.log("", { request, headers: request.headers, params }); const { uuid } = params; if (!uuid) { diff --git a/mocks/handlers/aws/secretsManager.ts b/mocks/handlers/aws/secretsManager.ts index 63fe010423..767d03b11f 100644 --- a/mocks/handlers/aws/secretsManager.ts +++ b/mocks/handlers/aws/secretsManager.ts @@ -5,6 +5,7 @@ import secrets, { TEST_SECRET_ERROR_ID } from "../../data/secrets"; const defaultSecretHandler = http.post( `https://secretsmanager.us-east-1.amazonaws.com`, async ({ request }) => { + console.log("defaultSecretHandler", { request, headers: request }); const { SecretId } = await request.json(); if (!SecretId) { return HttpResponse.json({ diff --git a/mocks/handlers/aws/stepFunctions.ts b/mocks/handlers/aws/stepFunctions.ts index a41d8adf5e..521cd41589 100644 --- a/mocks/handlers/aws/stepFunctions.ts +++ b/mocks/handlers/aws/stepFunctions.ts @@ -4,6 +4,7 @@ import { TestStepFunctionRequestBody } from "../../index.d"; const defaultStepFunctionHandler = http.post( "https://states.us-east-1.amazonaws.com/", async ({ request }) => { + console.log("defaultStepFunctionHandler", { request, headers: request.headers }); const { input } = await request.json(); const { cfnEvent: { diff --git a/mocks/handlers/index.ts b/mocks/handlers/index.ts index de40f65572..fe792b7f7c 100644 --- a/mocks/handlers/index.ts +++ b/mocks/handlers/index.ts @@ -24,24 +24,12 @@ export const postOnceHandler = (endpoint: string, status: number = 200, body?: B ); // Handlers that mock calls to the API -export const defaultApiHandlers = [ - ...apiHandlers, - ...countiesHandlers -] +export const defaultApiHandlers = [...apiHandlers, ...countiesHandlers]; // Handlers that mock calls to 3rd party services from the API -export const defaultServiceHandlers = [ - ...awsHandlers, - ...opensearchHandlers, - ...countiesHandlers -] +export const defaultServiceHandlers = [...awsHandlers, ...opensearchHandlers, ...countiesHandlers]; -export default [ - ...apiHandlers, - ...awsHandlers, - ...opensearchHandlers, - ...countiesHandlers, -]; +export default [...apiHandlers, ...awsHandlers, ...opensearchHandlers, ...countiesHandlers]; export { convertUserAttributes, diff --git a/react-app/src/features/package/package-activity/index.test.tsx b/react-app/src/features/package/package-activity/index.test.tsx index 6b1c4e6ac6..d30fe430f2 100644 --- a/react-app/src/features/package/package-activity/index.test.tsx +++ b/react-app/src/features/package/package-activity/index.test.tsx @@ -9,6 +9,7 @@ import { NOT_FOUND_ITEM_ID, MISSING_CHANGELOG_ITEM_ID, WITHDRAWN_CHANGELOG_ITEM_ID, + ATTACHMENT_BUCKET_NAME, setDefaultStateSubmitter, } from "mocks"; @@ -61,36 +62,43 @@ describe("Package Activity", () => { filename: "contract_amendment_2024.pdf", key: "doc001", title: "Contract Amendment", + bucket: ATTACHMENT_BUCKET_NAME, }, { filename: "rai_response.docx", key: "rai002", title: "Response to RAI", + bucket: ATTACHMENT_BUCKET_NAME, }, { filename: "followup_docs.zip", key: "subdoc003", title: "Follow-Up Documents", + bucket: ATTACHMENT_BUCKET_NAME, }, { filename: "compliance_documents.xlsx", key: "subdoc004", title: "Compliance Files", + bucket: ATTACHMENT_BUCKET_NAME, }, { filename: "rai_withdrawal_notice.pdf", key: "withdraw005", title: "Withdrawal Notice", + bucket: ATTACHMENT_BUCKET_NAME, }, { filename: "package_withdrawal_request.docx", key: "withdraw006", title: "Package Withdrawal", + bucket: ATTACHMENT_BUCKET_NAME, }, { filename: "miscellaneous_info.txt", key: "misc007", title: "Miscellaneous File", + bucket: ATTACHMENT_BUCKET_NAME, }, ]); }); @@ -115,6 +123,7 @@ describe("Package Activity", () => { filename: "contract_amendment_2024.pdf", key: "doc001", title: "Contract Amendment", + bucket: ATTACHMENT_BUCKET_NAME, }, ]); }); @@ -141,6 +150,7 @@ describe("Package Activity", () => { filename: "contract_amendment_2024.pdf", key: "doc001", title: "Contract Amendment", + bucket: ATTACHMENT_BUCKET_NAME, }); expect(spiedWindowOpen).toBeCalledWith("hello world!"); }); From dff4a4a5c3878dd98ae8f3d0e27f7a380a782942 Mon Sep 17 00:00:00 2001 From: Thomas Walker Date: Thu, 9 Jan 2025 11:52:50 -0500 Subject: [PATCH 07/11] feat(test)-unauthorized submission test (#996) --- lib/lambda/submit/indexUnauthorized.test.ts | 107 ++++++++++++++++++ .../events/capitated-renewal.test.ts | 62 ---------- .../events/contracting-renewal.test.ts | 62 ---------- mocks/data/users/stateSubmitters.ts | 5 +- 4 files changed, 110 insertions(+), 126 deletions(-) create mode 100644 lib/lambda/submit/indexUnauthorized.test.ts delete mode 100644 lib/packages/shared-types/events/capitated-renewal.test.ts delete mode 100644 lib/packages/shared-types/events/contracting-renewal.test.ts diff --git a/lib/lambda/submit/indexUnauthorized.test.ts b/lib/lambda/submit/indexUnauthorized.test.ts new file mode 100644 index 0000000000..bb91124b5f --- /dev/null +++ b/lib/lambda/submit/indexUnauthorized.test.ts @@ -0,0 +1,107 @@ +import { submit } from "./index"; +import { APIGatewayEvent } from "node_modules/shared-types"; +import { describe, it, expect, vi, afterEach, beforeEach } from "vitest"; +import { getRequestContext } from "mocks"; +import { automatedStateSubmitterUsername } from "mocks/data/users/stateSubmitters"; +import { + capitatedAmendmentBase, + appkBase, + capitatedInitial, + capitatedRenewal, + contractingAmmendment, + contractingInitial, + contractingRenewal, + newChipSubmission, + newMedicaidSubmission, + respondToRai, + temporaryExtension, + toggleWithdrawRai, + withdrawPackage, + withdrawRai, +} from "mocks/data/submit/base"; + +vi.mock("kafkajs", () => { + const producer = { + connect: vi.fn(), + send: vi.fn(), + disconnect: vi.fn(), + }; + const kafka = { + producer: () => producer, + }; + return { + Kafka: vi.fn(() => kafka), + Producer: vi.fn(() => producer), + }; +}); +describe("submit Lambda function", () => { + let brokerString: string | undefined; + beforeEach(() => { + brokerString = process.env.brokerString; + process.env.brokerString = "broker1,broker2"; + }); + + afterEach(() => { + process.env.brokerString = brokerString; + }); + it.each([ + [ + "should not have authorization to create a capitated ammendment event", + JSON.stringify(capitatedAmendmentBase), + ], + ["should not have authorization to create a appk event", JSON.stringify(appkBase)], + [ + "should not have authorization to create a capitated initial event", + JSON.stringify(capitatedInitial), + ], + [ + "should not have authorization to create a capitated renewal event", + JSON.stringify(capitatedRenewal), + ], + [ + "should not have authorization to create a contracting ammendment event", + JSON.stringify(contractingAmmendment), + ], + [ + "should not have authorization to create a contracting renewal event", + JSON.stringify(contractingRenewal), + ], + [ + "should not have authorization to create a contracting initial event", + JSON.stringify(contractingInitial), + ], + [ + "should not have authorization to create a new medicaid submission event", + JSON.stringify(newMedicaidSubmission), + ], + [ + "should not have authorization to create a new chip submission event", + JSON.stringify(newChipSubmission), + ], + [ + "should not have authorization to create a respond to rai event", + JSON.stringify(respondToRai), + ], + [ + "should not have authorization to create a temporary extension event", + JSON.stringify(temporaryExtension), + ], + [ + "should not have authorization to create a toggle withdraw rai event", + JSON.stringify(toggleWithdrawRai), + ], + [ + "should not have authorization to create a withdraw package event", + JSON.stringify(withdrawPackage), + ], + ["should not have authorization to create a withdraw rai event", JSON.stringify(withdrawRai)], + ])("%s", async (_, base) => { + const event = { + body: base, + requestContext: getRequestContext(automatedStateSubmitterUsername), + } as APIGatewayEvent; + const result = await submit(event); + expect(result.statusCode).toEqual(500); + expect(result.body).toEqual('{"message":"Internal server error"}'); + }); +}); diff --git a/lib/packages/shared-types/events/capitated-renewal.test.ts b/lib/packages/shared-types/events/capitated-renewal.test.ts deleted file mode 100644 index 3fbeb89ca6..0000000000 --- a/lib/packages/shared-types/events/capitated-renewal.test.ts +++ /dev/null @@ -1,62 +0,0 @@ -import { events } from "shared-types/events"; -import { describe, expect, test } from "vitest"; - -describe("Capitated Renewal", () => { - const schema = events["capitated-renewal"].baseSchema.pick({ id: true }); - const formatErrorMessage = "Renewal Number must be in the format of"; - - test("VALID ID", () => { - const validId = "MD-2024.R01.00"; - const result = schema.safeParse({ id: validId }); - - expect(result.success).toBe(true); - }); - - test("EMPTY ID", () => { - const validId = ""; - const result = schema.safeParse({ id: validId }); - - expect(result.success).toBe(false); - expect(result.error.issues[0].message).toBe("Required"); - }); - - test("TOO SHORT ID FORMAT", () => { - const invalidId = "MD-202.R01.00"; - const result = schema.safeParse({ id: invalidId }); - - expect(result.success).toBe(false); - expect(result.error.issues[0].message).toMatch(formatErrorMessage); - }); - - test("TOO LONG ID FORMAT", () => { - const invalidId = "MD-123456.R01.00"; - const result = schema.safeParse({ id: invalidId }); - - expect(result.success).toBe(false); - expect(result.error.issues[0].message).toMatch(formatErrorMessage); - }); - - test("INVALID CHARACTERS ID FORMAT", () => { - const invalidId = "MD-1234.R0a.00"; - const result = schema.safeParse({ id: invalidId }); - - expect(result.success).toBe(false); - expect(result.error.issues[0].message).toMatch(formatErrorMessage); - }); - - test("INVALID R## ID FORMAT", () => { - const invalidId = "NY-1234.R00.00"; - const result = schema.safeParse({ id: invalidId }); - - expect(result.success).toBe(false); - expect(result.error.issues[0].message).toMatch(formatErrorMessage); - }); - - test("INVALID AMENDMENT ID", () => { - const invalidId = "NY-1234.R01.01"; - const result = schema.safeParse({ id: invalidId }); - - expect(result.success).toBe(false); - expect(result.error.issues[0].message).toMatch(formatErrorMessage); - }); -}); diff --git a/lib/packages/shared-types/events/contracting-renewal.test.ts b/lib/packages/shared-types/events/contracting-renewal.test.ts deleted file mode 100644 index d24086c2ff..0000000000 --- a/lib/packages/shared-types/events/contracting-renewal.test.ts +++ /dev/null @@ -1,62 +0,0 @@ -import { events } from "shared-types/events"; -import { describe, expect, test } from "vitest"; - -describe("Contracting Renewal", () => { - const schema = events["contracting-renewal"].baseSchema.pick({ id: true }); - const formatErrorMessage = "Renewal Number must be in the format of"; - - test(" VALID ID", () => { - const validId = "MD-2024.R01.00"; - const result = schema.safeParse({ id: validId }); - - expect(result.success).toBe(true); - }); - - test("EMPTY ID", () => { - const validId = ""; - const result = schema.safeParse({ id: validId }); - - expect(result.success).toBe(false); - expect(result.error.issues[0].message).toBe("Required"); - }); - - test("TOO SHORT ID FORMAT", () => { - const invalidId = "MD-202.R01.00"; - const result = schema.safeParse({ id: invalidId }); - - expect(result.success).toBe(false); - expect(result.error.issues[0].message).toMatch(formatErrorMessage); - }); - - test("TOO LONG ID FORMAT", () => { - const invalidId = "MD-123456.R01.00"; - const result = schema.safeParse({ id: invalidId }); - - expect(result.success).toBe(false); - expect(result.error.issues[0].message).toMatch(formatErrorMessage); - }); - - test("INVALID CHARACTERS ID FORMAT", () => { - const invalidId = "MD-1234.R0a.00"; - const result = schema.safeParse({ id: invalidId }); - - expect(result.success).toBe(false); - expect(result.error.issues[0].message).toMatch(formatErrorMessage); - }); - - test("INVALID R## ID FORMAT", () => { - const invalidId = "NY-1234.R00.00"; - const result = schema.safeParse({ id: invalidId }); - - expect(result.success).toBe(false); - expect(result.error.issues[0].message).toMatch(formatErrorMessage); - }); - - test("INVALID AMENDMENT ID", () => { - const invalidId = "NY-1234.R01.01"; - const result = schema.safeParse({ id: invalidId }); - - expect(result.success).toBe(false); - expect(result.error.issues[0].message).toMatch(formatErrorMessage); - }); -}); diff --git a/mocks/data/users/stateSubmitters.ts b/mocks/data/users/stateSubmitters.ts index f391b9fcf3..9b0d30e608 100644 --- a/mocks/data/users/stateSubmitters.ts +++ b/mocks/data/users/stateSubmitters.ts @@ -1,5 +1,6 @@ import { TestUserData } from "../../index.d"; +export const automatedStateSubmitterUsername = "f3a1b6d6-3bc9-498d-ac22-41a6d46982c9"; export const makoStateSubmitter: TestUserData = { UserAttributes: [ { @@ -232,10 +233,10 @@ export const automatedStateSubmitter: TestUserData = { }, { Name: "sub", - Value: "f3a1b6d6-3bc9-498d-ac22-41a6d46982c9", + Value: automatedStateSubmitterUsername, }, ], - Username: "f3a1b6d6-3bc9-498d-ac22-41a6d46982c9", + Username: automatedStateSubmitterUsername, }; export const testNewStateSubmitter: TestUserData = { From f0b89ccbb1308b13e338efb254cf7ef44d736919 Mon Sep 17 00:00:00 2001 From: Benjamin Paige Date: Thu, 9 Jan 2025 11:40:01 -0700 Subject: [PATCH 08/11] feat(amend): Add waiver amendment emails (#993) --- .../emailTemplates/Waiver1915bCMS.tsx | 10 +- .../emailTemplates/Waiver1915bState.tsx | 6 +- .../email/content/new-submission/index.tsx | 6 +- .../CMS/InitialSubmissionCMS.test.tsx | 33 +- .../CMS/Waiver_Capitated.tsx | 102 +- .../CMS/Waiver_Contracting.tsx | 128 + .../InitialSubmissionCMS.test.tsx.snap | 43101 +++++++++++++--- .../State/InitialSubmissionState.test.tsx | 36 +- .../State/Waiver_Capitated.tsx | 114 +- .../State/Waiver_Contracting.tsx | 77 +- .../InitialSubmissionState.test.tsx.snap | 30321 +++++++++-- lib/libs/package.json | 2 +- 12 files changed, 63618 insertions(+), 10318 deletions(-) create mode 100644 lib/libs/email/preview/Initial Submissions/CMS/Waiver_Contracting.tsx diff --git a/lib/libs/email/content/new-submission/emailTemplates/Waiver1915bCMS.tsx b/lib/libs/email/content/new-submission/emailTemplates/Waiver1915bCMS.tsx index f3193af2fe..a6559ac78e 100644 --- a/lib/libs/email/content/new-submission/emailTemplates/Waiver1915bCMS.tsx +++ b/lib/libs/email/content/new-submission/emailTemplates/Waiver1915bCMS.tsx @@ -12,13 +12,17 @@ import { formatDate, formatActionType } from "shared-utils"; export const Waiver1915bCMSEmail = (props: { variables: | (Events["CapitatedInitial"] & CommonEmailVariables) - | (Events["ContractingInitial"] & CommonEmailVariables); + | (Events["ContractingInitial"] & CommonEmailVariables) + | (Events["CapitatedRenewal"] & CommonEmailVariables) + | (Events["ContractingRenewal"] & CommonEmailVariables) + | (Events["CapitatedAmendment"] & CommonEmailVariables) + | (Events["ContractingAmendment"] & CommonEmailVariables); }) => { const variables = props.variables; - const previewText = `${variables.authority} ${variables.actionType} Submitted`; + const previewText = `${variables.authority} ${formatActionType(variables.actionType)} Submitted`; const heading = `The OneMAC Submission Portal received a ${ variables.authority - } ${formatActionType(variables.actionType)} Submission:`; + } ${formatActionType(variables.actionType)} waiver submission:`; return ( { const variables = props.variables; const previewText = `${variables.authority} ${formatActionType(variables.actionType)} Submitted`; diff --git a/lib/libs/email/content/new-submission/index.tsx b/lib/libs/email/content/new-submission/index.tsx index ad327030db..b915675978 100644 --- a/lib/libs/email/content/new-submission/index.tsx +++ b/lib/libs/email/content/new-submission/index.tsx @@ -61,7 +61,8 @@ export const newSubmission: AuthoritiesWithUserTypesTemplate = { cms: async ( variables: | (Events["CapitatedInitial"] & CommonEmailVariables & { emails: EmailAddresses }) - | (Events["ContractingInitial"] & CommonEmailVariables & { emails: EmailAddresses }), + | (Events["ContractingInitial"] & CommonEmailVariables & { emails: EmailAddresses }) + | (Events["CapitatedRenewal"] & CommonEmailVariables & { emails: EmailAddresses }), ) => { return { to: variables.emails.osgEmail, @@ -72,7 +73,8 @@ export const newSubmission: AuthoritiesWithUserTypesTemplate = { state: async ( variables: | (Events["CapitatedInitial"] & CommonEmailVariables & { emails: EmailAddresses }) - | (Events["ContractingInitial"] & CommonEmailVariables & { emails: EmailAddresses }), + | (Events["ContractingInitial"] & CommonEmailVariables & { emails: EmailAddresses }) + | (Events["CapitatedRenewal"] & CommonEmailVariables & { emails: EmailAddresses }), ) => { return { to: [`${variables.submitterName} <${variables.submitterEmail}>`], diff --git a/lib/libs/email/preview/Initial Submissions/CMS/InitialSubmissionCMS.test.tsx b/lib/libs/email/preview/Initial Submissions/CMS/InitialSubmissionCMS.test.tsx index 6b9745694c..499b4976c4 100644 --- a/lib/libs/email/preview/Initial Submissions/CMS/InitialSubmissionCMS.test.tsx +++ b/lib/libs/email/preview/Initial Submissions/CMS/InitialSubmissionCMS.test.tsx @@ -5,8 +5,8 @@ import AppKCMSEmailPreview from "./AppK"; import ChipSpaCMSEmailPreview from "./CHIP_SPA"; import Medicaid_SPA from "./Medicaid_SPA"; import TempExtCMSPreview from "./Temp_Extension"; -import Waiver1915bCMSEmailPreview from "./Waiver_Capitated"; - +import * as WaiverCapitated from "./Waiver_Capitated"; +import * as WaiverContracting from "./Waiver_Contracting"; describe("Initial Submission CMS Email Snapshot Test", () => { it("renders a AppkCMSEmail Preview Template", () => { const template = render(); @@ -28,8 +28,33 @@ describe("Initial Submission CMS Email Snapshot Test", () => { expect(template).toMatchSnapshot(); }); - it("renders a Waiver Capitated Preview Template", () => { - const template = render(); + it("renders a Initial Waiver Capitated Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a Renewal Waiver Capitated Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a Amendment Waiver Capitated Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a Amendment Waiver Contracting Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a Renewal Waiver Contracting Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a Initial Waiver Contracting Preview Template", () => { + const template = render(); expect(template).toMatchSnapshot(); }); diff --git a/lib/libs/email/preview/Initial Submissions/CMS/Waiver_Capitated.tsx b/lib/libs/email/preview/Initial Submissions/CMS/Waiver_Capitated.tsx index e2a078279d..941d7331e3 100644 --- a/lib/libs/email/preview/Initial Submissions/CMS/Waiver_Capitated.tsx +++ b/lib/libs/email/preview/Initial Submissions/CMS/Waiver_Capitated.tsx @@ -1,7 +1,7 @@ import { Waiver1915bCMSEmail } from "libs/email/content/new-submission/emailTemplates/Waiver1915bCMS"; import { emailTemplateValue } from "../../../mock-data/new-submission"; -const Waiver1915bCMSEmailPreview = () => { +export const Waiver1915bCMSCapitatedInitialEmailPreview = () => { return ( { event: "capitated-initial", id: "CO-1234.R21.00", authority: "1915(b)", - actionType: "New", + actionType: "Initial", }} /> ); }; -export default Waiver1915bCMSEmailPreview; +export const Waiver1915bCMSCapitatedRenewalEmailPreview = () => { + return ( + + ); +}; + +export const Waiver1915bCMSCapitatedAmendmentEmailPreview = () => { + return ( + + ); +}; diff --git a/lib/libs/email/preview/Initial Submissions/CMS/Waiver_Contracting.tsx b/lib/libs/email/preview/Initial Submissions/CMS/Waiver_Contracting.tsx new file mode 100644 index 0000000000..18b1831615 --- /dev/null +++ b/lib/libs/email/preview/Initial Submissions/CMS/Waiver_Contracting.tsx @@ -0,0 +1,128 @@ +import { Waiver1915bCMSEmail } from "libs/email/content/new-submission/emailTemplates/Waiver1915bCMS"; +import { emailTemplateValue } from "../../../mock-data/new-submission"; + +export const Waiver1915bCMSContractingInitialEmailPreview = () => { + return ( + + ); +}; + +export const Waiver1915bCMSContractingRenewalEmailPreview = () => { + return ( + + ); +}; + +export const Waiver1915bCMSContractingAmendmentEmailPreview = () => { + return ( + + ); +}; diff --git a/lib/libs/email/preview/Initial Submissions/CMS/__snapshots__/InitialSubmissionCMS.test.tsx.snap b/lib/libs/email/preview/Initial Submissions/CMS/__snapshots__/InitialSubmissionCMS.test.tsx.snap index 536e24db13..56f836a09a 100644 --- a/lib/libs/email/preview/Initial Submissions/CMS/__snapshots__/InitialSubmissionCMS.test.tsx.snap +++ b/lib/libs/email/preview/Initial Submissions/CMS/__snapshots__/InitialSubmissionCMS.test.tsx.snap @@ -1,6 +1,6 @@ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html -exports[`Initial Submission CMS Email Snapshot Test > renders a AppkCMSEmail Preview Template 1`] = ` +exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver Capitated Preview Template 1`] = ` { "asFragment": [Function], "baseElement": @@ -587,648 +587,777 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a AppkCMSEmail Pre - , - "container":

- - - - - -
+ - Appendix K Amendment Submitted -
-  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ + + + + +
+ CHIP SPA CO-24-1234 Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
-
- - - - - + + + +
- - - - - - -
- - OneMAC Logo - -
-
-

- The OneMAC Submission Portal received a 1915(c) Appendix K Amendment Submission: -

-
-
    -
  • -

    - The submission can be accessed in the OneMAC application, which you can find at - - - this link - - . -

    -
  • -
  • -

    - If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. -

    -
  • -
  • -

    - After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. -

    -
  • -
+ + + + - - -
- - -
- - + + + + +
+
+

+ The OneMAC Submission Portal received a CHIP State Plan Amendment +

+
+
+

+ Details: +

+
+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + + + +
+ - - - - - -
-

- State or Territory - : -

-
-

- CO -

-
- - + State or Territory + : +

+ + + + +
+

+ CO +

+
+ - - - + - - -
-

- Name - : -

-
-

+ Name + : +

+
- George Harrison -

-
- - + George Harrison +

+ + + +
+ - - - + + + +
-

- Email Address - : -

-
+ Email Address + : +

+
+

+ george@example.com +

+
+ + + -

- george@example.com -

- - - -
- - + CHIP SPA Package ID + : +

+ + + + +
+

+ CO-24-1234 +

+
+ - - - - - -
+

- Amendment Title - : +

+ Summary: +

-

- A Perfect Appendix K Amendment Title + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

-
- + +
+
+
+

+ Files: +

+ + + + - +

-

- - - -
-
-

- Waiver Amendment Number - : -

-
-

- CO-1234.R21.00 -

-
- - - + +
+ + +

-

- - - -
-

- Waiver Authority - : -

-
-

- Amend -

-
- - - + +
+ + +

-

- - - -
-

- Proposed Effective Date - : -

-
-

- March 2, 2023 -

-
- + + + + - -
-

-

- Summary: -

-

-

- This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. -

- - -
-
-
-
-

- Files: -

- - + state-plan-2024.pdf +
+ + + state-plan-summary.pdf +
+
+ + state-plan-financials.pdf + +

+ + + +
+ - - + + - + +
- +
+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
+

- 1915(c) Appendix K Amendment Waiver Template - : + + amended-language-1.pdf +
+
+ + amended-language-2.pdf +

- - -
+
+ + + -

- appendix-k-amendment.docx +

+ Cover Letter + : +

+ -

- - - -
- - + + + +
+

+ + cover-letter-george-harrison.pdf + +

+
+ - - + - + +
- + + +

+ Budget Documents + : +

+ +
+

- Other - : + + fy2024-budget.xlsx +

- - -
+
+ + + -

- misc-documents.pdf +

+ Public Notice + : +

+ +
-

- - - -
-

- Thank you. -

- - - - - - - -
- - - - - - -
-

- U.S. Centers for Medicare & Medicaid Services -

-

- © - 2023 - | 7500 Security Boulevard, Baltimore, MD 21244 -

-
-
-
- - -
, - "debug": [Function], - "findAllByAltText": [Function], - "findAllByDisplayValue": [Function], - "findAllByLabelText": [Function], - "findAllByPlaceholderText": [Function], - "findAllByRole": [Function], - "findAllByTestId": [Function], - "findAllByText": [Function], - "findAllByTitle": [Function], - "findByAltText": [Function], - "findByDisplayValue": [Function], - "findByLabelText": [Function], - "findByPlaceholderText": [Function], - "findByRole": [Function], - "findByTestId": [Function], - "findByText": [Function], - "findByTitle": [Function], - "getAllByAltText": [Function], - "getAllByDisplayValue": [Function], - "getAllByLabelText": [Function], - "getAllByPlaceholderText": [Function], - "getAllByRole": [Function], - "getAllByTestId": [Function], - "getAllByText": [Function], - "getAllByTitle": [Function], - "getByAltText": [Function], - "getByDisplayValue": [Function], - "getByLabelText": [Function], - "getByPlaceholderText": [Function], - "getByRole": [Function], - "getByTestId": [Function], - "getByText": [Function], - "getByTitle": [Function], - "queryAllByAltText": [Function], - "queryAllByDisplayValue": [Function], - "queryAllByLabelText": [Function], - "queryAllByPlaceholderText": [Function], - "queryAllByRole": [Function], - "queryAllByTestId": [Function], - "queryAllByText": [Function], - "queryAllByTitle": [Function], - "queryByAltText": [Function], - "queryByDisplayValue": [Function], - "queryByLabelText": [Function], - "queryByPlaceholderText": [Function], - "queryByRole": [Function], - "queryByTestId": [Function], - "queryByText": [Function], - "queryByTitle": [Function], - "rerender": [Function], - "unmount": [Function], -} -`; - -exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview Template 1`] = ` -{ - "asFragment": [Function], - "baseElement": + +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+

+ + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf + +

+
+ + + + + + + +
+ +

+ Tribal Consultation + : +

+ +
+
+

+ + tribal-consultation-sept-2024.pdf + +

+
+ + + + + + + +
+ +

+ Other + : +

+ +
+
+

+ + misc-documents.pdf + +

+
+

+ Thank you. +

+
+ + + + + + +
+ + + + + + +
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+
+
+ + +
renders a Chipspa Preview
- Appendix K Amendment Submitted + Medicaid SPA CO-24-2200 Submitted
-  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
renders a Chipspa Preview

- The OneMAC Submission Portal received a 1915(c) Appendix K Amendment Submission: + The OneMAC Submission Portal received a Medicaid SPA Submission:

-
+
+
+

+ Details: +

+
    @@ -1322,7 +1458,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - this link + https://mako-dev.cms.gov/ .

    @@ -1451,7 +1587,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview

    - Email Address + Email :

    @@ -1489,83 +1625,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview

    - Amendment Title - : -

    - - -

    - A Perfect Appendix K Amendment Title -

    - - - - - - - - - - - -
    -

    - Waiver Amendment Number - : -

    -
    -

    - CO-1234.R21.00 -

    -
    - - - - @@ -1575,7 +1635,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview

    - Amend + CO-24-2200

    @@ -1689,7 +1749,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview

    - 1915(c) Appendix K Amendment Waiver Template + Tribal Consultation :

    @@ -1703,7 +1763,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - appendix-k-amendment.docx + tribal-consultation-sept-2024.pdf

    @@ -1734,7 +1794,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview

    - Other + CMS Form 179 :

    @@ -1748,424 +1808,215 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - misc-documents.pdf + cms-form-179.pdf

    -

    - Waiver Authority + Medicaid SPA ID :

    -

    - Thank you. -

    -
- - - - - - -
- + + - - - - -
-
-

- U.S. Centers for Medicare & Medicaid Services -

-

- © - 2023 - | 7500 Security Boulevard, Baltimore, MD 21244 -

-
-
- - - - - - -
-
- - - - - -
- CHIP SPA CO-24-1234 Submitted -
-  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ -
-
- - - - - + + +
- - - - + - - -
- +

+ Standard Funding Questions (SFQs) + : +

+ + +
- OneMAC Logo - -
-
-

+ + funding-questions-sfq.docx + +

+

+ - The OneMAC Submission Portal received a CHIP State Plan Amendment - -
-
-

- Details: -

-
-
    -
  • -

    - The submission can be accessed in the OneMAC application, which you can find at - - - https://mako-dev.cms.gov/ - - . -

    -
  • -
  • -

    - If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. -

    -
  • -
  • -

    - After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. -

    -
  • -
+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
+
+ +

+ SPA Pages + : +

+ +
+ + + + +
+

+ + spa-page1.pdf +
+
+ + spa-page2.pdf +
+
+ + spa-summary.pdf +
+
+ + spa-changes-2024.pdf + +

+
- - - - - -
- - + + - - - - -
+ +

-

-

- State or Territory - : -

-
-

- CO -

-
- + + + + + cover-letter-george-harrison.pdf + +

+ + + +
+

-

+ + + + - - - - -
+ +

-

-

- Name - : -

-
-

- George Harrison -

-
- - - - - - - -
-

- Email Address - : -

-
-

- george@example.com -

-
- - - - - - - -
-

- CHIP SPA Package ID - : -

-
-

- CO-24-1234 -

-
- - - -
-

-

- Summary: -

-

-

- This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. -

- - -
-
-
-

- Files: -

- - - - @@ -2238,7 +2089,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview

- SPA Pages + Existing State Plan Page(s) :

@@ -2248,7 +2099,17 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview

- SPA Pages + Existing State Plan Page(s) + : +

+ +
+ + +

+ Existing State Plan Page(s) :

@@ -2262,11 +2123,15 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - amended-language-1.pdf + page-23-update.pdf
- amended-language-2.pdf + page-24-update.pdf +
+
+ + page-25-update.pdf

@@ -2297,7 +2162,27 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview

- Cover Letter + Public Notice + : +

+ +
+
+ +

+ Public Notice + : +

+ +
+
+ +

+ Public Notice :

@@ -2311,7 +2196,15 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - cover-letter-george-harrison.pdf + public-notice-oct-2024.pdf +
+
+ + public-notice-sept-2024.pdf +
+
+ + public-notice-nov-2024.pdf

@@ -2342,7 +2235,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview

- Budget Documents + Other :

@@ -2356,178 +2249,15 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - fy2024-budget.xlsx + misc-documents.pdf

- -

- CMS Form 179 + Document Demonstrating Good-Faith Tribal Engagement :

@@ -2175,7 +2026,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview

- CMS Form 179 + Document Demonstrating Good-Faith Tribal Engagement :

@@ -2185,7 +2036,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview

- CMS Form 179 + Document Demonstrating Good-Faith Tribal Engagement :

@@ -2199,15 +2050,15 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - state-plan-2024.pdf + tribal-engagement-summary.docx
- state-plan-summary.pdf + tribal-engagement-outreach.pdf
- state-plan-financials.pdf + tribal-engagement-meeting-notes.pdf

- - - - - - - -
- -

- Public Notice - : -

- -
-
- -

- Public Notice - : -

- -
-
- -

- Public Notice - : -

- -
-
-

- - public-notice-oct-2024.pdf -
-
- - public-notice-sept-2024.pdf -
-
- - public-notice-nov-2024.pdf - -

-
- - - - - - - -
- -

- Tribal Consultation - : -

- -
-
-

- - tribal-consultation-sept-2024.pdf - -

-
- - - - - - - -
- -

- Other - : -

- -
-
-

- - misc-documents.pdf - -

-
-

Thank you.

@@ -2583,1419 +2313,30761 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview
- , - "container":
- - - - - -
+ - CHIP SPA CO-24-1234 Submitted -
-  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ + + + + +
+ Temporary Extension MD-2343.R00.TE09 Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
-
- - - - - + + + +
- - - - - - -
- - OneMAC Logo - -
-
-

- The OneMAC Submission Portal received a CHIP State Plan Amendment -

-
-
-

- Details: -

-
-
    -
  • -

    - The submission can be accessed in the OneMAC application, which you can find at - - - https://mako-dev.cms.gov/ - - . -

    -
  • -
  • -

    - If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. -

    -
  • -
  • -

    - After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. -

    -
  • -
+ + + + +
+ + +
- - + + + + +
+
+

+ The Submission Portal received a 1915(b) Temporary Extension Submission: +

+
+
+

+ Details: +

+
+
    +
  • +

    + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

    +
  • +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • +
+ + + + - - -
+ - - - + - - -
-

- State or Territory - : -

-
-

+ State or Territory + : +

+
- CO -

-
- - + MD +

+ + + +
+ - - - + - - -
-

- Name - : -

-
-

+ Name + : +

+
- George Harrison -

-
- - - + George Harrison +

+ + + +
+ + - - + - - -
-

- Email Address - : -

-
-

+ Email Address + : +

+
- george@example.com -

-
- - + george@example.com +

+ + + +
+ - - - + + + +
-

- CHIP SPA Package ID - : -

-
+ Temporary Extension Request Number + : +

+
+

+ MD-2343.R00.TE09 +

+
+ + + -

- CO-24-1234 -

- - - -
- - + Temporary Extension Type + : +

+ + + + +
+

+ 1915(b) +

+
+ - -
-

-

- Summary: -

-

-

+ 90th Day Deadline + : +

+ + + + +
+

+ Mar 2, 2023 @ 11:59pm EST +

+
+ + + - This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. -

- - -
-
-
-

- Files: -

- - +

+

+ Summary: +

+

+

+ Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you. +

+ + +
+
+
+

-

+ - - - - -
- -

- CMS Form 179 - : -

- -
-
- -

- CMS Form 179 - : -

- -
-
- -

- CMS Form 179 - : -

- -
-
-

- state-plan-2024.pdf +

+ Waiver Extension Request + : +

+
- state-plan-summary.pdf +

+ Waiver Extension Request + : +

+
- state-plan-financials.pdf +

+ Waiver Extension Request + : +

+
-

-
+
+

+ + Temporary Extention Document for submission.pdf +
+
+ + Second Extention Document for submission.pdf +
+
+ + Third Extention Document for submission.pdf + +

+
+

+ Thank you. +

+
- - - - +
- -

- SPA Pages - : -

- -
-
- -

- SPA Pages - : -

- -
-
-

+

+ - - amended-language-1.pdf -
-
- - amended-language-2.pdf - -

- - - -
- - - - - + + + + +
- -

- Cover Letter - : -

- -
-
-

- - cover-letter-george-harrison.pdf - -

+
+

+ U.S. Centers for Medicare & Medicaid Services +

+

+ © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

+
+ + + + + + +
+
+ + + + + +
+ 1915(b) Initial Submitted +
+  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
+
+ + + + + - - -
- - - - +
- -

- Budget Documents - : -

- -
-
-

+

+ - - fy2024-budget.xlsx - -

+ OneMAC Logo +
- - - +
+
+

-

- - - -
- -

- Public Notice - : -

- -
-
- -

- Public Notice - : -

- -
-
- -

- Public Notice - : -

- -
-
+ +
    +
  • +

    -

    - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    - - public-notice-nov-2024.pdf - -

    -
- - - - - + + +
+ . +

+ +
  • +

    - -

    - Tribal Consultation - : -

    - - -
  • + +
  • +

    -

    - - tribal-consultation-sept-2024.pdf - + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • + + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Initial Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Capitated) Waiver Application Pre-print + : +

    + +
    +
    +

    + + capitated-waiver-application.pdf + +

    +
    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Capitated) Waiver Cost Effectiveness Spreadsheets + : +

    + +
    +
    +

    + + capitated-waiver-cost-effectiveness-spreadsheet.pdf + +

    +
    +

    + Thank you. +

    + + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + + +
    + + + + + +
    + 1915(b) Renewal Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a 1915(b) Renewal waiver submission: +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Renewal Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Capitated) Waiver Independent Assessment + : +

    + +
    +
    +

    + + capitated-waiver-independent-assessment.pdf + +

    +
    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Capitated) Waiver Application Pre-print + : +

    + +
    +
    +

    + + capitated-waiver-application.pdf + +

    +
    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Capitated) Waiver Cost Effectiveness Spreadsheets + : +

    + +
    +
    +

    + + capitated-waiver-cost-effectiveness-spreadsheet.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + 1915(b) Amendment Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a 1915(b) Amendment waiver submission: +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Amendment Waiver Number + : +

    +
    +

    + CO-1234.R21.01 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Capitated) Waiver Cost Effectiveness Spreadsheets + : +

    + +
    +
    +

    + + capitated-waiver-cost-effectiveness-spreadsheet.pdf + +

    +
    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Capitated) Waiver Application Pre-print + : +

    + +
    +
    +

    + + capitated-waiver-application.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    + , + "container":
    + + + + + +
    + 1915(b) Amendment Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a 1915(b) Amendment waiver submission: +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Amendment Waiver Number + : +

    +
    +

    + CO-1234.R21.01 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Capitated) Waiver Cost Effectiveness Spreadsheets + : +

    + +
    +
    +

    + + capitated-waiver-cost-effectiveness-spreadsheet.pdf + +

    +
    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Capitated) Waiver Application Pre-print + : +

    + +
    +
    +

    + + capitated-waiver-application.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    , + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver Contracting Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
    + + + + + +
    + Appendix K Amendment Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a 1915(c) Appendix K Amendment Submission: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + this link + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Amendment Title + : +

    +
    +

    + A Perfect Appendix K Amendment Title +

    +
    + + + + + + + +
    +

    + Waiver Amendment Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + Amend +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + 1915(c) Appendix K Amendment Waiver Template + : +

    + +
    +
    +

    + + appendix-k-amendment.docx + +

    +
    + + + + + + + +
    + +

    + Other + : +

    + +
    +
    +

    + + misc-documents.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + CHIP SPA CO-24-1234 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a CHIP State Plan Amendment +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + CHIP SPA Package ID + : +

    +
    +

    + CO-24-1234 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + CMS Form 179 + : +

    + +
    +
    + +

    + CMS Form 179 + : +

    + +
    +
    + +

    + CMS Form 179 + : +

    + +
    +
    +

    + + state-plan-2024.pdf +
    +
    + + state-plan-summary.pdf +
    +
    + + state-plan-financials.pdf + +

    +
    + + + + + + + +
    + +

    + SPA Pages + : +

    + +
    +
    + +

    + SPA Pages + : +

    + +
    +
    +

    + + amended-language-1.pdf +
    +
    + + amended-language-2.pdf + +

    +
    + + + + + + + +
    + +

    + Cover Letter + : +

    + +
    +
    +

    + + cover-letter-george-harrison.pdf + +

    +
    + + + + + + + +
    + +

    + Budget Documents + : +

    + +
    +
    +

    + + fy2024-budget.xlsx + +

    +
    + + + + + + + +
    + +

    + Public Notice + : +

    + +
    +
    + +

    + Public Notice + : +

    + +
    +
    + +

    + Public Notice + : +

    + +
    +
    +

    + + public-notice-oct-2024.pdf +
    +
    + + public-notice-sept-2024.pdf +
    +
    + + public-notice-nov-2024.pdf + +

    +
    + + + + + + + +
    + +

    + Tribal Consultation + : +

    + +
    +
    +

    + + tribal-consultation-sept-2024.pdf + +

    +
    + + + + + + + +
    + +

    + Other + : +

    + +
    +
    +

    + + misc-documents.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + Medicaid SPA CO-24-2200 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a Medicaid SPA Submission: +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Medicaid SPA ID + : +

    +
    +

    + CO-24-2200 +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + Tribal Consultation + : +

    + +
    +
    +

    + + tribal-consultation-sept-2024.pdf + +

    +
    + + + + + + + +
    + +

    + CMS Form 179 + : +

    + +
    +
    +

    + + cms-form-179.pdf + +

    +
    + + + + + + + +
    + +

    + Standard Funding Questions (SFQs) + : +

    + +
    +
    +

    + + funding-questions-sfq.docx + +

    +
    + + + + + + + +
    + +

    + SPA Pages + : +

    + +
    +
    + +

    + SPA Pages + : +

    + +
    +
    + +

    + SPA Pages + : +

    + +
    +
    + +

    + SPA Pages + : +

    + +
    +
    +

    + + spa-page1.pdf +
    +
    + + spa-page2.pdf +
    +
    + + spa-summary.pdf +
    +
    + + spa-changes-2024.pdf + +

    +
    + + + + + + + +
    + +

    + Cover Letter + : +

    + +
    +
    +

    + + cover-letter-george-harrison.pdf + +

    +
    + + + + + + + +
    + +

    + Document Demonstrating Good-Faith Tribal Engagement + : +

    + +
    +
    + +

    + Document Demonstrating Good-Faith Tribal Engagement + : +

    + +
    +
    + +

    + Document Demonstrating Good-Faith Tribal Engagement + : +

    + +
    +
    +

    + + tribal-engagement-summary.docx +
    +
    + + tribal-engagement-outreach.pdf +
    +
    + + tribal-engagement-meeting-notes.pdf + +

    +
    + + + + + + + +
    + +

    + Existing State Plan Page(s) + : +

    + +
    +
    + +

    + Existing State Plan Page(s) + : +

    + +
    +
    + +

    + Existing State Plan Page(s) + : +

    + +
    +
    +

    + + page-23-update.pdf +
    +
    + + page-24-update.pdf +
    +
    + + page-25-update.pdf + +

    +
    + + + + + + + +
    + +

    + Public Notice + : +

    + +
    +
    + +

    + Public Notice + : +

    + +
    +
    + +

    + Public Notice + : +

    + +
    +
    +

    + + public-notice-oct-2024.pdf +
    +
    + + public-notice-sept-2024.pdf +
    +
    + + public-notice-nov-2024.pdf + +

    +
    + + + + + + + +
    + +

    + Other + : +

    + +
    +
    +

    + + misc-documents.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + Temporary Extension MD-2343.R00.TE09 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The Submission Portal received a 1915(b) Temporary Extension Submission: +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + MD +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Temporary Extension Request Number + : +

    +
    +

    + MD-2343.R00.TE09 +

    +
    + + + + + + + +
    +

    + Temporary Extension Type + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Mar 2, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + Waiver Extension Request + : +

    + +
    +
    + +

    + Waiver Extension Request + : +

    + +
    +
    + +

    + Waiver Extension Request + : +

    + +
    +
    +

    + + Temporary Extention Document for submission.pdf +
    +
    + + Second Extention Document for submission.pdf +
    +
    + + Third Extention Document for submission.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + 1915(b) Initial Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a 1915(b) Initial waiver submission: +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Initial Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Capitated) Waiver Application Pre-print + : +

    + +
    +
    +

    + + capitated-waiver-application.pdf + +

    +
    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Capitated) Waiver Cost Effectiveness Spreadsheets + : +

    + +
    +
    +

    + + capitated-waiver-cost-effectiveness-spreadsheet.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + 1915(b) Renewal Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a 1915(b) Renewal waiver submission: +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Renewal Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Capitated) Waiver Independent Assessment + : +

    + +
    +
    +

    + + capitated-waiver-independent-assessment.pdf + +

    +
    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Capitated) Waiver Application Pre-print + : +

    + +
    +
    +

    + + capitated-waiver-application.pdf + +

    +
    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Capitated) Waiver Cost Effectiveness Spreadsheets + : +

    + +
    +
    +

    + + capitated-waiver-cost-effectiveness-spreadsheet.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + 1915(b) Amendment Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a 1915(b) Amendment waiver submission: +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Amendment Waiver Number + : +

    +
    +

    + CO-1234.R21.01 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Capitated) Waiver Cost Effectiveness Spreadsheets + : +

    + +
    +
    +

    + + capitated-waiver-cost-effectiveness-spreadsheet.pdf + +

    +
    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Capitated) Waiver Application Pre-print + : +

    + +
    +
    +

    + + capitated-waiver-application.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + 1915(b) Amendment Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a 1915(b) Amendment waiver submission: +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Amendment Waiver Number + : +

    +
    +

    + CO-1234.R21.01 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Contracting) Waiver Application Pre-print + : +

    + +
    +
    +

    + + contracting-waiver-application.pdf + +

    +
    + + + + + + + +
    + +

    + Tribal Consultation + : +

    + +
    +
    +

    + + contracting-waiver-tribal-consultation.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    + , + "container":
    + + + + + +
    + 1915(b) Amendment Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a 1915(b) Amendment waiver submission: +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Amendment Waiver Number + : +

    +
    +

    + CO-1234.R21.01 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Contracting) Waiver Application Pre-print + : +

    + +
    +
    +

    + + contracting-waiver-application.pdf + +

    +
    + + + + + + + +
    + +

    + Tribal Consultation + : +

    + +
    +
    +

    + + contracting-waiver-tribal-consultation.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    , + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Initial Submission CMS Email Snapshot Test > renders a AppkCMSEmail Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
    + + + + + +
    + Appendix K Amendment Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a 1915(c) Appendix K Amendment Submission: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + this link + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Amendment Title + : +

    +
    +

    + A Perfect Appendix K Amendment Title +

    +
    + + + + + + + +
    +

    + Waiver Amendment Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + Amend +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + 1915(c) Appendix K Amendment Waiver Template + : +

    + +
    +
    +

    + + appendix-k-amendment.docx + +

    +
    + + + + + + + +
    + +

    + Other + : +

    + +
    +
    +

    + + misc-documents.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    + , + "container":
    + + + + + +
    + Appendix K Amendment Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a 1915(c) Appendix K Amendment Submission: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + this link + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Amendment Title + : +

    +
    +

    + A Perfect Appendix K Amendment Title +

    +
    + + + + + + + +
    +

    + Waiver Amendment Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + Amend +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + 1915(c) Appendix K Amendment Waiver Template + : +

    + +
    +
    +

    + + appendix-k-amendment.docx + +

    +
    + + + + + + + +
    + +

    + Other + : +

    + +
    +
    +

    + + misc-documents.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    , + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
    + + + + + +
    + Appendix K Amendment Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a 1915(c) Appendix K Amendment Submission: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + this link + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Amendment Title + : +

    +
    +

    + A Perfect Appendix K Amendment Title +

    +
    + + + + + + + +
    +

    + Waiver Amendment Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + Amend +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + 1915(c) Appendix K Amendment Waiver Template + : +

    + +
    +
    +

    + + appendix-k-amendment.docx + +

    +
    + + + + + + + +
    + +

    + Other + : +

    + +
    +
    +

    + + misc-documents.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + CHIP SPA CO-24-1234 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a CHIP State Plan Amendment +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + CHIP SPA Package ID + : +

    +
    +

    + CO-24-1234 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + CMS Form 179 + : +

    + +
    +
    + +

    + CMS Form 179 + : +

    + +
    +
    + +

    + CMS Form 179 + : +

    + +
    +
    +

    + + state-plan-2024.pdf +
    +
    + + state-plan-summary.pdf +
    +
    + + state-plan-financials.pdf + +

    +
    + + + + + + + +
    + +

    + SPA Pages + : +

    + +
    +
    + +

    + SPA Pages + : +

    + +
    +
    +

    + + amended-language-1.pdf +
    +
    + + amended-language-2.pdf + +

    +
    + + + + + + + +
    + +

    + Cover Letter + : +

    + +
    +
    +

    + + cover-letter-george-harrison.pdf + +

    +
    + + + + + + + +
    + +

    + Budget Documents + : +

    + +
    +
    +

    + + fy2024-budget.xlsx + +

    +
    + + + + + + + +
    + +

    + Public Notice + : +

    + +
    +
    + +

    + Public Notice + : +

    + +
    +
    + +

    + Public Notice + : +

    + +
    +
    +

    + + public-notice-oct-2024.pdf +
    +
    + + public-notice-sept-2024.pdf +
    +
    + + public-notice-nov-2024.pdf + +

    +
    + + + + + + + +
    + +

    + Tribal Consultation + : +

    + +
    +
    +

    + + tribal-consultation-sept-2024.pdf + +

    +
    + + + + + + + +
    + +

    + Other + : +

    + +
    +
    +

    + + misc-documents.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    + , + "container":
    + + + + + +
    + CHIP SPA CO-24-1234 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a CHIP State Plan Amendment +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + CHIP SPA Package ID + : +

    +
    +

    + CO-24-1234 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + CMS Form 179 + : +

    + +
    +
    + +

    + CMS Form 179 + : +

    + +
    +
    + +

    + CMS Form 179 + : +

    + +
    +
    +

    + + state-plan-2024.pdf +
    +
    + + state-plan-summary.pdf +
    +
    + + state-plan-financials.pdf + +

    +
    + + + + + + + +
    + +

    + SPA Pages + : +

    + +
    +
    + +

    + SPA Pages + : +

    + +
    +
    +

    + + amended-language-1.pdf +
    +
    + + amended-language-2.pdf + +

    +
    + + + + + + + +
    + +

    + Cover Letter + : +

    + +
    +
    +

    + + cover-letter-george-harrison.pdf + +

    +
    + + + + + + + +
    + +

    + Budget Documents + : +

    + +
    +
    +

    + + fy2024-budget.xlsx + +

    +
    + + + + + + + +
    + +

    + Public Notice + : +

    + +
    +
    + +

    + Public Notice + : +

    + +
    +
    + +

    + Public Notice + : +

    + +
    +
    +

    + + public-notice-oct-2024.pdf +
    +
    + + public-notice-sept-2024.pdf +
    +
    + + public-notice-nov-2024.pdf + +

    +
    + + + + + + + +
    + +

    + Tribal Consultation + : +

    + +
    +
    +

    + + tribal-consultation-sept-2024.pdf + +

    +
    + + + + + + + +
    + +

    + Other + : +

    + +
    +
    +

    + + misc-documents.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    , + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver Capitated Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
    + + + + + +
    + Appendix K Amendment Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a 1915(c) Appendix K Amendment Submission: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + this link + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Amendment Title + : +

    +
    +

    + A Perfect Appendix K Amendment Title +

    +
    + + + + + + + +
    +

    + Waiver Amendment Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + Amend +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + 1915(c) Appendix K Amendment Waiver Template + : +

    + +
    +
    +

    + + appendix-k-amendment.docx + +

    +
    + + + + + + + +
    + +

    + Other + : +

    + +
    +
    +

    + + misc-documents.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + CHIP SPA CO-24-1234 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a CHIP State Plan Amendment +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + CHIP SPA Package ID + : +

    +
    +

    + CO-24-1234 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + CMS Form 179 + : +

    + +
    +
    + +

    + CMS Form 179 + : +

    + +
    +
    + +

    + CMS Form 179 + : +

    + +
    +
    +

    + + state-plan-2024.pdf +
    +
    + + state-plan-summary.pdf +
    +
    + + state-plan-financials.pdf + +

    +
    + + + + + + + +
    + +

    + SPA Pages + : +

    + +
    +
    + +

    + SPA Pages + : +

    + +
    +
    +

    + + amended-language-1.pdf +
    +
    + + amended-language-2.pdf + +

    +
    + + + + + + + +
    + +

    + Cover Letter + : +

    + +
    +
    +

    + + cover-letter-george-harrison.pdf + +

    +
    + + + + + + + +
    + +

    + Budget Documents + : +

    + +
    +
    +

    + + fy2024-budget.xlsx + +

    +
    + + + + + + + +
    + +

    + Public Notice + : +

    + +
    +
    + +

    + Public Notice + : +

    + +
    +
    + +

    + Public Notice + : +

    + +
    +
    +

    + + public-notice-oct-2024.pdf +
    +
    + + public-notice-sept-2024.pdf +
    +
    + + public-notice-nov-2024.pdf + +

    +
    + + + + + + + +
    + +

    + Tribal Consultation + : +

    + +
    +
    +

    + + tribal-consultation-sept-2024.pdf + +

    +
    + + + + + + + +
    + +

    + Other + : +

    + +
    +
    +

    + + misc-documents.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + Medicaid SPA CO-24-2200 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a Medicaid SPA Submission: +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Medicaid SPA ID + : +

    +
    +

    + CO-24-2200 +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + Tribal Consultation + : +

    + +
    +
    +

    + + tribal-consultation-sept-2024.pdf + +

    +
    + + + + + + + +
    + +

    + CMS Form 179 + : +

    + +
    +
    +

    + + cms-form-179.pdf + +

    +
    + + + + + + + +
    + +

    + Standard Funding Questions (SFQs) + : +

    + +
    +
    +

    + + funding-questions-sfq.docx + +

    +
    + + + + + + + +
    + +

    + SPA Pages + : +

    + +
    +
    + +

    + SPA Pages + : +

    + +
    +
    + +

    + SPA Pages + : +

    + +
    +
    + +

    + SPA Pages + : +

    + +
    +
    +

    + + spa-page1.pdf +
    +
    + + spa-page2.pdf +
    +
    + + spa-summary.pdf +
    +
    + + spa-changes-2024.pdf + +

    +
    + + + + + + + +
    + +

    + Cover Letter + : +

    + +
    +
    +

    + + cover-letter-george-harrison.pdf + +

    +
    + + + + + + + +
    + +

    + Document Demonstrating Good-Faith Tribal Engagement + : +

    + +
    +
    + +

    + Document Demonstrating Good-Faith Tribal Engagement + : +

    + +
    +
    + +

    + Document Demonstrating Good-Faith Tribal Engagement + : +

    + +
    +
    +

    + + tribal-engagement-summary.docx +
    +
    + + tribal-engagement-outreach.pdf +
    +
    + + tribal-engagement-meeting-notes.pdf + +

    +
    + + + + + + + +
    + +

    + Existing State Plan Page(s) + : +

    + +
    +
    + +

    + Existing State Plan Page(s) + : +

    + +
    +
    + +

    + Existing State Plan Page(s) + : +

    + +
    +
    +

    + + page-23-update.pdf +
    +
    + + page-24-update.pdf +
    +
    + + page-25-update.pdf + +

    +
    + + + + + + + +
    + +

    + Public Notice + : +

    + +
    +
    + +

    + Public Notice + : +

    + +
    +
    + +

    + Public Notice + : +

    + +
    +
    +

    + + public-notice-oct-2024.pdf +
    +
    + + public-notice-sept-2024.pdf +
    +
    + + public-notice-nov-2024.pdf + +

    +
    + + + + + + + +
    + +

    + Other + : +

    + +
    +
    +

    + + misc-documents.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + Temporary Extension MD-2343.R00.TE09 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The Submission Portal received a 1915(b) Temporary Extension Submission: +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + MD +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Temporary Extension Request Number + : +

    +
    +

    + MD-2343.R00.TE09 +

    +
    + + + + + + + +
    +

    + Temporary Extension Type + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Mar 2, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + Waiver Extension Request + : +

    + +
    +
    + +

    + Waiver Extension Request + : +

    + +
    +
    + +

    + Waiver Extension Request + : +

    + +
    +
    +

    + + Temporary Extention Document for submission.pdf +
    +
    + + Second Extention Document for submission.pdf +
    +
    + + Third Extention Document for submission.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + 1915(b) Initial Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a 1915(b) Initial waiver submission: +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Initial Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Capitated) Waiver Application Pre-print + : +

    + +
    +
    +

    + + capitated-waiver-application.pdf + +

    +
    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Capitated) Waiver Cost Effectiveness Spreadsheets + : +

    + +
    +
    +

    + + capitated-waiver-cost-effectiveness-spreadsheet.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    + , + "container":
    + + + + + +
    + 1915(b) Initial Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a 1915(b) Initial waiver submission: +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Initial Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Capitated) Waiver Application Pre-print + : +

    + +
    +
    +

    + + capitated-waiver-application.pdf + +

    +
    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Capitated) Waiver Cost Effectiveness Spreadsheets + : +

    + +
    +
    +

    + + capitated-waiver-cost-effectiveness-spreadsheet.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    , + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver Contracting Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
    + + + + + +
    + Appendix K Amendment Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a 1915(c) Appendix K Amendment Submission: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + this link + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Amendment Title + : +

    +
    +

    + A Perfect Appendix K Amendment Title +

    +
    + + + + + + + +
    +

    + Waiver Amendment Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + Amend +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + 1915(c) Appendix K Amendment Waiver Template + : +

    + +
    +
    +

    + + appendix-k-amendment.docx + +

    +
    + + + + + + + +
    + +

    + Other + : +

    + +
    +
    +

    + + misc-documents.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + CHIP SPA CO-24-1234 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a CHIP State Plan Amendment +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + CHIP SPA Package ID + : +

    +
    +

    + CO-24-1234 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + CMS Form 179 + : +

    + +
    +
    + +

    + CMS Form 179 + : +

    + +
    +
    + +

    + CMS Form 179 + : +

    + +
    +
    +

    + + state-plan-2024.pdf +
    +
    + + state-plan-summary.pdf +
    +
    + + state-plan-financials.pdf + +

    +
    + + + + + + + +
    + +

    + SPA Pages + : +

    + +
    +
    + +

    + SPA Pages + : +

    + +
    +
    +

    + + amended-language-1.pdf +
    +
    + + amended-language-2.pdf + +

    +
    + + + + + + + +
    + +

    + Cover Letter + : +

    + +
    +
    +

    + + cover-letter-george-harrison.pdf + +

    +
    + + + + + + + +
    + +

    + Budget Documents + : +

    + +
    +
    +

    + + fy2024-budget.xlsx + +

    +
    + + + + + + + +
    + +

    + Public Notice + : +

    + +
    +
    + +

    + Public Notice + : +

    + +
    +
    + +

    + Public Notice + : +

    + +
    +
    +

    + + public-notice-oct-2024.pdf +
    +
    + + public-notice-sept-2024.pdf +
    +
    + + public-notice-nov-2024.pdf + +

    +
    + + + + + + + +
    + +

    + Tribal Consultation + : +

    + +
    +
    +

    + + tribal-consultation-sept-2024.pdf + +

    +
    + + + + + + + +
    + +

    + Other + : +

    + +
    +
    +

    + + misc-documents.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + Medicaid SPA CO-24-2200 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a Medicaid SPA Submission: +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Medicaid SPA ID + : +

    +
    +

    + CO-24-2200 +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + Tribal Consultation + : +

    + +
    +
    +

    + + tribal-consultation-sept-2024.pdf + +

    +
    + + + + + + + +
    + +

    + CMS Form 179 + : +

    + +
    +
    +

    + + cms-form-179.pdf + +

    +
    + + + + + + + +
    + +

    + Standard Funding Questions (SFQs) + : +

    + +
    +
    +

    + + funding-questions-sfq.docx + +

    +
    + + + + + + + +
    + +

    + SPA Pages + : +

    + +
    +
    + +

    + SPA Pages + : +

    + +
    +
    + +

    + SPA Pages + : +

    + +
    +
    + +

    + SPA Pages + : +

    + +
    +
    +

    + + spa-page1.pdf +
    +
    + + spa-page2.pdf +
    +
    + + spa-summary.pdf +
    +
    + + spa-changes-2024.pdf + +

    +
    + + + + + + + +
    + +

    + Cover Letter + : +

    + +
    +
    +

    + + cover-letter-george-harrison.pdf + +

    +
    + + + + + + + +
    + +

    + Document Demonstrating Good-Faith Tribal Engagement + : +

    + +
    +
    + +

    + Document Demonstrating Good-Faith Tribal Engagement + : +

    + +
    +
    + +

    + Document Demonstrating Good-Faith Tribal Engagement + : +

    + +
    +
    +

    + + tribal-engagement-summary.docx +
    +
    + + tribal-engagement-outreach.pdf +
    +
    + + tribal-engagement-meeting-notes.pdf + +

    +
    + + + + + + + +
    + +

    + Existing State Plan Page(s) + : +

    + +
    +
    + +

    + Existing State Plan Page(s) + : +

    + +
    +
    + +

    + Existing State Plan Page(s) + : +

    + +
    +
    +

    + + page-23-update.pdf +
    +
    + + page-24-update.pdf +
    +
    + + page-25-update.pdf + +

    +
    + + + + + + + +
    + +

    + Public Notice + : +

    + +
    +
    + +

    + Public Notice + : +

    + +
    +
    + +

    + Public Notice + : +

    + +
    +
    +

    + + public-notice-oct-2024.pdf +
    +
    + + public-notice-sept-2024.pdf +
    +
    + + public-notice-nov-2024.pdf + +

    +
    + + + + + + + +
    + +

    + Other + : +

    + +
    +
    +

    + + misc-documents.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + Temporary Extension MD-2343.R00.TE09 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The Submission Portal received a 1915(b) Temporary Extension Submission: +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + MD +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Temporary Extension Request Number + : +

    +
    +

    + MD-2343.R00.TE09 +

    +
    + + + + + + + +
    +

    + Temporary Extension Type + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Mar 2, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + Waiver Extension Request + : +

    + +
    +
    + +

    + Waiver Extension Request + : +

    + +
    +
    + +

    + Waiver Extension Request + : +

    + +
    +
    +

    + + Temporary Extention Document for submission.pdf +
    +
    + + Second Extention Document for submission.pdf +
    +
    + + Third Extention Document for submission.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + 1915(b) Initial Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a 1915(b) Initial waiver submission: +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Initial Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Capitated) Waiver Application Pre-print + : +

    + +
    +
    +

    + + capitated-waiver-application.pdf + +

    +
    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Capitated) Waiver Cost Effectiveness Spreadsheets + : +

    + +
    +
    +

    + + capitated-waiver-cost-effectiveness-spreadsheet.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + 1915(b) Renewal Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a 1915(b) Renewal waiver submission: +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Renewal Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Capitated) Waiver Independent Assessment + : +

    + +
    +
    +

    + + capitated-waiver-independent-assessment.pdf + +

    +
    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Capitated) Waiver Application Pre-print + : +

    + +
    +
    +

    + + capitated-waiver-application.pdf + +

    +
    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Capitated) Waiver Cost Effectiveness Spreadsheets + : +

    + +
    +
    +

    + + capitated-waiver-cost-effectiveness-spreadsheet.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + 1915(b) Amendment Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a 1915(b) Amendment waiver submission: +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Amendment Waiver Number + : +

    +
    +

    + CO-1234.R21.01 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Capitated) Waiver Cost Effectiveness Spreadsheets + : +

    + +
    +
    +

    + + capitated-waiver-cost-effectiveness-spreadsheet.pdf + +

    +
    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Capitated) Waiver Application Pre-print + : +

    + +
    +
    +

    + + capitated-waiver-application.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + 1915(b) Amendment Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a 1915(b) Amendment waiver submission: +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Amendment Waiver Number + : +

    +
    +

    + CO-1234.R21.01 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Contracting) Waiver Application Pre-print + : +

    + +
    +
    +

    + + contracting-waiver-application.pdf + +

    +
    + + + + + + + +
    + +

    + Tribal Consultation + : +

    + +
    +
    +

    + + contracting-waiver-tribal-consultation.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + 1915(b) Renewal Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a 1915(b) Renewal waiver submission: +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Renewal Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Contracting) Waiver Application Pre-print + : +

    + +
    +
    +

    + + contracting-waiver-application.pdf + +

    +
    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Contracting) Independent Assessment + : +

    + +
    +
    +

    + + contracting-waiver-independent-assessment.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + 1915(b) Initial Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a 1915(b) Initial waiver submission: +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Initial Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Contracting) Waiver Application Pre-print + : +

    + +
    +
    +

    + + contracting-waiver-application.pdf + +

    +
    + + + + + + + +
    + +

    + Tribal Consultation + : +

    + +
    +
    +

    + + contracting-waiver-tribal-consultation.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    + , + "container":
    + + + + + +
    + 1915(b) Initial Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a 1915(b) Initial waiver submission: +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Initial Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Contracting) Waiver Application Pre-print + : +

    + +
    +
    +

    + + contracting-waiver-application.pdf + +

    +
    + + + + + + + +
    + +

    + Tribal Consultation + : +

    + +
    +
    +

    + + contracting-waiver-tribal-consultation.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    , + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
    + + + + + +
    + Appendix K Amendment Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a 1915(c) Appendix K Amendment Submission: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + this link + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Amendment Title + : +

    +
    +

    + A Perfect Appendix K Amendment Title +

    +
    + + + + + + + +
    +

    + Waiver Amendment Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + Amend +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + 1915(c) Appendix K Amendment Waiver Template + : +

    + +
    +
    +

    + + appendix-k-amendment.docx + +

    +
    + + + + + + + +
    + +

    + Other + : +

    + +
    +
    +

    + + misc-documents.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + CHIP SPA CO-24-1234 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a CHIP State Plan Amendment +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + CHIP SPA Package ID + : +

    +
    +

    + CO-24-1234 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + CMS Form 179 + : +

    + +
    +
    + +

    + CMS Form 179 + : +

    + +
    +
    + +

    + CMS Form 179 + : +

    + +
    +
    +

    + + state-plan-2024.pdf +
    +
    + + state-plan-summary.pdf +
    +
    + + state-plan-financials.pdf + +

    +
    + + + + + + + +
    + +

    + SPA Pages + : +

    + +
    +
    + +

    + SPA Pages + : +

    + +
    +
    +

    + + amended-language-1.pdf +
    +
    + + amended-language-2.pdf + +

    +
    + + + + + + + +
    + +

    + Cover Letter + : +

    + +
    +
    +

    + + cover-letter-george-harrison.pdf + +

    +
    + + + + + + + +
    + +

    + Budget Documents + : +

    + +
    +
    +

    + + fy2024-budget.xlsx + +

    +
    + + + + + + + +
    + +

    + Public Notice + : +

    + +
    +
    + +

    + Public Notice + : +

    + +
    +
    + +

    + Public Notice + : +

    + +
    +
    +

    + + public-notice-oct-2024.pdf +
    +
    + + public-notice-sept-2024.pdf +
    +
    + + public-notice-nov-2024.pdf + +

    +
    + + + + + + + +
    + +

    + Tribal Consultation + : +

    + +
    +
    +

    + + tribal-consultation-sept-2024.pdf + +

    +
    + + + + + + + +
    + +

    + Other + : +

    + +
    +
    +

    + + misc-documents.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + Medicaid SPA CO-24-2200 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a Medicaid SPA Submission: +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Medicaid SPA ID + : +

    +
    +

    + CO-24-2200 +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + Tribal Consultation + : +

    + +
    +
    +

    + + tribal-consultation-sept-2024.pdf + +

    +
    + + + + + + + +
    + +

    + CMS Form 179 + : +

    + +
    +
    +

    + + cms-form-179.pdf + +

    +
    + + + + + + + +
    + +

    + Standard Funding Questions (SFQs) + : +

    + +
    +
    +

    + + funding-questions-sfq.docx + +

    +
    + + + + + + + +
    + +

    + SPA Pages + : +

    + +
    +
    + +

    + SPA Pages + : +

    + +
    +
    + +

    + SPA Pages + : +

    + +
    +
    + +

    + SPA Pages + : +

    + +
    +
    +

    + + spa-page1.pdf +
    +
    + + spa-page2.pdf +
    +
    + + spa-summary.pdf +
    +
    + + spa-changes-2024.pdf + +

    +
    + + + + + + + +
    + +

    + Cover Letter + : +

    + +
    +
    +

    + + cover-letter-george-harrison.pdf + +

    +
    + + + + + + + +
    + +

    + Document Demonstrating Good-Faith Tribal Engagement + : +

    + +
    +
    + +

    + Document Demonstrating Good-Faith Tribal Engagement + : +

    + +
    +
    + +

    + Document Demonstrating Good-Faith Tribal Engagement + : +

    + +
    +
    +

    + + tribal-engagement-summary.docx +
    +
    + + tribal-engagement-outreach.pdf +
    +
    + + tribal-engagement-meeting-notes.pdf + +

    +
    + + + + + + + +
    + +

    + Existing State Plan Page(s) + : +

    + +
    +
    + +

    + Existing State Plan Page(s) + : +

    + +
    +
    + +

    + Existing State Plan Page(s) + : +

    + +
    +
    +

    + + page-23-update.pdf +
    +
    + + page-24-update.pdf +
    +
    + + page-25-update.pdf + +

    +
    + + + + + + + +
    + +

    + Public Notice + : +

    + +
    +
    + +

    + Public Notice + : +

    + +
    +
    + +

    + Public Notice + : +

    + +
    +
    +

    + + public-notice-oct-2024.pdf +
    +
    + + public-notice-sept-2024.pdf +
    +
    + + public-notice-nov-2024.pdf + +

    +
    + + + + + + + +
    + +

    + Other + : +

    + +
    +
    +

    + + misc-documents.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    + , + "container":
    + + + + + +
    + Medicaid SPA CO-24-2200 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a Medicaid SPA Submission: +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Medicaid SPA ID + : +

    +
    +

    + CO-24-2200 +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + Tribal Consultation + : +

    + +
    +
    +

    + + tribal-consultation-sept-2024.pdf + +

    +
    + + + + + + + +
    + +

    + CMS Form 179 + : +

    + +
    +
    +

    + + cms-form-179.pdf + +

    +
    + + + + + + + +
    + +

    + Standard Funding Questions (SFQs) + : +

    + +
    +
    +

    + + funding-questions-sfq.docx + +

    +
    + + + + + + + +
    + +

    + SPA Pages + : +

    + +
    +
    + +

    + SPA Pages + : +

    + +
    +
    + +

    + SPA Pages + : +

    + +
    +
    + +

    + SPA Pages + : +

    + +
    +
    +

    + + spa-page1.pdf +
    +
    + + spa-page2.pdf +
    +
    + + spa-summary.pdf +
    +
    + + spa-changes-2024.pdf + +

    +
    + + + + + + + +
    + +

    + Cover Letter + : +

    + +
    +
    +

    + + cover-letter-george-harrison.pdf + +

    +
    + + + + + + + +
    + +

    + Document Demonstrating Good-Faith Tribal Engagement + : +

    + +
    +
    + +

    + Document Demonstrating Good-Faith Tribal Engagement + : +

    + +
    +
    + +

    + Document Demonstrating Good-Faith Tribal Engagement + : +

    + +
    +
    +

    + + tribal-engagement-summary.docx +
    +
    + + tribal-engagement-outreach.pdf +
    +
    + + tribal-engagement-meeting-notes.pdf + +

    +
    + + + + + + + +
    + +

    + Existing State Plan Page(s) + : +

    + +
    +
    + +

    + Existing State Plan Page(s) + : +

    + +
    +
    + +

    + Existing State Plan Page(s) + : +

    + +
    +
    +

    + + page-23-update.pdf +
    +
    + + page-24-update.pdf +
    +
    + + page-25-update.pdf + +

    +
    + + + + + + + +
    + +

    + Public Notice + : +

    + +
    +
    + +

    + Public Notice + : +

    + +
    +
    + +

    + Public Notice + : +

    + +
    +
    +

    + + public-notice-oct-2024.pdf +
    +
    + + public-notice-sept-2024.pdf +
    +
    + + public-notice-nov-2024.pdf + +

    +
    + + + + +
    + +

    + Other + : +

    + +
    +
    +

    + + misc-documents.pdf +

    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    , + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver Capitated Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
    + + + + + +
    + Appendix K Amendment Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a 1915(c) Appendix K Amendment Submission: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + this link + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Amendment Title + : +

    +
    +

    + A Perfect Appendix K Amendment Title +

    +
    + + + + + + + +
    +

    + Waiver Amendment Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + Amend +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + 1915(c) Appendix K Amendment Waiver Template + : +

    + +
    +
    +

    + + appendix-k-amendment.docx + +

    +
    + + + + + + + +
    + +

    + Other + : +

    + +
    +
    +

    + + misc-documents.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + CHIP SPA CO-24-1234 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a CHIP State Plan Amendment +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + CHIP SPA Package ID + : +

    +
    +

    + CO-24-1234 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + CMS Form 179 + : +

    + +
    +
    + +

    + CMS Form 179 + : +

    + +
    +
    + +

    + CMS Form 179 + : +

    + +
    +
    +

    + + state-plan-2024.pdf +
    +
    + + state-plan-summary.pdf +
    +
    + + state-plan-financials.pdf + +

    +
    + + + + + + + +
    + +

    + SPA Pages + : +

    + +
    +
    + +

    + SPA Pages + : +

    + +
    +
    +

    + + amended-language-1.pdf +
    +
    + + amended-language-2.pdf + +

    +
    + + + + + + + +
    + +

    + Cover Letter + : +

    + +
    +
    +

    + + cover-letter-george-harrison.pdf + +

    +
    + + + + + + + +
    + +

    + Budget Documents + : +

    + +
    +
    +

    + + fy2024-budget.xlsx + +

    +
    + + + + + + + +
    + +

    + Public Notice + : +

    + +
    +
    + +

    + Public Notice + : +

    + +
    +
    + +

    + Public Notice + : +

    + +
    +
    +

    + + public-notice-oct-2024.pdf +
    +
    + + public-notice-sept-2024.pdf +
    +
    + + public-notice-nov-2024.pdf + +

    +
    + + + + + + + +
    + +

    + Tribal Consultation + : +

    + +
    +
    +

    + + tribal-consultation-sept-2024.pdf + +

    +
    + + + + + + + +
    + +

    + Other + : +

    + +
    +
    +

    + + misc-documents.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + Medicaid SPA CO-24-2200 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a Medicaid SPA Submission: +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Medicaid SPA ID + : +

    +
    +

    + CO-24-2200 +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + Tribal Consultation + : +

    + +
    +
    +

    + + tribal-consultation-sept-2024.pdf + +

    +
    + + + + + + + +
    + +

    + CMS Form 179 + : +

    + +
    +
    +

    + + cms-form-179.pdf + +

    +
    + + + + + + + +
    + +

    + Standard Funding Questions (SFQs) + : +

    + +
    +
    +

    + + funding-questions-sfq.docx + +

    +
    + + + + + + + +
    + +

    + SPA Pages + : +

    + +
    +
    + +

    + SPA Pages + : +

    + +
    +
    + +

    + SPA Pages + : +

    + +
    +
    + +

    + SPA Pages + : +

    + +
    +
    +

    + + spa-page1.pdf +
    +
    + + spa-page2.pdf +
    +
    + + spa-summary.pdf +
    +
    + + spa-changes-2024.pdf + +

    +
    + + + + + + + +
    + +

    + Cover Letter + : +

    + +
    +
    +

    + + cover-letter-george-harrison.pdf + +

    +
    + + + + + + + +
    + +

    + Document Demonstrating Good-Faith Tribal Engagement + : +

    + +
    +
    + +

    + Document Demonstrating Good-Faith Tribal Engagement + : +

    + +
    +
    + +

    + Document Demonstrating Good-Faith Tribal Engagement + : +

    + +
    +
    +

    + + tribal-engagement-summary.docx +
    +
    + + tribal-engagement-outreach.pdf +
    +
    + + tribal-engagement-meeting-notes.pdf + +

    +
    + + + + + + + +
    + +

    + Existing State Plan Page(s) + : +

    + +
    +
    + +

    + Existing State Plan Page(s) + : +

    + +
    +
    + +

    + Existing State Plan Page(s) + : +

    + +
    +
    +

    + + page-23-update.pdf +
    +
    + + page-24-update.pdf +
    +
    + + page-25-update.pdf + +

    +
    + + + + + + + +
    + +

    + Public Notice + : +

    + +
    +
    + +

    + Public Notice + : +

    + +
    +
    + +

    + Public Notice + : +

    + +
    +
    +

    + + public-notice-oct-2024.pdf +
    +
    + + public-notice-sept-2024.pdf +
    +
    + + public-notice-nov-2024.pdf + +

    +
    + + + + + + + +
    + +

    + Other + : +

    + +
    +
    +

    + + misc-documents.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + Temporary Extension MD-2343.R00.TE09 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The Submission Portal received a 1915(b) Temporary Extension Submission: +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + MD +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Temporary Extension Request Number + : +

    +
    +

    + MD-2343.R00.TE09 +

    +
    + + + + + + + +
    +

    + Temporary Extension Type + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Mar 2, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + Waiver Extension Request + : +

    + +
    +
    + +

    + Waiver Extension Request + : +

    + +
    +
    + +

    + Waiver Extension Request + : +

    + +
    +
    +

    + + Temporary Extention Document for submission.pdf +
    +
    + + Second Extention Document for submission.pdf +
    +
    + + Third Extention Document for submission.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + 1915(b) Initial Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a 1915(b) Initial waiver submission: +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Initial Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Capitated) Waiver Application Pre-print + : +

    + +
    +
    +

    + + capitated-waiver-application.pdf + +

    +
    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Capitated) Waiver Cost Effectiveness Spreadsheets + : +

    + +
    +
    +

    + + capitated-waiver-cost-effectiveness-spreadsheet.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + 1915(b) Renewal Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + +
    - + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a 1915(b) Renewal waiver submission: +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Renewal Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    -

    + - - - - -
    - -

    - Other - : -

    - -
    -
    -

    - misc-documents.pdf +

    + 1915(b) Comprehensive (Capitated) Waiver Independent Assessment + : +

    + -

    -
    -

    - Thank you. -

    -
    - - - - - - -
    - - - - - - -
    -

    - U.S. Centers for Medicare & Medicaid Services -

    -

    - © - 2023 - | 7500 Security Boulevard, Baltimore, MD 21244 -

    -
    -
    -
    - - -
    , - "debug": [Function], - "findAllByAltText": [Function], - "findAllByDisplayValue": [Function], - "findAllByLabelText": [Function], - "findAllByPlaceholderText": [Function], - "findAllByRole": [Function], - "findAllByTestId": [Function], - "findAllByText": [Function], - "findAllByTitle": [Function], - "findByAltText": [Function], - "findByDisplayValue": [Function], - "findByLabelText": [Function], - "findByPlaceholderText": [Function], - "findByRole": [Function], - "findByTestId": [Function], - "findByText": [Function], - "findByTitle": [Function], - "getAllByAltText": [Function], - "getAllByDisplayValue": [Function], - "getAllByLabelText": [Function], - "getAllByPlaceholderText": [Function], - "getAllByRole": [Function], - "getAllByTestId": [Function], - "getAllByText": [Function], - "getAllByTitle": [Function], - "getByAltText": [Function], - "getByDisplayValue": [Function], - "getByLabelText": [Function], - "getByPlaceholderText": [Function], - "getByRole": [Function], - "getByTestId": [Function], - "getByText": [Function], - "getByTitle": [Function], - "queryAllByAltText": [Function], - "queryAllByDisplayValue": [Function], - "queryAllByLabelText": [Function], - "queryAllByPlaceholderText": [Function], - "queryAllByRole": [Function], - "queryAllByTestId": [Function], - "queryAllByText": [Function], - "queryAllByTitle": [Function], - "queryByAltText": [Function], - "queryByDisplayValue": [Function], - "queryByLabelText": [Function], - "queryByPlaceholderText": [Function], - "queryByRole": [Function], - "queryByTestId": [Function], - "queryByText": [Function], - "queryByTitle": [Function], - "rerender": [Function], - "unmount": [Function], -} -`; - -exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Preview Template 1`] = ` -{ - "asFragment": [Function], - "baseElement": -
    - - - - - -
    - Appendix K Amendment Submitted -
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ -
    -
    - - - - - + + + +
    + +

    + + capitated-waiver-independent-assessment.pdf + +

    +
    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Capitated) Waiver Application Pre-print + : +

    + +
    +
    +

    + + capitated-waiver-application.pdf + +

    +
    + + + + + + + +
    + +

    + 1915(b) Comprehensive (Capitated) Waiver Cost Effectiveness Spreadsheets + : +

    + +
    +
    +

    + + capitated-waiver-cost-effectiveness-spreadsheet.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + +
    - - OneMAC Logo - +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    -
    + + + + + +
    + , + "container":
    + + + + + +
    + 1915(b) Renewal Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    -

    - The OneMAC Submission Portal received a 1915(c) Appendix K Amendment Submission: -

    + The OneMAC Submission Portal received a 1915(b) Renewal waiver submission: + +

    -
      -
    • -

      - The submission can be accessed in the OneMAC application, which you can find at - - - this link - - . -

      -
    • -
    • -

      - If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. -

      -
    • -
    • -

      +

    + - - - - + + +
    - + . +

    + +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • + +
    + + + - - -
    + + - - - - - - -
    -

    - State or Territory - : -

    -
    -

    - CO -

    -
    - - - + + - - - -
    - -

    - Name - : -

    -
    -

    - George Harrison -

    -
    - + + + +
    + + - - - - - - -
    -

    - Email Address - : -

    -
    -

    - george@example.com -

    -
    - - - + + - - - -
    - -

    - Amendment Title - : -

    -
    -

    - A Perfect Appendix K Amendment Title -

    -
    - + + + +
    + + - - - - + - - -
    -

    - Waiver Amendment Number - : -

    -
    + +

    -

    - CO-1234.R21.00 -

    -
    - + + + +
    + + - - - - + - - -
    -

    - Waiver Authority - : -

    -
    + +

    -

    - Amend -

    -
    - + + + +
    + + - - - - + - - -
    -

    - Proposed Effective Date - : -

    -
    + +

    -

    - March 2, 2023 -

    -
    - + + + +
    + + - - -

    -

    - Summary: -

    + Proposed Effective Date + :

    + + - -

    - This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. + March 2, 2023

    -
    -
    -
    -

    - Files: -

    - + + +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + - - - - - - -
    - -

    - 1915(c) Appendix K Amendment Waiver Template - : -

    - -
    -
    +

    - - appendix-k-amendment.docx - + 1915(b) Comprehensive (Capitated) Waiver Independent Assessment + :

    -
    - - - + + - + + +
    - -

    - Other - : -

    - + capitated-waiver-independent-assessment.pdf
    -
    +

    +
    + + + + - - -
    +

    - - misc-documents.pdf - + 1915(b) Comprehensive (Capitated) Waiver Application Pre-print + :

    -
    -

    - Thank you. -

    -
    + + +
    +

    + + capitated-waiver-application.pdf + +

    +
    - - -
    - + + + - - - - -
    + +

    + 1915(b) Comprehensive (Capitated) Waiver Cost Effectiveness Spreadsheets + : +

    + +
    +
    +

    -

    -

    - U.S. Centers for Medicare & Medicaid Services -

    -

    - © - 2023 - | 7500 Security Boulevard, Baltimore, MD 21244 -

    -
    + + capitated-waiver-cost-effectiveness-spreadsheet.pdf + +

    - - - - - - -
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    + + + + + + +
    , + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver Contracting Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement":
    renders a Medicaid Spa Pre
    - CHIP SPA CO-24-1234 Submitted + Appendix K Amendment Submitted
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
    renders a Medicaid Spa Pre

    - The OneMAC Submission Portal received a CHIP State Plan Amendment + The OneMAC Submission Portal received a 1915(c) Appendix K Amendment Submission:

    -
    -
    -

    - Details: -

    -
    +
    • - The submission can be accessed in the OneMAC application, which you can find at - - - https://mako-dev.cms.gov/ - - . -

      -
    • -
    • -

      - If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. -

      -
    • -
    • -

      - After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. -

      -
    • -
    - - - -
    - - - - - - - -
    -

    - State or Territory - : -

    -
    -

    - CO -

    -
    - - - - - - - -
    -

    - Name - : -

    -
    -

    - George Harrison -

    -
    + > + The submission can be accessed in the OneMAC application, which you can find at + + + this link + + . +

    + +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • + + + + + - - -
    renders a Medicaid Spa Pre

    - Email Address + State or Territory :

    @@ -4235,7 +33224,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre

    - george@example.com + CO

    @@ -4263,7 +33252,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre

    - CHIP SPA Package ID + Name :

    @@ -4273,7 +33262,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre

    - CO-24-1234 + George Harrison

    @@ -4284,342 +33273,237 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre border="0" cellpadding="0" cellspacing="0" - role="presentation" - width="100%" - > - - -
    -

    -

    - Summary: -

    -

    -

    - This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. -

    - - -
    -
    -
    -

    - Files: -

    - - - - - - - -
    - -

    - CMS Form 179 - : -

    - -
    -
    - -

    - CMS Form 179 - : -

    - -
    -
    - -

    - CMS Form 179 - : -

    - -
    -
    -

    - - state-plan-2024.pdf -
    -
    - - state-plan-summary.pdf -
    -
    - - state-plan-financials.pdf - -

    -
    - - - - - - - -
    - -

    - SPA Pages - : -

    - -
    -
    - -

    - SPA Pages - : -

    - -
    -
    -

    - - amended-language-1.pdf -
    -
    - - amended-language-2.pdf - -

    -
    - - - - - - - -
    - -

    - Cover Letter - : -

    - -
    -
    -

    - - cover-letter-george-harrison.pdf - -

    -
    - - - - - + + + +
    - -

    - Budget Documents - : -

    - -
    -
    -

    +

    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + - - fy2024-budget.xlsx - -

    - - - -
    - - - - + + + +
    - -

    - Public Notice - : -

    - -
    -
    - -

    +

    +

    + Amendment Title + : +

    +
    +

    + A Perfect Appendix K Amendment Title +

    +
    + + - Public Notice - : -

    - -
    - - -

    +

    + + + +
    +

    + Waiver Amendment Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + - Public Notice - : -

    - - - - + + + +
    -

    +

    +

    + Waiver Authority + : +

    +
    +

    + Amend +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    - - public-notice-nov-2024.pdf - -

    + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + Files: +

    renders a Medicaid Spa Pre

    - Tribal Consultation + 1915(c) Appendix K Amendment Waiver Template :

    @@ -4658,7 +33542,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - tribal-consultation-sept-2024.pdf + appendix-k-amendment.docx

    @@ -4784,9 +33668,9 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre
    - Medicaid SPA CO-24-2200 Submitted + CHIP SPA CO-24-1234 Submitted
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
    renders a Medicaid Spa Pre

    - The OneMAC Submission Portal received a Medicaid SPA Submission: + The OneMAC Submission Portal received a CHIP State Plan Amendment


    renders a Medicaid Spa Pre

    - Email + Email Address :

    @@ -5034,45 +33918,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre

    - Medicaid SPA ID - : -

    - -
    - - -
    -

    - CO-24-2200 -

    -
    - - - - @@ -5082,7 +33928,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre

    - March 2, 2023 + CO-24-1234

    @@ -5158,47 +34004,12 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre

    - Tribal Consultation + CMS Form 179 :

    +
    - - - - -
    -

    - Proposed Effective Date + CHIP SPA Package ID :

    -

    - - tribal-consultation-sept-2024.pdf - -

    -
    - - - - - - - -

    renders a Medicaid Spa Pre :

    +
    -
    -

    - - cms-form-179.pdf - -

    -
    - - - - @@ -5275,40 +34059,20 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre cellpadding="0" cellspacing="0" role="presentation" - style="margin-bottom: 2px; margin-top: 2px;" - width="100%" - > - - - + + @@ -5425,27 +34181,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre

    - Document Demonstrating Good-Faith Tribal Engagement - : -

    - -
    - - -

    - Document Demonstrating Good-Faith Tribal Engagement - : -

    - -
    -
    - -

    - Document Demonstrating Good-Faith Tribal Engagement + Budget Documents :

    @@ -5459,15 +34195,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - tribal-engagement-summary.docx -
    -
    - - tribal-engagement-outreach.pdf -
    -
    - - tribal-engagement-meeting-notes.pdf + fy2024-budget.xlsx

    @@ -5498,7 +34226,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre

    - Existing State Plan Page(s) + Public Notice :

    @@ -5508,7 +34236,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre

    - Existing State Plan Page(s) + Public Notice :

    @@ -5518,7 +34246,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre

    - Existing State Plan Page(s) + Public Notice :

    @@ -5532,15 +34260,15 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - page-23-update.pdf + public-notice-oct-2024.pdf
    - page-24-update.pdf + public-notice-sept-2024.pdf
    - page-25-update.pdf + public-notice-nov-2024.pdf

    @@ -5571,27 +34299,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre

    - Public Notice - : -

    - -
    -
    - -

    - Public Notice - : -

    - -
    -
    - -

    - Public Notice + Tribal Consultation :

    @@ -5605,15 +34313,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    - - public-notice-nov-2024.pdf + tribal-consultation-sept-2024.pdf

    @@ -5722,1020 +34422,961 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre - , - "container":
    - - - - - -
    + - Medicaid SPA CO-24-2200 Submitted -
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ + + + + +
    + Medicaid SPA CO-24-2200 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    -
    - -

    - Standard Funding Questions (SFQs) + CMS Form 179 :

    @@ -5262,7 +34038,15 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - funding-questions-sfq.docx + state-plan-2024.pdf +
    +
    + + state-plan-summary.pdf +
    +
    + + state-plan-financials.pdf

    - -

    - SPA Pages - : -

    - -
    -
    - -

    - SPA Pages - : -

    - -
    -
    + style="margin-bottom: 2px; margin-top: 2px;" + width="100%" + > +

    renders a Medicaid Spa Pre style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - spa-page1.pdf -
    -
    - - spa-page2.pdf -
    -
    - - spa-summary.pdf + amended-language-1.pdf
    - spa-changes-2024.pdf + amended-language-2.pdf

    - - - + + + +
    - - - - - - -
    - - OneMAC Logo - -
    -
    -

    - The OneMAC Submission Portal received a Medicaid SPA Submission: -

    -
    -
    -

    - Details: -

    -
    -
      -
    • -

      - The submission can be accessed in the OneMAC application, which you can find at - - - https://mako-dev.cms.gov/ - - . -

      -
    • -
    • -

      - If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. -

      -
    • -
    • -

      - After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. -

      -
    • -
    + + + + +
    + + +
    - - + + + + +
    +
    +

    + The OneMAC Submission Portal received a Medicaid SPA Submission: +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + - - -
    + - - - + - - -
    -

    - State or Territory - : -

    -
    -

    + State or Territory + : +

    +
    - CO -

    -
    - - + CO +

    + + + +
    + - - - + - - -
    -

    - Name - : -

    -
    -

    + Name + : +

    +
    - George Harrison -

    -
    - - + George Harrison +

    + + + +
    + - - - + - - -
    -

    - Email - : -

    -
    -

    + Email + : +

    +
    - george@example.com -

    -
    - - + george@example.com +

    + + + +
    + - - - + - - -
    -

    - Medicaid SPA ID - : -

    -
    -

    + Medicaid SPA ID + : +

    +
    - CO-24-2200 -

    -
    - - + CO-24-2200 +

    + + + +
    + - - - + - - -
    -

    - Proposed Effective Date - : -

    -
    -

    + Proposed Effective Date + : +

    +
    - March 2, 2023 -

    -
    - - + March 2, 2023 +

    + + + +
    + - -
    -

    -

    +

    - Summary: -

    -

    -

    - This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. -

    - - -
    -
    -
    -

    - Files: -

    - - - - - - - -
    - -

    - Tribal Consultation - : -

    - -
    -
    -

    - - tribal-consultation-sept-2024.pdf - -

    -
    - - + Summary: + +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    -

    + - - - - -
    - -

    - CMS Form 179 - : -

    - -
    -
    -

    - cms-form-179.pdf +

    + Tribal Consultation + : +

    + -

    -
    - - - - + - + +
    - +

    - Standard Funding Questions (SFQs) - : + + tribal-consultation-sept-2024.pdf +

    - - -
    +
    + + + -

    - funding-questions-sfq.docx +

    + CMS Form 179 + : +

    + -

    - - - -
    - - + + + +
    +

    + + cms-form-179.pdf + +

    +
    + - - + - + + +
    - -

    - SPA Pages - : -

    - -
    -
    - -

    - SPA Pages - : -

    - -
    -
    - -

    - SPA Pages - : -

    - -
    -
    - +
    + +

    + Standard Funding Questions (SFQs) + : +

    + +
    +

    - SPA Pages - : -

    - - -
    + funding-questions-sfq.docx + +

    +
    + + + -

    - spa-page1.pdf +

    + SPA Pages + : +

    +
    - spa-page2.pdf +

    + SPA Pages + : +

    +
    - spa-summary.pdf +

    + SPA Pages + : +

    +
    - spa-changes-2024.pdf +

    + SPA Pages + : +

    +
    -

    - - - -
    - - - - + - + +
    - +

    - Cover Letter - : + + spa-page1.pdf +
    +
    + + spa-page2.pdf +
    +
    + + spa-summary.pdf +
    +
    + + spa-changes-2024.pdf +

    - - -
    +
    + + + -

    - cover-letter-george-harrison.pdf +

    + Cover Letter + : +

    + -

    - - - -
    - - + + + +
    +

    + + cover-letter-george-harrison.pdf + +

    +
    + - - + - + +
    - -

    - Document Demonstrating Good-Faith Tribal Engagement - : -

    - -
    -
    - -

    - Document Demonstrating Good-Faith Tribal Engagement - : -

    - -
    -
    - +
    + +

    + Document Demonstrating Good-Faith Tribal Engagement + : +

    + +
    +
    + +

    + Document Demonstrating Good-Faith Tribal Engagement + : +

    + +
    +
    + +

    + Document Demonstrating Good-Faith Tribal Engagement + : +

    + +
    +

    - Document Demonstrating Good-Faith Tribal Engagement - : + + tribal-engagement-summary.docx +
    +
    + + tribal-engagement-outreach.pdf +
    +
    + + tribal-engagement-meeting-notes.pdf +

    - - -
    +
    + + + -

    - tribal-engagement-summary.docx +

    + Existing State Plan Page(s) + : +

    +
    - tribal-engagement-outreach.pdf +

    + Existing State Plan Page(s) + : +

    +
    - tribal-engagement-meeting-notes.pdf +

    + Existing State Plan Page(s) + : +

    +
    -

    - - - -
    - - - - + - + +
    - -

    - Existing State Plan Page(s) - : -

    - -
    -
    - -

    - Existing State Plan Page(s) - : -

    - -
    -
    - +

    - Existing State Plan Page(s) - : + + page-23-update.pdf +
    +
    + + page-24-update.pdf +
    +
    + + page-25-update.pdf +

    - - -
    +
    + + + -

    - page-23-update.pdf +

    + Public Notice + : +

    +
    - page-24-update.pdf +

    + Public Notice + : +

    +
    - page-25-update.pdf +

    + Public Notice + : +

    +
    -

    - - - -
    - - - - + - + + +
    - -

    - Public Notice - : -

    - -
    -
    - -

    - Public Notice - : -

    - -
    -
    - +

    - Public Notice - : -

    - - -
    + public-notice-oct-2024.pdf +
    + + + public-notice-sept-2024.pdf +
    +
    + + public-notice-nov-2024.pdf + +

    +
    + + + -

    - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    - - public-notice-nov-2024.pdf +

    + Other + : +

    + -

    - - - -
    +
    +

    + + misc-documents.pdf + +

    +
    +

    + Thank you. +

    +
    - - - - +
    - -

    - Other - : -

    - -
    -
    -

    +

    + - - misc-documents.pdf - -

    + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    -

    - Thank you. -

    -
    - - - - - - -
    - - - - - - -
    -

    - U.S. Centers for Medicare & Medicaid Services -

    -

    - © - 2023 - | 7500 Security Boulevard, Baltimore, MD 21244 -

    -
    -
    - - - - - - -
    , - "debug": [Function], - "findAllByAltText": [Function], - "findAllByDisplayValue": [Function], - "findAllByLabelText": [Function], - "findAllByPlaceholderText": [Function], - "findAllByRole": [Function], - "findAllByTestId": [Function], - "findAllByText": [Function], - "findAllByTitle": [Function], - "findByAltText": [Function], - "findByDisplayValue": [Function], - "findByLabelText": [Function], - "findByPlaceholderText": [Function], - "findByRole": [Function], - "findByTestId": [Function], - "findByText": [Function], - "findByTitle": [Function], - "getAllByAltText": [Function], - "getAllByDisplayValue": [Function], - "getAllByLabelText": [Function], - "getAllByPlaceholderText": [Function], - "getAllByRole": [Function], - "getAllByTestId": [Function], - "getAllByText": [Function], - "getAllByTitle": [Function], - "getByAltText": [Function], - "getByDisplayValue": [Function], - "getByLabelText": [Function], - "getByPlaceholderText": [Function], - "getByRole": [Function], - "getByTestId": [Function], - "getByText": [Function], - "getByTitle": [Function], - "queryAllByAltText": [Function], - "queryAllByDisplayValue": [Function], - "queryAllByLabelText": [Function], - "queryAllByPlaceholderText": [Function], - "queryAllByRole": [Function], - "queryAllByTestId": [Function], - "queryAllByText": [Function], - "queryAllByTitle": [Function], - "queryByAltText": [Function], - "queryByDisplayValue": [Function], - "queryByLabelText": [Function], - "queryByPlaceholderText": [Function], - "queryByRole": [Function], - "queryByTestId": [Function], - "queryByText": [Function], - "queryByTitle": [Function], - "rerender": [Function], - "unmount": [Function], -} -`; - -exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview Template 1`] = ` -{ - "asFragment": [Function], - "baseElement": + + + + + + +
    renders a TempExt Preview
    - Appendix K Amendment Submitted + Temporary Extension MD-2343.R00.TE09 Submitted
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
    renders a TempExt Preview

    - The OneMAC Submission Portal received a 1915(c) Appendix K Amendment Submission: + The Submission Portal received a 1915(b) Temporary Extension Submission:

    -
    +
    +
    +

    + Details: +

    +
      @@ -6829,7 +35477,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview style="color: rgb(6, 125, 247); text-decoration: none;" target="_blank" > - this link + https://mako-dev.cms.gov/ .

      @@ -6892,7 +35540,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview

      - CO + MD

      @@ -6996,45 +35644,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview

      - Amendment Title - : -

      - - -

      - A Perfect Appendix K Amendment Title -

      - - - - - - - - @@ -7044,7 +35654,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview

      - CO-1234.R21.00 + MD-2343.R00.TE09

      @@ -7072,7 +35682,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview

      - Waiver Authority + Temporary Extension Type :

      @@ -7082,7 +35692,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview

      - Amend + 1915(b)

      @@ -7110,7 +35720,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview

      - Proposed Effective Date + 90th Day Deadline :

      @@ -7120,7 +35730,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview

      - March 2, 2023 + Mar 2, 2023 @ 11:59pm EST

      @@ -7155,7 +35765,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview

      - This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. + Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you.

      @@ -7196,52 +35806,27 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview

      - 1915(c) Appendix K Amendment Waiver Template + Waiver Extension Request :

      +
      - - - - -
      -

      - Waiver Amendment Number + Temporary Extension Request Number :

      -

      - - appendix-k-amendment.docx - -

      -
      - - - - @@ -7336,9 +35929,9 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview
      - CHIP SPA CO-24-1234 Submitted + 1915(b) Initial Submitted
      -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
      renders a TempExt Preview

      - The OneMAC Submission Portal received a CHIP State Plan Amendment + The OneMAC Submission Portal received a 1915(b) Initial waiver submission:


      renders a TempExt Preview >
    • - The submission can be accessed in the OneMAC application, which you can find at - - - https://mako-dev.cms.gov/ - - . -

      -
    • -
    • -

      - If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. -

      -
    • -
    • -

      - After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. -

      -
    • - -

      - Other + Waiver Extension Request + : +

      + +
      +
      + +

      + Waiver Extension Request :

      @@ -7255,7 +35840,15 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - misc-documents.pdf + Temporary Extention Document for submission.pdf +
      +
      + + Second Extention Document for submission.pdf +
      +
      + + Third Extention Document for submission.pdf

      - - -
      - - - - - - - -
      -

      - State or Territory - : -

      -
      -

      - CO -

      -
      - - - - - - - -
      -

      - Name - : -

      -
      -

      - George Harrison -

      -
      + style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" + > + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      + +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • + + + + + - - -
      renders a TempExt Preview

      - Email Address + State or Territory :

      @@ -7558,7 +36075,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview

      - george@example.com + CO

      @@ -7586,7 +36103,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview

      - CHIP SPA Package ID + Name :

      @@ -7596,7 +36113,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview

      - CO-24-1234 + George Harrison

      @@ -7608,341 +36125,198 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview cellpadding="0" cellspacing="0" role="presentation" - width="100%" - > - - -
      -

      -

      - Summary: -

      -

      -

      - This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. -

      - - -
      -
      -
      -

      - Files: -

      - - - - - - - -
      - -

      - CMS Form 179 - : -

      - -
      -
      - -

      - CMS Form 179 - : -

      - -
      -
      - -

      - CMS Form 179 - : -

      - -
      -
      -

      - - state-plan-2024.pdf -
      -
      - - state-plan-summary.pdf -
      -
      - - state-plan-financials.pdf - -

      -
      - - - - - - - -
      - -

      - SPA Pages - : -

      - -
      -
      - -

      - SPA Pages - : -

      - -
      -
      -

      - - amended-language-1.pdf -
      -
      - - amended-language-2.pdf - -

      -
      - - - - - - - -
      - -

      - Cover Letter - : -

      - -
      -
      -

      - - cover-letter-george-harrison.pdf - -

      -
      - - - - - + + + +
      - -

      - Budget Documents - : -

      - -
      -
      -

      +

      +

      + Email Address + : +

      +
      +

      + george@example.com +

      +
      + - - fy2024-budget.xlsx - -

      - - - -
      - - - - + + + +
      - -

      - Public Notice - : -

      - -
      -
      - -

      - Public Notice - : -

      - -
      -
      - -

      +

      +

      + Initial Waiver Number + : +

      +
      +

      + CO-1234.R21.00 +

      +
      + + - Public Notice - : -

      - - - - + + + +
      -

      +

      +

      + Waiver Authority + : +

      +
      +

      + 1915(b) +

      +
      + - - public-notice-oct-2024.pdf -
      -
      - - public-notice-sept-2024.pdf -
      -
      - - public-notice-nov-2024.pdf - -

      + + + + + + +
      +

      + Proposed Effective Date + : +

      +
      +

      + March 2, 2023 +

      +
      + + + +
      +

      +

      + Summary: +

      +

      +

      + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

      + + +
      +
      +

      + Files: +

      renders a TempExt Preview

      - Tribal Consultation + 1915(b) Comprehensive (Capitated) Waiver Application Pre-print :

      @@ -7981,7 +36355,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - tribal-consultation-sept-2024.pdf + capitated-waiver-application.pdf

      @@ -8012,7 +36386,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview

      - Other + 1915(b) Comprehensive (Capitated) Waiver Cost Effectiveness Spreadsheets :

      @@ -8026,7 +36400,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - misc-documents.pdf + capitated-waiver-cost-effectiveness-spreadsheet.pdf

      @@ -8107,9 +36481,9 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview
      - Medicaid SPA CO-24-2200 Submitted + 1915(b) Renewal Submitted
      -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
      renders a TempExt Preview

      - The OneMAC Submission Portal received a Medicaid SPA Submission: + The OneMAC Submission Portal received a 1915(b) Renewal waiver submission:


      renders a TempExt Preview

      - Email + Email Address :

      @@ -8357,7 +36731,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview

      - Medicaid SPA ID + Renewal Waiver Number :

      @@ -8367,7 +36741,45 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview

      - CO-24-2200 + CO-1234.R21.00 +

      + + + +
      + + + + + @@ -8481,7 +36893,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview

      - Tribal Consultation + 1915(b) Comprehensive (Capitated) Waiver Independent Assessment :

      @@ -8495,7 +36907,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - tribal-consultation-sept-2024.pdf + capitated-waiver-independent-assessment.pdf

      @@ -8526,7 +36938,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview

      - CMS Form 179 + 1915(b) Comprehensive (Capitated) Waiver Application Pre-print :

      @@ -8540,7 +36952,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - cms-form-179.pdf + capitated-waiver-application.pdf

      @@ -8571,7 +36983,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview

      - Standard Funding Questions (SFQs) + 1915(b) Comprehensive (Capitated) Waiver Cost Effectiveness Spreadsheets :

      @@ -8585,291 +36997,475 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - funding-questions-sfq.docx + capitated-waiver-cost-effectiveness-spreadsheet.pdf

      +

      + Waiver Authority + : +

      +
      +

      + 1915(b)

      - - - - + + +
      + + + + + + + +
      + - -

      - SPA Pages - : -

      - -
      -
      - -

      - SPA Pages - : -

      - -
      -
      - -

      - SPA Pages - : -

      - -
      -
      - -

      - SPA Pages - : -

      - -
      - - + + + +
      +
      +

      + U.S. Centers for Medicare & Medicaid Services +

      +

      + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

      +
      +
      +
      + + +
    +
    + + + + + +
    + 1915(b) Amendment Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + +
    +
    +

    -

    + +
      +
    • +

      -

    - - - -
    + + + + - - -
    + -

    - - spa-page1.pdf -
    -
    - - spa-page2.pdf -
    -
    - - spa-summary.pdf -
    -
    - - spa-changes-2024.pdf - -

    -
    - + + + + +
    +
    +

    -

    - -

    - Cover Letter - : -

    - -
    -
    -

    - - cover-letter-george-harrison.pdf - -

    -
    + https://mako-dev.cms.gov/ + + . +

    + +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • + - - - +
    - -

    +

    + + - Document Demonstrating Good-Faith Tribal Engagement - : -

    - -
    - - -

    +

    + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + - Document Demonstrating Good-Faith Tribal Engagement - : -

    - -
    - - -

    +

    + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + - Document Demonstrating Good-Faith Tribal Engagement - : -

    - - - - + + + +
    -

    +

    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + - - tribal-engagement-summary.docx -
    -
    - - tribal-engagement-outreach.pdf -
    -
    - - tribal-engagement-meeting-notes.pdf - -

    - - - -
    - - - - + + + +
    - -

    - Existing State Plan Page(s) - : -

    - -
    -
    - -

    +

    +

    + Amendment Waiver Number + : +

    +
    +

    + CO-1234.R21.01 +

    +
    + + - Existing State Plan Page(s) - : -

    - -
    - - -

    +

    + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + - Existing State Plan Page(s) - : -

    - - - - + + + +
    -

    +

    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + - - page-23-update.pdf -
    -
    - - page-24-update.pdf -
    -
    - - page-25-update.pdf - -

    + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + Files: +

    renders a TempExt Preview

    - Public Notice - : -

    - -
    - - -

    - Public Notice - : -

    - -
    -
    - -

    - Public Notice + 1915(b) Comprehensive (Capitated) Waiver Cost Effectiveness Spreadsheets :

    @@ -8928,15 +37504,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    - - public-notice-nov-2024.pdf + capitated-waiver-cost-effectiveness-spreadsheet.pdf

    @@ -8967,7 +37535,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview

    - Other + 1915(b) Comprehensive (Capitated) Waiver Application Pre-print :

    @@ -8981,7 +37549,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - misc-documents.pdf + capitated-waiver-application.pdf

    @@ -9062,9 +37630,9 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview
    - Temporary Extension MD-2343.R00.TE09 Submitted + 1915(b) Amendment Submitted
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
    renders a TempExt Preview

    - The Submission Portal received a 1915(b) Temporary Extension Submission: + The OneMAC Submission Portal received a 1915(b) Amendment waiver submission:


    renders a TempExt Preview

    - MD + CO

    @@ -9312,7 +37880,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview

    - Temporary Extension Request Number + Amendment Waiver Number :

    @@ -9322,7 +37890,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview

    - MD-2343.R00.TE09 + CO-1234.R21.01

    @@ -9350,7 +37918,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview

    - Temporary Extension Type + Waiver Authority :

    @@ -9388,7 +37956,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview

    - 90th Day Deadline + Proposed Effective Date :

    @@ -9398,7 +37966,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview

    - Mar 2, 2023 @ 11:59pm EST + March 2, 2023

    @@ -9433,7 +38001,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview

    - Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you. + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -9474,27 +38042,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview

    - Waiver Extension Request - : -

    - -
    - - -

    - Waiver Extension Request - : -

    - -
    -
    - -

    - Waiver Extension Request + 1915(b) Comprehensive (Contracting) Waiver Application Pre-print :

    @@ -9508,205 +38056,71 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - Temporary Extention Document for submission.pdf -
    -
    - - Second Extention Document for submission.pdf -
    -
    - - Third Extention Document for submission.pdf + contracting-waiver-application.pdf

    -

    - Thank you. -

    -
    - - - - - - -
    - - - - - - -
    -

    - U.S. Centers for Medicare & Medicaid Services -

    -

    - © - 2023 - | 7500 Security Boulevard, Baltimore, MD 21244 -

    -
    -
    - - - - - - -
    - , - "container":
    - - - - - -
    - Temporary Extension MD-2343.R00.TE09 Submitted -
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ -
    -
    - - - - - - The submission can be accessed in the OneMAC application, which you can find at - - - https://mako-dev.cms.gov/ - - . -

    - -
  • -

    - If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. -

    -
  • -
  • -

    - After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. -

    -
  • - + + + + +
    - - - - - - -
    - - OneMAC Logo - -
    -
    -

    - The Submission Portal received a 1915(b) Temporary Extension Submission: -

    -
    -
    -

    - Details: -

    -
    -
      -
    • -

      +

    + +

    + Tribal Consultation + : +

    + +
    +
    +

    + + contracting-waiver-tribal-consultation.pdf + +

    +
    +

    + Thank you. +

    +
    @@ -9718,1045 +38132,1202 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview cellpadding="0" cellspacing="0" role="presentation" + style="font-size: 14px; padding: 0px 0px; font-weight: 300; background-color: rgb(0, 113, 189); color: rgb(255, 255, 255); text-align: center;" width="100%" > - + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    + + + + + + + + + + + +
    + + + + + +
    + 1915(b) Renewal Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a 1915(b) Renewal waiver submission: +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    + + + + - - -
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + - - - + - - -
    -

    - State or Territory - : -

    -
    -

    + Name + : +

    +
    - MD -

    -
    - - + George Harrison +

    + + + +
    + - - - + - - -
    -

    - Name - : -

    -
    -

    + Email Address + : +

    +
    - George Harrison -

    -
    - - + george@example.com +

    + + + +
    + - - - + - - -
    -

    - Email Address - : -

    -
    -

    + Renewal Waiver Number + : +

    +
    - george@example.com -

    -
    - - + CO-1234.R21.00 +

    + + + +
    + - - - - - -
    -

    - Temporary Extension Request Number - : -

    -
    -

    - MD-2343.R00.TE09 -

    -
    - - + Waiver Authority + : +

    + + + + +
    +

    + 1915(b) +

    +
    + - - - + - - -
    -

    - Temporary Extension Type - : -

    -
    -

    + Proposed Effective Date + : +

    +
    - 1915(b) -

    -
    - - + March 2, 2023 +

    + + + +
    + - - - - - -
    +

    - 90th Day Deadline - : +

    + Summary: +

    -

    - Mar 2, 2023 @ 11:59pm EST + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    -
    - - - -
    -

    -

    - Summary: -

    -

    -

    - Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you. -

    - - -
    -
    -
    -

    - Files: -

    - - + +
    +
    +
    +

    - + + - + - + + +
    - -

    - Waiver Extension Request - : -

    - -
    -
    - -

    - Waiver Extension Request - : -

    - -
    -
    - +
    + +

    + 1915(b) Comprehensive (Contracting) Waiver Application Pre-print + : +

    + +
    +

    - Waiver Extension Request - : -

    - - -
    + contracting-waiver-application.pdf + +

    +
    + + + -

    - Temporary Extention Document for submission.pdf -
    -
    - - Second Extention Document for submission.pdf -
    -
    - - Third Extention Document for submission.pdf +

    + 1915(b) Comprehensive (Contracting) Independent Assessment + : +

    + -

    - - - -
    -

    - Thank you. -

    -

    - - - - - - -
    - - - - - - -
    -

    - U.S. Centers for Medicare & Medicaid Services -

    -

    - © - 2023 - | 7500 Security Boulevard, Baltimore, MD 21244 -

    -
    -
    - - - - - - - , - "debug": [Function], - "findAllByAltText": [Function], - "findAllByDisplayValue": [Function], - "findAllByLabelText": [Function], - "findAllByPlaceholderText": [Function], - "findAllByRole": [Function], - "findAllByTestId": [Function], - "findAllByText": [Function], - "findAllByTitle": [Function], - "findByAltText": [Function], - "findByDisplayValue": [Function], - "findByLabelText": [Function], - "findByPlaceholderText": [Function], - "findByRole": [Function], - "findByTestId": [Function], - "findByText": [Function], - "findByTitle": [Function], - "getAllByAltText": [Function], - "getAllByDisplayValue": [Function], - "getAllByLabelText": [Function], - "getAllByPlaceholderText": [Function], - "getAllByRole": [Function], - "getAllByTestId": [Function], - "getAllByText": [Function], - "getAllByTitle": [Function], - "getByAltText": [Function], - "getByDisplayValue": [Function], - "getByLabelText": [Function], - "getByPlaceholderText": [Function], - "getByRole": [Function], - "getByTestId": [Function], - "getByText": [Function], - "getByTitle": [Function], - "queryAllByAltText": [Function], - "queryAllByDisplayValue": [Function], - "queryAllByLabelText": [Function], - "queryAllByPlaceholderText": [Function], - "queryAllByRole": [Function], - "queryAllByTestId": [Function], - "queryAllByText": [Function], - "queryAllByTitle": [Function], - "queryByAltText": [Function], - "queryByDisplayValue": [Function], - "queryByLabelText": [Function], - "queryByPlaceholderText": [Function], - "queryByRole": [Function], - "queryByTestId": [Function], - "queryByText": [Function], - "queryByTitle": [Function], - "rerender": [Function], - "unmount": [Function], -} -`; - -exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated Preview Template 1`] = ` -{ - "asFragment": [Function], - "baseElement": -
    - - - - - -
    - Appendix K Amendment Submitted -
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ -
    -
    - - - - - + + + +
    + +

    + + contracting-waiver-independent-assessment.pdf + +

    +
    +

    + Thank you. +

    +
    + + + + +
    - - OneMAC Logo - +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    -
    + + + + + +
    + , + "container":
    + + + + + +
    + 1915(b) Renewal Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    -

    - The OneMAC Submission Portal received a 1915(c) Appendix K Amendment Submission: -

    + The OneMAC Submission Portal received a 1915(b) Renewal waiver submission: + +

    -
      -
    • -

      - The submission can be accessed in the OneMAC application, which you can find at - - - this link - - . -

      -
    • -
    • -

      - If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. -

      -
    • -
    • -

      +

    + - - - - + + +
    - - - - - - - -
    -

    - State or Territory - : -

    -
    -

    - CO -

    -
    - - - - - - - -
    -

    - Name - : -

    -
    -

    - George Harrison -

    -
    - + . +

    + +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • + +
    + + + - - -
    + + - - - - + - - -
    -

    - Email Address - : -

    -
    + +

    -

    - george@example.com -

    -
    - + + + +
    + + - - - - + - - -
    -

    - Amendment Title - : -

    -
    + +

    -

    - A Perfect Appendix K Amendment Title -

    -
    - + + + +
    + + - - - - + - - -
    -

    - Waiver Amendment Number - : -

    -
    + +

    -

    - CO-1234.R21.00 -

    -
    - + + + +
    + + - - - - - - -
    -

    - Waiver Authority - : -

    -
    -

    - Amend -

    -
    - + + + + +
    +

    + CO-1234.R21.00 +

    +
    + + - - - - + - - -
    -

    - Proposed Effective Date - : -

    -
    + +

    -

    - March 2, 2023 -

    -
    - + + + +
    + + - - -

    -

    - Summary: -

    + Proposed Effective Date + :

    + + - -

    - This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. + March 2, 2023

    -
    -
    -
    -

    - Files: -

    - + + +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + Files: +

    + + - - - - - - -
    - -

    - 1915(c) Appendix K Amendment Waiver Template - : -

    - -
    -
    +

    - - appendix-k-amendment.docx - + 1915(b) Comprehensive (Contracting) Waiver Application Pre-print + :

    -
    - - - + + - - - -
    - -

    - Other - : -

    - + contracting-waiver-application.pdf
    -
    -

    - - misc-documents.pdf - -

    -
    -

    - Thank you. -

    -
    +

    +
    - - -
    - + + + - - - - -
    + +

    + 1915(b) Comprehensive (Contracting) Independent Assessment + : +

    + +
    +
    +

    -

    -

    - U.S. Centers for Medicare & Medicaid Services -

    -

    - © - 2023 - | 7500 Security Boulevard, Baltimore, MD 21244 -

    -
    + + contracting-waiver-independent-assessment.pdf + +

    - - - - - - -
    +

    + Thank you. +

    + + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    + + + + + + + , + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement":
    renders a Waiver Capitated
    - CHIP SPA CO-24-1234 Submitted + Appendix K Amendment Submitted
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
    renders a Waiver Capitated - - - - - -
    - - OneMAC Logo - -
    -
    -

    - The OneMAC Submission Portal received a CHIP State Plan Amendment -

    -
    -
    -

    - Details: -

    -
    -
      -
    • -

      - The submission can be accessed in the OneMAC application, which you can find at - + + + - https://mako-dev.cms.gov/ - - . -

      -
    • -
    • -

      - If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. -

      -
    • -
    • -

      - After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. -

      -
    • -
    - - - - - - -
    - - - - - - - -
    -

    - State or Territory - : -

    -
    -

    - CO -

    -
    - - - - - - - -
    -

    - Name - : -

    -
    -

    - George Harrison -

    -
    - - - - - - - -
    -

    - Email Address - : -

    -
    -

    - george@example.com -

    -
    - - - - - - - -
    -

    - CHIP SPA Package ID - : -

    -
    -

    - CO-24-1234 -

    -
    - - - -
    -

    -

    - Summary: -

    -

    -

    - This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. -

    - - -
    -
    + > + OneMAC Logo + + + + + +
    +

    + The OneMAC Submission Portal received a 1915(c) Appendix K Amendment Submission: +


    -

    - Files: -

    - - - - - - - -
    - -

    - CMS Form 179 - : -

    - -
    -
    - -

    - CMS Form 179 - : -

    - -
    -
    - -

    - CMS Form 179 - : -

    - -
    -
    -

    - - state-plan-2024.pdf -
    -
    - - state-plan-summary.pdf -
    -
    - - state-plan-financials.pdf - -

    -
    - - - - - - - -
    - -

    - SPA Pages - : -

    - -
    -
    - -

    - SPA Pages - : -

    - -
    -
    -

    - - amended-language-1.pdf -
    -
    - - amended-language-2.pdf - -

    -
    - - - - - - - -
    - -

    - Cover Letter - : -

    - -
    -
    -

    - - cover-letter-george-harrison.pdf - -

    -
    - - - +

    -

    - - - -
    - -

    - Budget Documents - : -

    - -
    -
    -

    - - fy2024-budget.xlsx - -

    -
    + this link + + . +

    + +
  • +

    + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

    +
  • +
  • +

    + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

    +
  • + - - - +
    - -

    +

    + + - Public Notice - : -

    - -
    - - -

    +

    + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + - Public Notice - : -

    - -
    - - -

    +

    + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Amendment Title + : +

    +
    +

    + A Perfect Appendix K Amendment Title +

    +
    + + + + + + + +
    +

    + Waiver Amendment Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + Amend +

    +
    + + - Public Notice - : -

    - - - - + + + +
    -

    +

    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + - - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    - - public-notice-nov-2024.pdf - -

    + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + Files: +

    renders a Waiver Capitated

    - Tribal Consultation + 1915(c) Appendix K Amendment Waiver Template :

    @@ -11419,7 +39802,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - tribal-consultation-sept-2024.pdf + appendix-k-amendment.docx

    @@ -11545,9 +39928,9 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated
    - Medicaid SPA CO-24-2200 Submitted + CHIP SPA CO-24-1234 Submitted
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
    renders a Waiver Capitated

    - The OneMAC Submission Portal received a Medicaid SPA Submission: + The OneMAC Submission Portal received a CHIP State Plan Amendment


    renders a Waiver Capitated

    - Email + Email Address :

    @@ -11795,45 +40178,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated

    - Medicaid SPA ID - : -

    - -
    - - -
    -

    - CO-24-2200 -

    -
    - - - - @@ -11843,7 +40188,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated

    - March 2, 2023 + CO-24-1234

    @@ -11919,7 +40264,90 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated

    - Tribal Consultation + CMS Form 179 + : +

    + +
    + + +

    + CMS Form 179 + : +

    + +
    +
    + +

    + CMS Form 179 + : +

    + +
    + + + + +
    -

    - Proposed Effective Date + CHIP SPA Package ID :

    +

    + + state-plan-2024.pdf +
    +
    + + state-plan-summary.pdf +
    +
    + + state-plan-financials.pdf + +

    +
    + + + + @@ -11964,7 +40396,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated

    - CMS Form 179 + Cover Letter :

    @@ -11978,7 +40410,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - cms-form-179.pdf + cover-letter-george-harrison.pdf

    @@ -12009,7 +40441,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated

    - Standard Funding Questions (SFQs) + Budget Documents :

    @@ -12023,7 +40455,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - funding-questions-sfq.docx + fy2024-budget.xlsx

    @@ -12054,17 +40486,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated

    - SPA Pages - : -

    - -
    - - -

    - SPA Pages + Public Notice :

    @@ -12074,7 +40496,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated

    - SPA Pages + Public Notice :

    @@ -12084,7 +40506,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated

    - SPA Pages + Public Notice :

    @@ -12098,19 +40520,15 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - spa-page1.pdf -
    -
    - - spa-page2.pdf + public-notice-oct-2024.pdf
    - spa-summary.pdf + public-notice-sept-2024.pdf
    - spa-changes-2024.pdf + public-notice-nov-2024.pdf

    @@ -12141,7 +40559,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated

    - Cover Letter + Tribal Consultation :

    @@ -12155,7 +40573,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - cover-letter-george-harrison.pdf + tribal-consultation-sept-2024.pdf

    @@ -12186,27 +40604,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated

    - Document Demonstrating Good-Faith Tribal Engagement - : -

    - -
    -
    - -

    - Document Demonstrating Good-Faith Tribal Engagement - : -

    - -
    -
    - -

    - Document Demonstrating Good-Faith Tribal Engagement + Other :

    @@ -12220,94 +40618,437 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - tribal-engagement-summary.docx -
    -
    - - tribal-engagement-outreach.pdf -
    -
    - - tribal-engagement-meeting-notes.pdf + misc-documents.pdf

    + +

    + SPA Pages + : +

    + +
    +
    + +

    + SPA Pages :

    @@ -11933,7 +40361,11 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - tribal-consultation-sept-2024.pdf + amended-language-1.pdf +
    +
    + + amended-language-2.pdf

    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    + + + + + + +
    +
    + + + + + +
    + Medicaid SPA CO-24-2200 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + - - -
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + The OneMAC Submission Portal received a Medicaid SPA Submission: +

    +
    +
    +

    + Details: +

    +
    +
      +
    • +

      + The submission can be accessed in the OneMAC application, which you can find at + + + https://mako-dev.cms.gov/ + + . +

      +
    • +
    • +

      + If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. +

      +
    • +
    • +

      + After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. +

      +
    • +
    - - - +
    - -

    +

    + + - Existing State Plan Page(s) - : -

    - -
    - - -

    +

    + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + - Existing State Plan Page(s) - : -

    - -
    - - -

    +

    + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + - Existing State Plan Page(s) - : -

    - - - - + + + +
    -

    +

    +

    + Email + : +

    +
    +

    + george@example.com +

    +
    + - - page-23-update.pdf -
    -
    - - page-24-update.pdf -
    -
    - - page-25-update.pdf - -

    + + + + + + +
    +

    + Medicaid SPA ID + : +

    +
    +

    + CO-24-2200 +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + Files: +

    renders a Waiver Capitated

    - Public Notice - : -

    - -
    - - -

    - Public Notice - : -

    - -
    -
    - -

    - Public Notice + Tribal Consultation :

    @@ -12366,15 +41087,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - public-notice-oct-2024.pdf -
    -
    - - public-notice-sept-2024.pdf -
    -
    - - public-notice-nov-2024.pdf + tribal-consultation-sept-2024.pdf

    @@ -12405,7 +41118,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated

    - Other + CMS Form 179 :

    @@ -12419,475 +41132,336 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - misc-documents.pdf + cms-form-179.pdf

    -

    - Thank you. -

    -
    - - - - - - -
    - - - - - - -
    -

    - U.S. Centers for Medicare & Medicaid Services -

    -

    - © - 2023 - | 7500 Security Boulevard, Baltimore, MD 21244 -

    -
    -
    -
    - - -
    -
    - - - - - -
    - Temporary Extension MD-2343.R00.TE09 Submitted -
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ -
    -
    - - - - - + + + +
    - - - - - - -
    - - OneMAC Logo - -
    -
    -

    - The Submission Portal received a 1915(b) Temporary Extension Submission: -

    -
    -
    -

    - Details: -

    -
    -
      -
    • -

      - The submission can be accessed in the OneMAC application, which you can find at - - - https://mako-dev.cms.gov/ - - . -

      -
    • -
    • -

      - If you are not already logged in, please click the "Login" link at the top of the page and log in using your Enterprise User Administration (EUA) credentials. -

      -
    • -
    • -

      - After you have logged in, you will be taken to the OneMAC application. The submission will be listed on the dashboard page, and you can view its details by clicking on its ID number. -

      -
    • -
    +
    + +

    + Standard Funding Questions (SFQs) + : +

    + +
    +
    +

    + + funding-questions-sfq.docx + +

    +
    - - - +
    - - + + - - - - -
    + +

    -

    -

    - State or Territory - : -

    -
    -

    - MD -

    -
    - - + +
    + + +

    -

    - - - - -
    -

    - Name - : -

    -
    -

    - George Harrison -

    -
    - - + +
    + + +

    -

    - - - - -
    -

    - Email Address - : -

    -
    -

    - george@example.com -

    -
    - + +
    + + +

    + SPA Pages + : +

    + +
    + + + spa-page1.pdf +
    + + + spa-page2.pdf +
    +
    + + spa-summary.pdf +
    +
    + + spa-changes-2024.pdf + +

    + + + +
    +

    -

    + + + + - - - - -
    + +

    -

    -

    - Temporary Extension Request Number - : -

    -
    -

    - MD-2343.R00.TE09 -

    -
    - + + + + + cover-letter-george-harrison.pdf + +

    + + + +
    +

    -

    + + + + - - - - -
    + +

    -

    -

    - Temporary Extension Type - : -

    -
    -

    - 1915(b) -

    -
    - - + +
    + + +

    -

    - - - - -
    -

    - 90th Day Deadline - : -

    -
    -

    - Mar 2, 2023 @ 11:59pm EST -

    -
    - + +
    + + +

    + Document Demonstrating Good-Faith Tribal Engagement + : +

    + +
    + + + tribal-engagement-summary.docx +
    + + + tribal-engagement-outreach.pdf +
    +
    + + tribal-engagement-meeting-notes.pdf + +

    + + + +
    +

    -

    + + + + -
    -

    -

    - Summary: -

    -

    -

    - Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you. -

    - - -
    + +

    -

    + Existing State Plan Page(s) + : +

    + +
    + + +

    + Existing State Plan Page(s) + : +

    + +
    +
    + +

    + Existing State Plan Page(s) + : +

    + +
    +
    +

    + + page-23-update.pdf +
    +
    + + page-24-update.pdf +
    +
    + + page-25-update.pdf + +

    -
    -

    - Files: -

    renders a Waiver Capitated

    - Waiver Extension Request + Public Notice :

    @@ -12922,7 +41496,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated

    - Waiver Extension Request + Public Notice :

    @@ -12932,7 +41506,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated

    - Waiver Extension Request + Public Notice :

    @@ -12946,15 +41520,60 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - Temporary Extention Document for submission.pdf + public-notice-oct-2024.pdf
    - Second Extention Document for submission.pdf + public-notice-sept-2024.pdf
    - Third Extention Document for submission.pdf + public-notice-nov-2024.pdf + +

    + + + +
    + + + + + @@ -13035,9 +41654,9 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated
    - 1915(b) New Submitted + Temporary Extension MD-2343.R00.TE09 Submitted
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
    renders a Waiver Capitated

    - The OneMAC Submission Portal received a 1915(b) Initial Submission: + The Submission Portal received a 1915(b) Temporary Extension Submission:


    renders a Waiver Capitated

    - CO + MD

    @@ -13285,7 +41904,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated

    - Initial Waiver Number + Temporary Extension Request Number :

    @@ -13295,7 +41914,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated

    - CO-1234.R21.00 + MD-2343.R00.TE09

    @@ -13323,7 +41942,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated

    - Waiver Authority + Temporary Extension Type :

    @@ -13361,7 +41980,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated

    - Proposed Effective Date + 90th Day Deadline :

    @@ -13371,7 +41990,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated

    - March 2, 2023 + Mar 2, 2023 @ 11:59pm EST

    @@ -13406,7 +42025,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated

    - This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. + Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you.

    @@ -13447,52 +42066,27 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated

    - 1915(b) Comprehensive (Capitated) Waiver Application Pre-print + Waiver Extension Request :

    +
    - - - - -
    + +

    + Other + : +

    + +
    +
    +

    + + misc-documents.pdf

    -

    - - capitated-waiver-application.pdf - -

    -
    - - - - @@ -13588,9 +42190,9 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated
    - 1915(b) New Submitted + Temporary Extension MD-2343.R00.TE09 Submitted
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
    renders a Waiver Capitated

    - The OneMAC Submission Portal received a 1915(b) Initial Submission: + The Submission Portal received a 1915(b) Temporary Extension Submission:


    renders a Waiver Capitated

    - CO + MD

    @@ -13838,7 +42440,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated

    - Initial Waiver Number + Temporary Extension Request Number :

    @@ -13848,7 +42450,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated

    - CO-1234.R21.00 + MD-2343.R00.TE09

    @@ -13876,7 +42478,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated

    - Waiver Authority + Temporary Extension Type :

    @@ -13914,7 +42516,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated

    - Proposed Effective Date + 90th Day Deadline :

    @@ -13924,7 +42526,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated

    - March 2, 2023 + Mar 2, 2023 @ 11:59pm EST

    @@ -13959,7 +42561,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated

    - This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. + Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you.

    @@ -14000,52 +42602,27 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated

    - 1915(b) Comprehensive (Capitated) Waiver Application Pre-print + Waiver Extension Request :

    +
    - - - - -

    - 1915(b) Comprehensive (Capitated) Waiver Cost Effectiveness Spreadsheets + Waiver Extension Request + : +

    + +
    +
    + +

    + Waiver Extension Request :

    @@ -13506,7 +42100,15 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - capitated-waiver-cost-effectiveness-spreadsheet.pdf + Temporary Extention Document for submission.pdf +
    +
    + + Second Extention Document for submission.pdf +
    +
    + + Third Extention Document for submission.pdf

    -

    - - capitated-waiver-application.pdf - -

    -
    - - - - diff --git a/lib/libs/email/preview/Initial Submissions/State/InitialSubmissionState.test.tsx b/lib/libs/email/preview/Initial Submissions/State/InitialSubmissionState.test.tsx index 30674d24a2..abf6881f8f 100644 --- a/lib/libs/email/preview/Initial Submissions/State/InitialSubmissionState.test.tsx +++ b/lib/libs/email/preview/Initial Submissions/State/InitialSubmissionState.test.tsx @@ -5,8 +5,8 @@ import AppKCMSEmailPreview from "./AppK"; import ChipSpaStateEmailPreview from "./CHIP_SPA"; import MedSpaStateEmailPreview from "./Medicaid_SPA"; import TempExtStatePreview from "./Temp_Extension"; -import Waiver1915bStateEmailPreview from "./Waiver_Capitated"; -import Waiver1915bContractingStateEmailPreview from "./Waiver_Contracting"; +import * as WaiverCapitated from "./Waiver_Capitated"; +import * as WaiverContracting from "./Waiver_Contracting"; describe("Initial Submission State Email Snapshot Test", () => { it("renders a AppKCMSEmailPreview Preview Template", () => { @@ -29,14 +29,34 @@ describe("Initial Submission State Email Snapshot Test", () => { expect(template).toMatchSnapshot(); }); - it("renders a Waiver Capitated Preview Template", () => { - const template = render(); + it("renders a Initial Capitated Waiver Preview Template", () => { + const template = render(); expect(template).toMatchSnapshot(); }); -}); -it("renders a Waiver Contracting Preview Template", () => { - const template = render(); + it("renders a Renewal Capitated Waiver Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a Amendment Capitated Waiver Preview Template", () => { + const template = render(); - expect(template).toMatchSnapshot(); + expect(template).toMatchSnapshot(); + }); + it("renders a Initial Contracting Waiver Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a Renewal Contracting Waiver Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); + it("renders a Amendment Contracting Waiver Preview Template", () => { + const template = render(); + + expect(template).toMatchSnapshot(); + }); }); diff --git a/lib/libs/email/preview/Initial Submissions/State/Waiver_Capitated.tsx b/lib/libs/email/preview/Initial Submissions/State/Waiver_Capitated.tsx index 8d2c3e3870..91781bfa5c 100644 --- a/lib/libs/email/preview/Initial Submissions/State/Waiver_Capitated.tsx +++ b/lib/libs/email/preview/Initial Submissions/State/Waiver_Capitated.tsx @@ -1,7 +1,7 @@ import { Waiver1915bStateEmail } from "../../../content/new-submission/emailTemplates/Waiver1915bState"; import { emailTemplateValue } from "../../../mock-data/new-submission"; -const Waiver1915bStateEmailPreview = () => { +export const Waiver1915bStateCapitatedInitialEmailPreview = () => { return ( { /> ); }; - -export default Waiver1915bStateEmailPreview; +export const Waiver1915bStateCapitatedRenewalEmailPreview = () => { + return ( + + ); +}; +export const Waiver1915bStateCapitatedAmendmentEmailPreview = () => { + return ( + + ); +}; diff --git a/lib/libs/email/preview/Initial Submissions/State/Waiver_Contracting.tsx b/lib/libs/email/preview/Initial Submissions/State/Waiver_Contracting.tsx index b1159d3912..1f5261da70 100644 --- a/lib/libs/email/preview/Initial Submissions/State/Waiver_Contracting.tsx +++ b/lib/libs/email/preview/Initial Submissions/State/Waiver_Contracting.tsx @@ -1,7 +1,7 @@ import { Waiver1915bStateEmail } from "../../../content/new-submission/emailTemplates/Waiver1915bState"; import { emailTemplateValue } from "../../../mock-data/new-submission"; -const Waiver1915bContractingStateEmailPreview = () => { +export const Waiver1915bContractingStateInitialEmailPreview = () => { return ( { ); }; -export default Waiver1915bContractingStateEmailPreview; +export const Waiver1915bContractingStateRenewalEmailPreview = () => { + return ( + + ); +}; + +export const Waiver1915bContractingStateAmendmentEmailPreview = () => { + return ( + + ); +}; diff --git a/lib/libs/email/preview/Initial Submissions/State/__snapshots__/InitialSubmissionState.test.tsx.snap b/lib/libs/email/preview/Initial Submissions/State/__snapshots__/InitialSubmissionState.test.tsx.snap index b2ceba4cba..ae1c7fd883 100644 --- a/lib/libs/email/preview/Initial Submissions/State/__snapshots__/InitialSubmissionState.test.tsx.snap +++ b/lib/libs/email/preview/Initial Submissions/State/__snapshots__/InitialSubmissionState.test.tsx.snap @@ -1,6 +1,6 @@ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html -exports[`Initial Submission State Email Snapshot Test > renders a AppKCMSEmailPreview Preview Template 1`] = ` +exports[`Initial Submission State Email Snapshot Test > renders a Amendment Capitated Waiver Preview Template 1`] = ` { "asFragment": [Function], "baseElement": @@ -503,643 +503,426 @@ exports[`Initial Submission State Email Snapshot Test > renders a AppKCMSEmailPr - , - "container":
    - - - - - -
    + - Appendix K Amendment Submitted -
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ + + + + +
    + CHIP SPA CO-24-1234 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    -
    - -

    - 1915(b) Comprehensive (Capitated) Waiver Cost Effectiveness Spreadsheets + Waiver Extension Request + : +

    + +
    +
    + +

    + Waiver Extension Request :

    @@ -14059,7 +42636,15 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Waiver Capitated style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);" > - capitated-waiver-cost-effectiveness-spreadsheet.pdf + Temporary Extention Document for submission.pdf +
    +
    + + Second Extention Document for submission.pdf +
    +
    + + Third Extention Document for submission.pdf

    - - - - +
    - - - - - - -
    - - OneMAC Logo - -
    -
    -

    - This response confirms the submission of your 1915(c) Waiver to CMS for review: -

    -
    + + + + + + +
    + + +
    - - + + + + +
    +
    +

    + This is confirmation that you submitted a CHIP State Plan Amendment to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + - - - + - - -
    -

    - State or Territory - : -

    -
    -

    + State or Territory + : +

    +
    - CO -

    -
    - - + CO +

    + + + +
    + - - - - - -
    -

    - Name - : -

    -
    -

    - George Harrison -

    -
    - - - - - + - - -
    -

    - Email Address - : -

    -
    -

    + Name + : +

    +
    - george@example.com -

    -
    - - + George Harrison +

    + + + +
    + - - - + - - -
    -

    - Initial Waiver Number - : -

    -
    -

    + Email Address + : +

    +
    - CO-1234.R21.00 -

    -
    - - + george@example.com +

    + + + +
    + - - - + - - -
    -

    - Waiver Authority - : -

    -
    -

    + CHIP SPA Package ID + : +

    +
    - Amend -

    -
    - - + CO-24-1234 +

    + + + +
    + - - - - - -
    +

    - Proposed Effective Date - : +

    + Summary: +

    -

    - March 2, 2023 + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    -
    - - - - - - - -
    -

    - 90th Day Deadline - : -

    -
    -

    - Jan 1, 2023 @ 11:59pm EST -

    -
    - - - -
    -

    -

    - Summary: -

    -

    -

    - This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. -

    - - -
    -
    +
    +

    + This response confirms the receipt of your CHIP State Plan Amendment (CHIP SPA). You can expect a formal response to your submittal from CMS at a later date. +

    +

    + + If you have questions or did not expect this email, please contact + + + CHIPSPASubmissionMailBox@CMS.HHS.gov + +

    +

    + Thank you. +

    + + + + +
    -
    -

    - This response confirms the receipt of your Waiver request or your - response to a Waiver Request for Additional Information (RAI). You can - expect a formal response to your submittal to be issued within 90 days, - before Jan 1, 2023 @ 11:59pm EST. -

    -
    +
    + + +
    +
    + + + + + +
    + Medicaid SPA CO-24-1234 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + - - -
    -

    - If you have any questions or did not expect this email, please contact - - spa@cms.hhs.gov - - or your state lead. -

    + OneMAC Logo +
    -

    - This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. - Any other correspondence will be disregarded. -

    -

    - Thank you. -

    - - - - - - - -
    - - - - - - -
    -

    - U.S. Centers for Medicare & Medicaid Services -

    -

    - © - 2023 - | 7500 Security Boulevard, Baltimore, MD 21244 -

    -
    -
    -
    - - -
    , - "debug": [Function], - "findAllByAltText": [Function], - "findAllByDisplayValue": [Function], - "findAllByLabelText": [Function], - "findAllByPlaceholderText": [Function], - "findAllByRole": [Function], - "findAllByTestId": [Function], - "findAllByText": [Function], - "findAllByTitle": [Function], - "findByAltText": [Function], - "findByDisplayValue": [Function], - "findByLabelText": [Function], - "findByPlaceholderText": [Function], - "findByRole": [Function], - "findByTestId": [Function], - "findByText": [Function], - "findByTitle": [Function], - "getAllByAltText": [Function], - "getAllByDisplayValue": [Function], - "getAllByLabelText": [Function], - "getAllByPlaceholderText": [Function], - "getAllByRole": [Function], - "getAllByTestId": [Function], - "getAllByText": [Function], - "getAllByTitle": [Function], - "getByAltText": [Function], - "getByDisplayValue": [Function], - "getByLabelText": [Function], - "getByPlaceholderText": [Function], - "getByRole": [Function], - "getByTestId": [Function], - "getByText": [Function], - "getByTitle": [Function], - "queryAllByAltText": [Function], - "queryAllByDisplayValue": [Function], - "queryAllByLabelText": [Function], - "queryAllByPlaceholderText": [Function], - "queryAllByRole": [Function], - "queryAllByTestId": [Function], - "queryAllByText": [Function], - "queryAllByTitle": [Function], - "queryByAltText": [Function], - "queryByDisplayValue": [Function], - "queryByLabelText": [Function], - "queryByPlaceholderText": [Function], - "queryByRole": [Function], - "queryByTestId": [Function], - "queryByText": [Function], - "queryByTitle": [Function], - "rerender": [Function], - "unmount": [Function], -} -`; - -exports[`Initial Submission State Email Snapshot Test > renders a Chipspa Preview Template 1`] = ` -{ - "asFragment": [Function], - "baseElement": -
    - - - - - -
    - Appendix K Amendment Submitted -
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ -
    -
    - - - - -
    - - - - - - -
    - - OneMAC Logo - -
    -

    - This response confirms the submission of your 1915(c) Waiver to CMS for review: + This response confirms that you submitted a Medicaid SPA to CMS for review:

    -
    +
    +
    +

    + Details: +

    +
    renders a Chipspa Previe

    - Initial Waiver Number - : -

    - - - - -
    -

    - CO-1234.R21.00 -

    -
    - - - - @@ -1335,7 +1080,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Chipspa Previe

    - Amend + CO-24-1234

    @@ -1455,16 +1200,18 @@ exports[`Initial Submission State Email Snapshot Test > renders a Chipspa Previe
    -

    - Waiver Authority + Medicaid SPA ID :

    -

    - This response confirms the receipt of your Waiver request or your - response to a Waiver Request for Additional Information (RAI). You can - expect a formal response to your submittal to be issued within 90 days, - before Jan 1, 2023 @ 11:59pm EST. + This response confirms the receipt of your Medicaid State Plan Amendment + (SPA or your response to a SPA Request for Additional Information (RAI)). You can expect a formal response to your submittal to be issued + within 90 days, before Jan 1, 2023 @ 11:59pm EST. +

    +

    + This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. + Any other correspondence will be disregarded.


    renders a Chipspa Previe > spa@cms.hhs.gov - or your state lead. + .

    -

    - This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. - Any other correspondence will be disregarded. -

    @@ -1520,36 +1261,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Chipspa Previe >

    - - - - - - -
    -

    - U.S. Centers for Medicare & Medicaid Services -

    -

    - © - 2023 - | 7500 Security Boulevard, Baltimore, MD 21244 -

    -
    -
    @@ -1577,9 +1289,9 @@ exports[`Initial Submission State Email Snapshot Test > renders a Chipspa Previe
    - CHIP SPA CO-24-1234 Submitted + Temporary Extension MD-2343.R00.TE09 Submitted
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
    renders a Chipspa Previe

    - This is confirmation that you submitted a CHIP State Plan Amendment to CMS for review: + This response confirms you have submitted a Temporary Extension to CMS for review

    -
    -
    -

    - Details: -

    -
    renders a Chipspa Previe

    - CO + MD

    @@ -1793,7 +1495,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Chipspa Previe

    - CHIP SPA Package ID + Temporary Extension Request Number :

    @@ -1803,7 +1505,83 @@ exports[`Initial Submission State Email Snapshot Test > renders a Chipspa Previe

    - CO-24-1234 + MD-2343.R00.TE09 +

    + + + +
    + + + + + + + +
    +

    + Temporary Extension Type + : +

    +
    +

    + 1915(b) +

    +
    + + + + + @@ -1838,7 +1616,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Chipspa Previe

    - This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. + Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you.

    @@ -1847,24 +1625,92 @@ exports[`Initial Submission State Email Snapshot Test > renders a Chipspa Previe
    +

    + 90th Day Deadline + : +

    +
    +

    + Mar 2, 2023 @ 11:59pm EST

    -

    +

    - This response confirms the receipt of your CHIP State Plan Amendment (CHIP SPA). You can expect a formal response to your submittal from CMS at a later date. -

    -

    + - - If you have questions or did not expect this email, please contact - - - CHIPSPASubmissionMailBox@CMS.HHS.gov - + + + + + +
    + +

    + Waiver Extension Request + : +

    + +
    +
    + +

    + Waiver Extension Request + : +

    + +
    +
    + +

    + Waiver Extension Request + : +

    + +
    +
    +

    + + Temporary Extention Document for submission.pdf +
    +
    + + Second Extention Document for submission.pdf +
    +
    + + Third Extention Document for submission.pdf + +

    +
    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded.

    renders a Chipspa Previe > - + +


    + + + + + + +
    +

    + If you have any questions or did not expect this email, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    + @@ -1894,502 +1772,344 @@ exports[`Initial Submission State Email Snapshot Test > renders a Chipspa Previe

    - , - "container":
    - - - - - -
    - CHIP SPA CO-24-1234 Submitted -
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ -
    -
    - + - - - - -
    - - - - - - -
    - - OneMAC Logo - -
    -
    -

    - This is confirmation that you submitted a CHIP State Plan Amendment to CMS for review: -

    -
    -
    -

    - Details: -

    -
    + + + + +
    + 1915(b) Initial Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + @@ -3029,7 +2519,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa P

    - CO-24-1234 + CO-1234.R21.00

    @@ -3049,22 +2539,136 @@ exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa P -
    -

    -

    - Summary: -

    -

    -

    - This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. + Waiver Authority + : +

    + + + + +
    - - -
    - - + + + + +
    +
    +

    + This response confirms the submission of your 1915(b) Initial waiver to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + - - -
    + - - - + - - -
    -

    - State or Territory - : -

    -
    -

    + State or Territory + : +

    +
    - CO -

    -
    - - + CO +

    + + + +
    + - - - + - - -
    -

    - Name - : -

    -
    -

    + Name + : +

    +
    - George Harrison -

    -
    - - + George Harrison +

    + + + +
    + - - - + - - -
    -

    - Email Address - : -

    -
    -

    + Email Address + : +

    +
    - george@example.com -

    -
    - - + george@example.com +

    + + + +
    + - - - + + + +
    -

    - CHIP SPA Package ID - : -

    -
    + Initial Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + -

    - CO-24-1234 -

    - - - -
    - - + Waiver Authority + : +

    + + + + +
    +

    + 1915(b) +

    +
    + - -
    -

    -

    - Summary: -

    -

    -

    - This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. -

    - - -
    -
    -

    - This response confirms the receipt of your CHIP State Plan Amendment (CHIP SPA). You can expect a formal response to your submittal from CMS at a later date. -

    -

    - - If you have questions or did not expect this email, please contact - - - CHIPSPASubmissionMailBox@CMS.HHS.gov - -

    -

    - Thank you. -

    -
    - - - - - -
    -
    -
    - - - , - "debug": [Function], - "findAllByAltText": [Function], - "findAllByDisplayValue": [Function], - "findAllByLabelText": [Function], - "findAllByPlaceholderText": [Function], - "findAllByRole": [Function], - "findAllByTestId": [Function], - "findAllByText": [Function], - "findAllByTitle": [Function], - "findByAltText": [Function], - "findByDisplayValue": [Function], - "findByLabelText": [Function], - "findByPlaceholderText": [Function], - "findByRole": [Function], - "findByTestId": [Function], - "findByText": [Function], - "findByTitle": [Function], - "getAllByAltText": [Function], - "getAllByDisplayValue": [Function], - "getAllByLabelText": [Function], - "getAllByPlaceholderText": [Function], - "getAllByRole": [Function], - "getAllByTestId": [Function], - "getAllByText": [Function], - "getAllByTitle": [Function], - "getByAltText": [Function], - "getByDisplayValue": [Function], - "getByLabelText": [Function], - "getByPlaceholderText": [Function], - "getByRole": [Function], - "getByTestId": [Function], - "getByText": [Function], - "getByTitle": [Function], - "queryAllByAltText": [Function], - "queryAllByDisplayValue": [Function], - "queryAllByLabelText": [Function], - "queryAllByPlaceholderText": [Function], - "queryAllByRole": [Function], - "queryAllByTestId": [Function], - "queryAllByText": [Function], - "queryAllByTitle": [Function], - "queryByAltText": [Function], - "queryByDisplayValue": [Function], - "queryByLabelText": [Function], - "queryByPlaceholderText": [Function], - "queryByRole": [Function], - "queryByTestId": [Function], - "queryByText": [Function], - "queryByTitle": [Function], - "rerender": [Function], - "unmount": [Function], -} -`; - -exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa Preview Template 1`] = ` -{ - "asFragment": [Function], - "baseElement": -
    - - - - - -
    - Appendix K Amendment Submitted -
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ -
    -
    - - - - -
    - - - - - - -
    - - OneMAC Logo - -
    -
    -

    - This response confirms the submission of your 1915(c) Waiver to CMS for review: -

    -
    - - - -
    - - - + Proposed Effective Date + : +

    + + + + +
    +

    + March 2, 2023 +

    +
    + + + @@ -2409,7 +2129,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa P

    - CO + Jan 1, 2023 @ 11:59pm EST

    @@ -2429,251 +2149,23 @@ exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa P - - - - -
    renders a Medicaid Spa P

    - State or Territory + 90th Day Deadline :

    +

    -

    - Name - : -

    -
    +

    +

    -

    - George Harrison -

    -
    - - - - - - - -
    -

    - Email Address - : -

    -
    -

    - george@example.com -

    -
    - - - - - - - -
    -

    - Initial Waiver Number - : -

    -
    -

    - CO-1234.R21.00 -

    -
    - - - - - - - -
    -

    - Waiver Authority - : -

    -
    -

    - Amend -

    -
    - - - - - - - -
    -

    - Proposed Effective Date - : -

    -
    -

    - March 2, 2023 -

    -
    - - - - - - - -
    -

    - 90th Day Deadline - : -

    -
    -

    - Jan 1, 2023 @ 11:59pm EST -

    -
    - - - -
    -

    -

    - Summary: -

    -

    -

    - This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. -

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    @@ -2681,16 +2173,20 @@ exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa P
    -

    - This response confirms the receipt of your Waiver request or your - response to a Waiver Request for Additional Information (RAI). You can - expect a formal response to your submittal to be issued within 90 days, - before Jan 1, 2023 @ 11:59pm EST. + This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + . +

    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded.


    renders a Medicaid Spa P

    - If you have any questions or did not expect this email, please contact + If you have any questions, please contact renders a Medicaid Spa P

    -

    - This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. - Any other correspondence will be disregarded. -

    @@ -2803,9 +2293,9 @@ exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa P

    - CHIP SPA CO-24-1234 Submitted + 1915(b) Renewal Submitted
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
    renders a Medicaid Spa P

    - This is confirmation that you submitted a CHIP State Plan Amendment to CMS for review: + This response confirms the submission of your 1915(b) Renewal waiver to CMS for review:


    renders a Medicaid Spa P

    - CHIP SPA Package ID + Renewal Waiver Number :

    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -3074,24 +2678,51 @@ exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa P

    - This response confirms the receipt of your CHIP State Plan Amendment (CHIP SPA). You can expect a formal response to your submittal from CMS at a later date. + This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + .

    - - If you have questions or did not expect this email, please contact - - - CHIPSPASubmissionMailBox@CMS.HHS.gov - + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded.

    +
    + + + + + + +
    +

    + If you have any questions, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +

    @@ -3109,7 +2740,36 @@ exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa P >

    + + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    @@ -3137,9 +2797,9 @@ exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa P
    - Medicaid SPA CO-24-1234 Submitted + 1915(b) Amendment Submitted
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
    renders a Medicaid Spa P

    - This response confirms that you submitted a Medicaid SPA to CMS for review: + This response confirms the submission of your 1915(b) Amendment waiver to CMS for review:


    renders a Medicaid Spa P

    - Medicaid SPA ID + Amendment Waiver Number :

    @@ -3363,7 +3023,45 @@ exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa P

    - CO-24-1234 + CO-1234.R21.00 +

    + + + + + + + + + @@ -3484,16 +3182,18 @@ exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa P
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b)

    - This response confirms the receipt of your Medicaid State Plan Amendment - (SPA or your response to a SPA Request for Additional Information (RAI)). You can expect a formal response to your submittal to be issued - within 90 days, before Jan 1, 2023 @ 11:59pm EST. -

    + This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + . +

    - This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. Any other correspondence will be disregarded.


    renders a Medicaid Spa P

    - If you have any questions or did not expect this email, please contact + If you have any questions, please contact renders a Medicaid Spa P > spa@cms.hhs.gov - . + or your state lead.

    @@ -3544,7 +3244,36 @@ exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa P > - + + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    + @@ -3573,9 +3302,9 @@ exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa P
    - Medicaid SPA CO-24-1234 Submitted + 1915(b) Amendment Submitted
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
    renders a Medicaid Spa P

    - This response confirms that you submitted a Medicaid SPA to CMS for review: + This response confirms the submission of your 1915(b) Amendment waiver to CMS for review:


    renders a Medicaid Spa P

    - Medicaid SPA ID + Amendment Waiver Number :

    @@ -3799,7 +3528,45 @@ exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa P

    - CO-24-1234 + CO-1234.R21.00 +

    + + + + + + + + + @@ -3920,16 +3687,18 @@ exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa P
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b)

    - This response confirms the receipt of your Medicaid State Plan Amendment - (SPA or your response to a SPA Request for Additional Information (RAI)). You can expect a formal response to your submittal to be issued - within 90 days, before Jan 1, 2023 @ 11:59pm EST. + This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + .

    - This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. Any other correspondence will be disregarded.


    renders a Medicaid Spa P

    - If you have any questions or did not expect this email, please contact + If you have any questions, please contact renders a Medicaid Spa P > spa@cms.hhs.gov - . + or your state lead.

    @@ -3980,7 +3749,36 @@ exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa P > - + + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    + @@ -4045,7 +3843,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa P } `; -exports[`Initial Submission State Email Snapshot Test > renders a TempExt Preview Template 1`] = ` +exports[`Initial Submission State Email Snapshot Test > renders a Amendment Contracting Waiver Preview Template 1`] = ` { "asFragment": [Function], "baseElement": @@ -5817,644 +5615,596 @@ exports[`Initial Submission State Email Snapshot Test > renders a TempExt Previe
    - , - "container":
    - - - - - -
    + - Temporary Extension MD-2343.R00.TE09 Submitted -
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ + + + + +
    + 1915(b) Initial Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    -
    - - - - -
    - - - - - - -
    - - OneMAC Logo - -
    -
    -

    - This response confirms you have submitted a Temporary Extension to CMS for review -

    + + + + - + +
    + + +
    - - + OneMAC Logo + + + + +
    +
    +

    + This response confirms the submission of your 1915(b) Initial waiver to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + - - -
    + - - - + - - -
    -

    - State or Territory - : -

    -
    -

    + State or Territory + : +

    +
    - MD -

    -
    - - + CO +

    + + + +
    + - - - + - - -
    -

    - Name - : -

    -
    -

    + Name + : +

    +
    - George Harrison -

    -
    - - + George Harrison +

    + + + +
    + - - - + - - -
    -

    - Email Address - : -

    -
    -

    + Email Address + : +

    +
    - george@example.com -

    -
    - - + george@example.com +

    + + + +
    + - - - - - -
    -

    - Temporary Extension Request Number - : -

    -
    -

    - MD-2343.R00.TE09 -

    -
    - - + Initial Waiver Number + : +

    + + + + +
    +

    + CO-1234.R21.00 +

    +
    + - - - + - - -
    -

    - Temporary Extension Type - : -

    -
    -

    + Waiver Authority + : +

    +
    - 1915(b) -

    -
    - - + 1915(b) +

    + + + +
    + - - - + - - -
    -

    - 90th Day Deadline - : -

    -
    -

    + Proposed Effective Date + : +

    +
    - Mar 2, 2023 @ 11:59pm EST -

    -
    - - + March 2, 2023 +

    + + + +
    + - -
    -

    -

    - Summary: -

    -

    -

    + 90th Day Deadline + : +

    + + + + +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + - Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you. -

    - - -
    -
    -
    -

    - Files: -

    - - +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    -

    - -

    - Waiver Extension Request - : -

    - -
    -
    - -

    - Waiver Extension Request - : -

    - -
    -
    - + This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + . +

    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +
    + + + + - + +

    - Waiver Extension Request - : + If you have any questions, please contact + + spa@cms.hhs.gov + + or your state lead.

    - - -
    -

    +

    +

    + Thank you. +

    + + + + +
    + - - Temporary Extention Document for submission.pdf -
    -
    - - Second Extention Document for submission.pdf -
    -
    - - Third Extention Document for submission.pdf - -

    + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    -

    +

    + + +
    +
    + + + + + +
    + 1915(b) Renewal Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + - - -
    + - This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. - Any other correspondence will be disregarded. -

    -

    - Thank you. -

    - -
    - - - - - -
    -
    - - - - - - -
    -

    - If you have any questions or did not expect this email, please contact - - spa@cms.hhs.gov - - or your state lead. -

    -
    -
    -
    - - -
    , - "debug": [Function], - "findAllByAltText": [Function], - "findAllByDisplayValue": [Function], - "findAllByLabelText": [Function], - "findAllByPlaceholderText": [Function], - "findAllByRole": [Function], - "findAllByTestId": [Function], - "findAllByText": [Function], - "findAllByTitle": [Function], - "findByAltText": [Function], - "findByDisplayValue": [Function], - "findByLabelText": [Function], - "findByPlaceholderText": [Function], - "findByRole": [Function], - "findByTestId": [Function], - "findByText": [Function], - "findByTitle": [Function], - "getAllByAltText": [Function], - "getAllByDisplayValue": [Function], - "getAllByLabelText": [Function], - "getAllByPlaceholderText": [Function], - "getAllByRole": [Function], - "getAllByTestId": [Function], - "getAllByText": [Function], - "getAllByTitle": [Function], - "getByAltText": [Function], - "getByDisplayValue": [Function], - "getByLabelText": [Function], - "getByPlaceholderText": [Function], - "getByRole": [Function], - "getByTestId": [Function], - "getByText": [Function], - "getByTitle": [Function], - "queryAllByAltText": [Function], - "queryAllByDisplayValue": [Function], - "queryAllByLabelText": [Function], - "queryAllByPlaceholderText": [Function], - "queryAllByRole": [Function], - "queryAllByTestId": [Function], - "queryAllByText": [Function], - "queryAllByTitle": [Function], - "queryByAltText": [Function], - "queryByDisplayValue": [Function], - "queryByLabelText": [Function], - "queryByPlaceholderText": [Function], - "queryByRole": [Function], - "queryByTestId": [Function], - "queryByText": [Function], - "queryByTitle": [Function], - "rerender": [Function], - "unmount": [Function], -} -`; - -exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitated Preview Template 1`] = ` -{ - "asFragment": [Function], - "baseElement": -
    - - - - - -
    - Appendix K Amendment Submitted -
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ -
    -
    - - - - - + + + +
    - - - - - - -
    - - OneMAC Logo - -
    -
    +
    + + OneMAC Logo + +
    +

    - This response confirms the submission of your 1915(c) Waiver to CMS for review: + This response confirms the submission of your 1915(b) Renewal waiver to CMS for review:

    -
    +
    +
    +

    + Details: +

    +
    renders a Waiver Capitat

    - Initial Waiver Number + Renewal Waiver Number :

    @@ -6650,7 +6400,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat

    - Amend + 1915(b)

    @@ -6770,16 +6520,20 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat
    -

    - This response confirms the receipt of your Waiver request or your - response to a Waiver Request for Additional Information (RAI). You can - expect a formal response to your submittal to be issued within 90 days, - before Jan 1, 2023 @ 11:59pm EST. + This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + . +

    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded.


    renders a Waiver Capitat

    - If you have any questions or did not expect this email, please contact + If you have any questions, please contact renders a Waiver Capitat

    -

    - This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. - Any other correspondence will be disregarded. -

    @@ -6892,9 +6640,9 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat

    - CHIP SPA CO-24-1234 Submitted + 1915(b) Amendment Submitted
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
    renders a Waiver Capitat

    - This is confirmation that you submitted a CHIP State Plan Amendment to CMS for review: + This response confirms the submission of your 1915(b) Amendment waiver to CMS for review:


    renders a Waiver Capitat

    - CHIP SPA Package ID + Amendment Waiver Number :

    @@ -7118,7 +6866,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat

    - CO-24-1234 + CO-1234.R21.00

    @@ -7138,49 +6886,190 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat -
    -

    -

    - Summary: -

    -

    -

    - This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. -

    - - + Waiver Authority + : +

    + + +

    + 1915(b) +

    + + + + + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + +

    - This response confirms the receipt of your CHIP State Plan Amendment (CHIP SPA). You can expect a formal response to your submittal from CMS at a later date. + This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + .

    - - If you have questions or did not expect this email, please contact - - - CHIPSPASubmissionMailBox@CMS.HHS.gov - + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded.

    +
    + + + + + + +
    +

    + If you have any questions, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +

    @@ -7198,7 +7087,36 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat > - + + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    + @@ -7226,9 +7144,9 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat

    - Medicaid SPA CO-24-1234 Submitted + 1915(b) Initial Submitted
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
    renders a Waiver Capitat

    - This response confirms that you submitted a Medicaid SPA to CMS for review: + This response confirms the submission of your 1915(b) Initial waiver to CMS for review:


    renders a Waiver Capitat

    - Medicaid SPA ID + Initial Waiver Number :

    @@ -7452,7 +7370,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat

    - CO-24-1234 + CO-9987.R21.00

    @@ -7480,7 +7398,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat

    - Proposed Effective Date + Waiver Authority :

    @@ -7490,7 +7408,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat

    - March 2, 2023 + 1915(b)

    @@ -7518,7 +7436,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat

    - 90th Day Deadline + Proposed Effective Date :

    @@ -7528,7 +7446,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat

    - Jan 1, 2023 @ 11:59pm EST + March 2, 2023

    @@ -7548,41 +7466,81 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat -
    -

    -

    - Summary: -

    -

    -

    + + - This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. -

    - - - +

    + Jan 1, 2023 @ 11:59pm EST +

    + + + + + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +

    - This response confirms the receipt of your Medicaid State Plan Amendment - (SPA or your response to a SPA Request for Additional Information (RAI)). You can expect a formal response to your submittal to be issued - within 90 days, before Jan 1, 2023 @ 11:59pm EST. + This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + .

    - This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. Any other correspondence will be disregarded.


    renders a Waiver Capitat

    - If you have any questions or did not expect this email, please contact + If you have any questions, please contact renders a Waiver Capitat > spa@cms.hhs.gov - . + or your state lead.

    @@ -7633,7 +7591,36 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat > - + + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    + @@ -7661,9 +7648,9 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat
    - Temporary Extension MD-2343.R00.TE09 Submitted + 1915(b) Renewal Submitted
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
    renders a Waiver Capitat

    - This response confirms you have submitted a Temporary Extension to CMS for review + This response confirms the submission of your 1915(b) Renewal waiver to CMS for review:

    +
    +
    +

    + Details: +

    +
    renders a Waiver Capitat

    - MD + CO

    @@ -7867,7 +7864,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat

    - Temporary Extension Request Number + Renewal Waiver Number :

    @@ -7877,7 +7874,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat

    - MD-2343.R00.TE09 + CO-9987.R21.00

    @@ -7905,7 +7902,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat

    - Temporary Extension Type + Waiver Authority :

    @@ -7921,6 +7918,44 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    renders a Waiver Capitat

    - Mar 2, 2023 @ 11:59pm EST + Jan 1, 2023 @ 11:59pm EST

    @@ -7988,7 +8023,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat

    - Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you. + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -7997,93 +8032,52 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat
    +

    + This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + . +

    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +


    -

    - Files: -

    - - - - + +
    - -

    - Waiver Extension Request - : -

    - -
    -
    - -

    - Waiver Extension Request - : -

    - -
    -
    - -

    - Waiver Extension Request - : -

    - -
    -
    +

    - - Temporary Extention Document for submission.pdf -
    -
    - - Second Extention Document for submission.pdf -
    -
    - - Third Extention Document for submission.pdf - + If you have any questions, please contact + + spa@cms.hhs.gov + + or your state lead.

    -

    - This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. - Any other correspondence will be disregarded. -

    @@ -8102,32 +8096,29 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat -


    @@ -8161,9 +8152,9 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat
    - 1915(b) Initial Submitted + 1915(b) Amendment Submitted
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
    renders a Waiver Capitat

    - This response confirms the submission of your 1915(b) Initial waiver to CMS for review: + This response confirms the submission of your 1915(b) Amendment waiver to CMS for review:


    renders a Waiver Capitat

    - Initial Waiver Number + Amendment Waiver Number :

    @@ -8387,7 +8378,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat

    - CO-1234.R21.00 + CO-1234.R21.01

    @@ -8666,9 +8657,9 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat
    - 1915(b) Initial Submitted + 1915(b) Amendment Submitted
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
    renders a Waiver Capitat

    - This response confirms the submission of your 1915(b) Initial waiver to CMS for review: + This response confirms the submission of your 1915(b) Amendment waiver to CMS for review:


    renders a Waiver Capitat

    - Initial Waiver Number + Amendment Waiver Number :

    @@ -8892,7 +8883,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat

    - CO-1234.R21.00 + CO-1234.R21.01

    @@ -9207,7 +9198,7 @@ exports[`Initial Submission State Email Snapshot Test > renders a Waiver Capitat } `; -exports[`renders a Waiver Contracting Preview Template 1`] = ` +exports[`Initial Submission State Email Snapshot Test > renders a AppKCMSEmailPreview Preview Template 1`] = ` { "asFragment": [Function], "baseElement": @@ -9228,9 +9219,24218 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `
    - Appendix K Amendment Submitted + Appendix K Amendment Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + +

    - If you have any questions or did not expect this email, please contact - - spa@cms.hhs.gov - - or your state lead. + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244

    + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms the submission of your 1915(c) Waiver to CMS for review: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Initial Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + Amend +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + This response confirms the receipt of your Waiver request or your + response to a Waiver Request for Additional Information (RAI). You can + expect a formal response to your submittal to be issued within 90 days, + before Jan 1, 2023 @ 11:59pm EST. +

    +
    + + + + + + +
    +

    + If you have any questions or did not expect this email, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    + , + "container":
    + + + + + +
    + Appendix K Amendment Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms the submission of your 1915(c) Waiver to CMS for review: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Initial Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + Amend +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + This response confirms the receipt of your Waiver request or your + response to a Waiver Request for Additional Information (RAI). You can + expect a formal response to your submittal to be issued within 90 days, + before Jan 1, 2023 @ 11:59pm EST. +

    +
    + + + + + + +
    +

    + If you have any questions or did not expect this email, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    , + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Initial Submission State Email Snapshot Test > renders a Chipspa Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
    + + + + + +
    + Appendix K Amendment Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms the submission of your 1915(c) Waiver to CMS for review: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Initial Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + Amend +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + This response confirms the receipt of your Waiver request or your + response to a Waiver Request for Additional Information (RAI). You can + expect a formal response to your submittal to be issued within 90 days, + before Jan 1, 2023 @ 11:59pm EST. +

    +
    + + + + + + +
    +

    + If you have any questions or did not expect this email, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + CHIP SPA CO-24-1234 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This is confirmation that you submitted a CHIP State Plan Amendment to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + CHIP SPA Package ID + : +

    +
    +

    + CO-24-1234 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your CHIP State Plan Amendment (CHIP SPA). You can expect a formal response to your submittal from CMS at a later date. +

    +

    + + If you have questions or did not expect this email, please contact + + + CHIPSPASubmissionMailBox@CMS.HHS.gov + +

    +

    + Thank you. +

    +
    + + + + + +
    +
    +
    + + +
    + , + "container":
    + + + + + +
    + CHIP SPA CO-24-1234 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This is confirmation that you submitted a CHIP State Plan Amendment to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + CHIP SPA Package ID + : +

    +
    +

    + CO-24-1234 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your CHIP State Plan Amendment (CHIP SPA). You can expect a formal response to your submittal from CMS at a later date. +

    +

    + + If you have questions or did not expect this email, please contact + + + CHIPSPASubmissionMailBox@CMS.HHS.gov + +

    +

    + Thank you. +

    +
    + + + + + +
    +
    +
    + + +
    , + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Initial Submission State Email Snapshot Test > renders a Initial Capitated Waiver Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
    + + + + + +
    + Appendix K Amendment Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms the submission of your 1915(c) Waiver to CMS for review: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Initial Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + Amend +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + This response confirms the receipt of your Waiver request or your + response to a Waiver Request for Additional Information (RAI). You can + expect a formal response to your submittal to be issued within 90 days, + before Jan 1, 2023 @ 11:59pm EST. +

    +
    + + + + + + +
    +

    + If you have any questions or did not expect this email, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + CHIP SPA CO-24-1234 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This is confirmation that you submitted a CHIP State Plan Amendment to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + CHIP SPA Package ID + : +

    +
    +

    + CO-24-1234 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your CHIP State Plan Amendment (CHIP SPA). You can expect a formal response to your submittal from CMS at a later date. +

    +

    + + If you have questions or did not expect this email, please contact + + + CHIPSPASubmissionMailBox@CMS.HHS.gov + +

    +

    + Thank you. +

    +
    + + + + + +
    +
    +
    + + +
    +
    + + + + + +
    + Medicaid SPA CO-24-1234 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms that you submitted a Medicaid SPA to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Medicaid SPA ID + : +

    +
    +

    + CO-24-1234 +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your Medicaid State Plan Amendment + (SPA or your response to a SPA Request for Additional Information (RAI)). You can expect a formal response to your submittal to be issued + within 90 days, before Jan 1, 2023 @ 11:59pm EST. +

    +

    + This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. + Any other correspondence will be disregarded. +

    +
    + + + + + + +
    +

    + If you have any questions or did not expect this email, please contact + + spa@cms.hhs.gov + + . +

    +
    +

    + Thank you. +

    +
    + + + + + +
    +
    +
    + + +
    +
    + + + + + +
    + Temporary Extension MD-2343.R00.TE09 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms you have submitted a Temporary Extension to CMS for review +

    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + MD +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Temporary Extension Request Number + : +

    +
    +

    + MD-2343.R00.TE09 +

    +
    + + + + + + + +
    +

    + Temporary Extension Type + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Mar 2, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + Waiver Extension Request + : +

    + +
    +
    + +

    + Waiver Extension Request + : +

    + +
    +
    + +

    + Waiver Extension Request + : +

    + +
    +
    +

    + + Temporary Extention Document for submission.pdf +
    +
    + + Second Extention Document for submission.pdf +
    +
    + + Third Extention Document for submission.pdf + +

    +
    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +

    + Thank you. +

    +
    + + + + + + +
    +
    + + + + + + +
    +

    + If you have any questions or did not expect this email, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +
    +
    + + +
    +
    + + + + + +
    + 1915(b) Initial Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms the submission of your 1915(b) Initial waiver to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Initial Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + . +

    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +
    + + + + + + +
    +

    + If you have any questions, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    + , + "container":
    + + + + + +
    + 1915(b) Initial Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms the submission of your 1915(b) Initial waiver to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Initial Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + . +

    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +
    + + + + + + +
    +

    + If you have any questions, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    , + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Initial Submission State Email Snapshot Test > renders a Initial Contracting Waiver Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
    + + + + + +
    + Appendix K Amendment Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms the submission of your 1915(c) Waiver to CMS for review: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Initial Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + Amend +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + This response confirms the receipt of your Waiver request or your + response to a Waiver Request for Additional Information (RAI). You can + expect a formal response to your submittal to be issued within 90 days, + before Jan 1, 2023 @ 11:59pm EST. +

    +
    + + + + + + +
    +

    + If you have any questions or did not expect this email, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + CHIP SPA CO-24-1234 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This is confirmation that you submitted a CHIP State Plan Amendment to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + CHIP SPA Package ID + : +

    +
    +

    + CO-24-1234 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your CHIP State Plan Amendment (CHIP SPA). You can expect a formal response to your submittal from CMS at a later date. +

    +

    + + If you have questions or did not expect this email, please contact + + + CHIPSPASubmissionMailBox@CMS.HHS.gov + +

    +

    + Thank you. +

    +
    + + + + + +
    +
    +
    + + +
    +
    + + + + + +
    + Medicaid SPA CO-24-1234 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms that you submitted a Medicaid SPA to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Medicaid SPA ID + : +

    +
    +

    + CO-24-1234 +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your Medicaid State Plan Amendment + (SPA or your response to a SPA Request for Additional Information (RAI)). You can expect a formal response to your submittal to be issued + within 90 days, before Jan 1, 2023 @ 11:59pm EST. +

    +

    + This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. + Any other correspondence will be disregarded. +

    +
    + + + + + + +
    +

    + If you have any questions or did not expect this email, please contact + + spa@cms.hhs.gov + + . +

    +
    +

    + Thank you. +

    +
    + + + + + +
    +
    +
    + + +
    +
    + + + + + +
    + Temporary Extension MD-2343.R00.TE09 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms you have submitted a Temporary Extension to CMS for review +

    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + MD +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Temporary Extension Request Number + : +

    +
    +

    + MD-2343.R00.TE09 +

    +
    + + + + + + + +
    +

    + Temporary Extension Type + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Mar 2, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + Waiver Extension Request + : +

    + +
    +
    + +

    + Waiver Extension Request + : +

    + +
    +
    + +

    + Waiver Extension Request + : +

    + +
    +
    +

    + + Temporary Extention Document for submission.pdf +
    +
    + + Second Extention Document for submission.pdf +
    +
    + + Third Extention Document for submission.pdf + +

    +
    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +

    + Thank you. +

    +
    + + + + + + +
    +
    + + + + + + +
    +

    + If you have any questions or did not expect this email, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +
    +
    + + +
    +
    + + + + + +
    + 1915(b) Initial Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms the submission of your 1915(b) Initial waiver to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Initial Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + . +

    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +
    + + + + + + +
    +

    + If you have any questions, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + 1915(b) Renewal Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms the submission of your 1915(b) Renewal waiver to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Renewal Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + . +

    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +
    + + + + + + +
    +

    + If you have any questions, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + 1915(b) Amendment Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms the submission of your 1915(b) Amendment waiver to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Amendment Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + . +

    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +
    + + + + + + +
    +

    + If you have any questions, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + 1915(b) Initial Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms the submission of your 1915(b) Initial waiver to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Initial Waiver Number + : +

    +
    +

    + CO-9987.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + . +

    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +
    + + + + + + +
    +

    + If you have any questions, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    + , + "container":
    + + + + + +
    + 1915(b) Initial Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms the submission of your 1915(b) Initial waiver to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Initial Waiver Number + : +

    +
    +

    + CO-9987.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + . +

    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +
    + + + + + + +
    +

    + If you have any questions, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    , + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Initial Submission State Email Snapshot Test > renders a Initial Contracting Waiver Preview Template 2`] = ` +{ + "asFragment": [Function], + "baseElement": +
    + + + + + +
    + Appendix K Amendment Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms the submission of your 1915(c) Waiver to CMS for review: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Initial Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + Amend +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + This response confirms the receipt of your Waiver request or your + response to a Waiver Request for Additional Information (RAI). You can + expect a formal response to your submittal to be issued within 90 days, + before Jan 1, 2023 @ 11:59pm EST. +

    +
    + + + + + + +
    +

    + If you have any questions or did not expect this email, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + CHIP SPA CO-24-1234 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This is confirmation that you submitted a CHIP State Plan Amendment to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + CHIP SPA Package ID + : +

    +
    +

    + CO-24-1234 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your CHIP State Plan Amendment (CHIP SPA). You can expect a formal response to your submittal from CMS at a later date. +

    +

    + + If you have questions or did not expect this email, please contact + + + CHIPSPASubmissionMailBox@CMS.HHS.gov + +

    +

    + Thank you. +

    +
    + + + + + +
    +
    +
    + + +
    +
    + + + + + +
    + Medicaid SPA CO-24-1234 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms that you submitted a Medicaid SPA to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Medicaid SPA ID + : +

    +
    +

    + CO-24-1234 +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your Medicaid State Plan Amendment + (SPA or your response to a SPA Request for Additional Information (RAI)). You can expect a formal response to your submittal to be issued + within 90 days, before Jan 1, 2023 @ 11:59pm EST. +

    +

    + This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. + Any other correspondence will be disregarded. +

    +
    + + + + + + +
    +

    + If you have any questions or did not expect this email, please contact + + spa@cms.hhs.gov + + . +

    +
    +

    + Thank you. +

    +
    + + + + + +
    +
    +
    + + +
    +
    + + + + + +
    + Temporary Extension MD-2343.R00.TE09 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms you have submitted a Temporary Extension to CMS for review +

    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + MD +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Temporary Extension Request Number + : +

    +
    +

    + MD-2343.R00.TE09 +

    +
    + + + + + + + +
    +

    + Temporary Extension Type + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Mar 2, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + Waiver Extension Request + : +

    + +
    +
    + +

    + Waiver Extension Request + : +

    + +
    +
    + +

    + Waiver Extension Request + : +

    + +
    +
    +

    + + Temporary Extention Document for submission.pdf +
    +
    + + Second Extention Document for submission.pdf +
    +
    + + Third Extention Document for submission.pdf + +

    +
    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +

    + Thank you. +

    +
    + + + + + + +
    +
    + + + + + + +
    +

    + If you have any questions or did not expect this email, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +
    +
    + + +
    +
    + + + + + +
    + 1915(b) Initial Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms the submission of your 1915(b) Initial waiver to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Initial Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + . +

    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +
    + + + + + + +
    +

    + If you have any questions, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + 1915(b) Renewal Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms the submission of your 1915(b) Renewal waiver to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Renewal Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + . +

    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +
    + + + + + + +
    +

    + If you have any questions, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + 1915(b) Amendment Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms the submission of your 1915(b) Amendment waiver to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Amendment Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + . +

    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +
    + + + + + + +
    +

    + If you have any questions, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + 1915(b) Initial Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms the submission of your 1915(b) Initial waiver to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Initial Waiver Number + : +

    +
    +

    + CO-9987.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + . +

    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +
    + + + + + + +
    +

    + If you have any questions, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + 1915(b) Renewal Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms the submission of your 1915(b) Renewal waiver to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Renewal Waiver Number + : +

    +
    +

    + CO-9987.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + . +

    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +
    + + + + + + +
    +

    + If you have any questions, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + 1915(b) Amendment Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms the submission of your 1915(b) Amendment waiver to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Amendment Waiver Number + : +

    +
    +

    + CO-1234.R21.01 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + . +

    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +
    + + + + + + +
    +

    + If you have any questions, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + 1915(b) Initial Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms the submission of your 1915(b) Initial waiver to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Initial Waiver Number + : +

    +
    +

    + CO-9987.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + . +

    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +
    + + + + + + +
    +

    + If you have any questions, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    + , + "container":
    + + + + + +
    + 1915(b) Initial Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms the submission of your 1915(b) Initial waiver to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Initial Waiver Number + : +

    +
    +

    + CO-9987.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + . +

    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +
    + + + + + + +
    +

    + If you have any questions, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    , + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Initial Submission State Email Snapshot Test > renders a Medicaid Spa Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
    + + + + + +
    + Appendix K Amendment Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms the submission of your 1915(c) Waiver to CMS for review: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Initial Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + Amend +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + This response confirms the receipt of your Waiver request or your + response to a Waiver Request for Additional Information (RAI). You can + expect a formal response to your submittal to be issued within 90 days, + before Jan 1, 2023 @ 11:59pm EST. +

    +
    + + + + + + +
    +

    + If you have any questions or did not expect this email, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + CHIP SPA CO-24-1234 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This is confirmation that you submitted a CHIP State Plan Amendment to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + CHIP SPA Package ID + : +

    +
    +

    + CO-24-1234 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your CHIP State Plan Amendment (CHIP SPA). You can expect a formal response to your submittal from CMS at a later date. +

    +

    + + If you have questions or did not expect this email, please contact + + + CHIPSPASubmissionMailBox@CMS.HHS.gov + +

    +

    + Thank you. +

    +
    + + + + + +
    +
    +
    + + +
    +
    + + + + + +
    + Medicaid SPA CO-24-1234 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms that you submitted a Medicaid SPA to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Medicaid SPA ID + : +

    +
    +

    + CO-24-1234 +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your Medicaid State Plan Amendment + (SPA or your response to a SPA Request for Additional Information (RAI)). You can expect a formal response to your submittal to be issued + within 90 days, before Jan 1, 2023 @ 11:59pm EST. +

    +

    + This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. + Any other correspondence will be disregarded. +

    +
    + + + + + + +
    +

    + If you have any questions or did not expect this email, please contact + + spa@cms.hhs.gov + + . +

    +
    +

    + Thank you. +

    +
    + + + + + +
    +
    +
    + + +
    + , + "container":
    + + + + + +
    + Medicaid SPA CO-24-1234 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms that you submitted a Medicaid SPA to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Medicaid SPA ID + : +

    +
    +

    + CO-24-1234 +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your Medicaid State Plan Amendment + (SPA or your response to a SPA Request for Additional Information (RAI)). You can expect a formal response to your submittal to be issued + within 90 days, before Jan 1, 2023 @ 11:59pm EST. +

    +

    + This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. + Any other correspondence will be disregarded. +

    +
    + + + + + + +
    +

    + If you have any questions or did not expect this email, please contact + + spa@cms.hhs.gov + + . +

    +
    +

    + Thank you. +

    +
    + + + + + +
    +
    +
    + + +
    , + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Initial Submission State Email Snapshot Test > renders a Renewal Capitated Waiver Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
    + + + + + +
    + Appendix K Amendment Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms the submission of your 1915(c) Waiver to CMS for review: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Initial Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + Amend +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + This response confirms the receipt of your Waiver request or your + response to a Waiver Request for Additional Information (RAI). You can + expect a formal response to your submittal to be issued within 90 days, + before Jan 1, 2023 @ 11:59pm EST. +

    +
    + + + + + + +
    +

    + If you have any questions or did not expect this email, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + CHIP SPA CO-24-1234 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This is confirmation that you submitted a CHIP State Plan Amendment to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + CHIP SPA Package ID + : +

    +
    +

    + CO-24-1234 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your CHIP State Plan Amendment (CHIP SPA). You can expect a formal response to your submittal from CMS at a later date. +

    +

    + + If you have questions or did not expect this email, please contact + + + CHIPSPASubmissionMailBox@CMS.HHS.gov + +

    +

    + Thank you. +

    +
    + + + + + +
    +
    +
    + + +
    +
    + + + + + +
    + Medicaid SPA CO-24-1234 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms that you submitted a Medicaid SPA to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Medicaid SPA ID + : +

    +
    +

    + CO-24-1234 +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your Medicaid State Plan Amendment + (SPA or your response to a SPA Request for Additional Information (RAI)). You can expect a formal response to your submittal to be issued + within 90 days, before Jan 1, 2023 @ 11:59pm EST. +

    +

    + This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. + Any other correspondence will be disregarded. +

    +
    + + + + + + +
    +

    + If you have any questions or did not expect this email, please contact + + spa@cms.hhs.gov + + . +

    +
    +

    + Thank you. +

    +
    + + + + + +
    +
    +
    + + +
    +
    + + + + + +
    + Temporary Extension MD-2343.R00.TE09 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms you have submitted a Temporary Extension to CMS for review +

    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + MD +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Temporary Extension Request Number + : +

    +
    +

    + MD-2343.R00.TE09 +

    +
    + + + + + + + +
    +

    + Temporary Extension Type + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Mar 2, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + Waiver Extension Request + : +

    + +
    +
    + +

    + Waiver Extension Request + : +

    + +
    +
    + +

    + Waiver Extension Request + : +

    + +
    +
    +

    + + Temporary Extention Document for submission.pdf +
    +
    + + Second Extention Document for submission.pdf +
    +
    + + Third Extention Document for submission.pdf + +

    +
    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +

    + Thank you. +

    +
    + + + + + + +
    +
    + + + + + + +
    +

    + If you have any questions or did not expect this email, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +
    +
    + + +
    +
    + + + + + +
    + 1915(b) Initial Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms the submission of your 1915(b) Initial waiver to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Initial Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + . +

    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +
    + + + + + + +
    +

    + If you have any questions, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + 1915(b) Renewal Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms the submission of your 1915(b) Renewal waiver to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Renewal Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + . +

    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +
    + + + + + + +
    +

    + If you have any questions, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    + , + "container":
    + + + + + +
    + 1915(b) Renewal Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms the submission of your 1915(b) Renewal waiver to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Renewal Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + . +

    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +
    + + + + + + +
    +

    + If you have any questions, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    , + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Initial Submission State Email Snapshot Test > renders a Renewal Contracting Waiver Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement": +
    + + + + + +
    + Appendix K Amendment Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms the submission of your 1915(c) Waiver to CMS for review: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Initial Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + Amend +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +
    +

    + This response confirms the receipt of your Waiver request or your + response to a Waiver Request for Additional Information (RAI). You can + expect a formal response to your submittal to be issued within 90 days, + before Jan 1, 2023 @ 11:59pm EST. +

    +
    + + + + + + +
    +

    + If you have any questions or did not expect this email, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + CHIP SPA CO-24-1234 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This is confirmation that you submitted a CHIP State Plan Amendment to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + CHIP SPA Package ID + : +

    +
    +

    + CO-24-1234 +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your CHIP State Plan Amendment (CHIP SPA). You can expect a formal response to your submittal from CMS at a later date. +

    +

    + + If you have questions or did not expect this email, please contact + + + CHIPSPASubmissionMailBox@CMS.HHS.gov + +

    +

    + Thank you. +

    +
    + + + + + +
    +
    +
    + + +
    +
    + + + + + +
    + Medicaid SPA CO-24-1234 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms that you submitted a Medicaid SPA to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Medicaid SPA ID + : +

    +
    +

    + CO-24-1234 +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your Medicaid State Plan Amendment + (SPA or your response to a SPA Request for Additional Information (RAI)). You can expect a formal response to your submittal to be issued + within 90 days, before Jan 1, 2023 @ 11:59pm EST. +

    +

    + This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. + Any other correspondence will be disregarded. +

    +
    + + + + + + +
    +

    + If you have any questions or did not expect this email, please contact + + spa@cms.hhs.gov + + . +

    +
    +

    + Thank you. +

    +
    + + + + + +
    +
    +
    + + +
    +
    + + + + + +
    + Temporary Extension MD-2343.R00.TE09 Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms you have submitted a Temporary Extension to CMS for review +

    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + MD +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Temporary Extension Request Number + : +

    +
    +

    + MD-2343.R00.TE09 +

    +
    + + + + + + + +
    +

    + Temporary Extension Type + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Mar 2, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you. +

    + + +
    +
    +
    +

    + Files: +

    + + + + + + + +
    + +

    + Waiver Extension Request + : +

    + +
    +
    + +

    + Waiver Extension Request + : +

    + +
    +
    + +

    + Waiver Extension Request + : +

    + +
    +
    +

    + + Temporary Extention Document for submission.pdf +
    +
    + + Second Extention Document for submission.pdf +
    +
    + + Third Extention Document for submission.pdf + +

    +
    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +

    + Thank you. +

    +
    + + + + + + +
    +
    + + + + + + +
    +

    + If you have any questions or did not expect this email, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +
    +
    + + +
    +
    + + + + + +
    + 1915(b) Initial Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms the submission of your 1915(b) Initial waiver to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Initial Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + . +

    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +
    + + + + + + +
    +

    + If you have any questions, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + 1915(b) Renewal Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms the submission of your 1915(b) Renewal waiver to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Renewal Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + . +

    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +
    + + + + + + +
    +

    + If you have any questions, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + 1915(b) Amendment Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms the submission of your 1915(b) Amendment waiver to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Amendment Waiver Number + : +

    +
    +

    + CO-1234.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + . +

    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +
    + + + + + + +
    +

    + If you have any questions, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + 1915(b) Initial Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +
    +
    + + + + + + + +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms the submission of your 1915(b) Initial waiver to CMS for review: +

    +
    +
    +

    + Details: +

    +
    + + + + + + +
    + + + + + + + +
    +

    + State or Territory + : +

    +
    +

    + CO +

    +
    + + + + + + + +
    +

    + Name + : +

    +
    +

    + George Harrison +

    +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Initial Waiver Number + : +

    +
    +

    + CO-9987.R21.00 +

    +
    + + + + + + + +
    +

    + Waiver Authority + : +

    +
    +

    + 1915(b) +

    +
    + + + + + + + +
    +

    + Proposed Effective Date + : +

    +
    +

    + March 2, 2023 +

    +
    + + + + + + + +
    +

    + 90th Day Deadline + : +

    +
    +

    + Jan 1, 2023 @ 11:59pm EST +

    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    +
    +

    + This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + . +

    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +
    + + + + + + +
    +

    + If you have any questions, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    +
    + + +
    +
    + + + + + +
    + 1915(b) Renewal Submitted
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
    - This response confirms the submission of your 1915(c) Waiver to CMS for review: + This response confirms the submission of your 1915(b) Renewal waiver to CMS for review: -
    +
    +
    +

    + Details: +

    +
    - Initial Waiver Number + Renewal Waiver Number :

    @@ -9447,7 +33654,7 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `

    - CO-1234.R21.00 + CO-9987.R21.00

    @@ -9485,7 +33692,7 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `

    - Amend + 1915(b)

    @@ -9605,16 +33812,20 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `
    -

    - This response confirms the receipt of your Waiver request or your - response to a Waiver Request for Additional Information (RAI). You can - expect a formal response to your submittal to be issued within 90 days, - before Jan 1, 2023 @ 11:59pm EST. + This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + . +

    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded.


    - If you have any questions or did not expect this email, please contact + If you have any questions, please contact -

    - This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. - Any other correspondence will be disregarded. -

    @@ -9710,340 +33915,569 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `

    -
    - , + "container":
    + + + + + +
    - - - - -
    - CHIP SPA CO-24-1234 Submitted -
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ -
    + 1915(b) Renewal Submitted +
    +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
    - + + -
    - - - + + + + +
    +
    + + + + + + +
    + + OneMAC Logo + +
    +
    +

    + This response confirms the submission of your 1915(b) Renewal waiver to CMS for review: +

    +
    +
    +

    + Details: +

    +
    - - -
    - - OneMAC Logo - -
    -
    -

    - This is confirmation that you submitted a CHIP State Plan Amendment to CMS for review: -

    -
    -
    -

    - Details: -

    -
    - - - - - - -
    - - - - - + - - -
    -

    - State or Territory - : -

    -
    + +

    -

    - CO -

    -
    - + + + +
    + + - - - - + - - -
    -

    - Name - : -

    -
    + +

    -

    - George Harrison -

    -
    - + + + +
    + + + + + + + +
    +

    + Email Address + : +

    +
    +

    + george@example.com +

    +
    + + + + + + + +
    +

    + Renewal Waiver Number + : +

    +
    +

    + CO-9987.R21.00 +

    +
    + + - - - - + - - -
    -

    - Email Address - : -

    -
    + +

    -

    - george@example.com -

    -
    - + + + +
    + + - - - - + - - -
    -

    - CHIP SPA Package ID - : -

    -
    + +

    -

    - CO-24-1234 -

    -
    - + + + +
    + + - - -

    -

    - Summary: -

    + 90th Day Deadline + :

    + + - -

    - This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. + Jan 1, 2023 @ 11:59pm EST

    -
    -
    -

    - This response confirms the receipt of your CHIP State Plan Amendment (CHIP SPA). You can expect a formal response to your submittal from CMS at a later date. -

    -

    - - If you have questions or did not expect this email, please contact - - - CHIPSPASubmissionMailBox@CMS.HHS.gov - -

    -

    - Thank you. -

    -
    +
    + + + +
    +

    +

    + Summary: +

    +

    +

    + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. +

    + + +
    + + + + +

    + This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You + can expect a formal response to your submittal to be issued within + 90 days, before + Jan 1, 2023 @ 11:59pm EST + . +

    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    +
    -
    + +

    + If you have any questions, please contact + + spa@cms.hhs.gov + + or your state lead. +

    +
    - - - - - - -
    +

    + Thank you. +

    +
    + + + + + + +
    + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    +
    + + + + + + +
    , + "debug": [Function], + "findAllByAltText": [Function], + "findAllByDisplayValue": [Function], + "findAllByLabelText": [Function], + "findAllByPlaceholderText": [Function], + "findAllByRole": [Function], + "findAllByTestId": [Function], + "findAllByText": [Function], + "findAllByTitle": [Function], + "findByAltText": [Function], + "findByDisplayValue": [Function], + "findByLabelText": [Function], + "findByPlaceholderText": [Function], + "findByRole": [Function], + "findByTestId": [Function], + "findByText": [Function], + "findByTitle": [Function], + "getAllByAltText": [Function], + "getAllByDisplayValue": [Function], + "getAllByLabelText": [Function], + "getAllByPlaceholderText": [Function], + "getAllByRole": [Function], + "getAllByTestId": [Function], + "getAllByText": [Function], + "getAllByTitle": [Function], + "getByAltText": [Function], + "getByDisplayValue": [Function], + "getByLabelText": [Function], + "getByPlaceholderText": [Function], + "getByRole": [Function], + "getByTestId": [Function], + "getByText": [Function], + "getByTitle": [Function], + "queryAllByAltText": [Function], + "queryAllByDisplayValue": [Function], + "queryAllByLabelText": [Function], + "queryAllByPlaceholderText": [Function], + "queryAllByRole": [Function], + "queryAllByTestId": [Function], + "queryAllByText": [Function], + "queryAllByTitle": [Function], + "queryByAltText": [Function], + "queryByDisplayValue": [Function], + "queryByLabelText": [Function], + "queryByPlaceholderText": [Function], + "queryByRole": [Function], + "queryByTestId": [Function], + "queryByText": [Function], + "queryByTitle": [Function], + "rerender": [Function], + "unmount": [Function], +} +`; + +exports[`Initial Submission State Email Snapshot Test > renders a TempExt Preview Template 1`] = ` +{ + "asFragment": [Function], + "baseElement":
    - Medicaid SPA CO-24-1234 Submitted + Appendix K Amendment Submitted
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
    - This response confirms that you submitted a Medicaid SPA to CMS for review: + This response confirms the submission of your 1915(c) Waiver to CMS for review: -
    -
    -

    - Details: -

    -
    +
    - Medicaid SPA ID + Initial Waiver Number :

    @@ -10287,7 +34714,45 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `

    - CO-24-1234 + CO-1234.R21.00 +

    + + + +
    + + + + + @@ -10407,18 +34872,16 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `
    +

    + Waiver Authority + : +

    +
    +

    + Amend

    +

    - This response confirms the receipt of your Medicaid State Plan Amendment - (SPA or your response to a SPA Request for Additional Information (RAI)). You can expect a formal response to your submittal to be issued - within 90 days, before Jan 1, 2023 @ 11:59pm EST. -

    -

    - This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. - Any other correspondence will be disregarded. + This response confirms the receipt of your Waiver request or your + response to a Waiver Request for Additional Information (RAI). You can + expect a formal response to your submittal to be issued within 90 days, + before Jan 1, 2023 @ 11:59pm EST.


    spa@cms.hhs.gov
    - . + or your state lead.

    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    @@ -10468,7 +34937,36 @@ exports[`renders a Waiver Contracting Preview Template 1`] = ` > - + + + + + + + +
    +

    + U.S. Centers for Medicare & Medicaid Services +

    +

    + © + 2023 + | 7500 Security Boulevard, Baltimore, MD 21244 +

    +
    + @@ -10496,9 +34994,9 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `

    - Temporary Extension MD-2343.R00.TE09 Submitted + CHIP SPA CO-24-1234 Submitted
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
    - This response confirms you have submitted a Temporary Extension to CMS for review + This is confirmation that you submitted a CHIP State Plan Amendment to CMS for review: +
    +
    +

    + Details: +

    +
    - MD + CO

    @@ -10702,83 +35210,7 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `

    - Temporary Extension Request Number - : -

    - - - - -
    -

    - MD-2343.R00.TE09 -

    -
    - - - - - - - -
    -

    - Temporary Extension Type - : -

    -
    -

    - 1915(b) -

    -
    - - - - @@ -10788,7 +35220,7 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `

    - Mar 2, 2023 @ 11:59pm EST + CO-24-1234

    @@ -10823,7 +35255,7 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `

    - Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you. + This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.

    @@ -10832,143 +35264,43 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `
    -

    - 90th Day Deadline + CHIP SPA Package ID :

    -
    -

    - Files: -

    - - - - - - - -
    - -

    - Waiver Extension Request - : -

    - -
    -
    - -

    - Waiver Extension Request - : -

    - -
    -
    - -

    - Waiver Extension Request - : -

    - -
    -
    -

    - - Temporary Extention Document for submission.pdf -
    -
    - - Second Extention Document for submission.pdf -
    -
    - - Third Extention Document for submission.pdf - -

    -

    - This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. - Any other correspondence will be disregarded. + This response confirms the receipt of your CHIP State Plan Amendment (CHIP SPA). You can expect a formal response to your submittal from CMS at a later date.

    - Thank you. -

    -
    - - - - + + If you have questions or did not expect this email, please contact + + + CHIPSPASubmissionMailBox@CMS.HHS.gov + +

    +

    + Thank you. +

    + +
    -
    - - - - - - -
    -

    - If you have any questions or did not expect this email, please contact - - spa@cms.hhs.gov - - or your state lead. -

    -
    -
    + + +
    @@ -10996,9 +35328,9 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `
    - 1915(b) Initial Submitted + Medicaid SPA CO-24-1234 Submitted
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
    - This response confirms the submission of your 1915(b) Initial waiver to CMS for review: + This response confirms that you submitted a Medicaid SPA to CMS for review:

    - Initial Waiver Number - : -

    - - -

    - CO-1234.R21.00 -

    - - - - - - - - @@ -11260,7 +35554,7 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `

    - 1915(b) + CO-24-1234

    @@ -11381,18 +35675,16 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `
    -

    - Waiver Authority + Medicaid SPA ID :

    - This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You - can expect a formal response to your submittal to be issued within - 90 days, before - Jan 1, 2023 @ 11:59pm EST - . + This response confirms the receipt of your Medicaid State Plan Amendment + (SPA or your response to a SPA Request for Additional Information (RAI)). You can expect a formal response to your submittal to be issued + within 90 days, before Jan 1, 2023 @ 11:59pm EST.

    - This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + This mailbox is for the submittal of State Plan Amendments and non-web based responses to Requests for Additional Information (RAI) on submitted SPAs only. Any other correspondence will be disregarded.


    - If you have any questions, please contact + If you have any questions or did not expect this email, please contact spa@cms.hhs.gov - or your state lead. + .

    @@ -11443,36 +35735,7 @@ exports[`renders a Waiver Contracting Preview Template 1`] = ` > - - - - - - - -
    -

    - U.S. Centers for Medicare & Medicaid Services -

    -

    - © - 2023 - | 7500 Security Boulevard, Baltimore, MD 21244 -

    -
    - + @@ -11500,9 +35763,9 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `
    - 1915(b) Initial Submitted + Temporary Extension MD-2343.R00.TE09 Submitted
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
    - This response confirms the submission of your 1915(b) Initial waiver to CMS for review: + This response confirms you have submitted a Temporary Extension to CMS for review -
    -
    -

    - Details: -

    -
    - CO + MD

    @@ -11716,7 +35969,7 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `

    - Initial Waiver Number + Temporary Extension Request Number :

    @@ -11726,7 +35979,7 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `

    - CO-9987.R21.00 + MD-2343.R00.TE09

    @@ -11754,7 +36007,7 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `

    - Waiver Authority + Temporary Extension Type :

    @@ -11770,44 +36023,6 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `
    - - - - - - - -
    -

    - Proposed Effective Date - : -

    -
    -

    - March 2, 2023 -

    -
    - Jan 1, 2023 @ 11:59pm EST + Mar 2, 2023 @ 11:59pm EST

    @@ -11875,7 +36090,7 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `

    - This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. + Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you.

    @@ -11884,52 +36099,93 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `
    -

    - This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You - can expect a formal response to your submittal to be issued within - 90 days, before - Jan 1, 2023 @ 11:59pm EST - . -

    +
    +

    + Files: +

    + + + + + + + +
    + +

    + Waiver Extension Request + : +

    + +
    +
    + +

    + Waiver Extension Request + : +

    + +
    +
    + +

    + Waiver Extension Request + : +

    + +
    +
    +

    + + Temporary Extention Document for submission.pdf +
    +
    + + Second Extention Document for submission.pdf +
    +
    + + Third Extention Document for submission.pdf + +

    +

    This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. Any other correspondence will be disregarded.

    -
    - - - - - - -
    -

    - If you have any questions, please contact - - spa@cms.hhs.gov - - or your state lead. -

    -

    @@ -11948,29 +36204,32 @@ exports[`renders a Waiver Contracting Preview Template 1`] = ` +


    @@ -12005,9 +36264,9 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `
    - 1915(b) Initial Submitted + Temporary Extension MD-2343.R00.TE09 Submitted
    -  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ +  ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏ ‌​‍‎‏
    - This response confirms the submission of your 1915(b) Initial waiver to CMS for review: + This response confirms you have submitted a Temporary Extension to CMS for review -
    -
    -

    - Details: -

    -

    - U.S. Centers for Medicare & Medicaid Services -

    -

    - © - 2023 - | 7500 Security Boulevard, Baltimore, MD 21244 + If you have any questions or did not expect this email, please contact + + spa@cms.hhs.gov + + or your state lead.

    - CO + MD

    @@ -12221,7 +36470,7 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `

    - Initial Waiver Number + Temporary Extension Request Number :

    @@ -12231,7 +36480,7 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `

    - CO-9987.R21.00 + MD-2343.R00.TE09

    @@ -12259,7 +36508,7 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `

    - Waiver Authority + Temporary Extension Type :

    @@ -12275,44 +36524,6 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `
    - - - - - - - -
    -

    - Proposed Effective Date - : -

    -
    -

    - March 2, 2023 -

    -
    - Jan 1, 2023 @ 11:59pm EST + Mar 2, 2023 @ 11:59pm EST

    @@ -12380,7 +36591,7 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `

    - This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. + Whoever fights monsters should see to it that in the process he does not become a monster. And if you gaze long enough into an abyss, the abyss will gaze back into you.

    @@ -12389,52 +36600,93 @@ exports[`renders a Waiver Contracting Preview Template 1`] = `
    -

    - This response confirms the receipt of your Waiver request or your response to a Waiver Request for Additional Information (RAI). You - can expect a formal response to your submittal to be issued within - 90 days, before - Jan 1, 2023 @ 11:59pm EST - . -

    -

    - This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. - Any other correspondence will be disregarded. -


    +

    + Files: +

    - - - + + +
    +
    + +

    + Waiver Extension Request + : +

    + +
    +
    + +

    + Waiver Extension Request + : +

    + +
    +
    + +

    + Waiver Extension Request + : +

    + +
    +

    - If you have any questions, please contact - - spa@cms.hhs.gov - - or your state lead. + + Temporary Extention Document for submission.pdf +
    +
    + + Second Extention Document for submission.pdf +
    +
    + + Third Extention Document for submission.pdf +

    +

    + This mailbox is for the submittal of Section 1915(b) and 1915(c) Waivers, responses to Requests for Additional Information (RAI) on Waivers, and extension requests on Waivers only. + Any other correspondence will be disregarded. +

    @@ -12453,29 +36705,32 @@ exports[`renders a Waiver Contracting Preview Template 1`] = ` +


    diff --git a/lib/libs/package.json b/lib/libs/package.json index ed98a4d011..8f9e96ded8 100644 --- a/lib/libs/package.json +++ b/lib/libs/package.json @@ -21,7 +21,7 @@ "vitest": "2.0.5" }, "scripts": { - "email-dev": "email dev --dir email/preview", + "email-dev": "email dev --dir preview", "test": "vitest", "test:coverage": "vitest run --coverage.enabled true", "test:ui": "vitest --ui" From b92334dc11d4dc083a33d839a69f3f63ebab28b5 Mon Sep 17 00:00:00 2001 From: Jon Schaffer Date: Thu, 9 Jan 2025 13:43:24 -0500 Subject: [PATCH 09/11] Feat(playwright performance): Pw perf tests (#959) * feat: initial perf tests for routes fix: refactor * Fix: updated per review comments --------- Co-authored-by: asharonbaltazar <58940073+asharonbaltazar@users.noreply.github.com> --- test/e2e/tests/a11y/index.spec.ts | 60 ++++--------------------------- test/e2e/tests/fixtures/routes.ts | 50 ++++++++++++++++++++++++++ test/e2e/tests/perf/index.spec.ts | 42 ++++++++++++++++++++++ 3 files changed, 99 insertions(+), 53 deletions(-) create mode 100644 test/e2e/tests/fixtures/routes.ts create mode 100644 test/e2e/tests/perf/index.spec.ts diff --git a/test/e2e/tests/a11y/index.spec.ts b/test/e2e/tests/a11y/index.spec.ts index 637148ce3f..d61044fe01 100644 --- a/test/e2e/tests/a11y/index.spec.ts +++ b/test/e2e/tests/a11y/index.spec.ts @@ -1,34 +1,11 @@ import { test, expect } from "@playwright/test"; import AxeBuilder from "@axe-core/playwright"; +import * as routes from "../fixtures/routes"; -const staticRoutes = [ - "/", - "/dashboard", - "/faq", - "/profile", - "/new-submission", - "/new-submission/spa", - "/new-submission/spa/medicaid", - "/new-submission/spa/chip", - "/new-submission/waiver", - "/new-submission/waiver/b", - "/new-submission/waiver/b/b4", - "/new-submission/waiver/b/capitated", - "/new-submission/spa/medicaid/landing/medicaid-eligibility", - "/new-submission/waiver/b/capitated/amendment/create", - "/new-submission/waiver/b/capitated/renewal/create", - "/new-submission/waiver/b/capitated/initial/create", - "/new-submission/waiver/b/b4/initial/create", - "/new-submission/waiver/b/b4/amendment/create", - "/new-submission/waiver/b/b4/renewal/create", - "/new-submission/spa/medicaid/create", - "/new-submission/spa/chip/create", - "/new-submission/waiver/app-k", - "/new-submission/waiver/temporary-extensions", -]; +const STATIC_ROUTES = routes.STATIC; -test.describe("test a11y on static routes", {tag: ["@CI"]}, () => { - for (const route of staticRoutes) { +test.describe("test a11y on static routes", {tag: ["@CI", "@a11y"] }, () => { + for (const route of STATIC_ROUTES) { test(`${route} should not have any automatically detectable accessibility issues`, async ({ page, }) => { @@ -44,34 +21,11 @@ test.describe("test a11y on static routes", {tag: ["@CI"]}, () => { } }); -const webformRoutes = [ - "/guides/abp", - "/webform/g3/202401", - "/webform/g2b/202401", - "/webform/g2a/202401", - "/webform/g1/202401", - "/webform/cs8/202401", - "/webform/cs3/202401", - "/webform/cs7/202401", - "/webform/abp11/202401", - "/webform/abp10/202401", - "/webform/abp9/202401", - "/webform/abp7/202401", - "/webform/abp6/202401", - "/webform/abp5/202401", - "/webform/abp4/202401", - "/webform/abp3_1/202401", - "/webform/abp3/202401", - "/webform/abp2c/202401", - "/webform/abp2b/202401", - "/webform/abp2a/202401", - "/webform/abp1/202401", - "/webform/abp1/202402", -]; +const WEBFORM_ROUTES = routes.WEBFORM; // Add to CI when prior to going to Prod -test.describe("test a11y on webform routes", {tag: ["@CI"]}, () => { - for (const route of webformRoutes) { +test.describe("test a11y on webform routes", {tag: ["@CI", "@a11y"] }, () => { + for (const route of WEBFORM_ROUTES) { test(`${route} should not have any automatically detectable accessibility issues`, async ({ page, }) => { diff --git a/test/e2e/tests/fixtures/routes.ts b/test/e2e/tests/fixtures/routes.ts new file mode 100644 index 0000000000..a88d3a2f56 --- /dev/null +++ b/test/e2e/tests/fixtures/routes.ts @@ -0,0 +1,50 @@ +export const STATIC = [ + "/", + "/dashboard", + "/faq", + "/profile", + "/new-submission", + "/new-submission/spa", + "/new-submission/spa/medicaid", + "/new-submission/spa/chip", + "/new-submission/waiver", + "/new-submission/waiver/b", + "/new-submission/waiver/b/b4", + "/new-submission/waiver/b/capitated", + "/new-submission/spa/medicaid/landing/medicaid-eligibility", + "/new-submission/waiver/b/capitated/amendment/create", + "/new-submission/waiver/b/capitated/renewal/create", + "/new-submission/waiver/b/capitated/initial/create", + "/new-submission/waiver/b/b4/initial/create", + "/new-submission/waiver/b/b4/amendment/create", + "/new-submission/waiver/b/b4/renewal/create", + "/new-submission/spa/medicaid/create", + "/new-submission/spa/chip/create", + "/new-submission/waiver/app-k", + "/new-submission/waiver/temporary-extensions", +]; + +export const WEBFORM = [ + "/guides/abp", + "/webform/g3/202401", + "/webform/g2b/202401", + "/webform/g2a/202401", + "/webform/g1/202401", + "/webform/cs8/202401", + "/webform/cs3/202401", + "/webform/cs7/202401", + "/webform/abp11/202401", + "/webform/abp10/202401", + "/webform/abp9/202401", + "/webform/abp7/202401", + "/webform/abp6/202401", + "/webform/abp5/202401", + "/webform/abp4/202401", + "/webform/abp3_1/202401", + "/webform/abp3/202401", + "/webform/abp2c/202401", + "/webform/abp2b/202401", + "/webform/abp2a/202401", + "/webform/abp1/202401", + "/webform/abp1/202402", +]; \ No newline at end of file diff --git a/test/e2e/tests/perf/index.spec.ts b/test/e2e/tests/perf/index.spec.ts new file mode 100644 index 0000000000..51071f7115 --- /dev/null +++ b/test/e2e/tests/perf/index.spec.ts @@ -0,0 +1,42 @@ +import { test } from "@playwright/test"; +import * as routes from "../fixtures/routes"; + +const STATIC_ROUTES = routes.STATIC; + +test.describe("test performance on static routes", { tag: ["@perf"] }, () => { + for (const route of STATIC_ROUTES) { + test(`Time to First Byte for ${route}`, { tag: ["@ttfb"] }, async({ page }) => { + await page.goto(route); + const ttfb = await page.evaluate(() => performance.timing.responseStart - performance.timing.requestStart) + console.log(`TTFB for ${route}: ${ttfb} ms`); + }); + + test(`Largest Contentful Paint for ${route}`, { tag: ["@lcp"] }, async ({ page }) => { + await page.goto(route); + const lcp = await page.evaluate(async () => { + return new Promise((resolve) => { + new PerformanceObserver((entryList) => { + const entries = entryList.getEntries(); + resolve(entries[entries.length - 1]); + }).observe({ type: 'largest-contentful-paint', buffered: true }); + }); + }); + + console.log(`Largest Contentful Paint for ${route} is: ${lcp.startTime} ms`); + }); + + test(`First Contentful Paint for ${route}`, { tag: ["@fcp"] }, async ({ page }) => { + await page.goto(route); + const fcp = await page.evaluate(async () => { + return new Promise((resolve) => { + new PerformanceObserver((entryList) => { + const entries = entryList.getEntries(); + resolve(entries[0]); + }).observe({ type: 'paint', buffered: true }); + }); + }); + + console.log(`First Contentful Paint for ${route} is: ${fcp.startTime} ms`); + }); + } +}); \ No newline at end of file From d4dae288fe288b4588ca9c934666aa892f2f1781 Mon Sep 17 00:00:00 2001 From: RanyeM <40363896+RanyeM@users.noreply.github.com> Date: Thu, 9 Jan 2025 14:31:17 -0500 Subject: [PATCH 10/11] feat(ui): Adding new FAQ to FAQ page (#970) * feature: adding new FAQ to FAQ page * feature: question should open corresponding section * fix: corrected code back to faq page direct link * fix: removed id * fix: #5 and #6 to expanded section * fix: test coverage * revert package json to what is on main * fix(email): Fixes an issue with Outlook not correctly displaying the OneMAC logo and header (#972) * fixed index test * fix(test): Create mock for calling lambdas (#973) * Added msw endpoints for Lambda, Step Functions, Secure Token Services, and other related services * Added/updated test data to support new endpoints * Updated tests to use the new endpoints instead of mocking individually * fix(email): switch email logo back to using url * fix(schema): remove logic for determining next business day for `submissionDate` (#980) * fix: remove logic for determining next business day for `submissionDate` * fix: update `submissionDate` value * feat(ui): Remove status date from package details pages for all users (#965) * fix(initial verbiage fix): Email verbiage fixes from qa (#974) * correct verbage for med and chip spa * fix issues with verbiage need confirmation * remove comment * add date and attachment logic * update snapshots * Update ChipSpaState.tsx * test(email): proces email test (#979) * feat(test)proces email test * Removed console.log * linter correction * removed a ine * remove brackets * add region * Address change reqeust * feat(test)-submit lambda (#987) * feat(test)-submit lambda * Update withdrawpackage to withdrawrai * linter corrections * Fix some test * Test for malformed objects * Remove import vs code added in * remove console.log * Updatign to use get requestcontext * feat(test) fix email test (#991) * feat(test) fix email test * Update processEmails.test.ts * fix(os) helpers for getting domain and index for opensearch (#992) * created helpers for getting domain and index for opensearch * fixed import * feat(test) updates to s3 calls on backend (#985) * updates to s3 calls on backend * feat(test)-unauthorized submission test (#996) * feat(amend): Add waiver amendment emails (#993) * Feat(playwright performance): Pw perf tests (#959) * feat: initial perf tests for routes fix: refactor * Fix: updated per review comments --------- Co-authored-by: asharonbaltazar <58940073+asharonbaltazar@users.noreply.github.com> --------- Co-authored-by: 13bfrancis <40218571+13bfrancis@users.noreply.github.com> Co-authored-by: Ty Bolt Co-authored-by: Tiffany Forkner Co-authored-by: asharonbaltazar <58940073+asharonbaltazar@users.noreply.github.com> Co-authored-by: James Dinh Co-authored-by: Thomas Walker Co-authored-by: Benjamin Paige Co-authored-by: Jon Schaffer --- .../src/components/Banner/MMDLSpaBanner.tsx | 10 ++- .../src/components/Layout/index.test.tsx | 3 + .../features/faq/content/oneMACFAQContent.tsx | 82 ++++++++++++++++++- react-app/src/features/welcome/index.tsx | 2 +- 4 files changed, 91 insertions(+), 6 deletions(-) diff --git a/react-app/src/components/Banner/MMDLSpaBanner.tsx b/react-app/src/components/Banner/MMDLSpaBanner.tsx index 9916be1bf9..b49d97d9ce 100644 --- a/react-app/src/components/Banner/MMDLSpaBanner.tsx +++ b/react-app/src/components/Banner/MMDLSpaBanner.tsx @@ -1,6 +1,8 @@ import { useState } from "react"; import { Cross2Icon } from "@radix-ui/react-icons"; import { InfoCircledIcon } from "@radix-ui/react-icons"; +import { FAQ_TAB } from "@/router"; +import { Link } from "react-router"; const MMDLAlertBanner = () => { const [isVisible, setIsVisible] = useState(true); const handleDismiss = () => { @@ -26,14 +28,14 @@ const MMDLAlertBanner = () => {
    - Go to FAQs - + diff --git a/react-app/src/components/Layout/index.test.tsx b/react-app/src/components/Layout/index.test.tsx index af52b70377..80b8394c86 100644 --- a/react-app/src/components/Layout/index.test.tsx +++ b/react-app/src/components/Layout/index.test.tsx @@ -17,6 +17,9 @@ import { setMockUsername, makoStateSubmitter, AUTH_CONFIG } from "mocks"; vi.mock("../UsaBanner", () => ({ UsaBanner: () => null })); vi.mock("../Footer", () => ({ Footer: () => null })); vi.mock("@/components", () => ({ + Layout: ({ children }: { children: React.ReactNode }) => ( +
    {children}
    + ), SimplePageContainer: ({ children }: { children: React.ReactNode }) => children, UserPrompt: () => null, Banner: () => null, diff --git a/react-app/src/features/faq/content/oneMACFAQContent.tsx b/react-app/src/features/faq/content/oneMACFAQContent.tsx index d92a14c950..36fafd9572 100644 --- a/react-app/src/features/faq/content/oneMACFAQContent.tsx +++ b/react-app/src/features/faq/content/oneMACFAQContent.tsx @@ -220,6 +220,86 @@ export const oneMACFAQContent: FAQContent[] = [ { sectionTitle: "State Plan Amendments (SPAs)", qanda: [ + { + anchorText: "spa-admendments", + question: "Which state plan amendments (SPAs) can I submit in OneMAC?", + answerJSX: ( +
    +

    + All Medicaid and CHIP state plan amendments (SPAs), except + Medicaid SPA submissions processed in the Medicaid & CHIP Program System portal + (MACPro), must be submitted in OneMac. +

    +

    + Starting [month,date,year,] Medicaid Model Data Lab (MMDL) no longer accepts new + submissions for these SPAs, including: +

    +
      +
    • Medicaid Alternative Benefit Plan (ABP)
    • +
    • Medicaid Premiums & Cost Sharing
    • +
    • CHIP Eligibility
    • +
    +

    + Pending SPAs submitted in MMDL before [month, day, year,] including those on RAI + (request for additional information) status, will continue to be processed through + MMDL. +

    +

    + Templates and implementation guides for OneMac SPAs can be downloaded from the + respective FAQ: +

    + +

    For more information, refer to CMCS Information Bulletin #25-TBD.

    +
    + ), + }, { anchorText: "spa-id-format", question: "What format is used to enter a SPA ID?", @@ -679,7 +759,7 @@ export const oneMACFAQContent: FAQContent[] = [ anchorText: "abp-spa-templates", question: "Where can I download Medicaid Alternative Benefit Plan (ABP) SPA templates?", answerJSX: ( -
    +

    Medicaid Alternative Benefit Plan (ABP) SPA templates can be downloaded at the links below. After downloading and completing the templates you need, upload them as part of diff --git a/react-app/src/features/welcome/index.tsx b/react-app/src/features/welcome/index.tsx index 3ca18c4042..13af721679 100644 --- a/react-app/src/features/welcome/index.tsx +++ b/react-app/src/features/welcome/index.tsx @@ -54,7 +54,7 @@ export const Welcome = () => { Medicaid Alternative Benefit Plan, Premium and Cost Sharing, and CHIP Eligibility SPA templates and implementation guides are now available in OneMAC. New submissions for these SPA types are submitted through the OneMAC system effective [add date].{" "} - + Learn more

    From d68c42ebfdf0056c0943535329787b981bee6787 Mon Sep 17 00:00:00 2001 From: Thomas Walker Date: Thu, 9 Jan 2025 15:27:13 -0500 Subject: [PATCH 11/11] feat(test) Email handler test (#998) * feat(test) Email handler test * remove a console.log --- lib/lambda/processEmailsHandlers.test.ts | 134 +++++++++++++++++++++++ 1 file changed, 134 insertions(+) create mode 100644 lib/lambda/processEmailsHandlers.test.ts diff --git a/lib/lambda/processEmailsHandlers.test.ts b/lib/lambda/processEmailsHandlers.test.ts new file mode 100644 index 0000000000..91017c9649 --- /dev/null +++ b/lib/lambda/processEmailsHandlers.test.ts @@ -0,0 +1,134 @@ +import { describe, it, expect, vi } from "vitest"; +import { Context } from "aws-lambda"; +import { SESClient } from "@aws-sdk/client-ses"; +import { handler } from "./processEmails"; +import { KafkaRecord, KafkaEvent } from "shared-types"; +import { Authority } from "shared-types"; + +const nms = "new-medicaid-submission"; +const ncs = "new-chip-submission"; +const tempExtension = "temp-extension"; +const withdrawPackage = "withdraw-package"; +const contractingInitial = "contracting-initial"; +const capitatedInitial = "capitated-initial"; + +describe("process emails Handler", () => { + it.each([ + [`should send an email for ${nms} with ${Authority.MED_SPA}`, Authority.MED_SPA, nms], + [`should send an email for ${nms} with ${Authority.CHIP_SPA}`, Authority.CHIP_SPA, nms], + [`should send an email for ${nms} with ${Authority["1915b"]}`, Authority["1915b"], nms], + [`should send an email for ${nms} with ${Authority["1915c"]}`, Authority["1915c"], nms], + [`should send an email for ${ncs} with ${Authority.MED_SPA}`, Authority.MED_SPA, ncs], + [`should send an email for ${ncs} with ${Authority.CHIP_SPA}`, Authority.CHIP_SPA, ncs], + [`should send an email for ${ncs} with ${Authority["1915b"]}`, Authority["1915b"], ncs], + [`should send an email for ${ncs} with ${Authority["1915c"]}`, Authority["1915c"], ncs], + [ + `should send an email for ${tempExtension} with ${Authority.MED_SPA}`, + Authority.MED_SPA, + tempExtension, + ], + [ + `should send an email for ${tempExtension} with ${Authority.CHIP_SPA}`, + Authority.CHIP_SPA, + tempExtension, + ], + [ + `should send an email for ${tempExtension} with ${Authority["1915b"]}`, + Authority["1915b"], + tempExtension, + ], + [ + `should send an email for ${tempExtension} with ${Authority["1915c"]}`, + Authority["1915c"], + tempExtension, + ], + [ + `should send an email for ${withdrawPackage} with ${Authority.MED_SPA}`, + Authority.MED_SPA, + withdrawPackage, + ], + [ + `should send an email for ${withdrawPackage} with ${Authority.CHIP_SPA}`, + Authority.CHIP_SPA, + withdrawPackage, + ], + [ + `should send an email for ${withdrawPackage} for ${ncs} with ${Authority["1915b"]}`, + Authority["1915b"], + withdrawPackage, + ], + [ + `should send an email for ${withdrawPackage} with ${Authority["1915c"]}`, + Authority["1915c"], + withdrawPackage, + ], + [ + `should send an email for ${contractingInitial} with ${Authority.MED_SPA}`, + Authority.MED_SPA, + contractingInitial, + ], + [ + `should send an email for ${contractingInitial} with ${Authority.CHIP_SPA}`, + Authority.CHIP_SPA, + contractingInitial, + ], + [ + `should send an email for ${contractingInitial} with ${Authority["1915b"]}`, + Authority["1915b"], + contractingInitial, + ], + [ + `should send an email for ${contractingInitial} with ${Authority["1915c"]}`, + Authority["1915c"], + contractingInitial, + ], + [ + `should send an email for ${capitatedInitial} with ${Authority.MED_SPA}`, + Authority.MED_SPA, + capitatedInitial, + ], + [ + `should send an email for ${capitatedInitial} with ${Authority.CHIP_SPA}`, + Authority.CHIP_SPA, + capitatedInitial, + ], + [ + `should send an email for ${capitatedInitial} with ${Authority["1915b"]}`, + Authority["1915b"], + capitatedInitial, + ], + [ + `should send an email for ${capitatedInitial} with ${Authority["1915c"]}`, + Authority["1915c"], + capitatedInitial, + ], + ])("%s", async (_, auth, eventType) => { + const callback = vi.fn(); + const secSPY = vi.spyOn(SESClient.prototype, "send"); + const mockEvent: KafkaEvent = { + records: { + "mock-topic": [ + { + key: Buffer.from("VA").toString("base64"), + value: Buffer.from( + JSON.stringify({ + origin: "mako", + event: eventType, + authority: auth, + }), + ).toString("base64"), + headers: {}, + timestamp: 1732645041557, + offset: "0", + partition: 0, + topic: "mock-topic", + } as unknown as KafkaRecord, + ], + }, + eventSource: "", + bootstrapServers: "", + }; + await handler(mockEvent, {} as Context, callback); + expect(secSPY).toHaveBeenCalledTimes(2); + }); +});

    - U.S. Centers for Medicare & Medicaid Services -

    -

    - © - 2023 - | 7500 Security Boulevard, Baltimore, MD 21244 + If you have any questions or did not expect this email, please contact + + spa@cms.hhs.gov + + or your state lead.