{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "HotelBookingLight", "description": "Booking Details", "type": "object", "properties": { "type": { "type": "string", "description": "Response Type" }, "id": { "type": "string", "description": "Booking Id" }, "providerConfirmationId": { "type": "string", "description": "GDS Confirmation Number. If you call the Provider, this Reference may be asked" }, "associatedRecords": { "type": "array", "items": { "$ref": "#/definitions/AssociatedRecord" } }, "self": { "type": "string", "format": "uri", "description": "Retrieve Booking Details" } }, "required": [ "type", "id", "providerConfirmationId" ] }