Implement Guaranteed Income Supplement (GIS)#522
Open
MaxGhenis wants to merge 2 commits intoPolicyEngine:masterfrom
Open
Implement Guaranteed Income Supplement (GIS)#522MaxGhenis wants to merge 2 commits intoPolicyEngine:masterfrom
MaxGhenis wants to merge 2 commits intoPolicyEngine:masterfrom
Conversation
Add the Guaranteed Income Supplement, a key component of Canada's retirement income system for low-income seniors. Features: - GIS eligibility based on OAS eligibility and income thresholds - Income-tested benefit with 50% reduction rate - Support for single and coupled seniors (basic implementation) - Maximum monthly benefits: $1,097.75 (single), $660.78 (couple both OAS) for 2025 - Comprehensive test coverage Implementation notes: - GIS income excludes OAS and GIS payments - Benefits phase out completely at twice the maximum amount - Simplified couple handling (assumes both receive OAS) - TODO: Add support for other couple scenarios (spouse no OAS, Allowance) This implementation addresses issue PolicyEngine#98 and brings PolicyEngine Canada closer to SPSD/M coverage. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Fix household income aggregation for couples (use household.sum) - Add couple test cases to verify household income aggregation works - Update test documentation with correct parameter values - Income source expansion already has placeholders for CPP, pensions, etc. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
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.
Summary
This PR implements the Guaranteed Income Supplement (GIS), a key component of Canada's retirement income system that provides additional support to low-income seniors receiving Old Age Security (OAS).
Implementation Details
Features
Components Added
Parameters:
Variables:
gis_eligible: Determines eligibility based on OAS status and incomegis_income: Calculates income for GIS purposes (excludes OAS/GIS)gis: Main benefit calculation with income testingis_single: Helper variable to determine household compositionTests: 14 comprehensive test cases covering:
Implementation Notes
benefitsaggregator variableTODO/Future Enhancements
Testing
All tests pass:
References
Fixes #98
🤖 Generated with Claude Code
Co-Authored-By: Claude noreply@anthropic.com