Paragon · Schema

ActionResult

The response returned by an executed action.

Embedded IntegrationsIntegration InfrastructureiPaaSAI AgentsMCPIntegrations

Properties

Name Type Description
output object The action's output (varies by action / integration).
integration string The integration the action ran against.
action string The action name that was executed.
View JSON Schema on GitHub

JSON Schema

paragon-actionresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ActionResult",
  "title": "ActionResult",
  "type": "object",
  "description": "The response returned by an executed action.",
  "properties": {
    "output": {
      "type": "object",
      "description": "The action's output (varies by action / integration).",
      "additionalProperties": true
    },
    "integration": {
      "type": "string",
      "description": "The integration the action ran against."
    },
    "action": {
      "type": "string",
      "description": "The action name that was executed."
    }
  }
}