User schema
| Name | Type | Description | Notes |
|---|---|---|---|
| userId | Integer | [optional] [readonly] | |
| username | String | User login | [optional] [readonly] |
| isAdmin | Boolean | True if user is admin, false otherwise | [optional] [readonly] |
| firstName | String | First name of the user | [optional] |
| lastName | String | Last name of the user | [optional] |
| String | Email of the user | [optional] | |
| phone | String | User's phone (may be cellphone or phone) | [optional] |
| profileImage | String | User's profile image | [optional] [readonly] |
| status | StatusEnum | User status | [optional] [readonly] |
| created | OffsetDateTime | The date and time | [optional] |
| updated | OffsetDateTime | The date and time | [optional] |
| Name | Value |
|---|---|
| ACTIVE | "active" |
| INACTIVE | "inactive" |