Paragon · Schema

Action

A pre-built Integration Tool exposed by ActionKit. Each action wraps a specific third-party operation (e.g., create a Salesforce record, send a Slack message).

Embedded IntegrationsIntegration InfrastructureiPaaSAI AgentsMCPIntegrations

Properties

Name Type Description
name string The action identifier (e.g., SLACK_SEND_MESSAGE).
description string Human-readable description suitable for an LLM tool definition.
integration string The integration this action belongs to.
parameters object JSON Schema describing the input parameters for the action.
View JSON Schema on GitHub

JSON Schema

paragon-action-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Action",
  "title": "Action",
  "type": "object",
  "description": "A pre-built Integration Tool exposed by ActionKit. Each action wraps a specific third-party operation (e.g., create a Salesforce record, send a Slack message).",
  "properties": {
    "name": {
      "type": "string",
      "description": "The action identifier (e.g., SLACK_SEND_MESSAGE)."
    },
    "description": {
      "type": "string",
      "description": "Human-readable description suitable for an LLM tool definition."
    },
    "integration": {
      "type": "string",
      "description": "The integration this action belongs to."
    },
    "parameters": {
      "type": "object",
      "description": "JSON Schema describing the input parameters for the action."
    }
  }
}