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