Webex · Schema

Organization

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
id string A unique identifier for the organization.
displayName string Full name of the organization.
created string The date and time the organization was created.
View JSON Schema on GitHub

JSON Schema

webex-organization-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Organization",
  "title": "Organization",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL09SR0FOSVpBVElPTi85NmFiYzJhYS0zZGNjLTExZTUtYTE1Mi1mZTM0ODE5Y2RjOWE",
      "description": "A unique identifier for the organization."
    },
    "displayName": {
      "type": "string",
      "example": "Acme, Inc.",
      "description": "Full name of the organization."
    },
    "created": {
      "type": "string",
      "example": "2015-10-18T14:26:16+00:00",
      "description": "The date and time the organization was created."
    }
  }
}