Qdrant · Schema

GeoLineString

Ordered sequence of GeoPoints representing the line

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
points array
View JSON Schema on GitHub

JSON Schema

qdrant-geolinestring-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GeoLineString",
  "title": "GeoLineString",
  "description": "Ordered sequence of GeoPoints representing the line",
  "type": "object",
  "required": [
    "points"
  ],
  "properties": {
    "points": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/GeoPoint"
      }
    }
  }
}