Qdrant · Schema

Usage

Usage of the hardware resources, spent to process the request

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
hardware object
inference object
View JSON Schema on GitHub

JSON Schema

qdrant-usage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Usage",
  "title": "Usage",
  "description": "Usage of the hardware resources, spent to process the request",
  "type": "object",
  "properties": {
    "hardware": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/HardwareUsage"
        },
        {
          "nullable": true
        }
      ]
    },
    "inference": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/InferenceUsage"
        },
        {
          "nullable": true
        }
      ]
    }
  }
}