Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Targeted childcare entitlement #1013

Open
wants to merge 31 commits into
base: master
Choose a base branch
from

Conversation

vahid-ahmadi
Copy link
Collaborator

@vahid-ahmadi vahid-ahmadi commented Jan 24, 2025

Overview

This PR implements the 15-hour targeted childcare entitlement in PolicyEngine UK. The scheme provides government-funded childcare for eligible 2-year-olds in England whose families meet certain criteria. (Documentation link)

Note

It applies to England only. Different programs operate in Scotland, Wales, and Northern Ireland.

Key Features

  • Output type: yearly hours (0 or 570) for each child

Fixes #1014

Depends on #1004

@MaxGhenis MaxGhenis marked this pull request as draft January 24, 2025 18:21
Copy link

sonarqubecloud bot commented Feb 7, 2025

@vahid-ahmadi vahid-ahmadi marked this pull request as ready for review February 17, 2025 12:13
@vahid-ahmadi vahid-ahmadi self-assigned this Feb 18, 2025
@vahid-ahmadi vahid-ahmadi force-pushed the targeted-childcare-entitlement branch from 9b729c9 to a10dd64 Compare February 27, 2025 12:02
Copy link
Collaborator

@nikhilwoodruff nikhilwoodruff left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Minor comments

- threshold:
2014-01-01: 2
amount:
2014-01-01: 570
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

neither source includes this value

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

also verify start date of this value

@@ -0,0 +1,12 @@
description: Families claiming the Tax Credits with income over this amount are ineligible for the benefit-targeted free childcare entitlement.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this true? Can they still receive it if they qualify via other benefits?

label: income limit for tax credit recipients to access benefit-targeted free childcare
reference:
- title: The Local Authority (Duty to Secure Early Years Provision Free of Charge) Regulations 2014, part 1.2.b
href: https://www.legislation.gov.uk/uksi/2014/2147/regulation/1/made
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this only mentions wtc. does the gov site mention ctc because it's implied through the ctc rules? if so let's just reflect the law; otherwise please identify a case where that wouldn't capture the gov site.

unit: currency-GBP
period: year
label: income limit for universal credit recipients to access benefit-targeted free childcare
reference:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you find statutes?

input:
people:
adult1:
total_income: 10000
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

throughout

Suggested change
total_income: 10000
total_income: 10_000

meets_uc = (uc > 0) & (earned_income <= max_uc_income)

# Check Tax Credits eligibility
# Legislation source for total income limit:The Local Authority Regulations 2014, part 1.2.b
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this just says annual income. presumably it means the income concept used for wtc calculation. is that total_income? if so please note the statute for it

- income_support_reported
- jsa_income_reported
- esa_income_reported
- universal_credit_reported
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

instead make meets_universal_credit_criteria_for_targeted_childcare_entitlement and same for the wtc one (and ctc if you can find statutory backing for that pathway). make these separate variables with the relevant criteria (participation + income limit) then the eligibility can be a simple adds (which turns into true if nonzero when a bool type)

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.

Add targeted childcare entitlement
3 participants