Paragon · Schema

WorkflowExecutionList

Embedded IntegrationsIntegration InfrastructureiPaaSAI AgentsMCPIntegrations

Properties

Name Type Description
data array
total integer Total number of workflow executions matching the query.
nextLink string URL to retrieve the next page of results. Null if there are no more pages.
View JSON Schema on GitHub

JSON Schema

paragon-workflowexecutionlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkflowExecutionList",
  "title": "WorkflowExecutionList",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/WorkflowExecution"
      }
    },
    "total": {
      "type": "integer",
      "description": "Total number of workflow executions matching the query."
    },
    "nextLink": {
      "type": "string",
      "nullable": true,
      "description": "URL to retrieve the next page of results. Null if there are no more pages."
    }
  }
}