Webex · Schema

OutdialANIBulkExportDTO

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
name string Name of the Outdial ANI.
description string Description of the Outdial ANI.
entryDetails array List of Outdial ANI entry details.
View JSON Schema on GitHub

JSON Schema

webex-outdialanibulkexportdto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OutdialANIBulkExportDTO",
  "title": "OutdialANIBulkExportDTO",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the Outdial ANI."
    },
    "description": {
      "type": "string",
      "description": "Description of the Outdial ANI."
    },
    "entryDetails": {
      "type": "array",
      "description": "List of Outdial ANI entry details.",
      "items": {
        "$ref": "#/components/schemas/OutdialANIEntryDetailsDTO"
      },
      "uniqueItems": true
    }
  }
}