Closed steele-lm closed 1 year ago
@DLarson-Oddball @Midge-dev @fred-khoury-oddball I stubbed out the tech review ticket and added general tasks, but feel free to refine since Thomas is out.
Hey @DLarson-Oddball I’m using Zenhub in GitHub, click this link to join my workspace and see other features available in GitHub or download the Zenhub extension and sign up with your GitHub account. Posted using Zenhub
In-progress form query from Kyle Soskin:
form_ids = ["21P-527EZ", "21P-530"]
all = InProgressForm.where(form_id: form_ids);nil
puts "Total in-progress: #{all.count}"
form_ids.each do |id|
puts "=== #{id} ==="
puts "Number of total open in-progress forms: #{all.where(form_id: id).count}"
pp all.where(form_id: id).group("date_trunc('year', created_at), date_trunc('month', created_at)")
.count(:id).sort_by {|k,v| k}.to_h
end
Which yields:
Total in-progress: 4196
=== 21P-527EZ ===
Number of total open in-progress forms: 2677
{2022-10-01 00:00:00 UTC=>1,
2022-11-01 00:00:00 UTC=>2,
2023-02-01 00:00:00 UTC=>1,
2023-03-01 00:00:00 UTC=>10,
2023-04-01 00:00:00 UTC=>37,
2023-05-01 00:00:00 UTC=>571,
2023-06-01 00:00:00 UTC=>1342,
2023-07-01 00:00:00 UTC=>713}
=== 21P-530 ===
Number of total open in-progress forms: 1520
{2023-02-01 00:00:00 UTC=>1,
2023-03-01 00:00:00 UTC=>1,
2023-04-01 00:00:00 UTC=>7,
2023-05-01 00:00:00 UTC=>365,
2023-06-01 00:00:00 UTC=>729,
2023-07-01 00:00:00 UTC=>417}
@steele-lm Is is possible to pull/uncover data on when forms were last edited (not just when they were created, and when they will expire)? Then we could align on a definition of abandonment to deprioritize some in-progress forms that haven't been touched in a long time.
@juliepedtke Kyle confirmed that he can narrow the query by last-edit-date once we align on a definition of abandonment.
Last-edit-date would be great to have. I think a definition of abandonment will take some discussion, and doesn't need to be done first. We might decide that we want to slice it some other way, like based on how much info they've filled in, etc.
I guess that leads me to another question: can we query by how many pages of the form / what % of form fields were completed?
Kyle indicated that we can "sort of" determine how many pages were filled out... Here is an example of a stored IPF (in staging)
#<InProgressForm id: 22641, user_uuid: "c32deef0c41744f8a3b20a6e7f63da97", form_id: "21P-527EZ", created_at: "2023-07-13 20:03:48.232230000 +0000", updated_at: "2023-07-13 23:56:52.040156000 +0000", metadata: {"version"=>3, "return_url"=>"/additional-information/direct-deposit", "saved_at"=>1689292611843, "submission"=>{"status"=>false, "error_message"=>false, "id"=>false, "timestamp"=>false, "has_attempted_submit"=>false}}, expires_at: "2023-09-11 23:56:52.037188000 +0000", form_data: [FILTERED], encrypted_kms_key: "v1:AQICAHjVjGLd4IjSSZNlaxuvYz6L//LLhgOqQTfIbDnXZJS...", verified_decryptable_at: nil, user_account_id: "95224dec-0e77-4bad-a908-ec4effe7b611">
Interesting! cc @fiorella-io @ohgreatkate
luckily I believe we captured the URLs in our form flow Murals so that might not end up as challenging as it sounds!
Here is an in progress list of files we've identified are relating to 527 and 530: burials and memorials form 530:
home loan COE form 527:
links found so far
527: https://www.va.gov/pension/how-to-apply/ https://www.va.gov/find-forms/about-form-21p-527ez/ https://www.va.gov/find-forms/about-form-21p-527ez/ https://va.gov/pension/ https://va.gov/pension/eligibility/ https://www.va.gov/files/2023-02/vawk-black-and-white.pdf#page=46 https://www.va.gov/files/2023-01/pension-benefits-qsg.pdf#page=2 https://www.va.gov/files/2023-01/aging-veterans-qsg.pdf https://www.va.gov/files/2023-01/vawk-color.pdf#page=46
530: https://www.va.gov/burials-memorials/veterans-burial-allowance/ https://www.va.gov/SURVIVORS/docs/NCAQuickGuideADA.pdf page 17 https://www.va.gov/files/2022-11/HPM%20EOL%20Resource%20Booklet%20(1).pdf#page=21 https://www.va.gov/files/2023-02/vawk-black-and-white.pdf#page=47 https://www.va.gov/files/2023-01/pension-benefits-qsg.pdf#page=2 https://www.va.gov/files/2023-01/vawk-color.pdf#page=47
Other notes: There are links to both 527 and 530 in the nav bar.
Thank you @fred-khoury-oddball! Adding the page # where the links exist was very helpful!
Issue Description
The online 527 pension form is so outdated that it cannot be processed. VA stakeholders would like access to the form to be removed from va.gov and users informed of the proper pathway.
Possible Use Cases
Possible Scenarios
Resources
Tasks