Boltic · Schema

StreamDestinationInput

AutomationDataSyncGatewaysNoCodeStreamingWorkflows

Properties

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

JSON Schema

boltic-streamdestinationinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StreamDestinationInput",
  "title": "StreamDestinationInput",
  "type": "object",
  "required": [
    "name",
    "type",
    "config"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "config": {
      "type": "object",
      "additionalProperties": true
    }
  }
}