Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.d/1671.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Document `council_tax_less_benefit` as a public-facing convenience variable used by downstream consumers (`policyengine-app`, `council-tax-ctr-map`, `policyengine-uk-data` calibration targets) rather than the core model itself, so future audits do not flag it as dead code.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,13 @@

class council_tax_less_benefit(Variable):
label = "Council Tax (less CTB)"
documentation = "Council Tax minus the Council Tax Benefit"
documentation = (
"Council Tax minus Council Tax Benefit / CTR. Kept as a public "
"convenience variable for downstream consumers (e.g. policyengine-app, "
"council-tax-ctr-map, policyengine-uk-data calibration targets) that "
"need the net council tax bill on a single line; not consumed inside "
"the core model itself."
)
entity = Household
definition_period = YEAR
value_type = float
Expand Down