Qdrant · Schema

FacetValueHit

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
value object
count integer
View JSON Schema on GitHub

JSON Schema

qdrant-facetvaluehit-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FacetValueHit",
  "title": "FacetValueHit",
  "type": "object",
  "required": [
    "count",
    "value"
  ],
  "properties": {
    "value": {
      "$ref": "#/components/schemas/FacetValue"
    },
    "count": {
      "type": "integer",
      "format": "uint",
      "minimum": 0
    }
  }
}