changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "country": {
+ "description": "Country name containing the address",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "latitude": {
+ "description": "Latitude of the 3m×3m square center",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "longitude": {
+ "description": "Longitude of the 3m×3m square center",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "map_url": {
+ "description": "URL to view the address on what3words map",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "nearest_place": {
+ "description": "Nearest place name to the address",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "square_ne": {
+ "description": "Northeast corner of bounding box",
+ "properties": {
+ "lat": {
+ "description": "Northeast corner latitude",
+ "type": "number"
+ },
+ "lng": {
+ "description": "Northeast corner longitude",
+ "type": "number"
+ }
+ },
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "square_sw": {
+ "description": "Southwest corner of bounding box",
+ "properties": {
+ "lat": {
+ "description": "Southwest corner latitude",
+ "type": "number"
+ },
+ "lng": {
+ "description": "Southwest corner longitude",
+ "type": "number"
+ }
+ },
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "words": {
+ "description": "The 3-word address input",
+ "type": "string"
+ }
+ },
+ "required": [
+ "words",
+ "latitude",
+ "longitude",
+ "square_sw",
+ "square_ne",
+ "country",
+ "nearest_place",
+ "map_url"
+ ],
+ "type": "object"
+}