Qdrant · Schema

DivParams

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
left object
right object
by_zero_default number
View JSON Schema on GitHub

JSON Schema

qdrant-divparams-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DivParams",
  "title": "DivParams",
  "type": "object",
  "required": [
    "left",
    "right"
  ],
  "properties": {
    "left": {
      "$ref": "#/components/schemas/Expression"
    },
    "right": {
      "$ref": "#/components/schemas/Expression"
    },
    "by_zero_default": {
      "type": "number",
      "format": "float",
      "nullable": true
    }
  }
}