Properties
| Name | Type | Description |
|---|---|---|
| dimensions | object | |
| processedUpToDatetime | string | Specifies the timestamp the last mutation batch was processed as an ISO8601 string. |
| processedUpToMutation | object | |
| vectorCount | integer | Specifies the number of vectors present in the index |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/vectorize_index-info-response",
"title": "vectorize_index-info-response",
"properties": {
"dimensions": {
"$ref": "#/components/schemas/vectorize_index-dimensions"
},
"processedUpToDatetime": {
"description": "Specifies the timestamp the last mutation batch was processed as an ISO8601 string.",
"example": "2024-07-22T18:25:44.442097Z",
"format": "date-time",
"nullable": true,
"readOnly": true,
"type": "string"
},
"processedUpToMutation": {
"$ref": "#/components/schemas/vectorize_mutation-uuid"
},
"vectorCount": {
"description": "Specifies the number of vectors present in the index",
"example": 300000,
"type": "integer"
}
},
"type": "object"
}