{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UserCreate", "title": "UserCreate", "type": "object", "required": [ "name", "email" ], "properties": { "name": { "type": "string", "description": "Full name of the user." }, "email": { "type": "string", "format": "email", "description": "Email address." }, "phone": { "type": "string", "description": "Phone number." }, "role": { "type": "string", "description": "Role to assign (admin, supervisor, agent)." }, "team_ids": { "type": "array", "items": { "type": "integer" }, "description": "IDs of teams to assign." } } }