Implement Maryland TCA (Temporary Cash Assistance) #7137
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 Maryland Temporary Cash Assistance (TCA), the state's TANF program.
Closes #7136
Regulatory Authority
Variables Implemented
md_tcamd_tca_eligiblemd_tca_income_eligiblemd_tca_maximum_benefitmd_tca_countable_earned_incomemd_tca_childcare_deductionmd_tca_countable_incomeFolder Structure
Income Eligibility Test
Countable income must be at or below the grant standard (by household size).
Source: COMAR 07.03.03.13
Income Deductions & Exemptions
Earned Income Disregards
Formula:
countable_earned = gross_earned * (1 - rate) - childcare_deductionSource: COMAR 07.03.03.13.E(3)(a-b)
Childcare Expense Deduction
Source: COMAR 07.03.03.13.E(3)(c)
Income Standards (Grant Standards)
Explicit values for household sizes 1-21 (effective January 1, 2025):
For sizes 22+: Add $146 per additional person
Sources:
Benefit Calculation
Where:
Source: COMAR 07.03.03.17
What Uses Federal Baseline
This implementation uses federal TANF variables where Maryland rules match federal:
is_demographic_tanf_eligible(federal age rules)is_citizen_or_legal_immigranttanf_gross_earned_incomeandtanf_gross_unearned_incomeNot Implemented (Simplifications)
🤖 Generated with Claude Code