Xceptor · Schema

WorkflowRunList

A paginated list of workflow runs

API IntegrationData AutomationData ExtractionDocument ProcessingETLFinancial DataFinancial ServicesIntelligent Document ProcessingReconciliationsTrade Operations

Properties

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

JSON Schema

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