Xceptor · Schema

DataSourceList

A paginated list of data sources

API IntegrationData AutomationData ExtractionDocument ProcessingETLFinancial DataFinancial ServicesIntelligent Document ProcessingReconciliationsTrade Operations

Properties

Name Type Description
data array The list of data sources for the current page
pagination object
View JSON Schema on GitHub

JSON Schema

xceptor-datasourcelist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DataSourceList",
  "title": "DataSourceList",
  "type": "object",
  "description": "A paginated list of data sources",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DataSource"
      },
      "description": "The list of data sources for the current page"
    },
    "pagination": {
      "$ref": "#/components/schemas/Pagination"
    }
  }
}