Qdrant · Schema

FeedbackItem

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
example object
score number
View JSON Schema on GitHub

JSON Schema

qdrant-feedbackitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FeedbackItem",
  "title": "FeedbackItem",
  "type": "object",
  "required": [
    "example",
    "score"
  ],
  "properties": {
    "example": {
      "$ref": "#/components/schemas/VectorInput"
    },
    "score": {
      "type": "number",
      "format": "float"
    }
  }
}