Boltic · Schema

TriggerInput

AutomationDataSyncGatewaysNoCodeStreamingWorkflows

Properties

Name Type Description
type string
config object
methods array
View JSON Schema on GitHub

JSON Schema

boltic-triggerinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TriggerInput",
  "title": "TriggerInput",
  "type": "object",
  "required": [
    "type"
  ],
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "http",
        "schedule",
        "webhook",
        "copilot",
        "table-change",
        "manual"
      ]
    },
    "config": {
      "type": "object",
      "additionalProperties": true
    },
    "methods": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}