Qdrant · Schema

ErrorResponse

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
time number Time spent to process this request
status object
result object
View JSON Schema on GitHub

JSON Schema

qdrant-errorresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorResponse",
  "title": "ErrorResponse",
  "type": "object",
  "properties": {
    "time": {
      "type": "number",
      "format": "float",
      "description": "Time spent to process this request"
    },
    "status": {
      "type": "object",
      "properties": {
        "error": {
          "type": "string",
          "description": "Description of the occurred error."
        }
      }
    },
    "result": {
      "type": "object",
      "nullable": true
    }
  }
}