Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| string | ||
| first_name | string | |
| last_name | string | |
| phone | string | |
| privileges | array | |
| tags | array | |
| created_time | number | Unix timestamp |
| modified_time | number | Unix timestamp |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Admin",
"title": "Admin",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"name": {
"type": "string"
},
"email": {
"type": "string",
"format": "email"
},
"first_name": {
"type": "string"
},
"last_name": {
"type": "string"
},
"phone": {
"type": "string"
},
"privileges": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Privilege"
}
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"created_time": {
"type": "number",
"description": "Unix timestamp"
},
"modified_time": {
"type": "number",
"description": "Unix timestamp"
}
}
}