Qdrant · Schema

StrictModeConfigOutput

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
enabled boolean Whether strict mode is enabled for a collection or not.
max_query_limit integer Max allowed `limit` parameter for all APIs that don't have their own max limit.
max_timeout integer Max allowed `timeout` parameter.
unindexed_filtering_retrieve boolean Allow usage of unindexed fields in retrieval based (e.g. search) filters.
unindexed_filtering_update boolean Allow usage of unindexed fields in filtered updates (e.g. delete by payload).
search_max_hnsw_ef integer Max HNSW value allowed in search parameters.
search_allow_exact boolean Whether exact search is allowed or not.
search_max_oversampling number Max oversampling value allowed in search.
upsert_max_batchsize integer Max batchsize when upserting
search_max_batchsize integer Max batchsize when searching
max_collection_vector_size_bytes integer Max size of a collections vector storage in bytes, ignoring replicas.
read_rate_limit integer Max number of read operations per minute per replica
write_rate_limit integer Max number of write operations per minute per replica
max_collection_payload_size_bytes integer Max size of a collections payload storage in bytes
max_points_count integer Max number of points estimated in a collection
filter_max_conditions integer Max conditions a filter can have.
condition_max_size integer Max size of a condition, eg. items in `MatchAny`.
multivector_config object Multivector configuration
sparse_config object Sparse vector configuration
max_payload_index_count integer Max number of payload indexes in a collection
View JSON Schema on GitHub

JSON Schema

qdrant-strictmodeconfigoutput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StrictModeConfigOutput",
  "title": "StrictModeConfigOutput",
  "type": "object",
  "properties": {
    "enabled": {
      "description": "Whether strict mode is enabled for a collection or not.",
      "type": "boolean",
      "nullable": true
    },
    "max_query_limit": {
      "description": "Max allowed `limit` parameter for all APIs that don't have their own max limit.",
      "type": "integer",
      "format": "uint",
      "minimum": 1,
      "nullable": true
    },
    "max_timeout": {
      "description": "Max allowed `timeout` parameter.",
      "type": "integer",
      "format": "uint",
      "minimum": 1,
      "nullable": true
    },
    "unindexed_filtering_retrieve": {
      "description": "Allow usage of unindexed fields in retrieval based (e.g. search) filters.",
      "type": "boolean",
      "nullable": true
    },
    "unindexed_filtering_update": {
      "description": "Allow usage of unindexed fields in filtered updates (e.g. delete by payload).",
      "type": "boolean",
      "nullable": true
    },
    "search_max_hnsw_ef": {
      "description": "Max HNSW value allowed in search parameters.",
      "type": "integer",
      "format": "uint",
      "minimum": 0,
      "nullable": true
    },
    "search_allow_exact": {
      "description": "Whether exact search is allowed or not.",
      "type": "boolean",
      "nullable": true
    },
    "search_max_oversampling": {
      "description": "Max oversampling value allowed in search.",
      "type": "number",
      "format": "double",
      "nullable": true
    },
    "upsert_max_batchsize": {
      "description": "Max batchsize when upserting",
      "type": "integer",
      "format": "uint",
      "minimum": 0,
      "nullable": true
    },
    "search_max_batchsize": {
      "description": "Max batchsize when searching",
      "type": "integer",
      "format": "uint",
      "minimum": 0,
      "nullable": true
    },
    "max_collection_vector_size_bytes": {
      "description": "Max size of a collections vector storage in bytes, ignoring replicas.",
      "type": "integer",
      "format": "uint",
      "minimum": 0,
      "nullable": true
    },
    "read_rate_limit": {
      "description": "Max number of read operations per minute per replica",
      "type": "integer",
      "format": "uint",
      "minimum": 0,
      "nullable": true
    },
    "write_rate_limit": {
      "description": "Max number of write operations per minute per replica",
      "type": "integer",
      "format": "uint",
      "minimum": 0,
      "nullable": true
    },
    "max_collection_payload_size_bytes": {
      "description": "Max size of a collections payload storage in bytes",
      "type": "integer",
      "format": "uint",
      "minimum": 0,
      "nullable": true
    },
    "max_points_count": {
      "description": "Max number of points estimated in a collection",
      "type": "integer",
      "format": "uint",
      "minimum": 0,
      "nullable": true
    },
    "filter_max_conditions": {
      "description": "Max conditions a filter can have.",
      "type": "integer",
      "format": "uint",
      "minimum": 0,
      "nullable": true
    },
    "condition_max_size": {
      "description": "Max size of a condition, eg. items in `MatchAny`.",
      "type": "integer",
      "format": "uint",
      "minimum": 0,
      "nullable": true
    },
    "multivector_config": {
      "description": "Multivector configuration",
      "anyOf": [
        {
          "$ref": "#/components/schemas/StrictModeMultivectorConfigOutput"
        },
        {
          "nullable": true
        }
      ]
    },
    "sparse_config": {
      "description": "Sparse vector configuration",
      "anyOf": [
        {
          "$ref": "#/components/schemas/StrictModeSparseConfigOutput"
        },
        {
          "nullable": true
        }
      ]
    },
    "max_payload_index_count": {
      "description": "Max number of payload indexes in a collection",
      "type": "integer",
      "format": "uint",
      "minimum": 0,
      "nullable": true
    }
  }
}