Skip to content

Commit e642ca5

Browse files
authored
Merge pull request #1467 from PolicyEngine/add-scottish-child-payment
Add Scottish Child Payment benefit
2 parents ab5b72a + 9b7d0a4 commit e642ca5

18 files changed

Lines changed: 658 additions & 1 deletion

File tree

changelog_entry.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
- bump: minor
2+
changes:
3+
added:
4+
- Scottish Child Payment - a benefit provided by Social Security Scotland for eligible children under 16 in low-income families receiving qualifying benefits (UC, tax credits, etc.).

policyengine_uk/entities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This file defines the entities needed by our legislation.
44
from policyengine_core.entities import build_entity
55

6-
Household = build_entity(
6+
Household = build_entity(
77
key="household",
88
plural="households",
99
label="Household",
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
description: Weekly amount of Scottish Child Payment per eligible child.
2+
values:
3+
0001-01-01: 0
4+
2021-02-15: 10
5+
2022-04-01: 20
6+
2022-11-14: 25
7+
2024-04-01: 26.70
8+
2025-04-01: 27.15
9+
metadata:
10+
unit: currency-GBP
11+
period: week
12+
label: Scottish Child Payment weekly amount
13+
reference:
14+
- title: Scottish Government - Scottish Child Payment
15+
href: https://www.gov.scot/policies/social-security/scottish-child-payment/
16+
- title: Social Security Scotland - SCP statistics
17+
href: https://www.socialsecurity.gov.scot/publications/2024/02/scottish-child-payment-statistics-to-31-december-2023
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
description: Maximum age for Scottish Child Payment eligibility (child must be under this age).
2+
values:
3+
0001-01-01: 0
4+
2021-02-15: 6
5+
2022-11-14: 16
6+
metadata:
7+
unit: year
8+
period: year
9+
label: Scottish Child Payment maximum age
10+
reference:
11+
- title: Scottish Government - Scottish Child Payment
12+
href: https://www.gov.scot/policies/social-security/scottish-child-payment/
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
description: >
2+
Whether Child Tax Credit is a qualifying benefit for Scottish Child Payment.
3+
CTC was removed as a qualifying benefit in 2024 as part of UC migration.
4+
values:
5+
0001-01-01: true
6+
2024-04-01: false
7+
metadata:
8+
unit: bool
9+
label: CTC qualifies for SCP
10+
reference:
11+
- title: Social Security Scotland - Scottish Child Payment
12+
href: https://www.socialsecurity.gov.scot/scottish-child-payment
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
description: >
2+
Whether income-related Employment and Support Allowance is a qualifying
3+
benefit for Scottish Child Payment.
4+
values:
5+
0001-01-01: true
6+
metadata:
7+
unit: bool
8+
label: ESA (income-related) qualifies for SCP
9+
reference:
10+
- title: Social Security Scotland - Scottish Child Payment
11+
href: https://www.socialsecurity.gov.scot/scottish-child-payment
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
description: Whether Income Support is a qualifying benefit for Scottish Child Payment.
2+
values:
3+
0001-01-01: true
4+
metadata:
5+
unit: bool
6+
label: Income Support qualifies for SCP
7+
reference:
8+
- title: Social Security Scotland - Scottish Child Payment
9+
href: https://www.socialsecurity.gov.scot/scottish-child-payment
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
description: >
2+
Whether income-based Jobseeker's Allowance is a qualifying benefit
3+
for Scottish Child Payment.
4+
values:
5+
0001-01-01: true
6+
metadata:
7+
unit: bool
8+
label: JSA (income-based) qualifies for SCP
9+
reference:
10+
- title: Social Security Scotland - Scottish Child Payment
11+
href: https://www.socialsecurity.gov.scot/scottish-child-payment
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
description: Whether Pension Credit is a qualifying benefit for Scottish Child Payment.
2+
values:
3+
0001-01-01: true
4+
metadata:
5+
unit: bool
6+
label: Pension Credit qualifies for SCP
7+
reference:
8+
- title: Social Security Scotland - Scottish Child Payment
9+
href: https://www.socialsecurity.gov.scot/scottish-child-payment
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
description: Whether Universal Credit is a qualifying benefit for Scottish Child Payment.
2+
values:
3+
0001-01-01: true
4+
metadata:
5+
unit: bool
6+
label: UC qualifies for SCP
7+
reference:
8+
- title: Social Security Scotland - Scottish Child Payment
9+
href: https://www.socialsecurity.gov.scot/scottish-child-payment

0 commit comments

Comments
 (0)