Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.d/wv-ccap.added.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Implement West Virginia Child Care Assistance Program (CCAP).
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ values:
- ri_child_care_subsidies # Rhode Island Child Care Assistance Program
- sc_child_care_subsidies # South Carolina Child Care Scholarship Program
- va_child_care_subsidies # Virginia Child Care Subsidy Program
- wv_child_care_subsidies # West Virginia Child Care Assistance Program

metadata:
unit: list
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
description: West Virginia defines these informal care age group boundaries in months under the Child Care Assistance Program.
metadata:
type: single_amount
threshold_unit: month
amount_unit: /1
period: year
label: West Virginia CCAP informal care age group by months
reference:
- title: WV Child Care Subsidy Appendix B — Rate Structure (Oct 1, 2024)
href: https://bfa.wv.gov/media/6831/download?inline

# Maps age in months to WVCCAPInformalAgeGroup enum index, matching
# Appendix B's INFANT (0-24 months) and TODDLER+ (25+ months) bands:
# 0 = UNDER_2 (0-24 months)
# 1 = AGE_2_AND_OVER (25+ months)
brackets:
- threshold:
2024-01-01: 0
amount:
2024-01-01: 0
- threshold:
2024-01-01: 25
amount:
2024-01-01: 1
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
description: West Virginia defines these child age group boundaries in months under the Child Care Assistance Program.
metadata:
type: single_amount
threshold_unit: month
amount_unit: /1
period: year
label: West Virginia CCAP child age group by months
reference:
- title: WV Child Care Subsidy Appendix B — Rate Structure (Oct 1, 2024)
href: https://bfa.wv.gov/media/6831/download?inline

# Maps age in months to WVCCAPChildAgeCategory enum index:
# 0 = INFANT (0-24 months)
# 1 = TODDLER (25-36 months)
# 2 = PRESCHOOL (37-59 months)
# 3 = SCHOOL_AGE (60+ months)
brackets:
- threshold:
2024-01-01: 0
amount:
2024-01-01: 0
- threshold:
2024-01-01: 25
amount:
2024-01-01: 1
- threshold:
2024-01-01: 37
amount:
2024-01-01: 2
- threshold:
2024-01-01: 60
amount:
2024-01-01: 3
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
description: West Virginia limits the co-payment to this share of gross family income under the Child Care Assistance Program.
values:
2024-01-01: 0.07

metadata:
unit: /1
period: year
label: West Virginia CCAP maximum co-payment share
reference:
- title: WV CCDF State Plan FFY 2025-2027, Section 3.1.1 — Family Co-payment (7%)
href: https://bfa.wv.gov/media/39915/download?inline#page=39
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
description: West Virginia sets this co-payment share of income by federal poverty level ratio under the Child Care Assistance Program.
metadata:
type: single_amount
threshold_unit: /1
amount_unit: /1
period: year
label: West Virginia CCAP co-payment rate by FPL ratio
reference:
- title: WV Child Care Subsidy Appendix A — Sliding Fee Scale (Oct 1, 2024)
href: https://bfa.wv.gov/media/6826/download?inline
- title: WV CCDF State Plan FFY 2025-2027, Section 3.1.2 — Sliding Fee Scale
href: https://bfa.wv.gov/media/39915/download?inline#page=39

# Simplified percentage approximation of the 176-cell sliding fee scale.
# Derived from the 3-person family column in Appendix A as a representative
# middle case. Actual daily dollar fees vary by family size; this percentage
# approximation produces reasonable copay amounts across family sizes.
# The 7% cap (max_share parameter) provides an upper bound per CCDF rules.
brackets:
- threshold:
2024-10-01: 0
amount:
2024-10-01: 0
- threshold:
2024-10-01: 0.4001
amount:
2024-10-01: 0.025
- threshold:
2024-10-01: 0.7001
amount:
2024-10-01: 0.03
- threshold:
2024-10-01: 1.1001
amount:
2024-10-01: 0.035
- threshold:
2024-10-01: 1.5001
amount:
2024-10-01: 0.04
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
description: West Virginia sets this minimum weekly activity hours for parent eligibility under the Child Care Assistance Program.
values:
2024-01-01: 20

