-
Notifications
You must be signed in to change notification settings - Fork 186
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
Structural reforms for Rep Jared Golden's FISC #5601
Conversation
...arameters/gov/contrib/congress/golden/fisc_act/family_income_supplement/amount/pregnant.yaml
Outdated
Show resolved
Hide resolved
...rameters/gov/contrib/congress/golden/fisc_act/family_income_supplement/income_threshold.yaml
Outdated
Show resolved
Hide resolved
...rameters/gov/contrib/congress/golden/fisc_act/family_income_supplement/income_threshold.yaml
Outdated
Show resolved
Hide resolved
...rameters/gov/contrib/congress/golden/fisc_act/family_income_supplement/income_threshold.yaml
Outdated
Show resolved
Hide resolved
...arameters/gov/contrib/congress/golden/fisc_act/family_income_supplement/phase_out/joint.yaml
Show resolved
Hide resolved
policyengine_us/parameters/gov/contrib/congress/golden/fisc_act/in_effect.yaml
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
could you add the >=18yo requirement for caregivers too, or file as a separate issue if not here?
...arameters/gov/contrib/congress/golden/fisc_act/family_income_supplement/phase_out/other.yaml
Outdated
Show resolved
Hide resolved
...eters/gov/contrib/congress/golden/fisc_act/family_income_supplement/child_age_threshold.yaml
Outdated
Show resolved
Hide resolved
...us/parameters/gov/contrib/congress/golden/fisc_act/family_income_supplement/amount/base.yaml
Outdated
Show resolved
Hide resolved
...arameters/gov/contrib/congress/golden/fisc_act/family_income_supplement/amount/pregnant.yaml
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This o1-pro conversation revealed other changes needed:
-
Reorder the steps:
- Compute the base monthly amount (pregnancy or child rate).
- Apply the 20% “joint” marriage bonus on top of that.
- Subtract the phase‐out amounts.
- Enforce the 1/12‐of‐AGI cap last.
-
Adjust the phase‐out:
- The bill’s $16.67 per $1,000 is per month. If the code is doing an annual calculation, multiply the phase‐out rate by 12 so you reduce $200 annually per $1,000 above the threshold.
-
Fix the 1/12‐of‐AGI cap:
- Currently, the entire annual credit is capped at 1/12 of AGI. Instead, either (a) limit each monthly payment to AGI/12, or (b) allow up to a total of AGI if summing twelve monthly checks across the year.
policyengine_us/tests/policy/contrib/congress/golden/fisc_act.yaml
Outdated
Show resolved
Hide resolved
modified the phase-out and cap to be yearly params to simplify |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
let's simplify by putting the pregnancy amount (4mo) in the 0yo
...eters/gov/contrib/congress/golden/fisc_act/family_income_supplement/age_threshold/child.yaml
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add an integration test without is_mother as True, i want to make sure the pregnancy credit applies when we just have a single parent of unspecified gender. if it adds complexity just remove the separate pregnancy amount and make the 0yo bracket $8k
consolidated into one parameter and one amount variable - the is mother doe snot apply automatically to single parents |
Fixes #5596