Qdrant · Schema

NaiveFeedbackStrategyParams

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
a number
b number
c number
View JSON Schema on GitHub

JSON Schema

qdrant-naivefeedbackstrategyparams-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NaiveFeedbackStrategyParams",
  "title": "NaiveFeedbackStrategyParams",
  "type": "object",
  "required": [
    "a",
    "b",
    "c"
  ],
  "properties": {
    "a": {
      "type": "number",
      "format": "float"
    },
    "b": {
      "type": "number",
      "format": "float",
      "minimum": 0
    },
    "c": {
      "type": "number",
      "format": "float"
    }
  }
}