Keboola · Schema

DocsResponse

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
response string The answer to the documentation question
metadata object
View JSON Schema on GitHub

JSON Schema

keboola-docsresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "DocsResponse",
  "type": "object",
  "required": [
    "response",
    "metadata"
  ],
  "properties": {
    "response": {
      "type": "string",
      "description": "The answer to the documentation question",
      "example": "To configure the Database writer, you need to..."
    },
    "metadata": {
      "type": "object",
      "required": [
        "sources"
      ],
      "properties": {
        "sources": {
          "type": "array",
          "description": "List of documentation source URLs that were used to generate the answer",
          "items": {
            "type": "string",
            "format": "uri"
          },
          "example": [
            "https://help.example.com/components/writers/database",
            "https://help.example.com/tutorial/write/"
          ]
        }
      }
    }
  }
}