Skip to content
Draft
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/hi-tanf-soa-rate-increase.changed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Updated Hawaii TANF Standard of Assistance rate from 48% to 62% of the standard of need, effective March 1, 2025.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ description: Hawaii sets the Standard of Assistance to this share of the Standar
values:
2007-07-01: 0.5
2009-07-01: 0.48
2025-03-01: 0.62

metadata:
unit: /1
Expand All @@ -13,3 +14,5 @@ metadata:
href: https://humanservices.hawaii.gov/wp-content/uploads/2018/02/Section-346-54-HRS-Public-Assistance-Expenditures-Report-2016.pdf#page=1
- title: Hawaii TANF State Plan 11.1 Income and Benefit Standards (Effective October 1, 2023)
href: https://humanservices.hawaii.gov/wp-content/uploads/2024/12/Hawaii_TANF_State_Plan_Signed_Certified-Eff_20231001.pdf#page=22
- title: Hawaii DHS BESSD Section 346-51.5 HRS TANF Report to the 33rd Legislature (March 20, 2025) - allowance increased from 48% to 62% of the standard of need effective March 1, 2025
href: https://humanservices.hawaii.gov/wp-content/uploads/2024/11/RYamane_2025-HRS-Sect-346-51.5-TANF-Legislative-Report-DHS-BESSD-signed.pdf#page=5
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,30 @@
# 939 * 0.48 * 0.80 = 360.58
hi_tanf_max_benefit_standard: 360.58

- name: Case 4, family of 3 after the March 1 2025 rate increase (48% to 62%).
period: 2026-01
absolute_error_margin: 0.01
input:
people:
person1:
age: 30
person2:
age: 5
person3:
age: 3
spm_units:
spm_unit:
members: [person1, person2, person3]
households:
household:
members: [person1, person2, person3]
state_code: HI
output:
# SON (size 3): 1590
# SOA = 1590 * 0.62 = 985.80
# After 20% mandatory-work reduction: 985.80 * 0.80 = 788.64
hi_tanf_max_benefit_standard: 788.64

- name: Case 3, non-Hawaii household returns zero.
period: 2024-01
absolute_error_margin: 0.01
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Hawaii TANF maximum benefit reflects the steady-state mandatory-work
# Standard of Assistance: SON × SOA rate (0.48) × (1 - mandatory-work
# reduction (0.20)). This matches the figure reported by CBPP and the
# Standard of Assistance: SON × SOA rate × (1 - mandatory-work
# reduction (0.20)). The SOA rate is 0.48 through February 2025 and
# 0.62 from March 1, 2025 (DHS BESSD § 346-51.5 HRS report). This
# matches the figure reported by CBPP and the
# Urban Welfare Rules Database (CBPP "Continued Increases in TANF
# Benefit Levels", May 2024 / Feb 2025) and Hawaii TANF State Plan
# 11.1, footnote 4.
Expand Down Expand Up @@ -241,3 +243,24 @@
output:
# 3872 × 0.48 × 0.80 = 1486.848 (caps at size 10)
hi_tanf_maximum_benefit: 1_486.848

- name: Case 10, family of 3 after the March 1 2025 rate increase (48% to 62%).
period: 2026-01
input:
people:
person1:
age: 30
person2:
age: 28
person3:
age: 5
spm_units:
spm_unit:
members: [person1, person2, person3]
households:
household:
members: [person1, person2, person3]
state_code: HI
output:
# 1590 × 0.62 × 0.80 = 788.64 (DHS worked example: $610 -> $789)
hi_tanf_maximum_benefit: 788.64
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ def formula(spm_unit, period, parameters):
# Standard of Need (SON) = 100% of 2006 Hawaii FPG.
son = p.standard_of_need.amount[capped_size]

# Standard of Assistance (SOA) = SON × 48% per HI TANF State Plan 11.1.
# Standard of Assistance (SOA) = SON × the standard-of-assistance
# rate (48% per HI TANF State Plan 11.1; raised to 62% effective
# March 1, 2025 per the DHS BESSD § 346-51.5 HRS report).
soa = son * p.standard_of_assistance.rate

# Per HI TANF State Plan 11.1 footnote 4: SOA is further reduced by 20%
Expand Down