changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of suggestions returned",
+ "type": "number"
+ },
+ "input": {
+ "description": "The partial 3-word input submitted",
+ "type": "string"
+ },
+ "suggestions": {
+ "description": "List of ranked suggestions",
+ "items": {
+ "properties": {
+ "country": {
+ "description": "Country containing the suggestion",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "distance_to_focus_km": {
+ "description": "Distance in km from focus point if provided",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "language": {
+ "description": "Language code of the suggestion",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "nearest_place": {
+ "description": "Nearest place to the suggestion",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "rank": {
+ "description": "Ranking of the suggestion",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "words": {
+ "description": "The suggested 3-word address",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "input",
+ "count",
+ "suggestions"
+ ],
+ "type": "object"
+}