Auth0 · Schema

AssignOrganizationMemberRolesRequestContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

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

JSON Schema

auth0-assignorganizationmemberrolesrequestcontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AssignOrganizationMemberRolesRequestContent",
  "title": "AssignOrganizationMemberRolesRequestContent",
  "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",
        "format": "role-id"
      }
    }
  }
}