Qdrant · Schema

CreateFieldIndex

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
field_name string
field_schema object
View JSON Schema on GitHub

JSON Schema

qdrant-createfieldindex-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateFieldIndex",
  "title": "CreateFieldIndex",
  "type": "object",
  "required": [
    "field_name"
  ],
  "properties": {
    "field_name": {
      "type": "string"
    },
    "field_schema": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/PayloadFieldSchema"
        },
        {
          "nullable": true
        }
      ]
    }
  }
}