changedInput schema / properties / lat / description
Previous value: -"Latitude of the search center."New value: +"Latitude of the search center, in [-90, 90]."
addedInput schema / properties / lat / maximum
Added value: +90
addedInput schema / properties / lat / minimum
Added value: +-90
addedInput schema / properties / latSpan
Added value: +{
+ "description": "Optional bounding-box height in degrees, as an alternative to radius. Takes effect only when lonSpan is also set, in which case radius is ignored.",
+ "exclusiveMinimum": 0,
+ "type": "number"
+}
changedInput schema / properties / lon / description
Previous value: -"Longitude of the search center."New value: +"Longitude of the search center, in [-180, 180]."
addedInput schema / properties / lon / maximum
Added value: +180
addedInput schema / properties / lon / minimum
Added value: +-180
addedInput schema / properties / lonSpan
Added value: +{
+ "description": "Optional bounding-box width in degrees, as an alternative to radius. Takes effect only when latSpan is also set, in which case radius is ignored.",
+ "exclusiveMinimum": 0,
+ "type": "number"
+}
changedInput schema / properties / radius / description
Previous value: -"Search radius in meters. Defaults to 500m."New value: +"Search radius in meters. Must be positive; capped at 1600m. Defaults to 500m. Ignored when latSpan and lonSpan are both set."
addedInput schema / properties / radius / exclusiveMinimum
Added value: +0
addedInput schema / properties / radius / maximum
Added value: +1600
addedOutput schema / properties / limitExceeded
Added value: +{
+ "description": "True if more routes exist beyond the returned set; narrow the radius or set latSpan/lonSpan to see all.",
+ "type": "boolean"
+}
changedOutput schema / required
Previous value: -[
- "routes",
- "count"
-]New value: +[
+ "routes",
+ "limitExceeded",
+ "count"
+]