{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/vectorize_create-metadata-index-request", "title": "vectorize_create-metadata-index-request", "properties": { "indexType": { "description": "Specifies the type of metadata property to index.", "enum": [ "string", "number", "boolean" ], "type": "string" }, "propertyName": { "description": "Specifies the metadata property to index.", "example": "random_metadata_property", "type": "string" } }, "required": [ "propertyName", "indexType" ], "type": "object" }