Cisco Webex · Schema
TeamMembership
CollaborationCommunicationsMeetingsMessagingTeamsVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the team membership. |
| teamId | string | The team ID. |
| personId | string | The person ID. |
| 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 team moderator. |
| created | string | Date and time the team membership was created. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TeamMembership",
"title": "TeamMembership",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the team membership."
},
"teamId": {
"type": "string",
"description": "The team ID."
},
"personId": {
"type": "string",
"description": "The person ID."
},
"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 team moderator."
},
"created": {
"type": "string",
"format": "date-time",
"description": "Date and time the team membership was created."
}
}
}