-
Notifications
You must be signed in to change notification settings - Fork 201
Illinois Health Benefits for Workers with Disabilities (Medicaid buy-in) #6841
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
base: master
Are you sure you want to change the base?
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #6841 +/- ##
==========================================
Coverage 100.00% 100.00%
==========================================
Files 2 15 +13
Lines 26 181 +155
==========================================
+ Hits 26 181 +155
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:
|
Implements the Illinois Department of Healthcare and Family Services Health Benefits for Workers with Disabilities (HBWD) program including: - Eligibility determination (age, disability, employment, income, assets, immigration) - Income calculation with earned/unearned income sources - Work expense deductions (reusing AABD exemptions per 89 Ill. Admin. Code § 120.370) - Asset eligibility with $25,000 limit - Premium calculation using 2-array bracket approach (98.6% accuracy vs full 2D table) - Integration tests validating the complete benefit calculation pipeline All variables include comprehensive documentation with regulatory citations from Illinois Administrative Code and HFS policy materials. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
Updates parameter metadata to match AABD/TANF conventions: - Use "these" instead of "the following" for consistency with TANF - Simplify descriptions to match existing IL program patterns - Use full program name in labels instead of abbreviations - Standardize reference URLs to law.cornell.edu format 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
Updates HBWD to properly implement all regulatory requirements: Income calculation now includes: - Full earned income exemptions per § 120.362 (reusing AABD calculation) - Spouse income aggregation at SPMUnit level per § 120.510(f) - Vehicle asset exemptions (reusing AABD rules per § 120.381) Technical changes: - Changed il_hbwd_countable_income from Person to SPMUnit entity - Simplified il_hbwd_countable_earned_income to use adds pattern - Removed redundant deductions variable (now handled by AABD exemption) - Updated il_hbwd_income_eligible to access household-level income - Updated il_hbwd_countable_assets to include vehicle exemptions - Deleted test files for variables that only use adds pattern All 51 tests passing with updated expectations for exemption amounts. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
MaxGhenis
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
reviewed alongside @daphnehanse11
policyengine_us/parameters/gov/states/il/hfs/hbwd/premium/earned_component.yaml
Outdated
Show resolved
Hide resolved
policyengine_us/parameters/gov/states/il/hfs/hbwd/premium/earned_component.yaml
Outdated
Show resolved
Hide resolved
policyengine_us/parameters/gov/states/il/hfs/hbwd/age_threshold.yaml
Outdated
Show resolved
Hide resolved
policyengine_us/parameters/gov/states/il/hfs/hbwd/income/income_limit/rate.yaml
Outdated
Show resolved
Hide resolved
policyengine_us/parameters/gov/states/il/hfs/hbwd/premium/earned_component.yaml
Outdated
Show resolved
Hide resolved
|
Any statutory references available? (Not regs) |
PavelMakarchuk
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM after maxes comments
daphnehanse11
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
reviewed with max, otherwise looks good to me
Yes, https://www.ilga.gov/documents/legislation/ilcs/documents/030500050K5-2.htm |
|
Need to figure out a way to represent benefit for this program. Currently only has the cost part (monthly premium) |
|
Converting to draft until payment structure is implemented |
Fixes #6783