{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DeleteUserRolesRequestContent", "title": "DeleteUserRolesRequestContent", "type": "object", "additionalProperties": false, "required": [ "roles" ], "properties": { "roles": { "type": "array", "description": "List of roles IDs to remove from the user.", "minItems": 1, "items": { "type": "string", "minLength": 1 } } } }