metadata:
unit: hour
period: week
label: West Virginia CCAP minimum weekly activity hours
reference:
- title: WV Child Care Subsidy Policy & Procedures Manual, Chapter 3, Section 3.6.1 — Working Recipients
href: https://bfa.wv.gov/media/6766/download?inline#page=32
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
description: West Virginia limits child eligibility to under this age under the Child Care Assistance Program.
values:
2024-01-01: 13

metadata:
unit: year
period: year
label: West Virginia CCAP child age limit
reference:
- title: WV Child Care Subsidy Policy & Procedures Manual, Chapter 3, Section 3.1 — Child Age Requirement
href: https://bfa.wv.gov/media/6766/download?inline#page=25
- title: WV CCDF State Plan FFY 2025-2027, Section 2.2
href: https://bfa.wv.gov/media/39915/download?inline#page=16
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
description: West Virginia limits special needs child eligibility to under this age under the Child Care Assistance Program.
values:
2024-01-01: 18

metadata:
unit: year
period: year
label: West Virginia CCAP special needs child age limit
reference:
- title: WV Child Care Subsidy Policy & Procedures Manual, Chapter 3, Section 3.1.2 — Special Needs Children
href: https://bfa.wv.gov/media/6766/download?inline#page=25
- title: WV CCDF State Plan FFY 2025-2027, Section 2.2
href: https://bfa.wv.gov/media/39915/download?inline#page=16
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
description: West Virginia counts these income sources under the Child Care Assistance Program.
values:
2024-01-01:
- employment_income
- self_employment_income
- social_security
- ssi
- unemployment_compensation
- workers_compensation
- pension_income
- alimony_income
- child_support_received
- dividend_income
- interest_income
- rental_income
- veterans_benefits
- military_retirement_pay
# TANF is countable per Manual Sec 5.2.4.3 but excluded here to avoid
# a circular dependency:
# wv_ccap_countable_income -> tanf -> wv_works
# -> wv_works_countable_earned_income (deducts childcare_expenses)
# -> childcare_expenses -> wv_ccap -> wv_ccap_income_eligible
# -> wv_ccap_countable_income
# The is_tanf_enrolled bypass in wv_ccap_income_eligible already
# makes TANF-active families categorically income-eligible.
# - tanf # would belong here

metadata:
unit: list
period: year
label: West Virginia CCAP countable income sources
reference:
- title: WV Child Care Subsidy Policy & Procedures Manual, Chapter 5, Sections 5.2.1-5.2.4 — Countable Income
href: https://bfa.wv.gov/media/6766/download?inline#page=51
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
description: West Virginia limits income to this share of the state median income under the Child Care Assistance Program.
values:
2024-01-01: 0.85

metadata:
unit: /1
period: year
label: West Virginia CCAP SMI rate
reference:
- title: WV CCDF State Plan FFY 2025-2027, Section 2.2.4
href: https://bfa.wv.gov/media/39915/download?inline#page=20
- title: WV 2024 State Median Income Chart
href: https://bfa.wv.gov/media/6781/download?inline
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
description: West Virginia provides these daily reimbursement rates for child care centers under the Child Care Assistance Program.
metadata:
period: day
unit: currency-USD
label: West Virginia CCAP child care center daily rates
breakdown:
- wv_ccap_quality_tier
- wv_ccap_child_age_category
reference:
- title: WV Child Care Subsidy Appendix B — Rate Structure (Oct 1, 2024)
href: https://bfa.wv.gov/media/6831/download?inline

TIER_I:
INFANT:
2024-10-01: 39
TODDLER:
2024-10-01: 37
PRESCHOOL:
2024-10-01: 35
SCHOOL_AGE:
2024-10-01: 32
TIER_II:
INFANT:
2024-10-01: 42
TODDLER:
2024-10-01: 40
PRESCHOOL:
2024-10-01: 38
SCHOOL_AGE:
2024-10-01: 35
TIER_III:
INFANT:
2024-10-01: 45
TODDLER:
2024-10-01: 43
PRESCHOOL:
2024-10-01: 41
SCHOOL_AGE:
2024-10-01: 39
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
description: West Virginia provides these daily reimbursement rates for family child care facilities under the Child Care Assistance Program.
metadata:
period: day
unit: currency-USD
label: West Virginia CCAP family child care facility daily rates
breakdown:
- wv_ccap_quality_tier
- wv_ccap_child_age_category
reference:
- title: WV Child Care Subsidy Appendix B — Rate Structure (Oct 1, 2024)
href: https://bfa.wv.gov/media/6831/download?inline

