Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Split SSI couple amount for OAP #5276

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

CalebPena
Copy link
Collaborator

fixes #5275

@CalebPena CalebPena added states/co Colorado ssi Supplemental Security Income labels Oct 28, 2024
ssi = person("ssi", period)
total_countable_income = ssi + income
# The SSI variable assigns SSI to one member of the marital unit if both are eligible
marital_ssi = where(is_joint, person.marital_unit.sum(ssi) / 2, ssi)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
marital_ssi = where(is_joint, person.marital_unit.sum(ssi) / 2, ssi)
marital_ssi = where(is_joint, person.household.sum(ssi) / 2, ssi)

I think we want to sum it by household

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

SSI is a per member benefit except for the marital unit. So, if the child qualifies for SSI, we would not want that to be counted.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you add a source for this? AFAIUI, spouses could get different portions of the marital unit's total SSI, based on the personal income of each spouse; it's not automatically split 50/50.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My understanding is that if both spouses are eligible for SSI, they would only receive one check.

FYI, I just realized that I used the wrong variable. Just changed it to use ssi_marital_both_eligible

Copy link

codecov bot commented Oct 28, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 99.00%. Comparing base (cb92a56) to head (cb45838).
Report is 103 commits behind head on master.

Additional details and impacted files
@@            Coverage Diff             @@
##           master    #5276      +/-   ##
==========================================
- Coverage   99.12%   99.00%   -0.12%     
==========================================
  Files        2592     2612      +20     
  Lines       37707    38039     +332     
  Branches      162      166       +4     
==========================================
+ Hits        37378    37662     +284     
- Misses        297      344      +47     
- Partials       32       33       +1     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ssi Supplemental Security Income states/co Colorado
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Fix OAP for married people who both qualify for SSI.
3 participants