Cisco Webex · Schema
Cisco Webex Membership
Represents a person's relationship to a Webex room, including their role and access permissions.
CollaborationCommunicationsMeetingsMessagingTeamsVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the membership. |
| roomId | string | The room ID for the membership. |
| personId | string | The person ID for the membership. |
| personEmail | string | The email address of the person. |
| personDisplayName | string | The display name of the person. |
| personOrgId | string | The organization ID of the person. |
| isModerator | boolean | Whether the person is a room moderator. |
| isRoomHidden | boolean | Whether the direct space is hidden for this member. |
| roomType | string | The type of room. |
| isMonitor | boolean | Whether the member is a monitoring bot. |
| created | string | Date and time the membership was created. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://developer.webex.com/schemas/membership.json",
"title": "Cisco Webex Membership",
"description": "Represents a person's relationship to a Webex room, including their role and access permissions.",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the membership."
},
"roomId": {
"type": "string",
"description": "The room ID for the membership."
},
"personId": {
"type": "string",
"description": "The person ID for the membership."
},
"personEmail": {
"type": "string",
"format": "email",
"description": "The email address of the person."
},
"personDisplayName": {
"type": "string",
"description": "The display name of the person."
},
"personOrgId": {
"type": "string",
"description": "The organization ID of the person."
},
"isModerator": {
"type": "boolean",
"description": "Whether the person is a room moderator."
},
"isRoomHidden": {
"type": "boolean",
"description": "Whether the direct space is hidden for this member."
},
"roomType": {
"type": "string",
"description": "The type of room.",
"enum": ["direct", "group"]
},
"isMonitor": {
"type": "boolean",
"description": "Whether the member is a monitoring bot."
},
"created": {
"type": "string",
"format": "date-time",
"description": "Date and time the membership was created."
}
},
"required": ["id", "roomId", "personId"]
}