changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "found": {
+ "type": "boolean"
+ },
+ "hotel": {
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "properties": {
+ "address": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "amenities": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "awards": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "bestFor": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "city": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "googleRating": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "googleReviewCount": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "hotelType": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "id": {
+ "type": "string"
+ },
+ "knownViews": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "landmarks": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "distanceMi": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "name": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "distanceMi"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "name": {
+ "type": "string"
+ },
+ "neighborhood": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "reviewCount": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "roomzaTruth": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "score": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Roomza score 0-100; null when unreviewed"
+ },
+ "scoreBreakdown": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "label": {
+ "type": "string"
+ },
+ "score": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "label",
+ "score"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "slug": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "starRating": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "state": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "topStrengths": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "label": {
+ "type": "string"
+ },
+ "score": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "label",
+ "score"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "uniqueFeatures": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "url": {
+ "type": "string"
+ },
+ "verificationStatus": {
+ "type": "string"
+ },
+ "vibes": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "zip": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+ },
+ "required": [
+ "id",
+ "slug",
+ "name",
+ "url",
+ "address",
+ "city",
+ "state",
+ "zip",
+ "starRating",
+ "verificationStatus",
+ "score",
+ "reviewCount",
+ "scoreBreakdown",
+ "topStrengths",
+ "googleRating",
+ "googleReviewCount",
+ "amenities",
+ "hotelType",
+ "vibes",
+ "bestFor",
+ "neighborhood",
+ "awards",
+ "knownViews",
+ "uniqueFeatures",
+ "landmarks",
+ "roomzaTruth"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "null when the hotel was not found"
+ }
+ },
+ "required": [
+ "found",
+ "hotel"
+ ],
+ "type": "object"
+}