{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AuthResponse", "title": "AuthResponse", "properties": { "uuid": { "type": "string", "format": "uuid", "title": "Uuid", "description": "UUID of the user" }, "is_admin": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ], "title": "Is Admin", "description": "Whether the user is an admin" } }, "type": "object", "required": [ "uuid" ] }