Boltic · Schema

StreamDestination

AutomationDataSyncGatewaysNoCodeStreamingWorkflows

Properties

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

JSON Schema

boltic-streamdestination-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StreamDestination",
  "title": "StreamDestination",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "config": {
      "type": "object",
      "additionalProperties": true
    },
    "status": {
      "type": "string",
      "enum": [
        "active",
        "inactive"
      ]
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}