TIER_I:
INFANT:
2024-10-01: 35
TODDLER:
2024-10-01: 33
PRESCHOOL:
2024-10-01: 33
SCHOOL_AGE:
2024-10-01: 32
TIER_II:
INFANT:
2024-10-01: 38
TODDLER:
2024-10-01: 36
PRESCHOOL:
2024-10-01: 36
SCHOOL_AGE:
2024-10-01: 35
TIER_III:
INFANT:
2024-10-01: 41
TODDLER:
2024-10-01: 39
PRESCHOOL:
2024-10-01: 39
SCHOOL_AGE:
2024-10-01: 38
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
description: West Virginia provides these daily reimbursement rates for family child care homes under the Child Care Assistance Program.
metadata:
period: day
unit: currency-USD
label: West Virginia CCAP family child care home daily rates
breakdown:
- wv_ccap_quality_tier
- wv_ccap_child_age_category
reference:
- title: WV Child Care Subsidy Appendix B — Rate Structure (Oct 1, 2024)
href: https://bfa.wv.gov/media/6831/download?inline

TIER_I:
INFANT:
2024-10-01: 30
TODDLER:
2024-10-01: 30
PRESCHOOL:
2024-10-01: 29
SCHOOL_AGE:
2024-10-01: 26
TIER_II:
INFANT:
2024-10-01: 33
TODDLER:
2024-10-01: 33
PRESCHOOL:
2024-10-01: 32
SCHOOL_AGE:
2024-10-01: 29
TIER_III:
INFANT:
2024-10-01: 36
TODDLER:
2024-10-01: 36
PRESCHOOL:
2024-10-01: 35
SCHOOL_AGE:
2024-10-01: 32
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
description: West Virginia provides these daily reimbursement rates for informal or relative care under the Child Care Assistance Program.
metadata:
period: day
unit: currency-USD
label: West Virginia CCAP informal relative care daily rates
breakdown:
- wv_ccap_informal_age_group
reference:
- title: WV Child Care Subsidy Appendix B — Rate Structure (Oct 1, 2024)
href: https://bfa.wv.gov/media/6831/download?inline

UNDER_2:
2024-10-01: 7.5
AGE_2_AND_OVER:
2024-10-01: 6
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
description: West Virginia provides this daily reimbursement rate for out of school time programs under the Child Care Assistance Program.
values:
2024-10-01: 14.5

metadata:
period: day
unit: currency-USD
label: West Virginia CCAP out of school time daily rate
reference:
- title: WV Child Care Subsidy Appendix B — Rate Structure (Oct 1, 2024)
href: https://bfa.wv.gov/media/6831/download?inline
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
description: West Virginia provides this daily supplement for non-traditional hours care under the Child Care Assistance Program.
values:
2024-10-01: 6

metadata:
period: day
unit: currency-USD
label: West Virginia CCAP non-traditional hours supplement
reference:
- title: WV Child Care Subsidy Appendix B — Rate Structure (Oct 1, 2024)
href: https://bfa.wv.gov/media/6831/download?inline
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
description: West Virginia provides this daily supplement for children with special needs under the Child Care Assistance Program.
values:
2024-10-01: 3

metadata:
period: day
unit: currency-USD
label: West Virginia CCAP special needs supplement
reference:
- title: WV Child Care Subsidy Appendix B — Rate Structure (Oct 1, 2024)
href: https://bfa.wv.gov/media/6831/download?inline
4 changes: 3 additions & 1 deletion policyengine_us/programs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -550,9 +550,11 @@ programs:
full_name: Vermont Child Care Financial Assistance Program
variable: vt_ccfap
- state: WV
status: in_progress
status: complete
name: West Virginia CCAP
full_name: West Virginia Child Care Assistance Program
variable: wv_ccap
parameter_prefix: gov.states.wv.dhhr.ccap

- id: head_start
name: Head Start
Expand Down
Loading
Loading