Workato · JSON Structure

Workato Agent Studio Knowledge Base Input Structure

Input schema for creating or updating a knowledge base.

Type: object Properties: 5
AgenticAPI ManagementAutomationB2BEmbedded iPaaSEnterpriseIntegrationiPaaSOrchestrationWorkflow

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

Properties

name description folder_id source_type data_sources

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-input-structure.json",
  "name": "KnowledgeBaseInput",
  "description": "Input schema for creating or updating a knowledge base.",
  "type": "object",
  "properties": {
    "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 to place this knowledge base in."
    },
    "source_type": {
      "type": "string",
      "description": "The type of data sources to use."
    },
    "data_sources": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/DataSource"
      },
      "description": "List of data sources to configure."
    }
  }
}