Boomi · Schema

DeployedPackageQueryResult

Paginated query results for deployed packages.

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