Qdrant · Schema

ContextExamplePair

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
positive object
negative object
View JSON Schema on GitHub

JSON Schema

qdrant-contextexamplepair-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContextExamplePair",
  "title": "ContextExamplePair",
  "type": "object",
  "required": [
    "negative",
    "positive"
  ],
  "properties": {
    "positive": {
      "$ref": "#/components/schemas/RecommendExample"
    },
    "negative": {
      "$ref": "#/components/schemas/RecommendExample"
    }
  }
}