Webex · Schema

GlobalVariables

Schema-free data map to pass specific data depending on the outbound type. Values are validated against the global variables configured in the organization. Supports a maximum of 30 tuples. Each tuple can have a key up to 200 bytes and a value up to 1024 bytes. **Migrating from v1:** Previously named `attributes`.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
View JSON Schema on GitHub

JSON Schema

webex-globalvariables-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GlobalVariables",
  "title": "GlobalVariables",
  "type": "object",
  "description": "Schema-free data map to pass specific data depending on the outbound type. Values are validated against the global variables configured in the organization. Supports a maximum of 30 tuples. Each tuple can have a key up to 200 bytes and a value up to 1024 bytes. **Migrating from v1:** Previously named `attributes`.",
  "additionalProperties": {
    "type": "string"
  },
  "example": {
    "var1": "value1"
  }
}