Workato · JSON Structure

Workato Agent Studio Knowledge Base Structure

A collection of data sources that provides contextual information to AI agents.

Type: object Properties: 8
AgenticAPI ManagementAutomationB2BEmbedded iPaaSEnterpriseIntegrationiPaaSOrchestrationWorkflow

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

Properties

id name description folder_id source_type data_sources 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-agent-studio-knowledge-base-structure.json",
  "name": "KnowledgeBase",
  "description": "A collection of data sources that provides contextual information to AI agents.",
  "type": "object",
  "properties": {
    "id": {
      "type": "int32",
      "description": "Unique identifier of the knowledge base."
    },
    "name": {
      "type": "string",
      "description": "Display name of the knowledge base."
    },
    "description": {
      "type": "string",
      "description": "Human-readable description of the knowledge base's content."
    },
    "folder_id": {
      "type": "int32",
      "description": "ID of the folder containing this knowledge base."
    },
    "source_type": {
      "type": "string",
      "description": "The type of data sources used in this knowledge base."
    },
    "data_sources": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DataSource"
      },
      "description": "List of data sources configured for this knowledge base."
    },
    "created_at": {
      "type": "datetime",
      "description": "Timestamp when the knowledge base was created."
    },
    "updated_at": {
      "type": "datetime",
      "description": "Timestamp when the knowledge base was last updated."
    }
  }
}