Auth0 · Schema

AssignRoleUsersRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
users array user_id's of the users to assign the role to.
View JSON Schema on GitHub

JSON Schema

auth0-assignroleusersrequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AssignRoleUsersRequestContent",
  "title": "AssignRoleUsersRequestContent",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "users"
  ],
  "properties": {
    "users": {
      "type": "array",
      "description": "user_id's of the users to assign the role to.",
      "items": {
        "type": "string",
        "format": "user-id-with-max-length"
      }
    }
  }
}