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