Qdrant · Schema

MatchPhrase

Full-text phrase match of the string.

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
phrase string
View JSON Schema on GitHub

JSON Schema

qdrant-matchphrase-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MatchPhrase",
  "title": "MatchPhrase",
  "description": "Full-text phrase match of the string.",
  "type": "object",
  "required": [
    "phrase"
  ],
  "properties": {
    "phrase": {
      "type": "string"
    }
  }
}