Workato · Schema

DataTable

A structured data storage table within the Workato workspace.

AgenticAPI ManagementAutomationB2BEmbedded iPaaSEnterpriseIntegrationiPaaSOrchestrationWorkflow

Properties

Name Type Description
id integer Unique identifier of the data table.
name string Display name of the data table.
folder_id integer ID of the folder containing this data table.
schema array List of column definitions for the table.
created_at string Timestamp when the data table was created.
updated_at string Timestamp when the data table was last updated.
View JSON Schema on GitHub

JSON Schema

workato-developer-api-data-table-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-schema.json",
  "title": "DataTable",
  "description": "A structured data storage table within the Workato workspace.",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Unique identifier of the data table."
    },
    "name": {
      "type": "string",
      "description": "Display name of the data table."
    },
    "folder_id": {
      "type": "integer",
      "description": "ID of the folder containing this data table."
    },
    "schema": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DataTableColumn"
      },
      "description": "List of column definitions for the table."
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the data table was created."
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the data table was last updated."
    }
  }
}