{
"$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"
}
}
}