Xceptor · Schema

JobList

A paginated list of processing jobs

API IntegrationData AutomationData ExtractionDocument ProcessingETLFinancial DataFinancial ServicesIntelligent Document ProcessingReconciliationsTrade Operations

Properties

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

JSON Schema

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