Auth0 · Schema

EventStreamCloudEventGroupRoleAssignedObject

The event content.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
group object
role object
created_at string The time at which the role was assigned to the group.
View JSON Schema on GitHub

JSON Schema

auth0-eventstreamcloudeventgrouproleassignedobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventStreamCloudEventGroupRoleAssignedObject",
  "title": "EventStreamCloudEventGroupRoleAssignedObject",
  "type": "object",
  "description": "The event content.",
  "additionalProperties": false,
  "required": [
    "group",
    "role",
    "created_at"
  ],
  "properties": {
    "group": {
      "$ref": "#/components/schemas/EventStreamCloudEventGroupRoleAssignedObjectGroup"
    },
    "role": {
      "$ref": "#/components/schemas/EventStreamCloudEventGroupRoleAssignedObjectRole"
    },
    "created_at": {
      "type": "string",
      "description": "The time at which the role was assigned to the group.",
      "format": "date-time"
    }
  }
}