Draft
Conversation
Adds eligibility, copay, and provider rate calculations for NJ CCAP per N.J.A.C. 10:15, CC-229, CC-230, CC-236, and CCDF State Plan. Closes PolicyEngine#7810 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #7811 +/- ##
============================================
+ Coverage 73.43% 100.00% +26.56%
============================================
Files 3943 15 -3928
Lines 56969 251 -56718
Branches 277 1 -276
============================================
- Hits 41836 251 -41585
+ Misses 15101 0 -15101
+ Partials 32 0 -32
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
- Add nj_ccap_smi test coverage (4 test cases) - Activity requirement: 20 hrs at redetermination (was 30 for all) - Fix 3 wrong CCDF State Plan page numbers - Fix 3 wrong N.J.A.C. section citations - Remove incorrect 5% copay cap (CC-236 rates go up to 7% for multi-child) - Remove homeless copay waiver (not in CCDF State Plan) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- weekly_hours.yaml: Section 2.2.2g → 2.2.2d, #page=22 → #page=21 - weekly_hours_redetermination.yaml: #page=22 → #page=21 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- Add March 2024 CC-230 rates (effective 2024-01-01) for all 4 provider types - Add COVID copay waiver (rates=0) for 2024-01-01 through 2024-07-31 - Copay reinstated 2024-08-01 per NJ DHS policy - Fixes microsimulation failures for 2024/2025 periods Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Remove duplicate 2025-03-01 entries for approved home (unchanged rates). Remove duplicate zero entries for ACA summer camp non-school-age groups. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Implements the New Jersey Child Care Assistance Program (CCAP) in PolicyEngine, covering eligibility, copayment, and provider rate schedules.
Closes #7810
Regulatory Authority
Income Eligibility Tests
Three-tier income structure with
nj_ccap_enrolledtoggle:Additional eligibility requirements:
Income Deductions & Exemptions
No deductions. Eligibility is based on gross income. Countable income includes wages, self-employment, SS benefits, pensions, unemployment/workers' comp, alimony, child support, dividends, interest, and rental income. Excludes TANF cash benefits (WFNJ).
Source: CCDF State Plan Section 2.2.4c
Copayment Structure
Three FPL tiers with rates varying by care type (FT/PT) and child count (1 vs 2+):
monthly_copay = annual_gross_income * copay_rate / 12Implementation uses additive first-child + second-child rate parameters by FPL bracket. Source: CC-236
Provider Rate Schedule
4 provider types x 8 age groups x 2 care types x up to 4 quality tiers:
Age groups: Infant (0-17 mo), Toddler (18-29 mo), Preschool (30 mo-5 yr), School-Age (5-13 yr), plus special needs variants for each.
Weekly rates stored in parameters; benefit formula:
min(expenses - copay, max_reimbursement)where max reimbursement is the sum of per-child weekly rates converted to monthly.Benefit Calculation
Source: CC-236, CC-230, Important Information p.2-3
Requirements Coverage
defined_for = StateCode.NJ)is_ccdf_immigration_eligible_child)is_ccdf_asset_eligible)hhs_smi35/37 requirements implemented, 2 excluded:
Not Modeled
is_cps_referredvariable existsFiles Added
Modified existing files:
policyengine_us/parameters/gov/hhs/ccdf/child_care_subsidy_programs.yaml— addednj_child_care_subsidiessources/working_references.md— added NJ CCAP research notes