Skip to content
Closed
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
4 changes: 4 additions & 0 deletions changelog_entry.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- bump: minor
changes:
added:
- Add New Mexico SSI state supplement (ARSCH shelter care supplement).
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ values:
- ca_state_supplement
# Nebraska benefits
- ne_child_care_subsidies
# New Mexico benefits
- nm_ssi_state_supplement
# Massachusetts benefits
- ma_eaedc
- ma_tafdc
Expand All @@ -41,6 +43,8 @@ values:
- ca_state_supplement
# Nebraska benefits
- ne_child_care_subsidies
# New Mexico benefits
- nm_ssi_state_supplement
# North Carolina benefits
- nc_scca
# Massachusetts benefits
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
description: New Mexico provides this amount as the monthly supplement under the Supplemental Security Income state supplement program.

values:
2004-07-01: 100

metadata:
unit: currency-USD
period: month
label: New Mexico SSI state supplement amount
reference:
- title: 8.106.500.10 NMAC - Payments to Adults in Residential Care
href: https://srca.nm.gov/parts/title08/08.106.0500.html
- title: SSA State Assistance Programs for SSI Recipients - New Mexico (2011)
href: https://www.ssa.gov/policy/docs/progdesc/ssi_st_asst/2011/nm.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
description: New Mexico limits the Supplemental Security Income state supplement program to individuals at or above this age.

values:
2004-07-01: 18

metadata:
unit: year
period: year
label: New Mexico SSI state supplement minimum age
reference:
- title: SSA State Assistance Programs for SSI Recipients - New Mexico (2011)
href: https://www.ssa.gov/policy/docs/progdesc/ssi_st_asst/2011/nm.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,166 @@
# New Mexico SSI State Supplement Integration Tests
# Tests the full eligibility and benefit calculation pipeline
# Source: 8.106.500.10 NMAC - Payments to Adults in Residential Care
# Program: $100/month flat payment for SSI recipients in licensed ARSCH facilities

- name: Case 1, elderly SSI recipient in ARSCH facility receives supplement.
period: 2025
absolute_error_margin: 0.01
input:
people:
person1:
age: 70
is_ssi_eligible_individual: true
is_in_adult_residential_care: true
households:
household:
members: [person1]
state_code: NM
output:
people:
person1:
# Eligibility: SSI-eligible (true) AND age >= 18 (70 >= 18) AND in ARSCH (true)
nm_ssi_state_supplement_eligible: true
# Benefit: $100/month * 12 = $1,200/year (flat payment)
nm_ssi_state_supplement: 1_200

- name: Case 2, disabled adult SSI recipient in ARSCH facility receives supplement.
period: 2025
absolute_error_margin: 0.01
input:
people:
person1:
age: 35
is_ssi_eligible_individual: true
is_in_adult_residential_care: true
households:
household:
members: [person1]
state_code: NM
output:
people:
person1:
# Eligibility: SSI-eligible (true) AND age >= 18 (35 >= 18) AND in ARSCH (true)
nm_ssi_state_supplement_eligible: true
# Benefit: $100/month * 12 = $1,200/year
nm_ssi_state_supplement: 1_200

- name: Case 3, SSI couple both in ARSCH facility each receive supplement.
period: 2025
absolute_error_margin: 0.01
input:
people:
person1:
age: 68
is_ssi_eligible_individual: true
is_in_adult_residential_care: true
person2:
age: 66
is_ssi_eligible_individual: true
is_in_adult_residential_care: true
households:
household:
members: [person1, person2]
state_code: NM
output:
people:
person1:
# Person 1: SSI-eligible, age 68 >= 18, in ARSCH
nm_ssi_state_supplement_eligible: true
# $100/month * 12 = $1,200/year per person
nm_ssi_state_supplement: 1_200
person2:
# Person 2: SSI-eligible, age 66 >= 18, in ARSCH
# Per 8.106.400.10 NMAC: couples in ARSCH are two separate benefit groups
nm_ssi_state_supplement_eligible: true
# $100/month * 12 = $1,200/year per person
nm_ssi_state_supplement: 1_200

