Auth0 · Schema

DeleteOrganizationMemberRolesRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
roles array List of roles IDs associated with the organization member to remove.
View JSON Schema on GitHub

JSON Schema

auth0-deleteorganizationmemberrolesrequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DeleteOrganizationMemberRolesRequestContent",
  "title": "DeleteOrganizationMemberRolesRequestContent",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "roles"
  ],
  "properties": {
    "roles": {
      "type": "array",
      "description": "List of roles IDs associated with the organization member to remove.",
      "minItems": 1,
      "items": {
        "type": "string",
        "format": "role-id"
      }
    }
  }
}