-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(veterans): first pass @ veterans use case docs
- Loading branch information
1 parent
60b6d0b
commit cb1245d
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Veterans | ||
|
||
Another use case for the Benefits application is for U.S. veterans - people who have served in the active military, naval, or air service, and who were discharged or released therefrom under conditions other than dishonorable. The Benefits application verifies the person's veteran status to confirm eligibility and allows those eligible to enroll their contactless payment card for their transit benefit. | ||
|
||
On the back-end, the app uses the Identity Gateway to connect to the [Veteran Confirmation API](https://developer.va.gov/explore/api/veteran-confirmation) to confirm veteran status. On the front-end, users must create or log into their Login.gov account to complete the eligibility verification process. | ||
|
||
## Process | ||
|
||
```mermaid | ||
sequenceDiagram | ||
actor Rider | ||
participant Benefits as Benefits app | ||
participant IdG as Identity Gateway | ||
participant VA as VA.gov Confirmation API | ||
participant Littlepay | ||
Rider->>Benefits: visits site | ||
Benefits-->>IdG: identity proofing | ||
IdG-->>VA: identity proofing | ||
Rider->>VA: enters SSN and ID | ||
VA-->>IdG: eligibility verification | ||
IdG-->>Benefits: eligibility verification | ||
Benefits-->>Littlepay: enrollment start | ||
Rider->>Littlepay: enters payment card details | ||
Littlepay-->>Benefits: enrollment complete | ||
``` |