- name: Case 4, NM resident not in ARSCH facility receives no supplement.
period: 2025
absolute_error_margin: 0.01
input:
people:
person1:
age: 72
is_ssi_eligible_individual: true
is_in_adult_residential_care: false
households:
household:
members: [person1]
state_code: NM
output:
people:
person1:
# Not in ARSCH facility: ineligible regardless of SSI status
nm_ssi_state_supplement_eligible: false
nm_ssi_state_supplement: 0

- name: Case 5, age 18 boundary in ARSCH facility is eligible.
period: 2025
absolute_error_margin: 0.01
input:
people:
person1:
age: 18
is_ssi_eligible_individual: true
is_in_adult_residential_care: true
households:
household:
members: [person1]
state_code: NM
output:
people:
person1:
# Age exactly 18: meets the 18+ requirement
nm_ssi_state_supplement_eligible: true
# $100/month * 12 = $1,200/year
nm_ssi_state_supplement: 1_200

- name: Case 6, household with one eligible and one ineligible person.
period: 2025
absolute_error_margin: 0.01
input:
people:
person1:
age: 60
is_ssi_eligible_individual: true
is_in_adult_residential_care: true
person2:
age: 45
is_ssi_eligible_individual: false
is_in_adult_residential_care: true
households:
household:
members: [person1, person2]
state_code: NM
output:
people:
person1:
# Person 1: SSI-eligible, age 60 >= 18, in ARSCH = eligible
nm_ssi_state_supplement_eligible: true
nm_ssi_state_supplement: 1_200
person2:
# Person 2: NOT SSI-eligible = ineligible even though in ARSCH
nm_ssi_state_supplement_eligible: false
nm_ssi_state_supplement: 0

- name: Case 7, SSI recipient in ARSCH facility but outside NM receives nothing.
period: 2025
absolute_error_margin: 0.01
input:
people:
person1:
age: 65
is_ssi_eligible_individual: true
is_in_adult_residential_care: true
households:
household:
members: [person1]
state_code: TX
output:
people:
person1:
# Wrong state: defined_for = StateCode.NM excludes non-NM residents
nm_ssi_state_supplement_eligible: false
nm_ssi_state_supplement: 0
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
# New Mexico SSI State Supplement Benefit Amount Unit Tests
# Tests the flat $100/month ($1,200/year) payment for eligible individuals
# Source: 8.106.500.10 NMAC - Payments to Adults in Residential Care

- name: Case 1, eligible person receives full annual supplement.
period: 2025
absolute_error_margin: 0.01
input:
people:
person1:
age: 65
is_ssi_eligible_individual: true
is_in_adult_residential_care: true
households:
household:
members: [person1]
state_code: NM
output:
people:
person1:
# $100/month * 12 months = $1,200/year
nm_ssi_state_supplement: 1_200

- name: Case 2, not SSI-eligible receives zero.
period: 2025
absolute_error_margin: 0.01
input:
people:
person1:
age: 65
is_ssi_eligible_individual: false
is_in_adult_residential_care: true
households:
household:
members: [person1]
state_code: NM
output:
people:
person1:
nm_ssi_state_supplement: 0

- name: Case 3, not in ARSCH facility receives zero.
period: 2025
absolute_error_margin: 0.01
input:
people:
person1:
age: 65
is_ssi_eligible_individual: true
is_in_adult_residential_care: false
households:
household:
members: [person1]
state_code: NM
output:
people:
person1:
nm_ssi_state_supplement: 0

- name: Case 4, underage person receives zero.
period: 2025
absolute_error_margin: 0.01
input:
people:
person1:
age: 17
is_ssi_eligible_individual: true
is_in_adult_residential_care: true
households:
household:
members: [person1]
state_code: NM
output:
people:
person1:
nm_ssi_state_supplement: 0
Loading