Qdrant · Schema

MinShould

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
conditions array
min_count integer
View JSON Schema on GitHub

JSON Schema

qdrant-minshould-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MinShould",
  "title": "MinShould",
  "type": "object",
  "required": [
    "conditions",
    "min_count"
  ],
  "properties": {
    "conditions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Condition"
      }
    },
    "min_count": {
      "type": "integer",
      "format": "uint",
      "minimum": 0
    }
  }
}