diff --git a/lib/lambda/getForm.test.ts b/lib/lambda/getForm.test.ts
index 4e58ab87cf..c64cd0a0e2 100644
--- a/lib/lambda/getForm.test.ts
+++ b/lib/lambda/getForm.test.ts
@@ -1,14 +1,6 @@
import { describe, it, expect, vi, beforeEach } from "vitest";
import { getForm } from "./getForm";
-
-vi.mock("../libs/webforms", () => ({
- webformVersions: {
- TESTFORM: {
- v022024: { name: "Test Form", data: "hello world" },
- },
- },
-}));
-
+import { webformVersions } from "libs/webforms";
describe("forms handler", () => {
beforeEach(() => {
// Reset mocks before each test
@@ -42,10 +34,18 @@ describe("forms handler", () => {
it("returns 200 with form data if form ID and version are valid", async () => {
const event = {
- body: JSON.stringify({ formId: "TESTFORM", formVersion: "022024" }),
+ body: JSON.stringify({ formId: "ABP1", formVersion: "202401" }),
+ };
+ const result = await getForm(event as any);
+ expect(result.statusCode).toBe(200);
+ expect(JSON.parse(result.body).header).toBe(webformVersions["ABP1"]["v202401"].header);
+ });
+ it("returns 200 with form data if form ID and version are valid", async () => {
+ const event = {
+ body: JSON.stringify({ formId: "ABP1", formVersion: "" }),
};
const result = await getForm(event as any);
expect(result.statusCode).toBe(200);
- expect(result.body).toContain("Test Form");
+ expect(result.body).toBe("{}");
});
});
diff --git a/lib/lambda/search.test.ts b/lib/lambda/search.test.ts
index 124064852e..4b49522ca3 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(13);
+ expect(body?.hits?.hits?.length).toEqual(14);
});
it("should handle errors during processing", async () => {
diff --git a/lib/lambda/update/updatePackage.test.ts b/lib/lambda/update/updatePackage.test.ts
new file mode 100644
index 0000000000..89e4514a6d
--- /dev/null
+++ b/lib/lambda/update/updatePackage.test.ts
@@ -0,0 +1,288 @@
+import { describe, it, expect, vi, beforeEach } from "vitest";
+import { handler } from "./updatePackage";
+import { APIGatewayEvent } from "node_modules/shared-types";
+
+import {
+ EXISTING_ITEM_ID,
+ EXISTING_ITEM_PENDING_ID,
+ CAPITATED_INITIAL_ITEM_ID,
+ CAPITATED_INITIAL_NEW_ITEM_ID,
+ WEIRD_ID,
+} from "mocks";
+vi.mock("libs/handler-lib", () => ({
+ response: vi.fn((data) => data),
+}));
+
+describe("handler", () => {
+ beforeEach(() => {
+ vi.clearAllMocks();
+ process.env.topicName = "test-topic";
+ });
+
+ it("should return 400 if event body is missing", async () => {
+ const event = {} as APIGatewayEvent;
+ const result = await handler(event);
+ const expectedResult = { statusCode: 400, body: { message: "Event body required" } };
+
+ expect(result).toStrictEqual(expectedResult);
+ });
+
+ it("should return 400 if package ID is not found", async () => {
+ const noActionevent = {
+ body: JSON.stringify({ packageId: "123", changeReason: "Nunya" }),
+ } as APIGatewayEvent;
+
+ const resultPackage = await handler(noActionevent);
+
+ expect(resultPackage.statusCode).toBe(400);
+ });
+ it("should return 400 if action is not found", async () => {
+ const noApackageEvent = {
+ body: JSON.stringify({ action: "123", changeReason: "Nunya" }),
+ } as APIGatewayEvent;
+
+ const resultAction = await handler(noApackageEvent);
+
+ expect(resultAction.statusCode).toBe(400);
+ });
+ it("should get a package", async () => {
+ const noActionevent = {
+ body: JSON.stringify({ packageId: "123", action: "delete", changeReason: "Nunya" }),
+ } as APIGatewayEvent;
+
+ const result = await handler(noActionevent);
+
+ const expectedResult = {
+ statusCode: 404,
+ body: { message: "No record found for the given id" },
+ };
+ expect(result).toStrictEqual(expectedResult);
+ });
+ it("should delete a package", async () => {
+ const noActionevent = {
+ body: JSON.stringify({
+ packageId: EXISTING_ITEM_ID,
+ action: "delete",
+ changeReason: "Nunya",
+ }),
+ } as APIGatewayEvent;
+
+ const result = await handler(noActionevent);
+
+ const expectedResult = {
+ statusCode: 200,
+ body: { message: "MD-00-0000 has been deleted." },
+ };
+ expect(result).toStrictEqual(expectedResult);
+ });
+ it("should delete a package but no topic name", async () => {
+ process.env.topicName = "";
+ const noActionevent = {
+ body: JSON.stringify({
+ packageId: EXISTING_ITEM_ID,
+ action: "delete",
+ changeReason: "Nunya",
+ }),
+ } as APIGatewayEvent;
+
+ const result = await handler(noActionevent);
+
+ const expectedResult = {
+ statusCode: 500,
+ body: { message: "Topic name is not defined" },
+ };
+ expect(result).toStrictEqual(expectedResult);
+ });
+
+ it("should fail to update an ID on a package - missing new iD", async () => {
+ const noActionevent = {
+ body: JSON.stringify({
+ packageId: EXISTING_ITEM_ID,
+ action: "update-id",
+ changeReason: "Nunya",
+ }),
+ } as APIGatewayEvent;
+
+ const result = await handler(noActionevent);
+
+ const expectedResult = {
+ statusCode: 400,
+ body: { message: "New ID required to update package" },
+ };
+ expect(result).toStrictEqual(expectedResult);
+ });
+ it("should fail to update an ID on a package - missing or same ID", async () => {
+ const noActionevent = {
+ body: JSON.stringify({
+ packageId: EXISTING_ITEM_ID,
+ action: "update-id",
+ changeReason: "Nunya",
+ }),
+ } as APIGatewayEvent;
+
+ const result = await handler(noActionevent);
+
+ const expectedResult = {
+ statusCode: 400,
+ body: { message: "New ID required to update package" },
+ };
+ expect(result).toStrictEqual(expectedResult);
+ });
+ it("should fail to update an ID on a package - missing or same ID", async () => {
+ const noActionevent = {
+ body: JSON.stringify({
+ packageId: EXISTING_ITEM_ID,
+ action: "update-id",
+ changeReason: "Nunya",
+ updatedId: EXISTING_ITEM_PENDING_ID,
+ }),
+ } as APIGatewayEvent;
+
+ const result = await handler(noActionevent);
+
+ const expectedResult = {
+ statusCode: 400,
+ body: { message: "This ID already exists" },
+ };
+ expect(result).toStrictEqual(expectedResult);
+ });
+ it("should update an ID on a package", async () => {
+ const noActionevent = {
+ body: JSON.stringify({
+ packageId: CAPITATED_INITIAL_ITEM_ID,
+ action: "update-id",
+ changeReason: "Nunya",
+ updatedId: CAPITATED_INITIAL_NEW_ITEM_ID,
+ }),
+ } as APIGatewayEvent;
+
+ const result = await handler(noActionevent);
+
+ const expectedResult = {
+ statusCode: 200,
+ body: {
+ message: `The ID of package ${CAPITATED_INITIAL_ITEM_ID} has been updated to ${CAPITATED_INITIAL_NEW_ITEM_ID}.`,
+ },
+ };
+ expect(result).toStrictEqual(expectedResult);
+ });
+ it("should fail to update a package ID with no topic name", async () => {
+ process.env.topicName = "";
+ const noActionevent = {
+ body: JSON.stringify({
+ packageId: CAPITATED_INITIAL_ITEM_ID,
+ action: "update-id",
+ changeReason: "Nunya",
+ updatedId: "SS-1235.R00.00",
+ }),
+ } as APIGatewayEvent;
+
+ const result = await handler(noActionevent);
+ const expectedResult = {
+ statusCode: 500,
+ body: { message: "Topic name is not defined" },
+ };
+ expect(result).toStrictEqual(expectedResult);
+ });
+
+ it("should fail to update a package ID with bad new id format", async () => {
+ const noActionevent = {
+ body: JSON.stringify({
+ packageId: CAPITATED_INITIAL_ITEM_ID,
+ action: "update-id",
+ changeReason: "Nunya",
+ updatedId: "SS-120",
+ }),
+ } as APIGatewayEvent;
+
+ const result = await handler(noActionevent);
+ const expectedResult =
+ "The Initial Waiver Number must be in the format of SS-####.R00.00 or SS-#####.R00.00";
+
+ expect(JSON.parse(result?.body)[0].message).toStrictEqual(expectedResult);
+ });
+ it("should fail to update a package with bad existing id format", async () => {
+ const noActionevent = {
+ body: JSON.stringify({
+ packageId: WEIRD_ID,
+ action: "update-id",
+ changeReason: "Nunya",
+ updatedId: "SS-120",
+ }),
+ } as APIGatewayEvent;
+
+ const result = await handler(noActionevent);
+ const expectedResult = "Cannot read properties of undefined (reading 'baseSchema')";
+ expect(result?.statusCode).toStrictEqual(500);
+ expect(result?.body.message).toStrictEqual(expectedResult);
+ });
+ it("should fail to update a package - no topic name ", async () => {
+ process.env.topicName = "";
+ const noActionevent = {
+ body: JSON.stringify({
+ packageId: WEIRD_ID,
+ action: "update-values",
+ changeReason: "Nunya",
+ updatedFields: {},
+ }),
+ } as APIGatewayEvent;
+
+ const result = await handler(noActionevent);
+ const expectedResult = {
+ statusCode: 500,
+ body: { message: "Topic name is not defined" },
+ };
+ expect(result).toStrictEqual(expectedResult);
+ });
+ it("should fail to update a package - No valid fields ", async () => {
+ const noActionevent = {
+ body: JSON.stringify({
+ packageId: WEIRD_ID,
+ action: "update-values",
+ changeReason: "Nunya",
+ updatedFields: { badfield: "nothing" },
+ }),
+ } as APIGatewayEvent;
+
+ const result = await handler(noActionevent);
+ const expectedResult = {
+ statusCode: 400,
+ body: { message: "Cannot update invalid field(s): badfield" },
+ };
+ expect(result).toStrictEqual(expectedResult);
+ });
+ it("should fail to update a package - Id can not be updated ", async () => {
+ const noActionevent = {
+ body: JSON.stringify({
+ packageId: WEIRD_ID,
+ action: "update-values",
+ changeReason: "Nunya",
+ updatedFields: { id: "cant update ID here" },
+ }),
+ } as APIGatewayEvent;
+
+ const result = await handler(noActionevent);
+ const expectedResult = {
+ statusCode: 400,
+ body: { message: "ID is not a valid field to update" },
+ };
+ expect(result).toStrictEqual(expectedResult);
+ });
+ it("should fail to update a package - nothing to update ", async () => {
+ const noActionevent = {
+ body: JSON.stringify({
+ packageId: CAPITATED_INITIAL_ITEM_ID,
+ action: "update-values",
+ changeReason: "Nunya",
+ updatedFields: { state: "TX" },
+ }),
+ } as APIGatewayEvent;
+
+ const result = await handler(noActionevent);
+ const expectedResult = {
+ statusCode: 200,
+ body: { message: `state has been updated in package ${CAPITATED_INITIAL_ITEM_ID}.` },
+ };
+ expect(result).toStrictEqual(expectedResult);
+ });
+});
diff --git a/lib/lambda/update/updatePackage.ts b/lib/lambda/update/updatePackage.ts
index dd9c4109f5..62eba97ad4 100644
--- a/lib/lambda/update/updatePackage.ts
+++ b/lib/lambda/update/updatePackage.ts
@@ -102,7 +102,7 @@ const sendUpdateIdMessage = async ({
...remainingFields
} = currentPackage._source;
- if (!updatedId) {
+ if (updatedId === currentPackage._id) {
return response({
statusCode: 400,
body: { message: "New ID required to update package" },
@@ -111,7 +111,7 @@ const sendUpdateIdMessage = async ({
// check if a package with this new ID already exists
const packageExists = await getPackage(updatedId);
- if (packageExists) {
+ if (packageExists?.found) {
return response({
statusCode: 400,
body: { message: "This ID already exists" },
@@ -121,13 +121,6 @@ const sendUpdateIdMessage = async ({
const packageEvent = await getPackageType(currentPackage._id);
const packageSubmissionTypeSchema = events[packageEvent as keyof typeof events].baseSchema;
- if (!packageSubmissionTypeSchema) {
- return response({
- statusCode: 500,
- body: { message: "Could not validate the ID of this type of package." },
- });
- }
-
const idSchema = packageSubmissionTypeSchema.shape.id;
const parsedId = idSchema.safeParse(updatedId);
@@ -178,7 +171,21 @@ export const handler = async (event: APIGatewayEvent) => {
const parseEventBody = (body: unknown) => {
return updatePackageEventBodySchema.parse(typeof body === "string" ? JSON.parse(body) : body);
};
-
+ let body = {
+ packageId: "",
+ action: "",
+ };
+ if (typeof event.body === "string") {
+ body = JSON.parse(event.body);
+ } else {
+ body = event.body;
+ }
+ if (!body.packageId || !body.action) {
+ return response({
+ statusCode: 400,
+ body: { message: "Package ID and action are required" },
+ });
+ }
const {
packageId,
action,
@@ -187,16 +194,8 @@ export const handler = async (event: APIGatewayEvent) => {
changeReason,
} = parseEventBody(event.body);
- if (!packageId || !action) {
- return response({
- statusCode: 400,
- body: { message: "Package ID and action are required" },
- });
- }
-
const currentPackage = await getPackage(packageId);
-
- if (!currentPackage) {
+ if (!currentPackage || currentPackage.found == false) {
return response({
statusCode: 404,
body: { message: "No record found for the given id" },
@@ -218,10 +217,6 @@ export const handler = async (event: APIGatewayEvent) => {
changeReason,
});
}
- return response({
- statusCode: 400,
- body: { message: "Could not update package." },
- });
} catch (err) {
console.error("Error has occured modifying package:", err);
return response({
diff --git a/lib/libs/email/content/email-components.tsx b/lib/libs/email/content/email-components.tsx
index 12712ad7d8..59f1746b1b 100644
--- a/lib/libs/email/content/email-components.tsx
+++ b/lib/libs/email/content/email-components.tsx
@@ -147,7 +147,7 @@ const Attachments = ({
{Object.entries(attachments).map(([key, group]) => {
if (!group?.files?.length) return null;
- return (
+ return group.files.map((file, index) => (
}
-
- ))}
+ {" "}
+
+
}
-
- ))}
+ {file.filename}
This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.
@@ -460,6 +460,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Amendment Waiver
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Amendment Waiver
- The OneMAC Submission Portal received a CHIP State Plan Amendment
+ The OneMAC Submission Portal received a CHIP State Plan Amendment:
-
-
- Details:
-
-
@@ -687,7 +679,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver
style="color: rgb(6, 125, 247); text-decoration: none;"
target="_blank"
>
- https://mako-dev.cms.gov/
+ this link
.
This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.
@@ -936,6 +928,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +renders a Amendment Waiver :
-+ + state-plan-2024.pdf + +
+
+
renders a Amendment Waiver : -+ |
+
+ + + state-plan-summary.pdf + + + |
+
+
renders a Amendment Waiver
-
- state-plan-2024.pdf
- renders a Amendment Waiver
:
|
+
+ + + amended-language-1.pdf + + + |
+
+
renders a Amendment Waiver
-
- amended-language-1.pdf
- renders a Amendment Waiver
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Amendment Waiver
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Amendment Waiver
:
|
+
+ + + public-notice-oct-2024.pdf + + + |
+
+
renders a Amendment Waiver : -+ |
+
+ + + public-notice-sept-2024.pdf + + + |
+
+
renders a Amendment Waiver
-
- public-notice-oct-2024.pdf
- renders a Amendment Waiver
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Amendment Waiver
>
The OneMAC Submission Portal received a Medicaid SPA Submission:
- This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -1745,6 +1894,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Amendment Waiver
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Amendment Waiver
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Amendment Waiver
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
-
-
- SPA Pages
- :
-
- SPA Pages
- :
-
- SPA Pages
- :
- renders a Amendment Waiver
>
spa-page1.pdf
- |
@@ -1967,11 +2078,12 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
+ + + spa-summary.pdf + + + |
+
+
- Document Demonstrating Good-Faith Tribal Engagement + SPA Pages : -+ |
+
+ + + spa-changes-2024.pdf + + + |
+
+
+
+ + Cover Letter + : + + + + |
+
+ + + cover-letter-george-harrison.pdf + + + |
+
+
renders a Amendment Waiver
>
tribal-engagement-summary.docx
- |
+
+
+
+ + Document Demonstrating Good-Faith Tribal Engagement + : + + + + |
+
+
tribal-engagement-outreach.pdf
- |
+
+
+
+ + Document Demonstrating Good-Faith Tribal Engagement + : + + + + |
+
+
tribal-engagement-meeting-notes.pdf
@@ -2085,6 +2400,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Amendment Waiver
:
|
+
+ + + page-23-update.pdf + + + |
+
+
renders a Amendment Waiver : -+ |
+
+ + + page-24-update.pdf + + + |
+
+
renders a Amendment Waiver
-
- page-23-update.pdf
- renders a Amendment Waiver
:
|
+
+ + + public-notice-oct-2024.pdf + + + |
+
+
renders a Amendment Waiver : -+ |
+
+ + + public-notice-sept-2024.pdf + + + |
+
+
renders a Amendment Waiver
-
- public-notice-oct-2024.pdf
- renders a Amendment Waiver
>
The Submission Portal received a 1915(b) Temporary Extension Submission:
-
- Mar 2, 2023 @ 11:59pm EST
+ May 31, 2023 @ 11:59pm EST
|
+ + + Temporary Extention Document for submission.pdf + + + |
+
+
+
+
renders a Amendment Waiver : -+ |
+
+ + + Second Extention Document for submission.pdf + + + |
+
+
renders a Amendment Waiver
-
- Temporary Extention Document for submission.pdf
-
-
- - Details: --
This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -3273,6 +3764,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Amendment Waiver
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Amendment Waiver
>
The OneMAC Submission Portal received a 1915(b) Renewal waiver submission:
- This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -3825,6 +4308,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Amendment Waiver
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Amendment Waiver
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Amendment Waiver
>
The OneMAC Submission Portal received a 1915(b) Amendment waiver submission:
- This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -4422,6 +4898,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Amendment Waiver
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Amendment Waiver
>
The OneMAC Submission Portal received a 1915(b) Amendment waiver submission:
- This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -4975,6 +5443,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Amendment Waiver
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Amendment Waiver
This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.
renders a Amendment Waiver
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Amendment Waiver
This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -6092,6 +6554,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +renders a Amendment Waiver : -+ |
+
+ + + state-plan-2024.pdf + + + |
+
+
renders a Amendment Waiver : -+ |
+
+ + + state-plan-summary.pdf + + + |
+
+
renders a Amendment Waiver
-
- state-plan-2024.pdf
- renders a Amendment Waiver
:
|
+
+ + + amended-language-1.pdf + + + |
+
+
renders a Amendment Waiver
-
- amended-language-1.pdf
- renders a Amendment Waiver
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Amendment Waiver
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Amendment Waiver
:
|
+
+ + + public-notice-oct-2024.pdf + + + |
+
+
renders a Amendment Waiver : -+ |
+
+ + + public-notice-sept-2024.pdf + + + |
+
+
renders a Amendment Waiver
-
- public-notice-oct-2024.pdf
- renders a Amendment Waiver
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Amendment Waiver
>
The OneMAC Submission Portal received a Medicaid SPA Submission:
- This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -6901,6 +7520,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Amendment Waiver
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Amendment Waiver
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Amendment Waiver
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Amendment Waiver
:
|
+
+ + + spa-page1.pdf + + + |
+
+
renders a Amendment Waiver : -+ |
+
+ + + spa-page2.pdf + + + |
+
+
renders a Amendment Waiver : -+ |
+
+ + + spa-summary.pdf + + + |
+
+
renders a Amendment Waiver
-
- spa-page1.pdf
- renders a Amendment Waiver
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Amendment Waiver
:
|
+
+ + + tribal-engagement-summary.docx + + + |
+
+
renders a Amendment Waiver : -+ |
+
+ + + tribal-engagement-outreach.pdf + + + |
+
+
renders a Amendment Waiver
-
- tribal-engagement-summary.docx
- renders a Amendment Waiver
:
|
+
+ + + page-23-update.pdf + + + |
+
+
renders a Amendment Waiver : -+ |
+
+ + + page-24-update.pdf + + + |
+
+
renders a Amendment Waiver
-
- page-23-update.pdf
- renders a Amendment Waiver
:
|
+
+ + + public-notice-oct-2024.pdf + + + |
+
+
renders a Amendment Waiver : -+ |
+
+ + + public-notice-sept-2024.pdf + + + |
+
+
renders a Amendment Waiver
-
- public-notice-oct-2024.pdf
- renders a Amendment Waiver
>
The Submission Portal received a 1915(b) Temporary Extension Submission:
-
- Mar 2, 2023 @ 11:59pm EST
+ May 31, 2023 @ 11:59pm EST
|
+ + + Temporary Extention Document for submission.pdf + + + |
+
+
+
+
renders a Amendment Waiver : -+ |
+
+ + + Second Extention Document for submission.pdf + + + |
+
+
renders a Amendment Waiver
-
- Temporary Extention Document for submission.pdf
-
-
- - Details: --
This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -8429,6 +9390,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Amendment Waiver
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Amendment Waiver
>
The OneMAC Submission Portal received a 1915(b) Renewal waiver submission:
- This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -8981,6 +9934,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Amendment Waiver
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Amendment Waiver
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Amendment Waiver
>
The OneMAC Submission Portal received a 1915(b) Amendment waiver submission:
- This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -9578,6 +10524,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Amendment Waiver
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Amendment Waiver
>
The OneMAC Submission Portal received a 1915(b) Amendment waiver submission:
- This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -10130,6 +11068,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Amendment Waiver
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Amendment Waiver
>
The OneMAC Submission Portal received a 1915(b) Amendment waiver submission:
- This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -10683,6 +11613,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Amendment Waiver data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Amendment Waiver
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a AppkCMSEmail Pre
This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.
renders a AppkCMSEmail Pre
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a AppkCMSEmail Pre
This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.
renders a AppkCMSEmail Pre
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Chipspa Preview
This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.
renders a Chipspa Preview
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Chipspa Preview
This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.
renders a Chipspa Preview
:
|
+
+ + + state-plan-2024.pdf + + + |
+
+
renders a Chipspa Preview : -+ |
+
+ + + state-plan-summary.pdf + + + |
+
+
renders a Chipspa Preview
-
- state-plan-2024.pdf
- renders a Chipspa Preview
:
|
+
+ + + amended-language-1.pdf + + + |
+
+
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
- |
+
+
+
+ + Cover Letter + : + + + + |
+
+ - amended-language-2.pdf + cover-letter-george-harrison.pdf + + + |
+
+
+
+ + Budget Documents + : + + + + |
+
+ + + fy2024-budget.xlsx |
@@ -13157,11 +14275,12 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
+ + + state-plan-2024.pdf + + + |
+
+
renders a Chipspa Preview : -+ |
+
+ + + state-plan-summary.pdf + + + |
+
+
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
- |
+
+
+
+ + SPA Pages + : + + + + |
+
+ + + amended-language-1.pdf + + |
+
+
+
+ + SPA Pages + : + + + + |
+
+
- state-plan-summary.pdf
- |
+
+
+
+ + Cover Letter + : + + + + |
+
+ - state-plan-financials.pdf + cover-letter-george-harrison.pdf |
@@ -13870,21 +15158,12 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Chipspa Preview
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
+ + + state-plan-2024.pdf + + + |
+
+
renders a Initial Waiver C : -+ |
+
+ + + state-plan-summary.pdf + + + |
+
+
renders a Initial Waiver C
-
- state-plan-2024.pdf
- renders a Initial Waiver C
:
|
+
+ + + amended-language-1.pdf + + + |
+
+
renders a Initial Waiver C
-
- amended-language-1.pdf
- renders a Initial Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Initial Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Initial Waiver C
:
|
+
+ + + public-notice-oct-2024.pdf + + + |
+
+
renders a Initial Waiver C : -+ |
+
+ + + public-notice-sept-2024.pdf + + + |
+
+
renders a Initial Waiver C
-
- public-notice-oct-2024.pdf
- renders a Initial Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Initial Waiver C
>
The OneMAC Submission Portal received a Medicaid SPA Submission:
- This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -16018,6 +17419,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Initial Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Initial Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Initial Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Initial Waiver C
:
|
+
+ + + spa-page1.pdf + + + |
+
+
renders a Initial Waiver C : -+ |
+
+ + + spa-page2.pdf + + + |
+
+
renders a Initial Waiver C : -+ |
+
+ + + spa-summary.pdf + + + |
+
+
renders a Initial Waiver C
-
- spa-page1.pdf
- renders a Initial Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Initial Waiver C
:
|
+
+ + + tribal-engagement-summary.docx + + + |
+
+
renders a Initial Waiver C : -+ |
+
+ + + tribal-engagement-outreach.pdf + + + |
+
+
renders a Initial Waiver C
-
- tribal-engagement-summary.docx
- renders a Initial Waiver C
:
|
+
+ + + page-23-update.pdf + + + |
+
+
renders a Initial Waiver C : -+ |
+
+ + + page-24-update.pdf + + + |
+
+
renders a Initial Waiver C
-
- page-23-update.pdf
- renders a Initial Waiver C
:
|
+
+ + + public-notice-oct-2024.pdf + + + |
+
+
renders a Initial Waiver C : -+ |
+
+ + + public-notice-sept-2024.pdf + + + |
+
+
renders a Initial Waiver C
-
- public-notice-oct-2024.pdf
- renders a Initial Waiver C
>
The Submission Portal received a 1915(b) Temporary Extension Submission:
-
- Mar 2, 2023 @ 11:59pm EST
+ May 31, 2023 @ 11:59pm EST
|
+ + + Temporary Extention Document for submission.pdf + + + |
+
+
+
+
renders a Initial Waiver C : -+ |
+
+ + + Second Extention Document for submission.pdf + + + |
+
+
renders a Initial Waiver C
-
- Temporary Extention Document for submission.pdf
-
-
- - Details: --
This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -17546,6 +19289,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Initial Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Initial Waiver C
>
The OneMAC Submission Portal received a 1915(b) Initial waiver submission:
- This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -18099,6 +19834,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Initial Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Initial Waiver C
This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.
renders a Initial Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Initial Waiver C
This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -19216,6 +20945,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +renders a Initial Waiver C : -+ |
+
+ + + state-plan-2024.pdf + + + |
+
+
renders a Initial Waiver C : -+ |
+
+ + + state-plan-summary.pdf + + + |
+
+
renders a Initial Waiver C
-
- state-plan-2024.pdf
- renders a Initial Waiver C
:
|
+
+ + + amended-language-1.pdf + + + |
+
+
renders a Initial Waiver C
-
- amended-language-1.pdf
- renders a Initial Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Initial Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Initial Waiver C
:
|
+
+ + + public-notice-oct-2024.pdf + + + |
+
+
renders a Initial Waiver C : -+ |
+
+ + + public-notice-sept-2024.pdf + + + |
+
+
renders a Initial Waiver C
-
- public-notice-oct-2024.pdf
- renders a Initial Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Initial Waiver C
>
The OneMAC Submission Portal received a Medicaid SPA Submission:
- This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -20025,6 +21911,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Initial Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Initial Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Initial Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Initial Waiver C
:
|
+
+ + + spa-page1.pdf + + + |
+
+
renders a Initial Waiver C : -+ |
+
+ + + spa-page2.pdf + + + |
+
+
renders a Initial Waiver C : -+ |
+
+ + + spa-summary.pdf + + + |
+
+
renders a Initial Waiver C
-
- spa-page1.pdf
- renders a Initial Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Initial Waiver C
:
|
+
+ + + tribal-engagement-summary.docx + + + |
+
+
renders a Initial Waiver C : -+ |
+
+ + + tribal-engagement-outreach.pdf + + + |
+
+
renders a Initial Waiver C
-
- tribal-engagement-summary.docx
- renders a Initial Waiver C
:
|
+
+ + + page-23-update.pdf + + + |
+
+
renders a Initial Waiver C : -+ |
+
+ + + page-24-update.pdf + + + |
+
+
renders a Initial Waiver C
-
- page-23-update.pdf
- renders a Initial Waiver C
:
|
+
+ + + public-notice-oct-2024.pdf + + + |
+
+
renders a Initial Waiver C : -+ |
+
+ + + public-notice-sept-2024.pdf + + + |
+
+
renders a Initial Waiver C
-
- public-notice-oct-2024.pdf
- renders a Initial Waiver C
>
The Submission Portal received a 1915(b) Temporary Extension Submission:
-
- Mar 2, 2023 @ 11:59pm EST
+ May 31, 2023 @ 11:59pm EST
|
+ + + Temporary Extention Document for submission.pdf + + + |
+
+
+
+
renders a Initial Waiver C : -+ |
+
+ + + Second Extention Document for submission.pdf + + + |
+
+
renders a Initial Waiver C
-
- Temporary Extention Document for submission.pdf
-
-
- - Details: --
This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -21553,6 +23781,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Initial Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Initial Waiver C
>
The OneMAC Submission Portal received a 1915(b) Renewal waiver submission:
- This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -22105,6 +24325,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Initial Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Initial Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Initial Waiver C
>
The OneMAC Submission Portal received a 1915(b) Amendment waiver submission:
- This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -22702,6 +24915,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Initial Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Initial Waiver C
>
The OneMAC Submission Portal received a 1915(b) Amendment waiver submission:
- This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -23254,6 +25459,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Initial Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Initial Waiver C
>
The OneMAC Submission Portal received a 1915(b) Renewal waiver submission:
- This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -23806,6 +26003,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Initial Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Initial Waiver C
>
The OneMAC Submission Portal received a 1915(b) Initial waiver submission:
- This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -24358,6 +26547,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Initial Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Initial Waiver C
>
The OneMAC Submission Portal received a 1915(b) Initial waiver submission:
- This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -24911,6 +27092,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Initial Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Initial Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Medicaid Spa Pre
This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.
renders a Medicaid Spa Pre
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Medicaid Spa Pre
This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -26028,6 +28203,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +renders a Medicaid Spa Pre : -+ |
+
+ + + state-plan-2024.pdf + + + |
+
+
renders a Medicaid Spa Pre : -+ |
+
+ + + state-plan-summary.pdf + + + |
+
+
renders a Medicaid Spa Pre
-
- state-plan-2024.pdf
- renders a Medicaid Spa Pre
:
|
+
+ + + amended-language-1.pdf + + + |
+
+
renders a Medicaid Spa Pre
-
- amended-language-1.pdf
- renders a Medicaid Spa Pre
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Medicaid Spa Pre
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Medicaid Spa Pre
:
|
+
+ + + public-notice-oct-2024.pdf + + + |
+
+
renders a Medicaid Spa Pre : -+ |
+
+ + + public-notice-sept-2024.pdf + + + |
+
+
renders a Medicaid Spa Pre
-
- public-notice-oct-2024.pdf
- renders a Medicaid Spa Pre
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Medicaid Spa Pre
>
The OneMAC Submission Portal received a Medicaid SPA Submission:
- This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -26837,6 +29169,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Medicaid Spa Pre
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Medicaid Spa Pre
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Medicaid Spa Pre
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Medicaid Spa Pre
:
|
+
+ + + spa-page1.pdf + + + |
+
+
renders a Medicaid Spa Pre : -+ |
+
+ + + spa-page2.pdf + + + |
+
+
renders a Medicaid Spa Pre : -+ |
+
+ + + spa-summary.pdf + + + |
+
+
renders a Medicaid Spa Pre
-
- spa-page1.pdf
- renders a Medicaid Spa Pre
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Medicaid Spa Pre
:
|
+
+ + + tribal-engagement-summary.docx + + + |
+
+
renders a Medicaid Spa Pre : -+ |
+
+ + + tribal-engagement-outreach.pdf + + + |
+
+
renders a Medicaid Spa Pre
-
- tribal-engagement-summary.docx
- renders a Medicaid Spa Pre
:
|
+
+ + + page-23-update.pdf + + + |
+
+
renders a Medicaid Spa Pre : -+ |
+
+ + + page-24-update.pdf + + + |
+
+
renders a Medicaid Spa Pre
-
- page-23-update.pdf
- renders a Medicaid Spa Pre
:
|
+
+ + + public-notice-oct-2024.pdf + + + |
+
+
renders a Medicaid Spa Pre : -+ |
+
+ + + public-notice-sept-2024.pdf + + + |
+
+
renders a Medicaid Spa Pre
-
- public-notice-oct-2024.pdf
- renders a Medicaid Spa Pre
>
The OneMAC Submission Portal received a Medicaid SPA Submission:
- This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -27793,6 +30412,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Medicaid Spa Pre
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Medicaid Spa Pre
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Medicaid Spa Pre
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Medicaid Spa Pre
:
|
+
+ + + spa-page1.pdf + + + |
+
+
renders a Medicaid Spa Pre : -+ |
+
+ + + spa-page2.pdf + + + |
+
+
renders a Medicaid Spa Pre : -+ |
+
+ + + spa-summary.pdf + + + |
+
+
renders a Medicaid Spa Pre
-
- spa-page1.pdf
- renders a Medicaid Spa Pre
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Medicaid Spa Pre
:
|
+
+ + + tribal-engagement-summary.docx + + + |
+
+
renders a Medicaid Spa Pre : -+ |
+
+ + + tribal-engagement-outreach.pdf + + + |
+
+
renders a Medicaid Spa Pre
-
- tribal-engagement-summary.docx
- renders a Medicaid Spa Pre
:
|
+
+ + + page-23-update.pdf + + + |
+
+
renders a Medicaid Spa Pre : -+ |
+
+ + + page-24-update.pdf + + + |
+
+
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 + : + + + + |
+
+ - page-25-update.pdf + public-notice-oct-2024.pdf |
@@ -28206,6 +31102,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Medicaid Spa Pre
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
+ + + public-notice-sept-2024.pdf + + + |
+
+
renders a Medicaid Spa Pre
-
- public-notice-oct-2024.pdf
- renders a Renewal Waiver C
This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.
renders a Renewal Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Renewal Waiver C
This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -29351,6 +32259,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +renders a Renewal Waiver C : -+ |
+
+ + + state-plan-2024.pdf + + + |
+
+
renders a Renewal Waiver C : -+ |
+
+ + + state-plan-summary.pdf + + + |
+
+
renders a Renewal Waiver C
-
- state-plan-2024.pdf
- renders a Renewal Waiver C
:
|
+
+ + + amended-language-1.pdf + + + |
+
+
renders a Renewal Waiver C
-
- amended-language-1.pdf
- renders a Renewal Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Renewal Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Renewal Waiver C
:
|
+
+ + + public-notice-oct-2024.pdf + + + |
+
+
renders a Renewal Waiver C : -+ |
+
+ + + public-notice-sept-2024.pdf + + + |
+
+
renders a Renewal Waiver C
-
- public-notice-oct-2024.pdf
- renders a Renewal Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Renewal Waiver C
>
The OneMAC Submission Portal received a Medicaid SPA Submission:
- This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -30160,6 +33225,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Renewal Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Renewal Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Renewal Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Renewal Waiver C
:
|
+
+ + + spa-page1.pdf + + + |
+
+
renders a Renewal Waiver C : -+ |
+
+ + + spa-page2.pdf + + + |
+
+
renders a Renewal Waiver C : -+ |
+
+ + + spa-summary.pdf + + + |
+
+
renders a Renewal Waiver C
-
- spa-page1.pdf
- renders a Renewal Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Renewal Waiver C
:
|
+
+ + + tribal-engagement-summary.docx + + + |
+
+
renders a Renewal Waiver C : -+ |
+
+ + + tribal-engagement-outreach.pdf + + + |
+
+
renders a Renewal Waiver C
-
- tribal-engagement-summary.docx
- renders a Renewal Waiver C
:
|
+
+ + + page-23-update.pdf + + + |
+
+
renders a Renewal Waiver C : -+ |
+
+ + + page-24-update.pdf + + + |
+
+
renders a Renewal Waiver C
-
- page-23-update.pdf
- renders a Renewal Waiver C
:
|
+
+ + + public-notice-oct-2024.pdf + + + |
+
+
renders a Renewal Waiver C : -+ |
+
+ + + public-notice-sept-2024.pdf + + + |
+
+
renders a Renewal Waiver C
-
- public-notice-oct-2024.pdf
- renders a Renewal Waiver C
>
The Submission Portal received a 1915(b) Temporary Extension Submission:
-
- Mar 2, 2023 @ 11:59pm EST
+ May 31, 2023 @ 11:59pm EST
|
+ + + Temporary Extention Document for submission.pdf + + + |
+
+
+
+
renders a Renewal Waiver C : -+ |
+
+ + + Second Extention Document for submission.pdf + + + |
+
+
renders a Renewal Waiver C
-
- Temporary Extention Document for submission.pdf
-
-
- - Details: --
This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -31688,6 +35095,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Renewal Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Renewal Waiver C
>
The OneMAC Submission Portal received a 1915(b) Renewal waiver submission:
- This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -32240,6 +35639,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Renewal Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Renewal Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Renewal Waiver C
>
The OneMAC Submission Portal received a 1915(b) Renewal waiver submission:
- This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -32838,6 +36230,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Renewal Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Renewal Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Renewal Waiver C
This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.
renders a Renewal Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Renewal Waiver C
This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.
renders a Renewal Waiver C
:
|
+
+ + + state-plan-2024.pdf + + + |
+
+
renders a Renewal Waiver C : -+ |
+
+ + + state-plan-summary.pdf + + + |
+
+
renders a Renewal Waiver C
-
- state-plan-2024.pdf
- renders a Renewal Waiver C
:
|
+
+ + + amended-language-1.pdf + + + |
+
+
renders a Renewal Waiver C
-
- amended-language-1.pdf
- renders a Renewal Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Renewal Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Renewal Waiver C
:
|
+
+ + + public-notice-oct-2024.pdf + + + |
+
+
renders a Renewal Waiver C : -+ |
+
+ + + public-notice-sept-2024.pdf + + + |
+
+
renders a Renewal Waiver C
-
- public-notice-oct-2024.pdf
- renders a Renewal Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Renewal Waiver C
>
The OneMAC Submission Portal received a Medicaid SPA Submission:
- This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -34809,6 +38353,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Renewal Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Renewal Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Renewal Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Renewal Waiver C
:
|
+
+ + + spa-page1.pdf + + + |
+
+
renders a Renewal Waiver C : -+ |
+
+ + + spa-page2.pdf + + + |
+
+
renders a Renewal Waiver C : -+ |
+
+ + + spa-summary.pdf + + + |
+
+
renders a Renewal Waiver C
-
- spa-page1.pdf
- renders a Renewal Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Renewal Waiver C
:
|
+
+ + + tribal-engagement-summary.docx + + + |
+
+
renders a Renewal Waiver C : -+ |
+
+ + + tribal-engagement-outreach.pdf + + + |
+
+
renders a Renewal Waiver C
-
- tribal-engagement-summary.docx
- renders a Renewal Waiver C
:
|
+
+ + + page-23-update.pdf + + + |
+
+
renders a Renewal Waiver C : -+ |
+
+ + + page-24-update.pdf + + + |
+
+
renders a Renewal Waiver C
-
- page-23-update.pdf
- renders a Renewal Waiver C
:
|
+
+ + + public-notice-oct-2024.pdf + + + |
+
+
renders a Renewal Waiver C : -+ |
+
+ + + public-notice-sept-2024.pdf + + + |
+
+
renders a Renewal Waiver C
-
- public-notice-oct-2024.pdf
- renders a Renewal Waiver C
>
The Submission Portal received a 1915(b) Temporary Extension Submission:
-
- Mar 2, 2023 @ 11:59pm EST
+ May 31, 2023 @ 11:59pm EST
|
+ + + Temporary Extention Document for submission.pdf + + + |
+
+
+
+
renders a Renewal Waiver C : -+ |
+
+ + + Second Extention Document for submission.pdf + + + |
+
+
renders a Renewal Waiver C
-
- Temporary Extention Document for submission.pdf
-
-
- - Details: --
This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -36337,6 +40223,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Renewal Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Renewal Waiver C
>
The OneMAC Submission Portal received a 1915(b) Renewal waiver submission:
- This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -36889,6 +40767,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Renewal Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Renewal Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Renewal Waiver C
>
The OneMAC Submission Portal received a 1915(b) Amendment waiver submission:
- This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -37486,6 +41357,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Renewal Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Renewal Waiver C
>
The OneMAC Submission Portal received a 1915(b) Amendment waiver submission:
- This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -38038,6 +41901,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Renewal Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Renewal Waiver C
>
The OneMAC Submission Portal received a 1915(b) Renewal waiver submission:
- This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -38590,6 +42445,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Renewal Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a Renewal Waiver C
>
The OneMAC Submission Portal received a 1915(b) Renewal waiver submission:
- This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -39143,6 +42990,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a Renewal Waiver C data-id="__react-email-column" style="width: 50%; vertical-align: top;" > + renders a Renewal Waiver C
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a TempExt Preview
This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements.
renders a TempExt Preview
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
renders a TempExt Preview
This submission includes necessary documentation for requested updates to the state’s Medicaid plan, in alignment with CMS requirements. @@ -40260,6 +44101,7 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview data-id="__react-email-column" style="width: 50%; vertical-align: top;" > +renders a TempExt Preview : -+ |
+
+ + + state-plan-2024.pdf + + + |
+
+
renders a TempExt Preview : -+ |
+
+ + + state-plan-summary.pdf + + + |
+
+
renders a TempExt Preview
-
- state-plan-2024.pdf
- renders a TempExt Preview
:
|
+
+ + + amended-language-1.pdf + + + |
+
+
renders a TempExt Preview
style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);"
>
- amended-language-1.pdf
- |
+
+
+
+ + Cover Letter + : + + + + |
+
+ - amended-language-2.pdf + cover-letter-george-harrison.pdf + + + |
+
+
+
+ + Budget Documents + : + + + + |
+
+ + + fy2024-budget.xlsx |
@@ -40392,11 +44423,12 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
+ + + spa-page1.pdf + + + |
+
+
renders a TempExt Preview : -+ |
+
+ + + spa-page2.pdf + + + |
+
+
renders a TempExt Preview : -+ |
+
+ + + spa-summary.pdf + + + |
+
+
renders a TempExt Preview
style="font-size: 14px; line-height: 1.4; margin: 4px 0px 4px 0px; color: rgb(51, 51, 51);"
>
- spa-page1.pdf
- |
+
+
+
+ + Cover Letter + : + + + + |
+
+
- spa-page2.pdf
- |
+
+
+
+ + Document Demonstrating Good-Faith Tribal Engagement + : + + + + |
+
+
- spa-summary.pdf
- |
+
+
+
+ + Document Demonstrating Good-Faith Tribal Engagement + : + + + + |
+
+ - spa-changes-2024.pdf + tribal-engagement-outreach.pdf + + + |
+
+
+
+ + Document Demonstrating Good-Faith Tribal Engagement + : + + + + |
+
+ + + tribal-engagement-meeting-notes.pdf + + + |
+
+
+
+ + Existing State Plan Page(s) + : + + + + |
+
+ + + page-23-update.pdf + + + |
+
+
+
+ + Existing State Plan Page(s) + : + + + + |
+
+ + + page-24-update.pdf |
@@ -41291,11 +45665,12 @@ exports[`Initial Submission CMS Email Snapshot Test > renders a TempExt Preview
data-id="__react-email-column"
style="width: 50%; vertical-align: top;"
>
+
+ + + Temporary Extention Document for submission.pdf + + + |
+
+
+
+
renders a TempExt Preview : -+ |
+
+ + + Second Extention Document for submission.pdf + + + |
+
+
renders a TempExt Preview
-
- Temporary Extention Document for submission.pdf
-
-
- - Details: --
- Mar 2, 2023 @ 11:59pm EST + May 31, 2023 @ 11:59pm EST |
+ + + Temporary Extention Document for submission.pdf + + + |
+
+
+
+
renders a TempExt Preview : -+ |
+
+ + + Second Extention Document for submission.pdf + + + |
+
+
renders a TempExt Preview
-
- Temporary Extention Document for submission.pdf
- - Jan 1, 2023 @ 11:59pm EST + Apr 1, 2023 @ 11:59pm EST |
+ + + Temporary Extention Document for submission.pdf + + + |
+
+
+
+
renders a Amendment Capi : -+ |
+
+ + + Second Extention Document for submission.pdf + + + |
+
+
renders a Amendment Capi
-
- Temporary Extention Document for submission.pdf
- - This response confirms the submission of your 1915(b) Initial waiver to CMS for review: + This response confirms the submission of your 1915(b) Initial Waiver to CMS for review:-
-
- - Details: --
|