Summary
This issue tracks the implementation of VAT (Value Added Tax) calculations at the firm level, which requires creating a new Firm entity in the model.
Background
Currently, PolicyEngine UK models VAT at the household consumption level but doesn't model VAT from the perspective of firms/businesses. To properly model VAT policy impacts on businesses and the economy, we need:
- A new Firm entity to represent businesses
- VAT registration thresholds (currently £90,000 annual turnover)
- VAT rates and exemptions by business type
- Input/output VAT calculations
Proposed Implementation
1. New Firm Entity
- Create a Firm entity class inheriting from Entity
- Define firm attributes: turnover, industry sector, VAT registration status
- Link firms to households (for sole traders/partnerships)
2. VAT Parameters
- Registration threshold (£90,000)
- Standard rate (20%)
- Reduced rate (5%)
- Zero rate (0%)
- Exempt supplies categories
3. VAT Variables
- firm_turnover
- firm_vat_registered
- firm_vat_on_sales
- firm_vat_on_purchases
- firm_net_vat_liability
4. Test Coverage
- Unit tests for Firm entity
- Tests for VAT threshold calculations
- Tests for different VAT rates by supply type
- Integration tests with household income
Benefits
- Model VAT policy changes impact on businesses
- Better understand VAT revenue implications
- Enable analysis of VAT threshold changes
- Support business tax reform modeling
Implementation Plan
- Create Firm entity class with TDD approach
- Add VAT parameters from HMRC guidelines
- Implement VAT calculation variables
- Add comprehensive test coverage
- Document the new functionality
References
Summary
This issue tracks the implementation of VAT (Value Added Tax) calculations at the firm level, which requires creating a new Firm entity in the model.
Background
Currently, PolicyEngine UK models VAT at the household consumption level but doesn't model VAT from the perspective of firms/businesses. To properly model VAT policy impacts on businesses and the economy, we need:
Proposed Implementation
1. New Firm Entity
2. VAT Parameters
3. VAT Variables
4. Test Coverage
Benefits
Implementation Plan
References