Workato · Schema

DataTableColumn

A column definition in a data table schema.

AgenticAPI ManagementAutomationB2BEmbedded iPaaSEnterpriseIntegrationiPaaSOrchestrationWorkflow

Properties

Name Type Description
name string Column name used as the field identifier.
type string Data type of the column.
description string Optional description of the column's purpose.
required boolean Whether this column is required when creating records.
View JSON Schema on GitHub

JSON Schema

workato-developer-api-data-table-column-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/workato/refs/heads/main/json-schema/workato-developer-api-data-table-column-schema.json",
  "title": "DataTableColumn",
  "description": "A column definition in a data table schema.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Column name used as the field identifier."
    },
    "type": {
      "type": "string",
      "description": "Data type of the column.",
      "enum": [
        "string",
        "integer",
        "number",
        "boolean",
        "date",
        "datetime",
        "object",
        "array"
      ]
    },
    "description": {
      "type": "string",
      "description": "Optional description of the column's purpose."
    },
    "required": {
      "type": "boolean",
      "description": "Whether this column is required when creating records."
    }
  },
  "required": [
    "name",
    "type"
  ]
}