Boltic · Schema

ColumnInput

AutomationDataSyncGatewaysNoCodeStreamingWorkflows

Properties

Name Type Description
name string
type string
required boolean
defaultValue string
options array
View JSON Schema on GitHub

JSON Schema

boltic-columninput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ColumnInput",
  "title": "ColumnInput",
  "type": "object",
  "required": [
    "name",
    "type"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "required": {
      "type": "boolean",
      "default": false
    },
    "defaultValue": {
      "type": "string"
    },
    "options": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}