Weaviate · Schema

VectorConfig

Weaviate VectorConfig schema

Vector DatabaseAIMachine LearningSemantic SearchOpen SourceGraphQLKubernetes

Properties

Name Type Description
vectorizer object Configuration of a specific vectorizer used by this vector
vectorIndexType string Name of the vector index to use, eg. (HNSW)
vectorIndexConfig object Vector-index config, that is specific to the type of index selected in vectorIndexType
View JSON Schema on GitHub

JSON Schema

weaviate-vector-config-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/weaviate/json-schema/weaviate-vector-config-schema.json",
  "title": "VectorConfig",
  "description": "Weaviate VectorConfig schema",
  "type": "object",
  "properties": {
    "vectorizer": {
      "type": "object",
      "description": "Configuration of a specific vectorizer used by this vector"
    },
    "vectorIndexType": {
      "type": "string",
      "description": "Name of the vector index to use, eg. (HNSW)"
    },
    "vectorIndexConfig": {
      "type": "object",
      "description": "Vector-index config, that is specific to the type of index selected in vectorIndexType"
    }
  }
}