Auth0 · Schema

EventStreamCloudEventOrgGroupRoleDeletedObject

The event content.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

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

JSON Schema

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