-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
129 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,12 +18,128 @@ export default { | |
}, | ||
}, | ||
accordionItems: [ | ||
/* | ||
* accordion items are in the following format: | ||
* { | ||
* question: "", | ||
* answer: "", | ||
* } | ||
*/ | ||
{ | ||
header: "MCPAR: Primary Care Case Management Entity (PCCM-E) reports", | ||
body: [ | ||
{ | ||
type: "text", | ||
as: "span", | ||
content: | ||
"States are only required to report certain sections of the MCPAR for Primary Care Case Management Entities (PCCM-Es). These include Program Information, Enrollment and Service Expansions as well and Sanctions (see and ", | ||
}, | ||
{ | ||
type: "externalLink", | ||
content: "42 CFR 438.66(e)(2)(iii)", | ||
props: { | ||
href: "https://www.ecfr.gov/current/title-42/part-438/section-438.66#p-438.66(e)(2)(iii)", | ||
target: "_blank", | ||
"aria-label": "42 CFR 438.66(e)(2)(iii) (link opens in new tab)", | ||
}, | ||
}, | ||
{ | ||
type: "text", | ||
as: "span", | ||
content: " and ", | ||
}, | ||
{ | ||
type: "externalLink", | ||
content: "(viii))", | ||
props: { | ||
href: "https://www.ecfr.gov/current/title-42/part-438/section-438.66#p-438.66(e)(2)(viii)", | ||
target: "_blank", | ||
"aria-label": "42 CFR 438.66(e)(2)(viii) (link opens in new tab)", | ||
}, | ||
}, | ||
{ | ||
type: "text", | ||
as: "span", | ||
content: ".", | ||
}, | ||
{ | ||
type: "html", | ||
content: "<br></br>", | ||
}, | ||
{ | ||
type: "text", | ||
as: "p", | ||
content: | ||
"Please follow these section-by-section instructions for PCCM-Es:", | ||
}, | ||
{ | ||
type: "html", | ||
content: "<br>", | ||
}, | ||
{ | ||
type: "ul", | ||
content: "", | ||
children: [ | ||
{ | ||
type: "li", | ||
children: [ | ||
{ | ||
type: "html", | ||
content: | ||
"<span>In <b>section A.7, Program Information</b>, write the name of the PCCM-E as the Plan.</span><br></br>", | ||
}, | ||
], | ||
}, | ||
{ | ||
type: "li", | ||
children: [ | ||
{ | ||
type: "html", | ||
content: | ||
"<span>In <b>section C1.I.3 Topic 1, Program Characteristics</b>, the radio button for PCCM-E <span style='color:#bf1aba;'>will be pre-selected</span>.</span><br></br>", | ||
}, | ||
], | ||
}, | ||
{ | ||
type: "li", | ||
children: [ | ||
{ | ||
type: "html", | ||
content: | ||
"<span>In <b>section D.VIII, Sanctions</b>, PCCM-Es should describe sanctions the state has issued against the PCCM-E itself.</span><br></br>", | ||
}, | ||
], | ||
}, | ||
{ | ||
type: "li", | ||
children: [ | ||
{ | ||
type: "span", | ||
content: | ||
"Report all known actions across the following domains: sanctions, administrative penalties, corrective action plans, other. Include any pending or unresolved actions.", | ||
}, | ||
], | ||
}, | ||
], | ||
}, | ||
{ | ||
type: "html", | ||
content: "<br>", | ||
}, | ||
{ | ||
type: "text", | ||
as: "b", | ||
content: "Please note:", | ||
}, | ||
{ | ||
type: "text", | ||
as: "span", | ||
content: | ||
" States can voluntarily report additional information about their PCCM-Es beyond the designated sections in the PCCM-E specific form. If a state wants to report additional information, please contact ", | ||
}, | ||
{ | ||
type: "externalLink", | ||
content: "[email protected]", | ||
props: { | ||
href: "mailto:[email protected]", | ||
target: "_blank", | ||
"aria-label": "Mail to [email protected]", | ||
}, | ||
}, | ||
], | ||
}, | ||
], | ||
}; |