Boltic · Schema

Node

AutomationDataSyncGatewaysNoCodeStreamingWorkflows

Properties

Name Type Description
id string
type string
name string
integrationId string
config object
position object
connections array
View JSON Schema on GitHub

JSON Schema

boltic-node-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Node",
  "title": "Node",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "type": {
      "type": "string",
      "enum": [
        "integration",
        "transformation",
        "destination",
        "condition",
        "loop",
        "ai"
      ]
    },
    "name": {
      "type": "string"
    },
    "integrationId": {
      "type": "string"
    },
    "config": {
      "type": "object",
      "additionalProperties": true
    },
    "position": {
      "type": "object",
      "properties": {
        "x": {
          "type": "number"
        },
        "y": {
          "type": "number"
        }
      }
    },
    "connections": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "targetNodeId": {
            "type": "string"
          },
          "condition": {
            "type": "string"
          }
        }
      }
    }
  }
}