Webex · Schema

ExternalAttributeObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
source string Source of external attribute.
value string Value of external attribute.
View JSON Schema on GitHub

JSON Schema

webex-externalattributeobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExternalAttributeObject",
  "title": "ExternalAttributeObject",
  "type": "object",
  "required": [
    "source",
    "value"
  ],
  "properties": {
    "source": {
      "type": "string",
      "example": "Source.1_7ddf1f2c-2985-4c37-a450-d58bbc201750",
      "description": "Source of external attribute."
    },
    "value": {
      "type": "string",
      "example": "externalAttribute1_value",
      "description": "Value of external attribute."
    }
  }
}