Auth0 · Schema

EventStreamCloudEventOrgMemberRoleDeletedObjectRole

The role assigned to the user in the organization.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
id string The ID of the role.
name string The name of the role.
View JSON Schema on GitHub

JSON Schema

auth0-eventstreamcloudeventorgmemberroledeletedobjectrole-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventStreamCloudEventOrgMemberRoleDeletedObjectRole",
  "title": "EventStreamCloudEventOrgMemberRoleDeletedObjectRole",
  "type": "object",
  "description": "The role assigned to the user in the organization.",
  "additionalProperties": false,
  "required": [
    "id",
    "name"
  ],
  "properties": {
    "id": {
      "type": "string",
      "description": "The ID of the role.",
      "pattern": "rol_[a-zA-Z0-9]{16}"
    },
    "name": {
      "type": "string",
      "description": "The name of the role."
    }
  }
}