# Application Status
Application status represents what is happening with an application at thecurrent moment, whether it was accepted or rejected, needs to be included in a winner draw or is awaiting review.
graph TD
  Received -.-> |Seen by reviewer| Review
  Review -.-> |Reviewer accepted| Accepted
  Review -.-> |Reviewer rejected| Rejected
  Accepted ==> Yes(Included in winner draw)
  Rejected ==> No(Not included in winner draw)
 WARNING
An application without requirements will not be reviewed so they automatically get Accepted status.
# Attributes
id- String - Status id. Example: accepted
 
name- String - Status label. Example: Accepted
 
# List
List of scholarship statues.
| Status ID | Description | 
|---|---|
| received | Application received and waiting for review | 
| review | Application under review | 
| accepted | Application accepted and will be included in winner picking. | 
| rejected | Application rejected. |