APIs.io Engineering Platform · Schema
vectorize_list-metadata-index-response
APIs.ioEngineeringPlatform
Properties
| Name | Type | Description |
|---|---|---|
| metadataIndexes | array | Array of indexed metadata properties. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/vectorize_list-metadata-index-response",
"title": "vectorize_list-metadata-index-response",
"example": {
"metadataIndexes": [
{
"indexType": "number",
"propertyName": "some-num-prop"
},
{
"indexType": "string",
"propertyName": "some-str-prop"
},
{
"indexType": "boolean",
"propertyName": "some-bool-prop"
}
]
},
"properties": {
"metadataIndexes": {
"description": "Array of indexed metadata properties.",
"items": {
"properties": {
"indexType": {
"description": "Specifies the type of indexed metadata property.",
"enum": [
"string",
"number",
"boolean"
],
"type": "string"
},
"propertyName": {
"description": "Specifies the indexed metadata property.",
"example": "random_metadata_property",
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
}