Boomi · Schema

ExecutionRecordQueryResult

Paginated query results for execution records.

AI AgentsAutomationB2BData IntegrationEDIIntegrationsManagementMFTPlatformWorkflows

Properties

Name Type Description
numberOfResults integer Total number of matching records.
queryToken string Token for retrieving the next page of results.
result array
View JSON Schema on GitHub

JSON Schema

boomi-executionrecordqueryresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExecutionRecordQueryResult",
  "title": "ExecutionRecordQueryResult",
  "type": "object",
  "description": "Paginated query results for execution records.",
  "properties": {
    "numberOfResults": {
      "type": "integer",
      "description": "Total number of matching records."
    },
    "queryToken": {
      "type": "string",
      "description": "Token for retrieving the next page of results."
    },
    "result": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ExecutionRecord"
      }
    }
  }
}