Cisco Webex · Schema

Cisco Webex Team

Represents a Webex team that groups people and spaces together for organized collaboration across projects and departments.

CollaborationCommunicationsMeetingsMessagingTeamsVideo Conferencing

Properties

Name Type Description
id string Unique identifier for the team.
name string A user-friendly name for the team.
description string The team's description.
creatorId string The person ID of the team creator.
created string Date and time the team was created.
View JSON Schema on GitHub

JSON Schema

cisco-webex-team-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://developer.webex.com/schemas/team.json",
  "title": "Cisco Webex Team",
  "description": "Represents a Webex team that groups people and spaces together for organized collaboration across projects and departments.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the team."
    },
    "name": {
      "type": "string",
      "description": "A user-friendly name for the team."
    },
    "description": {
      "type": "string",
      "description": "The team's description."
    },
    "creatorId": {
      "type": "string",
      "description": "The person ID of the team creator."
    },
    "created": {
      "type": "string",
      "format": "date-time",
      "description": "Date and time the team was created."
    }
  },
  "required": ["id", "name"]
}