{ "$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" } } }