changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "checkIn": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "checkOut": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "currency": {
+ "type": "string"
+ },
+ "found": {
+ "description": "false when the hotel is unknown",
+ "type": "boolean"
+ },
+ "hotelName": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "nights": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "note": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "roomTypes": {
+ "description": "Per-room-type from-prices when dates were given and live rates exist",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "fromNightly": {
+ "description": "Nightly from-price in whole dollars, hotel's own public rate",
+ "type": "number"
+ },
+ "name": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "fromNightly"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "typicalNightlyFrom": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Hotel-level typical nightly from-price in dollars"
+ }
+ },
+ "required": [
+ "found",
+ "hotelName",
+ "currency",
+ "checkIn",
+ "checkOut",
+ "nights",
+ "roomTypes",
+ "typicalNightlyFrom",
+ "note"
+ ],
+ "type": "object"
+}