Workato · JSON Structure

Workato Developer Api Data Table Structure

A structured data storage table within the Workato workspace.

Type: object Properties: 6
AgenticAPI ManagementAutomationB2BEmbedded iPaaSEnterpriseIntegrationiPaaSOrchestrationWorkflow

DataTable is a JSON Structure definition published by Workato, describing 6 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id name folder_id schema created_at updated_at

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/workato/refs/heads/main/json-structure/workato-developer-api-data-table-structure.json",
  "name": "DataTable",
  "description": "A structured data storage table within the Workato workspace.",
  "type": "object",
  "properties": {
    "id": {
      "type": "int32",
      "description": "Unique identifier of the data table."
    },
    "name": {
      "type": "string",
      "description": "Display name of the data table."
    },
    "folder_id": {
      "type": "int32",
      "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": "datetime",
      "description": "Timestamp when the data table was created."
    },
    "updated_at": {
      "type": "datetime",
      "description": "Timestamp when the data table was last updated."
    }
  }
}