Webex · Schema

Member

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string Person ID of the group member.
type string Member type.
displayName string
View JSON Schema on GitHub

JSON Schema

webex-member-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Member",
  "title": "Member",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS8xOTUzOTdhMi03MTU5LTRjNTgtYTBiOC00NmQ2ZWZlZTdkMTM",
      "description": "Person ID of the group member."
    },
    "type": {
      "type": "string",
      "example": "user",
      "description": "Member type."
    },
    "displayName": {
      "type": "string",
      "example": "Jane Smith"
    }
  }
}