addedInput schema / properties / bbox
Added value: +{
+ "description": "west,south,east,north; west > east crosses the antimeridian",
+ "type": "string"
+}
changedInput schema / properties / before_id / description
Previous value: -"Keyset cursor"New value: +"Keyset cursor; cannot combine with distance sorting"
addedInput schema / properties / lat
Added value: +{
+ "description": "Query center latitude; requires long",
+ "maximum": 90,
+ "minimum": -90,
+ "type": "number"
+}
addedInput schema / properties / long
Added value: +{
+ "description": "Query center longitude; requires lat",
+ "maximum": 180,
+ "minimum": -180,
+ "type": "number"
+}
addedInput schema / properties / offset
Added value: +{
+ "description": "Distance pagination offset",
+ "type": "integer"
+}
addedInput schema / properties / radius
Added value: +{
+ "description": "Default 10; maximum 1000 km",
+ "exclusiveMinimum": 0,
+ "type": "number"
+}
addedInput schema / properties / sort
Added value: +{
+ "enum": [
+ "id",
+ "published",
+ "updated",
+ "distance"
+ ],
+ "type": "string"
+}
addedInput schema / properties / unit
Added value: +{
+ "description": "Default km",
+ "enum": [
+ "km",
+ "mi"
+ ],
+ "type": "string"
+}