Open
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❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #7811 +/- ##
===========================================
- Coverage 100.00% 99.22% -0.78%
===========================================
Files 3 15 +12
Lines 43 259 +216
Branches 0 1 +1
===========================================
+ Hits 43 257 +214
- Misses 0 1 +1
- Partials 0 1 +1
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>
…hild eligibility Income eligibility (nj_ccap_income_eligible): - Enrolled families use 85% SMI only between redeterminations, not AND(250% FPL, 85% SMI). Families between 250% FPL and 85% SMI get a one-year graduated phase-out (CCDF State Plan Section 2.5). Copay rates (4 copay bracket files): - Add CC-236 06/24 reinstatement rates at 2024-08-01 (roughly half of current rates: 2%/3%/1%/1.5% for 101-200% FPL; 3%/5%/1.5%/2.5% for 201%+ FPL). Current (higher) rates moved to 2026-03-01 (CC-236 03/26). - Fix broken URL: /Parents/Important-Information -> /Parents/CCAP/ImportantInfo Activity test (nj_ccap_activity_eligible): - Add meets_ccdf_activity_test fallback for TANF/CP&P cases - Explicit n_qualifying >= n_parents for two-parent households Child eligibility (nj_ccap_eligible_child): - Add CP&P (protective services) and foster care bypass Copay (nj_ccap_copay): - Add CPS child exemption ($0 copay) Redetermination hours: - Add 2025-10-01: 25 (increase from 20, per childcarenj.gov) 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