Auth0 · Schema

EventStreamCloudEventOrgGroupRoleAssignedObject

The event content.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

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

JSON Schema

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