Qdrant · Schema

MatchText

Full-text match of the strings.

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
text string
View JSON Schema on GitHub

JSON Schema

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