Auth0 · Schema

ClearAssessorsRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
connection string The name of the connection containing the user whose assessors should be cleared.
assessors array List of assessors to clear.
View JSON Schema on GitHub

JSON Schema

auth0-clearassessorsrequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClearAssessorsRequestContent",
  "title": "ClearAssessorsRequestContent",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "connection",
    "assessors"
  ],
  "properties": {
    "connection": {
      "type": "string",
      "description": "The name of the connection containing the user whose assessors should be cleared.",
      "minLength": 1,
      "maxLength": 128,
      "pattern": "^[a-zA-Z0-9](-[a-zA-Z0-9]|[a-zA-Z0-9])*$"
    },
    "assessors": {
      "type": "array",
      "description": "List of assessors to clear.",
      "minItems": 1,
      "items": {
        "$ref": "#/components/schemas/AssessorsTypeEnum"
      }
    }
  }
}