Boltic · Schema

WorkflowInput

AutomationDataSyncGatewaysNoCodeStreamingWorkflows

Properties

Name Type Description
name string
description string
trigger object
nodes array
tags array
View JSON Schema on GitHub

JSON Schema

boltic-workflowinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkflowInput",
  "title": "WorkflowInput",
  "type": "object",
  "required": [
    "name",
    "trigger"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "trigger": {
      "$ref": "#/components/schemas/TriggerInput"
    },
    "nodes": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/NodeInput"
      }
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}