Paragon · Schema

Trigger

Embedded IntegrationsIntegration InfrastructureiPaaSAI AgentsMCPIntegrations

Properties

Name Type Description
name string Trigger identifier (e.g., SLACK_MESSAGE_RECEIVED).
description string
integration string
parameters object JSON Schema describing the parameters required to subscribe.
View JSON Schema on GitHub

JSON Schema

paragon-trigger-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Trigger",
  "title": "Trigger",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Trigger identifier (e.g., SLACK_MESSAGE_RECEIVED)."
    },
    "description": {
      "type": "string"
    },
    "integration": {
      "type": "string"
    },
    "parameters": {
      "type": "object",
      "description": "JSON Schema describing the parameters required to subscribe."
    }
  }
}