Boltic · Schema

StreamSourceInput

AutomationDataSyncGatewaysNoCodeStreamingWorkflows

Properties

Name Type Description
name string
type string
View JSON Schema on GitHub

JSON Schema

boltic-streamsourceinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StreamSourceInput",
  "title": "StreamSourceInput",
  "type": "object",
  "required": [
    "name",
    "type"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string",
      "enum": [
        "javascript",
        "server",
        "mobile",
        "webhook"
      ]
    }
  }
}