Webex · Schema

Team

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string A unique identifier for the team.
name string A user-friendly name for the team.
description string The teams description.
created string The date and time the team was created.
View JSON Schema on GitHub

JSON Schema

webex-team-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Team",
  "title": "Team",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL1RFQU0vMTNlMThmNDAtNDJmYy0xMWU2LWE5ZDgtMjExYTBkYzc5NzY5",
      "description": "A unique identifier for the team."
    },
    "name": {
      "type": "string",
      "example": "Build Squad",
      "description": "A user-friendly name for the team."
    },
    "description": {
      "type": "string",
      "example": "The A Team",
      "description": "The teams description."
    },
    "created": {
      "type": "string",
      "example": "2015-10-18T14:26:16.000Z",
      "description": "The date and time the team was created."
    }
  }
}