changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "results": {
+ "description": "Array of reverse geocoding results",
+ "items": {
+ "properties": {
+ "address_components": {
+ "description": "Array of address components",
+ "items": {
+ "properties": {
+ "long_name": {
+ "description": "Long component name",
+ "type": "string"
+ },
+ "short_name": {
+ "description": "Short component name",
+ "type": "string"
+ },
+ "types": {
+ "description": "Component type tags",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "formatted_address": {
+ "description": "Human-readable address",
+ "type": "string"
+ },
+ "geometry": {
+ "description": "Location geometry",
+ "properties": {
+ "bounds": {
+ "description": "Bounding box for the address",
+ "type": "object"
+ },
+ "location": {
+ "properties": {
+ "lat": {
+ "description": "Latitude coordinate",
+ "type": "number"
+ },
+ "lng": {
+ "description": "Longitude coordinate",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "location_type": {
+ "description": "Type of location",
+ "type": "string"
+ },
+ "viewport": {
+ "description": "Recommended viewport",
+ "type": "object"
+ }
+ },
+ "type": "object"
+ },
+ "place_id": {
+ "description": "Unique place identifier",
+ "type": "string"
+ },
+ "types": {
+ "description": "Address types",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "status": {
+ "description": "Status of the reverse geocoding request",
+ "enum": [
+ "OK",
+ "ZERO_RESULTS",
+ "INVALID_REQUEST",
+ "OVER_QUERY_LIMIT",
+ "REQUEST_DENIED",
+ "UNKNOWN_ERROR"
+ ],
+ "type": "string"
+ }
+ },
+ "type": "object"
+}