changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "address": {
+ "type": "string"
+ },
+ "awards": {
+ "type": "string"
+ },
+ "city_name": {
+ "type": "string"
+ },
+ "cuisine": {
+ "type": "string"
+ },
+ "description": {
+ "type": "string"
+ },
+ "dishes": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "happy_hour": {
+ "type": "string"
+ },
+ "highlights": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "hours": {
+ "type": "string"
+ },
+ "iconic": {
+ "type": "boolean"
+ },
+ "id": {
+ "type": "number"
+ },
+ "instagram": {
+ "type": "string"
+ },
+ "lat": {
+ "type": "number"
+ },
+ "lng": {
+ "type": "number"
+ },
+ "name": {
+ "type": "string"
+ },
+ "neighborhood": {
+ "type": "string"
+ },
+ "opened": {
+ "type": "string"
+ },
+ "other_locations": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "phone": {
+ "type": "string"
+ },
+ "photoUrl": {
+ "type": "string"
+ },
+ "price": {
+ "type": "string"
+ },
+ "price_tier": {
+ "type": "number"
+ },
+ "reservation": {
+ "type": "string"
+ },
+ "score": {
+ "type": "number"
+ },
+ "story": {
+ "type": "string"
+ },
+ "tags": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "trending": {
+ "type": "boolean"
+ },
+ "url": {
+ "type": "string"
+ },
+ "website": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "name",
+ "cuisine",
+ "neighborhood",
+ "tags",
+ "description",
+ "dishes",
+ "happy_hour",
+ "address",
+ "hours",
+ "phone",
+ "reservation",
+ "awards",
+ "website",
+ "instagram",
+ "url",
+ "city_name",
+ "photoUrl"
+ ],
+ "type": "object"
+}