Qdrant · Schema

PayloadStorageType

Type of payload storage

AIArtificial IntelligenceVector Databases
View JSON Schema on GitHub

JSON Schema

qdrant-payloadstoragetype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PayloadStorageType",
  "title": "PayloadStorageType",
  "description": "Type of payload storage",
  "oneOf": [
    {
      "type": "object",
      "required": [
        "type"
      ],
      "properties": {
        "type": {
          "type": "string",
          "enum": [
            "in_memory"
          ]
        }
      }
    },
    {
      "type": "object",
      "required": [
        "type"
      ],
      "properties": {
        "type": {
          "type": "string",
          "enum": [
            "on_disk"
          ]
        }
      }
    },
    {
      "type": "object",
      "required": [
        "type"
      ],
      "properties": {
        "type": {
          "type": "string",
          "enum": [
            "mmap"
          ]
        }
      }
    },
    {
      "type": "object",
      "required": [
        "type"
      ],
      "properties": {
        "type": {
          "type": "string",
          "enum": [
            "in_ram_mmap"
          ]
        }
      }
    }
  ]
}