Weaviate · Schema
C11yWordsResponse
An array of available words and contexts.
Vector DatabaseAIMachine LearningSemantic SearchOpen SourceGraphQLKubernetes
Properties
| Name | Type | Description |
|---|---|---|
| concatenatedWord | object | Weighted results for all words |
| individualWords | array | Weighted results for per individual word |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.github.io/weaviate/json-schema/weaviate-c11y-words-response-schema.json",
"title": "C11yWordsResponse",
"description": "An array of available words and contexts.",
"type": "object",
"properties": {
"concatenatedWord": {
"type": "object",
"description": "Weighted results for all words",
"properties": {
"concatenatedWord": {
"type": "string"
},
"singleWords": {
"type": "array",
"items": {
"format": "string"
}
},
"concatenatedVector": {
"$ref": "#/components/schemas/C11yVector"
},
"concatenatedNearestNeighbors": {
"$ref": "#/components/schemas/C11yNearestNeighbors"
}
}
},
"individualWords": {
"type": "array",
"description": "Weighted results for per individual word",
"items": {
"type": "object",
"properties": {
"word": {
"type": "string"
},
"present": {
"type": "boolean"
},
"info": {
"type": "object",
"properties": {
"vector": {
"$ref": "#/components/schemas/C11yVector"
},
"nearestNeighbors": {
"$ref": "#/components/schemas/C11yNearestNeighbors"
}
}
}
}
}
}
}
}