Auth0 · Schema

DeleteUserRolesRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
roles array List of roles IDs to remove from the user.
View JSON Schema on GitHub

JSON Schema

auth0-deleteuserrolesrequestcontent-schema.json Raw ↑
{
  "$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
      }
    }
  }
}