Skip to content

Add Council Tax Reduction / Council Tax Benefit (CTR/CTB)#76

Open
vahid-ahmadi wants to merge 1 commit into
mainfrom
vahid/council-tax
Open

Add Council Tax Reduction / Council Tax Benefit (CTR/CTB)#76
vahid-ahmadi wants to merge 1 commit into
mainfrom
vahid/council-tax

Conversation

@vahid-ahmadi

Copy link
Copy Markdown
Contributor

Addresses #42.

Council tax liability (band × LA-multiplier with the 25% single-person discount) was already modelled in src/variables/wealth_taxes.rs and surfaced as HouseholdResult.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

  • New module src/variables/council_tax.rscalculate_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%.
  • New 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.
  • Wired into the simulation (src/engine/simulation.rs): CTR is computed against the calculated council tax liability for the household reference person's benefit unit, surfaced on the new HouseholdResult.council_tax_reduction, counted in total_benefits, and added to HBAI net income — consistent with how other benefits flow.
  • Output / wrapper: new council_tax_reduction field in the main.rs ProgramBreakdown and the Python ProgramBreakdown; new CouncilTaxReductionParams Pydantic model + Parameters.council_tax_reduction for reform overlays, exported from the package.
  • 2025/26 parameters set in parameters/2025_26.yaml (Local Government Finance Act 2012 s.10; SI 2012/2885).
  • Citations added to LEGISLATIVE_REFERENCE.md (new section 15).
  • Changelog fragment changelog.d/added/council-tax-reduction.md.

Tests

cargo build and cargo test both pass (195 tests, 0 failures). New unit tests in council_tax.rs:

  • no liability → no reduction
  • low-income working-age → capped full support (90% of bill)
  • pension-age low-income → 100% support
  • high-income → tapered to zero
  • mid-income → exact partial taper

Remaining

  • Devolved CTR variants (Scotland SSI 2012/303, Wales SI 2013/3029) use different applicable amounts and 100%-support defaults; the current implementation applies the England-average scheme nationally. Documented in LEGISLATIVE_REFERENCE.md as a follow-up slice.
  • Disability/carer premiums in the CTR applicable amount, non-dependant deductions, and capital limits are not yet modelled.
  • Historical energy / cost-of-living council-tax rebates (issue item 4) are out of scope for this slice.

🤖 Generated with Claude Code

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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant