{ "$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 } } }