llamaindex · Schema

DataSink

A data sink that receives processed and embedded content from a pipeline, such as a vector database.

Properties

Name Type Description
id string Unique identifier of the data sink.
name string Human-readable name of the data sink.
sink_type string Type of the data sink.
config object Configuration specific to the data sink type.
View JSON Schema on GitHub

JSON Schema

llamaindex-datasink-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DataSink",
  "title": "DataSink",
  "type": "object",
  "description": "A data sink that receives processed and embedded content from a pipeline, such as a vector database.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the data sink."
    },
    "name": {
      "type": "string",
      "description": "Human-readable name of the data sink."
    },
    "sink_type": {
      "type": "string",
      "description": "Type of the data sink."
    },
    "config": {
      "type": "object",
      "additionalProperties": true,
      "description": "Configuration specific to the data sink type."
    }
  }
}