Boltic · Schema

TableInput

AutomationDataSyncGatewaysNoCodeStreamingWorkflows

Properties

Name Type Description
name string
description string
columns array
View JSON Schema on GitHub

JSON Schema

boltic-tableinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TableInput",
  "title": "TableInput",
  "type": "object",
  "required": [
    "name",
    "columns"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "columns": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ColumnInput"
      }
    }
  }
}