Paragon · Schema

TriggerSubscription

Embedded IntegrationsIntegration InfrastructureiPaaSAI AgentsMCPIntegrations

Properties

Name Type Description
id string Subscription identifier.
userId string
trigger string
integration string
parameters object
deliveryUrl string
createdAt string
View JSON Schema on GitHub

JSON Schema

paragon-triggersubscription-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TriggerSubscription",
  "title": "TriggerSubscription",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Subscription identifier."
    },
    "userId": {
      "type": "string"
    },
    "trigger": {
      "type": "string"
    },
    "integration": {
      "type": "string"
    },
    "parameters": {
      "type": "object",
      "additionalProperties": true
    },
    "deliveryUrl": {
      "type": "string",
      "format": "uri"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}