Skip to content
Merged
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/al-ssi-ssp.added.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Implement Alabama State Supplementary Payment (SSP).
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ values:
- ca_la_expectant_parent_payment
- ca_capi
- ca_state_supplement
# Alabama benefits
- al_ssp
# Nebraska benefits
- ne_child_care_subsidies
# Massachusetts benefits
Expand All @@ -43,6 +45,8 @@ values:
- ca_la_expectant_parent_payment
- ca_capi
- ca_state_supplement
# Alabama benefits
- al_ssp
# Nebraska benefits
- ne_child_care_subsidies
# North Carolina benefits
Expand Down
32 changes: 32 additions & 0 deletions policyengine_us/parameters/gov/states/al/dhr/ssp/amount.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
description: Alabama provides this amount as the monthly supplement under the State Supplementary Payment program.

metadata:
unit: currency-USD
period: month
label: Alabama SSP supplement amount
breakdown:
- al_ssp_living_arrangement
reference:
- title: Ala. Admin. Code r. 660-2-4-.19a -- Attachment, Special Needs of Applicants and Recipients
href: https://admincode.legislature.state.al.us/api/chapter/660-2-4#page=24

FCMP_NURSING_CARE:
1995-01-01: 100

NURSING_CARE:
1995-01-01: 60

IHC_LEVEL_A:
1995-01-01: 60

IHC_LEVEL_B:
1995-01-01: 56

FOSTER_CARE:
1995-01-01: 110

CEREBRAL_PALSY:
1995-01-01: 196

NONE:
1995-01-01: 0
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
- name: FCMP Nursing Care individual
period: 2025-01
input:
al_ssp_eligible: true
al_ssp_living_arrangement: FCMP_NURSING_CARE
output:
al_ssp: 100

- name: Nursing Care individual
period: 2025-01
input:
al_ssp_eligible: true
al_ssp_living_arrangement: NURSING_CARE
output:
al_ssp: 60

- name: IHC Level A individual
period: 2025-01
input:
al_ssp_eligible: true
al_ssp_living_arrangement: IHC_LEVEL_A
output:
al_ssp: 60

- name: IHC Level B individual
period: 2025-01
input:
al_ssp_eligible: true
al_ssp_living_arrangement: IHC_LEVEL_B
output:
al_ssp: 56

- name: Foster Home Care individual
period: 2025-01
input:
al_ssp_eligible: true
al_ssp_living_arrangement: FOSTER_CARE
output:
al_ssp: 110

- name: Cerebral Palsy individual
period: 2025-01
input:
al_ssp_eligible: true
al_ssp_living_arrangement: CEREBRAL_PALSY
output:
al_ssp: 196

- name: Not eligible
period: 2025-01
input:
al_ssp_eligible: false
al_ssp_living_arrangement: IHC_LEVEL_A
output:
al_ssp: 0
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@
- name: SSI eligible in IHC Level A
period: 2025-01
input:
is_ssi_eligible: true
uncapped_ssi: 1
al_ssp_living_arrangement: IHC_LEVEL_A
state_code: AL
output:
al_ssp_eligible: true

- name: SSI eligible but no qualifying arrangement
period: 2025-01
input:
is_ssi_eligible: true
al_ssp_living_arrangement: NONE
state_code: AL
output:
al_ssp_eligible: false

- name: Not SSI eligible in IHC Level B
period: 2025-01
input:
is_ssi_eligible: false
al_ssp_living_arrangement: IHC_LEVEL_B
state_code: AL
output:
al_ssp_eligible: false

- name: Not SSI eligible and no arrangement
period: 2025-01
input:
is_ssi_eligible: false
al_ssp_living_arrangement: NONE
state_code: AL
output:
al_ssp_eligible: false

- name: SSI eligible in Foster Care
period: 2025-01
input:
is_ssi_eligible: true
uncapped_ssi: 1
al_ssp_living_arrangement: FOSTER_CARE
state_code: AL
output:
al_ssp_eligible: true

- name: SSI eligible in Cerebral Palsy center
period: 2025-01
input:
is_ssi_eligible: true
uncapped_ssi: 1
al_ssp_living_arrangement: CEREBRAL_PALSY
state_code: AL
output:
al_ssp_eligible: false

- name: SSI eligible in FCMP Nursing Care
period: 2025-01
input:
is_ssi_eligible: true
uncapped_ssi: 1
al_ssp_living_arrangement: FCMP_NURSING_CARE
state_code: AL
output:
al_ssp_eligible: true

- name: SSI eligible in Nursing Care
period: 2025-01
input:
is_ssi_eligible: true
uncapped_ssi: 1
al_ssp_living_arrangement: NURSING_CARE
state_code: AL
output:
al_ssp_eligible: true

- name: SSI eligible but income too high to receive SSI
period: 2025-01
input:
is_ssi_eligible: true
uncapped_ssi: 0
al_ssp_living_arrangement: IHC_LEVEL_A
state_code: AL
output:
al_ssp_eligible: false

- name: Grandfathered cerebral palsy recipient remains eligible
period: 2025-01
input:
is_ssi_eligible: false
uncapped_ssi: 0
al_ssp_grandfathered: true
al_ssp_living_arrangement: CEREBRAL_PALSY
state_code: AL
output:
al_ssp_eligible: true

- name: Grandfathered non-SSI recipient remains eligible
period: 2025-01
input:
is_ssi_eligible: false
uncapped_ssi: 0
al_ssp_grandfathered: true
al_ssp_living_arrangement: IHC_LEVEL_A
state_code: AL
output:
al_ssp_eligible: true

- name: Wrong state
period: 2025-01
input:
is_ssi_eligible: true
al_ssp_living_arrangement: IHC_LEVEL_A
state_code: CO
output:
al_ssp_eligible: false
Loading
Loading