Workato · Schema

DataSource

A data source configuration for a knowledge base.

AgenticAPI ManagementAutomationB2BEmbedded iPaaSEnterpriseIntegrationiPaaSOrchestrationWorkflow

Properties

Name Type Description
id integer Unique identifier of the data source.
source_type string Type of the data source (e.g., document, table, api).
connection_id integer ID of the connection used to access this data source.
config object Source-specific configuration parameters.
View JSON Schema on GitHub

JSON Schema

workato-agent-studio-data-source-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-agent-studio-data-source-schema.json",
  "title": "DataSource",
  "description": "A data source configuration for a knowledge base.",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Unique identifier of the data source."
    },
    "source_type": {
      "type": "string",
      "description": "Type of the data source (e.g., document, table, api)."
    },
    "connection_id": {
      "type": "integer",
      "description": "ID of the connection used to access this data source."
    },
    "config": {
      "type": "object",
      "description": "Source-specific configuration parameters.",
      "additionalProperties": true
    }
  }
}