{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AccessTypeAllocationCreate", "title": "AccessTypeAllocationCreate", "type": "object", "properties": { "user": { "type": "object", "properties": { "id": { "type": "string", "format": "uuid", "description": "User ID to allocate access to" } }, "required": [ "id" ] } }, "required": [ "user" ] }