Boomi · Schema

ProcessQueryResult

Paginated query results for processes.

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-processqueryresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProcessQueryResult",
  "title": "ProcessQueryResult",
  "type": "object",
  "description": "Paginated query results for processes.",
  "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/Process"
      }
    }
  }
}