Auth0 · Schema

EventStreamCloudEventGroupRoleDeletedObject

The event content.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
group object
role object
deleted_at string The time at which the role was removed from the group.
View JSON Schema on GitHub

JSON Schema

auth0-eventstreamcloudeventgrouproledeletedobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventStreamCloudEventGroupRoleDeletedObject",
  "title": "EventStreamCloudEventGroupRoleDeletedObject",
  "type": "object",
  "description": "The event content.",
  "additionalProperties": false,
  "required": [
    "group",
    "role",
    "deleted_at"
  ],
  "properties": {
    "group": {
      "$ref": "#/components/schemas/EventStreamCloudEventGroupRoleDeletedObjectGroup"
    },
    "role": {
      "$ref": "#/components/schemas/EventStreamCloudEventGroupRoleDeletedObjectRole"
    },
    "deleted_at": {
      "type": "string",
      "description": "The time at which the role was removed from the group.",
      "format": "date-time"
    }
  }
}