Xceptor · Schema

BatchFileError

An error associated with a specific file in a batch upload

API IntegrationData AutomationData ExtractionDocument ProcessingETLFinancial DataFinancial ServicesIntelligent Document ProcessingReconciliationsTrade Operations

Properties

Name Type Description
filename string The name of the file that was rejected
error object
View JSON Schema on GitHub

JSON Schema

xceptor-batchfileerror-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BatchFileError",
  "title": "BatchFileError",
  "type": "object",
  "description": "An error associated with a specific file in a batch upload",
  "properties": {
    "filename": {
      "type": "string",
      "description": "The name of the file that was rejected"
    },
    "error": {
      "$ref": "#/components/schemas/Error"
    }
  }
}