Qdrant · Schema

MatchTextAny

Full-text match of at least one token of the string.

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
text_any string
View JSON Schema on GitHub

JSON Schema

qdrant-matchtextany-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MatchTextAny",
  "title": "MatchTextAny",
  "description": "Full-text match of at least one token of the string.",
  "type": "object",
  "required": [
    "text_any"
  ],
  "properties": {
    "text_any": {
      "type": "string"
    }
  }
}