Qdrant · Schema

MatchValue

Exact match of the given value

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
value object
View JSON Schema on GitHub

JSON Schema

qdrant-matchvalue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MatchValue",
  "title": "MatchValue",
  "description": "Exact match of the given value",
  "type": "object",
  "required": [
    "value"
  ],
  "properties": {
    "value": {
      "$ref": "#/components/schemas/ValueVariants"
    }
  }
}