Hello,
While I appreciate there has been some initial work related to HR1 compliance (see the is_medicaid_eligible variable for instance), I think it has a few issues in its implementation that I would like to correct:
- It seems like it's applying Medicaid work requirements to all when they really just apply to people in the Medicaid expansion population. Is there a definition to tell if a user is in_medicaid_expansion population?
- Grouping compliance into separate major buckets for exemptions, hardships (temp. exemptions for things like disasters, etc.) as well as compliance might be useful. Eligibility is then rolling up those specific categories
- CMS' current interpretation of the rule is that lookback period for an application is the 6 months immediately before the month of the current application date, but that the state can use any single month in that lookback to show compliance (meaning we should test each individual month)
- The review period changes depending on state preferences as well as application type
- States must decide if they want applicants to show compliance 1, 2 or 3 months. I'd expect states to either pick 1 or 3 months depending on how lenient or punitive they want to be.
- For new applications, states can decided if compliance needs to be for those months immediately prior to application date
- For renewal applications, states/applicants can use any of the months (1-3 depending on their choice) in the preceding 6 months to use for verifying compliance.
Here is a non-complete list of the different type of variables at play (more to fill in later), with a check of implementation progress for an associated PR
Possible challenges:
- Is identifying if someone is in the Medicaid expansion group straightforward > 1 PFL but <= 1.38x PFL? or does it vary depending on the state and the person's Medicaid category?
- Medicaid uses a 6-month period and a 3-month period for some checks. Is that easy enough to support as periods?
- when should we attempt to compute a variable based on underlying data vs. just accepting a boolean to indicate a determination has been made? It seems like if there are parameters we'd want to simulate chnages for, it might make sense to use them internally.
- harships use county-level data that needs to be updated monthly. Is this something the system can do?
What do you all think? Does this make sense to do here? Should the work be structured as one big PRs or multiple PRs?
Hello,
While I appreciate there has been some initial work related to HR1 compliance (see the is_medicaid_eligible variable for instance), I think it has a few issues in its implementation that I would like to correct:
Here is a non-complete list of the different type of variables at play (more to fill in later), with a check of implementation progress for an associated PR
Possible challenges:
What do you all think? Does this make sense to do here? Should the work be structured as one big PRs or multiple PRs?