Auth0 · Schema

GroupMember

Represents the metadata of a group membership.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
id string Unique identifier for the member.
member_type object
type object
connection_id string Identifier for the connection this group belongs to (if a connection group).
created_at string Timestamp of when the membership was created.
View JSON Schema on GitHub

JSON Schema

auth0-groupmember-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GroupMember",
  "title": "GroupMember",
  "type": "object",
  "description": "Represents the metadata of a group membership.",
  "additionalProperties": true,
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the member."
    },
    "member_type": {
      "$ref": "#/components/schemas/GroupMemberTypeEnum"
    },
    "type": {
      "$ref": "#/components/schemas/GroupTypeEnum"
    },
    "connection_id": {
      "type": "string",
      "description": "Identifier for the connection this group belongs to (if a connection group).",
      "format": "connection-id"
    },
    "created_at": {
      "type": "string",
      "description": "Timestamp of when the membership was created.",
      "format": "date-time"
    }
  }
}