Webex · Schema

CallRecordingVendorsList

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
vendorId string Unique identifier of the vendor.
vendorName string Name of the vendor.
vendors object List of call recording vendors
storageRegion string Call recording storage region. Only applicable for Webex as a vendor and isn't used for other vendors.
failureBehavior object Call recording failure behavior.
View JSON Schema on GitHub

JSON Schema

webex-callrecordingvendorslist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CallRecordingVendorsList",
  "title": "CallRecordingVendorsList",
  "type": "object",
  "required": [
    "vendorId",
    "vendorName",
    "vendors",
    "failureBehavior"
  ],
  "properties": {
    "vendorId": {
      "type": "string",
      "description": "Unique identifier of the vendor."
    },
    "vendorName": {
      "type": "string",
      "description": "Name of the vendor."
    },
    "vendors": {
      "$ref": "#/components/schemas/CallRecordingVendors",
      "description": "List of call recording vendors"
    },
    "storageRegion": {
      "type": "string",
      "description": "Call recording storage region. Only applicable for Webex as a vendor and isn't used for other vendors."
    },
    "failureBehavior": {
      "$ref": "#/components/schemas/FailureBehavior",
      "description": "Call recording failure behavior."
    }
  }
}