Add Council Tax Reduction / Council Tax Benefit (CTR/CTB)#76
Open
vahid-ahmadi wants to merge 1 commit into
Open
Add Council Tax Reduction / Council Tax Benefit (CTR/CTB)#76vahid-ahmadi wants to merge 1 commit into
vahid-ahmadi wants to merge 1 commit into
Conversation
Implements the means-tested support that reduces a household's council tax liability (Local Government Finance Act 2012 s.10; Council Tax Reduction Schemes (England) Regulations 2012, SI 2012/2885). Council tax liability itself (band x LA-multiplier + single-person discount) was already modelled in `wealth_taxes`; this fills the remaining CTR/CTB gap from issue #42. - New `src/variables/council_tax.rs` with `calculate_council_tax_reduction` and 5 unit tests (no-liability, low-income capped support, pension-age 100% support, high-income tapered to zero, partial taper). - New `CouncilTaxReductionParams` (20% taper per SI 2012/2885 Sch.1 para.30; pension-age up to 100%, working-age capped at England-average 90%). - Wired into `HouseholdResult.council_tax_reduction`, counted in `total_benefits`, and added to HBAI net income consistently with other benefits. Surfaced in `main.rs` ProgramBreakdown and the Python wrapper. - 2025/26 parameters in `parameters/2025_26.yaml`. - LEGISLATIVE_REFERENCE.md section 15; Scotland/Wales variants documented as remaining work. Co-Authored-By: Claude Opus 4.8 (1M context) <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.
Addresses #42.
Council tax liability (band × LA-multiplier with the 25% single-person discount) was already modelled in
src/variables/wealth_taxes.rsand surfaced asHouseholdResult.council_tax_calculated. This PR fills the remaining gap from the issue: the means-tested Council Tax Reduction / Council Tax Benefit (CTR/CTB) that reduces that liability and flows through to net income.Scope
src/variables/council_tax.rs—calculate_council_tax_reduction, the means test mirroring Housing Benefit (weekly applicable amount vs. income, excess tapered) but using the CTR/CTB 20% taper (SI 2012/2885 Sch.1 para.30) rather than HB's 65%.CouncilTaxReductionParams(src/parameters/mod.rs): taper rate, working-age maximum-support cap, and HB-style applicable-amount allowances. Pension-age claimants receive up to 100% support; working-age claimants are capped at a representative England-average 90% (max_support_working_age), reflecting that most billing authorities now require a minimum contribution.src/engine/simulation.rs): CTR is computed against the calculated council tax liability for the household reference person's benefit unit, surfaced on the newHouseholdResult.council_tax_reduction, counted intotal_benefits, and added to HBAI net income — consistent with how other benefits flow.council_tax_reductionfield in themain.rsProgramBreakdownand the PythonProgramBreakdown; newCouncilTaxReductionParamsPydantic model +Parameters.council_tax_reductionfor reform overlays, exported from the package.parameters/2025_26.yaml(Local Government Finance Act 2012 s.10; SI 2012/2885).LEGISLATIVE_REFERENCE.md(new section 15).changelog.d/added/council-tax-reduction.md.Tests
cargo buildandcargo testboth pass (195 tests, 0 failures). New unit tests incouncil_tax.rs:Remaining
LEGISLATIVE_REFERENCE.mdas a follow-up slice.🤖 Generated with Claude Code