Boltic · Schema

PipeInput

AutomationDataSyncGatewaysNoCodeStreamingWorkflows

Properties

Name Type Description
name string
description string
source object
destination object
schedule object
View JSON Schema on GitHub

JSON Schema

boltic-pipeinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PipeInput",
  "title": "PipeInput",
  "type": "object",
  "required": [
    "name",
    "source",
    "destination"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "source": {
      "$ref": "#/components/schemas/SourceConfig"
    },
    "destination": {
      "$ref": "#/components/schemas/DestinationConfig"
    },
    "schedule": {
      "$ref": "#/components/schemas/Schedule"
    }
  }
}