GeoPolygon
data class GeoPolygon(val exterior: List<GeoPoint>, val interiors: List<List<GeoPoint>> = emptyList()) : FieldMatcher
Geographic polygon (geo_polygon) with an exterior ring and optional interior holes. Each ring's first and last point must coincide (enforced by Qdrant, not here).