vectorize_create-metadata-index-request

APIs.ioEngineeringPlatform

Properties

Name Type Description
indexType string Specifies the type of metadata property to index.
propertyName string Specifies the metadata property to index.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-vectorize-create-metadata-index-request-schema.json Raw ↑
{
  "$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"
}