diff --git a/specification/_types/query_dsl/geo.ts b/specification/_types/query_dsl/geo.ts index c981e2c085..d6246eaa30 100644 --- a/specification/_types/query_dsl/geo.ts +++ b/specification/_types/query_dsl/geo.ts @@ -56,6 +56,15 @@ export class GeoDistanceQuery validation_method?: GeoValidationMethod } +export class GeoGridQuery + extends QueryBase + implements AdditionalProperty +{ + geohash?: string; + geohex?: string; + geotile?: string; +} + export class GeoPolygonPoints { points: GeoLocation[] }