-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add consumer and capital incidence of employer NI (#969)
* Fix Automatically apportion remaining employer NI response to consumption #968 * Versioning * Fix parameter labels * Add government balance/tax/spend variables
- Loading branch information
1 parent
03b1c8b
commit f1ffe6a
Showing
13 changed files
with
317 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
6 changes: 6 additions & 0 deletions
6
policyengine_uk/parameters/gov/contrib/policyengine/employer_ni/capital_incidence.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
description: Fraction of (remaining after employee incidence) employer NI that is borne by capital. | ||
values: | ||
2010-01-01: 0.5 | ||
metadata: | ||
label: Employer NI capital incidence | ||
unit: /1 |
6 changes: 6 additions & 0 deletions
6
policyengine_uk/parameters/gov/contrib/policyengine/employer_ni/consumer_incidence.yaml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
description: Fraction of (remaining after employee incidence) employer NI that is borne by consumers. | ||
values: | ||
2010-01-01: 0.5 | ||
metadata: | ||
label: Employer NI consumer incidence | ||
unit: /1 |
2 changes: 1 addition & 1 deletion
2
policyengine_uk/parameters/gov/contrib/policyengine/employer_ni/employee_incidence.yaml
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
from policyengine_uk.model_api import * | ||
|
||
|
||
class gov_balance(Variable): | ||
label = "government balance" | ||
documentation = "Government deficit impact in respect of this household." | ||
entity = Household | ||
definition_period = YEAR | ||
value_type = float | ||
unit = GBP | ||
adds = ["gov_tax"] | ||
subtracts = ["gov_spending"] |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
from policyengine_uk.model_api import * | ||
|
||
|
||
class gov_spending(Variable): | ||
label = "government spending" | ||
documentation = "Government spending impact in respect of this household." | ||
entity = Household | ||
definition_period = YEAR | ||
value_type = float | ||
unit = GBP | ||
adds = [ | ||
"child_benefit", | ||
"esa_income", | ||
"esa_contrib", | ||
"housing_benefit", | ||
"income_support", | ||
"jsa_income", | ||
"jsa_contrib", | ||
"pension_credit", | ||
"universal_credit", | ||
"working_tax_credit", | ||
"child_tax_credit", | ||
"attendance_allowance", | ||
"afcs", | ||
"bsp", | ||
"carers_allowance", | ||
"dla", | ||
"iidb", | ||
"incapacity_benefit", | ||
"jsa_contrib", | ||
"pip", | ||
"sda", | ||
"state_pension", | ||
"maternity_allowance", | ||
"statutory_sick_pay", | ||
"statutory_maternity_pay", | ||
"ssmg", | ||
"basic_income", | ||
"epg_subsidy", | ||
"cost_of_living_support_payment", | ||
"energy_bills_rebate", | ||
"winter_fuel_allowance", | ||
"nhs_budget_change", | ||
"education_budget_change", | ||
"other_public_spending_budget_change", | ||
] |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
from policyengine_uk.model_api import * | ||
|
||
|
||
class gov_tax(Variable): | ||
label = "government tax revenue" | ||
documentation = ( | ||
"Government tax revenue impact in respect of this household." | ||
) | ||
entity = Household | ||
definition_period = YEAR | ||
value_type = float | ||
unit = GBP | ||
adds = [ | ||
"expected_sdlt", | ||
"expected_ltt", | ||
"expected_lbtt", | ||
"corporate_sdlt", | ||
"business_rates", | ||
"council_tax", | ||
"domestic_rates", | ||
"fuel_duty", | ||
"tv_licence", | ||
"wealth_tax", | ||
"non_primary_residence_wealth_tax", | ||
"income_tax", | ||
"national_insurance", | ||
"LVT", | ||
"carbon_tax", | ||
"vat_change", | ||
"capital_gains_tax", | ||
"private_school_vat", | ||
"corporate_incident_tax_revenue_change", | ||
"consumer_incident_tax_revenue_change", | ||
"high_income_incident_tax_change", | ||
"ni_employer", | ||
] |
This file contains 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
This file contains 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
This file contains 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
This file contains 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