User minimal time report
| Property | Type | Description | Information |
|---|---|---|---|
id | int | Identifier | Unique for single user minimal time report. |
user_id | int | User Identifier | Identifier of user |
year | int | Year of Time Report | With month and user_id makes unique combination. |
month | int | Month of Time Report | With year and user_id makes unique combination. |
required_minutes | int | Required minutes. | Minimal amount of minutes user should report this month. |
reported_minutes | int | Reported minutes. | Total amount of minutes reported by user. |
Example:
{
"id": 1,
"user_id": 1,
"year": 2023,
"month": 5,
"required_minutes": 7100,
"reported_minutes": 1124
}