Add San Mateo County General Assistance#8360
Open
hua7450 wants to merge 9 commits into
Open
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #8360 +/- ##
===========================================
- Coverage 100.00% 98.96% -1.04%
===========================================
Files 2 15 +13
Lines 57 193 +136
Branches 1 0 -1
===========================================
+ Hits 57 191 +134
- Misses 0 2 +2
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:
|
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.
Fixes #8359.
Summary
Adds San Mateo County General Assistance (SMC GA) as a local California cash assistance program. Also fixes two pre-existing Alameda County GA bugs surfaced during review (see Related Fixes).
Regulatory Authority
Eligibility
in_smcage >= minimum_age(parameter)ca_smc_general_assistance_immigration_status_eligible_person~has_minor_childssi == 0(already implies categorical + income test + takeup)ca_smc_general_assistance_meets_work_requirements(see Work Requirement)<(per-applicant after scaling)<against flat limitPayment Standards
Per the C-335 chart, by living arrangement:
NMOHC-with-referral tracks the California SSI NMOHC rate (CDSS-set, annual Jan-1 COLA). Pre-2025 amounts are not in the available source PDFs; noted with an inline comment in
payment_standard.yaml.Property Rules
max(additional_vehicle_equity - $2,928, 0). PolicyEngine has only aggregatehousehold_vehicles_valueandhousehold_vehicles_owned, so the average-based proportional approximation is the only viable approach.Income and Benefit
(standard − per-person countable income) × n_eligible.Work Requirement
The Fact Sheet requires "available for full-time employment" plus VRS Work Center participation. Exemptions:
senior_exemption_ageparameter)is_disabled)is_full_time_studentis_non_english_speaking_home(defaults to False, so doesn't silently exempt everyone)is_in_work_programinput (see below)New cross-program input:
is_in_work_programA generic Person/MONTH boolean input letting callers explicitly mark work-program participation (VRS Work Center, CalWORKs Welfare-to-Work, SNAP E&T, TANF work activities, ABAWD work-program participation). Lives in
variables/household/demographic/person/alongsideis_disabled,is_full_time_student, etc. Reusable across SMC GA, Riverside GR, and federal/state programs that currently model work compliance only through observable proxies.Related Fixes (Alameda County)
Two pre-existing bugs in Alameda General Assistance surfaced during review and are fixed in this PR:
in_ala.pytypo:county == "Alameda_COUNTY_CA"→"ALAMEDA_COUNTY_CA". The mixed-case string never matched the all-caps enum, silently making every Alameda household ineligible.programs.yamlparameter prefix:gov.local.ca.ala.ga→gov.local.ca.ala.general_assistanceto match the actual parameter folder structure.Changelog:
changelog.d/fixed/8360.md.Not Modeled (by design)
ssi == 0; CAPI not separately gatedverified_start_year: 2023inprograms.yamlFiles
Test plan
make formatclean