Add Pennsylvania CCAP (Child Care Assistance Program)#7829
Draft
hua7450 wants to merge 4 commits intoPolicyEngine:mainfrom
Draft
Add Pennsylvania CCAP (Child Care Assistance Program)#7829hua7450 wants to merge 4 commits intoPolicyEngine:mainfrom
hua7450 wants to merge 4 commits intoPolicyEngine:mainfrom
Conversation
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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 #7829 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 11 19 +8
Lines 329 289 -40
=========================================
- Hits 329 289 -40
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:
|
…_hours_per_day, age_group 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 Pennsylvania Child Care Works (CCW) — the state's CCDF child care subsidy program — in PolicyEngine.
Closes #7828
Regulatory Authority
Income Eligibility Tests
New applicants use the 200% FPIG threshold. Currently enrolled families (
pa_ccw_enrolled = True) use min(235% FPIG, 85% SMI) at redetermination and 85% SMI between redeterminations.Income Deductions & Exemptions
Income counted (55 Pa. Code 3042.42): Parent/caretaker, spouse, and children's unearned income. Appendix A Part I lists 21 income types (wages, self-employment, Social Security, pensions, unemployment, workers comp, veterans benefits, child support received, alimony, dividends, interest, rental income, etc.). Implemented via
sources.yamlwith 16 mapped PolicyEngine variables.Deductions (55 Pa. Code Appendix A Part II):
Stepparent Deduction (Appendix C):
Income exclusions (55 Pa. Code Appendix A Part III): Teen earnings, tax refunds/EITC, SNAP, WIC, foster care payments, student aid, LIHEAP, and ~15 other categories. These are excluded by not including them in the
sources.yamlincome list.Income adjustment procedure (55 Pa. Code 3042.43): 8-step process — determine gross income per Appendix A Part I, estimate monthly per conversion table (55 Pa. Code Appendix A), apply stepparent deduction and other deductions, multiply result by 12 for annual adjusted family income.
Copayment
The copayment is weekly, per family (not per child) — 55 Pa. Code 3042.91(c)-(d); CCDF State Plan 3.2.1.
Formula (implemented as rate-based calculation per 55 Pa. Code 3042.98):
where:
rate= 5% if annual income <= 100% FPIG, otherwise 7%Note: Appendix B contains a detailed sliding-fee copayment chart by family size and income bracket. The implementation uses the formula-based 5%/7% rate approach (which closely approximates the chart) rather than encoding all ~1,000 bracket rows. The unused bracket parameter files (copay/chart/) were created but are not referenced by any variable.
Benefit Calculation
Formula (55 Pa. Code 3042.14(b), 3042.92, 3042.118(c)):
MCCA Rates
Structure: 19 regions x 4 provider types (CENTER, GROUP, FAMILY, R/N) x 5 age groups (Infant, Young Toddler, Old Toddler, Pre-School, School-Age) x 2 time categories (Full-Time, Part-Time).
Rate eras:
Region mapping: Each PA county maps to one of 19 MCCA regions, encoded via
pa_ccw_regionusing county FIPS codes.Age group thresholds: Defined in
age_group/months.yaml— Infant, Young Toddler, Old Toddler, Pre-School, School-Age based on child's age in months.Not Modeled
pa_ccw_activity_eligiblebare inputFiles Added