Qdrant · Schema

ContextPair

AIArtificial IntelligenceVector Databases

Properties

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

JSON Schema

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