Auth0 · Schema

EventStreamCloudEventGroupMemberDeletedObjectMember1

A group member of member_type group

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
member_type object
id string The connection member's unique identifier
type string The type of the connection
connection_id string Connection ID associated with the member
View JSON Schema on GitHub

JSON Schema

auth0-eventstreamcloudeventgroupmemberdeletedobjectmember1-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventStreamCloudEventGroupMemberDeletedObjectMember1",
  "title": "EventStreamCloudEventGroupMemberDeletedObjectMember1",
  "type": "object",
  "description": "A group member of member_type group",
  "additionalProperties": false,
  "required": [
    "member_type",
    "id",
    "type",
    "connection_id"
  ],
  "properties": {
    "member_type": {
      "$ref": "#/components/schemas/EventStreamCloudEventGroupMemberDeletedObjectMember1MemberTypeEnum"
    },
    "id": {
      "type": "string",
      "description": "The connection member's unique identifier"
    },
    "type": {
      "type": "string",
      "description": "The type of the connection"
    },
    "connection_id": {
      "type": "string",
      "description": "Connection ID associated with the member",
      "pattern": "con_[a-zA-Z0-9]{16}"
    }
  }
}