changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "results": {
+ "description": "Array of places matching search criteria",
+ "items": {
+ "properties": {
+ "business_status": {
+ "description": "Business operational status",
+ "type": "string"
+ },
+ "formatted_address": {
+ "description": "Formatted address of the place",
+ "type": "string"
+ },
+ "geometry": {
+ "description": "Location geometry",
+ "properties": {
+ "location": {
+ "properties": {
+ "lat": {
+ "description": "Latitude",
+ "type": "number"
+ },
+ "lng": {
+ "description": "Longitude",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ }
+ },
+ "type": "object"
+ },
+ "name": {
+ "description": "Place name",
+ "type": "string"
+ },
+ "place_id": {
+ "description": "Unique Google place ID",
+ "type": "string"
+ },
+ "rating": {
+ "description": "Average user rating (0-5)",
+ "type": "number"
+ },
+ "types": {
+ "description": "Place type categories",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "status": {
+ "description": "Status of the place search request",
+ "enum": [
+ "OK",
+ "ZERO_RESULTS",
+ "INVALID_REQUEST",
+ "OVER_QUERY_LIMIT",
+ "REQUEST_DENIED",
+ "UNKNOWN_ERROR"
+ ],
+ "type": "string"
+ }
+ },
+ "type": "object"
+}