Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 | 72x | import { Template } from "./chpRenderSection"; export const CHP_GUIDES: Template[] = [ // MAGI Eligibility & Methods { title: "CS 7", text: "Eligibility - Targeted Low-Income Children Implementation Guide", href: "/chp/IG_CS7_TargetedLow-IncomeChildren.pdf", }, { title: "CS 8", text: "Eligibility - Targeted Low-Income Pregnant Women Implementation Guide", href: "/chp/IG_CS8_TargetedLow-IncomePregnantWomen.pdf", }, { title: "CS 9", text: "Eligibility - Coverage From Conception to Birth Implementation Guide", href: "/chp/IG_CS9_CoverageFromConceptionToBirth.pdf", }, { title: "CS 10", text: "Eligibility - Children Who Have Access to Public Employee Coverage Implementation Guide", href: "/chp/IG_CS10_ChildrenWhoHaveAccessToPublicEmployeeCoverage.pdf", }, { title: "CS 11", text: "Eligibility - Pregnant Women Who Have Access to Public Employee Coverage Implementation Guide", href: "/chp/IG_CS11_PregnantWomenWhoHaveAccessToPublicEmployeeCoverage.pdf", }, { title: "CS 12", text: "Eligibility - Dental Only Supplemental Coverage Implementation Guide", href: "/chp/IG_CS12_DentalOnlySupplementalCoverage.pdf", }, { title: "CS 13", text: "Eligibility - Deemed Newborns Implementation Guide", href: "/chp/IG_CS13_DeemedNewborns.pdf", }, { title: "CS 15", text: "MAGI-Based Income Methodologies Implementation Guide", href: "/chp/IG_CS15_MAGI-BasedIncomeMethodologies.pdf", }, { title: "CS 16", text: "Other Eligibility Criteria - Spenddowns Implementation Guide", href: "/chp/IG_CS16_Spenddown.pdf", }, // XXI Medicaid Expansion { title: "CS 3", text: "Eligibility for Medicaid Expansion Program Implementation Guide", href: "/chp/IG_CS3_MedicaidExpansion.pdf", }, // Eligibility Processing { title: "CS 24", text: "General Eligibility - Eligibility Processing Implementation Guide", href: "/chp/IG_CS24_EligibilityProcessing.pdf", }, // Non-Financial Eligibility { title: "CS 17", text: "Non-Financial Eligibility - Residency Implementation Guide", href: "/chp/IG_CS17_Non-Financial-Residency.pdf", }, { title: "CS 18", text: "Non-Financial Eligibility - Citizenship Implementation Guide", href: "/chp/IG_CS18_Non-Financial-Citizenship.pdf", }, { title: "CS 19", text: "Non-Financial Eligibility - Social Security Number Implementation Guide", href: "/chp/IG_CS19_Non-Financial-SocialSecurityNumber.pdf", }, { title: "CS 20", text: "Non-Financial Eligibility - Substitution of Coverage Implementation Guide", href: "/chp/IG_CS20_Non-Financial-SubstitutionOfCoverage.pdf", }, { title: "CS 21", text: "Non-Financial Eligibility - Non-Payment of Premiums Implementation Guide", href: "/chp/IG_CS21_NonFinancialNonPaymentOfPremiums.pdf", }, { title: "CS 23", text: "Non-Financial Requirements - Other Eligibility Standards Implementation Guide", href: "/chp/IG_CS23_NonFinancialRequirementOtherEligibilityStandards.pdf", }, { title: "CS 27", text: "General Eligibility - Continuous Eligibility Implementation Guide", href: "/chp/IG_CS27_ContinuousEligibility.pdf", }, { title: "CS 28", text: "General Eligibility - Presumptive Eligibility for Children Implementation Guide", href: "/chp/IG_CS28_PresumptiveEligibilityForChildren.pdf", }, { title: "CS 29", text: "General Eligibility - Presumptive Eligibility for Pregnant Women Implementation Guide", href: "/chp/IG_CS29_PresumptiveEligibilityForPregnantWomen.pdf", }, ]; |