Lodging

Lodging of a location that provides accomodations.

JSON representation
{
  "name": string,
  "metadata": {
    object (LodgingMetadata)
  },
  "property": {
    object (Property)
  },
  "services": {
    object (Services)
  },
  "policies": {
    object (Policies)
  },
  "foodAndDrink": {
    object (FoodAndDrink)
  },
  "pools": {
    object (Pools)
  },
  "wellness": {
    object (Wellness)
  },
  "activities": {
    object (Activities)
  },
  "transportation": {
    object (Transportation)
  },
  "families": {
    object (Families)
  },
  "connectivity": {
    object (Connectivity)
  },
  "business": {
    object (Business)
  },
  "accessibility": {
    object (Accessibility)
  },
  "pets": {
    object (Pets)
  },
  "parking": {
    object (Parking)
  },
  "housekeeping": {
    object (Housekeeping)
  },
  "healthAndSafety": {
    object (HealthAndSafety)
  },
  "sustainability": {
    object (Sustainability)
  },
  "commonLivingArea": {
    object (LivingArea)
  },
  "guestUnits": [
    {
      object (GuestUnitType)
    }
  ],
  "allUnits": {
    object (GuestUnitFeatures)
  },
  "someUnits": {
    object (GuestUnitFeatures)
  }
}
Fields
name

string

Required. Google identifier for this location in the form: locations/{locationId}/lodging

metadata

object (LodgingMetadata)

Required. Metadata for the lodging.

property

object (Property)

General factual information about the property's physical structure and important dates.

services

object (Services)

Conveniences or help provided by the property to facilitate an easier, more comfortable stay.

policies

object (Policies)

Property rules that impact guests.

foodAndDrink

object (FoodAndDrink)

Meals, snacks, and beverages available at the property.

pools

object (Pools)

Swimming pool or recreational water facilities available at the hotel.

wellness

object (Wellness)

Guest facilities at the property to promote or maintain health, beauty, and fitness.

activities

object (Activities)

Amenities and features related to leisure and play.

transportation

object (Transportation)

Vehicles or vehicular services facilitated or owned by the property.

families

object (Families)

Services and amenities for families and young guests.

connectivity

object (Connectivity)

The ways in which the property provides guests with the ability to access the internet.

business

object (Business)

Features of the property of specific interest to the business traveler.

accessibility

object (Accessibility)

Physical adaptations made to the property in consideration of varying levels of human physical ability.

pets

object (Pets)

Policies regarding guest-owned animals.

parking

object (Parking)

Parking options at the property.

housekeeping

object (Housekeeping)

Conveniences provided in guest units to facilitate an easier, more comfortable stay.

healthAndSafety

object (HealthAndSafety)

Health and safety measures implemented by the hotel during COVID-19.

sustainability

object (Sustainability)

Sustainability practices implemented at the hotel.

commonLivingArea

object (LivingArea)

Features of the shared living areas available in this Lodging.

guestUnits[]

object (GuestUnitType)

Individual GuestUnitTypes that are available in this Lodging.

allUnits

object (GuestUnitFeatures)

Output only. All units on the property have at least these attributes.

someUnits

object (GuestUnitFeatures)

Output only. Some units on the property have as much as these attributes.

LodgingMetadata

Metadata for the Lodging.

JSON representation
{
  "updateTime": string
}
Fields
updateTime

string (Timestamp format)

Required. The latest time at which the Lodging data is asserted to be true in the real world. This is not necessarily the time at which the request is made.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

Property

General factual information about the property's physical structure and important dates.

JSON representation
{

  // Union field built_year_oneof can be only one of the following:
  "builtYear": integer,
  "builtYearException": enum (Exception)
  // End of list of possible types for union field built_year_oneof.

  // Union field last_renovated_year_oneof can be only one of the following:
  "lastRenovatedYear": integer,
  "lastRenovatedYearException": enum (Exception)
  // End of list of possible types for union field last_renovated_year_oneof.

  // Union field rooms_count_oneof can be only one of the following:
  "roomsCount": integer,
  "roomsCountException": enum (Exception)
  // End of list of possible types for union field rooms_count_oneof.

  // Union field floors_count_oneof can be only one of the following:
  "floorsCount": integer,
  "floorsCountException": enum (Exception)
  // End of list of possible types for union field floors_count_oneof.
}
Fields

Union field built_year_oneof.

built_year_oneof can be only one of the following:

builtYear

integer

Built year. The year that construction of the property was completed.

builtYearException

enum (Exception)

Built year exception.

Union field last_renovated_year_oneof.

last_renovated_year_oneof can be only one of the following:

lastRenovatedYear

integer

Last renovated year. The year when the most recent renovation of the property was completed. Renovation may include all or any combination of the following: the units, the public spaces, the exterior, or the interior.

lastRenovatedYearException

enum (Exception)

Last renovated year exception.

Union field rooms_count_oneof.

rooms_count_oneof can be only one of the following:

roomsCount

integer

Rooms count. The total number of rooms and suites bookable by guests for an overnight stay. Does not include event space, public spaces, conference rooms, fitness rooms, business centers, spa, salon, restaurants/bars, or shops.

roomsCountException

enum (Exception)

Rooms count exception.

Union field floors_count_oneof.

floors_count_oneof can be only one of the following:

floorsCount

integer

Floors count. The number of stories the building has from the ground floor to the top floor that are accessible to guests.

floorsCountException

enum (Exception)

Floors count exception.

Exception

Exception mode. Only use this if the factual information cannot be represented by the relevant proto field. I.e. a service is only available during some days of the week or an amenity is only available seasonally. This should not be used as an alternative to false for amenities that are not available.

Enums
EXCEPTION_UNSPECIFIED Default unspecified exception. Use this only if a more specific exception does not match.
UNDER_CONSTRUCTION Amenity or service is unavailable due to ongoing work orders.
DEPENDENT_ON_SEASON Amenity or service availability is seasonal.
DEPENDENT_ON_DAY_OF_WEEK Amenity or service availability depends on the day of the week.

Services

Conveniences or help provided by the property to facilitate an easier, more comfortable stay.

JSON representation
{
  "languagesSpoken": [
    {
      object (LanguageSpoken)
    }
  ],

  // Union field front_desk_oneof can be only one of the following:
  "frontDesk": boolean,
  "frontDeskException": enum (Exception)
  // End of list of possible types for union field front_desk_oneof.

  // Union field twenty_four_hour_front_desk_oneof can be only one of the
  // following:
  "twentyFourHourFrontDesk": boolean,
  "twentyFourHourFrontDeskException": enum (Exception)
  // End of list of possible types for union field
  // twenty_four_hour_front_desk_oneof.

  // Union field concierge_oneof can be only one of the following:
  "concierge": boolean,
  "conciergeException": enum (Exception)
  // End of list of possible types for union field concierge_oneof.

  // Union field elevator_oneof can be only one of the following:
  "elevator": boolean,
  "elevatorException": enum (Exception)
  // End of list of possible types for union field elevator_oneof.

  // Union field baggage_storage_oneof can be only one of the following:
  "baggageStorage": boolean,
  "baggageStorageException": enum (Exception)
  // End of list of possible types for union field baggage_storage_oneof.

  // Union field full_service_laundry_oneof can be only one of the following:
  "fullServiceLaundry": boolean,
  "fullServiceLaundryException": enum (Exception)
  // End of list of possible types for union field full_service_laundry_oneof.

  // Union field self_service_laundry_oneof can be only one of the following:
  "selfServiceLaundry": boolean,
  "selfServiceLaundryException": enum (Exception)
  // End of list of possible types for union field self_service_laundry_oneof.

  // Union field social_hour_oneof can be only one of the following:
  "socialHour": boolean,
  "socialHourException": enum (Exception)
  // End of list of possible types for union field social_hour_oneof.

  // Union field wake_up_calls_oneof can be only one of the following:
  "wakeUpCalls": boolean,
  "wakeUpCallsException": enum (Exception)
  // End of list of possible types for union field wake_up_calls_oneof.

  // Union field convenience_store_oneof can be only one of the following:
  "convenienceStore": boolean,
  "convenienceStoreException": enum (Exception)
  // End of list of possible types for union field convenience_store_oneof.

  // Union field gift_shop_oneof can be only one of the following:
  "giftShop": boolean,
  "giftShopException": enum (Exception)
  // End of list of possible types for union field gift_shop_oneof.

  // Union field currency_exchange_oneof can be only one of the following:
  "currencyExchange": boolean,
  "currencyExchangeException": enum (Exception)
  // End of list of possible types for union field currency_exchange_oneof.
}
Fields
languagesSpoken[]

object (LanguageSpoken)

Languages spoken by at least one staff member.

Union field front_desk_oneof.

front_desk_oneof can be only one of the following:

frontDesk

boolean

Front desk. A counter or desk in the lobby or the immediate interior of the hotel where a member of the staff greets guests and processes the information related to their stay (including check-in and check-out). May or may not be manned and open 24/7.

frontDeskException

enum (Exception)

Front desk exception.

Union field twenty_four_hour_front_desk_oneof.

twenty_four_hour_front_desk_oneof can be only one of the following:

twentyFourHourFrontDesk

boolean

24hr front desk. Front desk is staffed 24 hours a day.

twentyFourHourFrontDeskException

enum (Exception)

24hr front desk exception.

Union field concierge_oneof.

concierge_oneof can be only one of the following:

concierge

boolean

Concierge. Hotel staff member(s) responsible for facilitating an easy, comfortable stay through making reservations for meals, sourcing theater tickets, arranging tours, finding a doctor, making recommendations, and answering questions.

conciergeException

enum (Exception)

Concierge exception.

Union field elevator_oneof.

elevator_oneof can be only one of the following:

elevator

boolean

Elevator. A passenger elevator that transports guests from one story to another. Also known as lift.

elevatorException

enum (Exception)

Elevator exception.

Union field baggage_storage_oneof.

baggage_storage_oneof can be only one of the following:

baggageStorage

boolean

Baggage storage. A provision for guests to leave their bags at the hotel when they arrive for their stay before the official check-in time. May or may not apply for guests who wish to leave their bags after check-out and before departing the locale. Also known as bag dropoff.

baggageStorageException

enum (Exception)

Baggage storage exception.

Union field full_service_laundry_oneof.

full_service_laundry_oneof can be only one of the following:

fullServiceLaundry

boolean

Full service laundry. Laundry and dry cleaning facilitated and handled by the hotel on behalf of the guest. Does not include the provision for guests to do their own laundry in on-site machines.

fullServiceLaundryException

enum (Exception)

Full service laundry exception.

Union field self_service_laundry_oneof.

self_service_laundry_oneof can be only one of the following:

selfServiceLaundry

boolean

Self service laundry. On-site clothes washers and dryers accessible to guests for the purpose of washing and drying their own clothes. May or may not require payment to use the machines.

selfServiceLaundryException

enum (Exception)

Self service laundry exception.

Union field social_hour_oneof.

social_hour_oneof can be only one of the following:

socialHour

boolean

Social hour. A reception with complimentary soft drinks, tea, coffee, wine and/or cocktails in the afternoon or evening. Can be hosted by hotel staff or guests may serve themselves. Also known as wine hour. The availability of coffee/tea in the lobby throughout the day does not constitute a social or wine hour.

socialHourException

enum (Exception)

Social hour exception.

Union field wake_up_calls_oneof.

wake_up_calls_oneof can be only one of the following:

wakeUpCalls

boolean

Wake up calls. By direction of the guest, a hotel staff member will phone the guest unit at the requested hour. Also known as morning call.

wakeUpCallsException

enum (Exception)

Wake up calls exception.

Union field convenience_store_oneof.

convenience_store_oneof can be only one of the following:

convenienceStore

boolean

Convenience store. A shop at the hotel primarily selling snacks, drinks, non-prescription medicines, health and beauty aids, magazines and newspapers.

convenienceStoreException

enum (Exception)

Convenience store exception.

Union field gift_shop_oneof.

gift_shop_oneof can be only one of the following:

giftShop

boolean

Gift shop. An on-site store primarily selling souvenirs, mementos and other gift items. May or may not also sell sundries, magazines and newspapers, clothing, or snacks.

giftShopException

enum (Exception)

Gift shop exception.

Union field currency_exchange_oneof.

currency_exchange_oneof can be only one of the following:

currencyExchange

boolean

Currency exchange. A staff member or automated machine tasked with the transaction of providing the native currency of the hotel's locale in exchange for the foreign currency provided by a guest.

currencyExchangeException

enum (Exception)

Currency exchange exception.

LanguageSpoken

Language spoken by at least one staff member.

JSON representation
{
  "languageCode": string,

  // Union field spoken_oneof can be only one of the following:
  "spoken": boolean,
  "spokenException": enum (Exception)
  // End of list of possible types for union field spoken_oneof.
}
Fields
languageCode

string

Required. The BCP-47 language code for the spoken language. Currently accepted codes: ar, de, en, es, fil, fr, hi, id, it, ja, ko, nl, pt, ru, vi, yue, zh.

Union field spoken_oneof.

spoken_oneof can be only one of the following:

spoken

boolean

At least one member of the staff can speak the language.

spokenException

enum (Exception)

Spoken exception.

Policies

Property rules that impact guests.

JSON representation
{
  "paymentOptions": {
    object (PaymentOptions)
  },

  // Union field checkin_time_oneof can be only one of the following:
  "checkinTime": {
    object (TimeOfDay)
  },
  "checkinTimeException": enum (Exception)
  // End of list of possible types for union field checkin_time_oneof.

  // Union field checkout_time_oneof can be only one of the following:
  "checkoutTime": {
    object (TimeOfDay)
  },
  "checkoutTimeException": enum (Exception)
  // End of list of possible types for union field checkout_time_oneof.

  // Union field kids_stay_free_oneof can be only one of the following:
  "kidsStayFree": boolean,
  "kidsStayFreeException": enum (Exception)
  // End of list of possible types for union field kids_stay_free_oneof.

  // Union field max_kids_stay_free_count_oneof can be only one of the following:
  "maxKidsStayFreeCount": integer,
  "maxKidsStayFreeCountException": enum (Exception)
  // End of list of possible types for union field
  // max_kids_stay_free_count_oneof.

  // Union field max_child_age_oneof can be only one of the following:
  "maxChildAge": integer,
  "maxChildAgeException": enum (Exception)
  // End of list of possible types for union field max_child_age_oneof.

  // Union field smoke_free_property_oneof can be only one of the following:
  "smokeFreeProperty": boolean,
  "smokeFreePropertyException": enum (Exception)
  // End of list of possible types for union field smoke_free_property_oneof.

  // Union field all_inclusive_available_oneof can be only one of the following:
  "allInclusiveAvailable": boolean,
  "allInclusiveAvailableException": enum (Exception)
  // End of list of possible types for union field all_inclusive_available_oneof.

  // Union field all_inclusive_only_oneof can be only one of the following:
  "allInclusiveOnly": boolean,
  "allInclusiveOnlyException": enum (Exception)
  // End of list of possible types for union field all_inclusive_only_oneof.
}
Fields
paymentOptions

object (PaymentOptions)

Forms of payment accepted at the property.

Union field checkin_time_oneof.

checkin_time_oneof can be only one of the following:

checkinTime

object (TimeOfDay)

Check-in time. The time of the day at which the hotel begins providing guests access to their unit at the beginning of their stay.

checkinTimeException

enum (Exception)

Check-in time exception.

Union field checkout_time_oneof.

checkout_time_oneof can be only one of the following:

checkoutTime

object (TimeOfDay)

Check-out time. The time of the day on the last day of a guest's reserved stay at which the guest must vacate their room and settle their bill. Some hotels may offer late or early check out for a fee.

checkoutTimeException

enum (Exception)

Check-out time exception.

Union field kids_stay_free_oneof.

kids_stay_free_oneof can be only one of the following:

kidsStayFree

boolean

Kids stay free. The children of guests are allowed to stay in the room/suite of a parent or adult without an additional fee. The policy may or may not stipulate a limit of the child's age or the overall number of children allowed.

kidsStayFreeException

enum (Exception)

Kids stay free exception.

Union field max_kids_stay_free_count_oneof.

max_kids_stay_free_count_oneof can be only one of the following:

maxKidsStayFreeCount

integer

Max kids stay free count. The hotel allows a specific, defined number of children to stay in the room/suite of a parent or adult without an additional fee.

maxKidsStayFreeCountException

enum (Exception)

Max kids stay free count exception.

Union field max_child_age_oneof.

max_child_age_oneof can be only one of the following:

maxChildAge

integer

Max child age. The hotel allows children up to a certain age to stay in the room/suite of a parent or adult without an additional fee.

maxChildAgeException

enum (Exception)

Max child age exception.

Union field smoke_free_property_oneof.

smoke_free_property_oneof can be only one of the following:

smokeFreeProperty

boolean

Smoke free property. Smoking is not allowed inside the building, on balconies, or in outside spaces. Hotels that offer a designated area for guests to smoke are not considered smoke-free properties.

smokeFreePropertyException

enum (Exception)

Smoke free property exception.

Union field all_inclusive_available_oneof.

all_inclusive_available_oneof can be only one of the following:

allInclusiveAvailable

boolean

All inclusive available. The hotel offers a rate option that includes the cost of the room, meals, activities, and other amenities that might otherwise be charged separately.

allInclusiveAvailableException

enum (Exception)

All inclusive available exception.

Union field all_inclusive_only_oneof.

all_inclusive_only_oneof can be only one of the following:

allInclusiveOnly

boolean

All inclusive only. The only rate option offered by the hotel is a rate that includes the cost of the room, meals, activities and other amenities that might otherwise be charged separately.

allInclusiveOnlyException

enum (Exception)

All inclusive only exception.

TimeOfDay

Represents a time of day. The date and time zone are either not significant or are specified elsewhere. An API may choose to allow leap seconds. Related types are google.type.Date and google.protobuf.Timestamp.

JSON representation
{
  "hours": integer,
  "minutes": integer,
  "seconds": integer,
  "nanos": integer
}
Fields
hours

integer

Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.

minutes

integer

Minutes of hour of day. Must be from 0 to 59.

seconds

integer

Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.

nanos

integer

Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.

PaymentOptions

Forms of payment accepted at the property.

JSON representation
{

  // Union field cash_oneof can be only one of the following:
  "cash": boolean,
  "cashException": enum (Exception)
  // End of list of possible types for union field cash_oneof.

  // Union field cheque_oneof can be only one of the following:
  "cheque": boolean,
  "chequeException": enum (Exception)
  // End of list of possible types for union field cheque_oneof.

  // Union field credit_card_oneof can be only one of the following:
  "creditCard": boolean,
  "creditCardException": enum (Exception)
  // End of list of possible types for union field credit_card_oneof.

  // Union field debit_card_oneof can be only one of the following:
  "debitCard": boolean,
  "debitCardException": enum (Exception)
  // End of list of possible types for union field debit_card_oneof.

  // Union field mobile_nfc_oneof can be only one of the following:
  "mobileNfc": boolean,
  "mobileNfcException": enum (Exception)
  // End of list of possible types for union field mobile_nfc_oneof.
}
Fields

Union field cash_oneof.

cash_oneof can be only one of the following:

cash

boolean

Cash. The hotel accepts payment by paper/coin currency.

cashException

enum (Exception)

Cash exception.

Union field cheque_oneof.

cheque_oneof can be only one of the following:

cheque

boolean

Cheque. The hotel accepts a printed document issued by the guest's bank in the guest's name as a form of payment.

chequeException

enum (Exception)

Cheque exception.

Union field credit_card_oneof.

credit_card_oneof can be only one of the following:

creditCard

boolean

Credit card. The hotel accepts payment by a card issued by a bank or credit card company. Also known as charge card, debit card, bank card, or charge plate.

creditCardException

enum (Exception)

Credit card exception.

Union field debit_card_oneof.

debit_card_oneof can be only one of the following:

debitCard

boolean

Debit card. The hotel accepts a bank-issued card that immediately deducts the charged funds from the guest's bank account upon processing.

debitCardException

enum (Exception)

Debit card exception.

Union field mobile_nfc_oneof.

mobile_nfc_oneof can be only one of the following:

mobileNfc

boolean

Mobile nfc. The hotel has the compatible computer hardware terminal that reads and charges a payment app on the guest's smartphone without requiring the two devices to make physical contact. Also known as Apple Pay, Google Pay, Samsung Pay.

mobileNfcException

enum (Exception)

Mobile nfc exception.

FoodAndDrink

Meals, snacks, and beverages available at the property.

JSON representation
{

  // Union field room_service_oneof can be only one of the following:
  "roomService": boolean,
  "roomServiceException": enum (Exception)
  // End of list of possible types for union field room_service_oneof.

  // Union field twenty_four_hour_room_service_oneof can be only one of the
  // following:
  "twentyFourHourRoomService": boolean,
  "twentyFourHourRoomServiceException": enum (Exception)
  // End of list of possible types for union field
  // twenty_four_hour_room_service_oneof.

  // Union field restaurant_oneof can be only one of the following:
  "restaurant": boolean,
  "restaurantException": enum (Exception)
  // End of list of possible types for union field restaurant_oneof.

  // Union field restaurants_count_oneof can be only one of the following:
  "restaurantsCount": integer,
  "restaurantsCountException": enum (Exception)
  // End of list of possible types for union field restaurants_count_oneof.

  // Union field table_service_oneof can be only one of the following:
  "tableService": boolean,
  "tableServiceException": enum (Exception)
  // End of list of possible types for union field table_service_oneof.

  // Union field buffet_oneof can be only one of the following:
  "buffet": boolean,
  "buffetException": enum (Exception)
  // End of list of possible types for union field buffet_oneof.

  // Union field dinner_buffet_oneof can be only one of the following:
  "dinnerBuffet": boolean,
  "dinnerBuffetException": enum (Exception)
  // End of list of possible types for union field dinner_buffet_oneof.

  // Union field breakfast_buffet_oneof can be only one of the following:
  "breakfastBuffet": boolean,
  "breakfastBuffetException": enum (Exception)
  // End of list of possible types for union field breakfast_buffet_oneof.

  // Union field breakfast_available_oneof can be only one of the following:
  "breakfastAvailable": boolean,
  "breakfastAvailableException": enum (Exception)
  // End of list of possible types for union field breakfast_available_oneof.

  // Union field free_breakfast_oneof can be only one of the following:
  "freeBreakfast": boolean,
  "freeBreakfastException": enum (Exception)
  // End of list of possible types for union field free_breakfast_oneof.

  // Union field bar_oneof can be only one of the following:
  "bar": boolean,
  "barException": enum (Exception)
  // End of list of possible types for union field bar_oneof.

  // Union field vending_machine_oneof can be only one of the following:
  "vendingMachine": boolean,
  "vendingMachineException": enum (Exception)
  // End of list of possible types for union field vending_machine_oneof.
}
Fields

Union field room_service_oneof.

room_service_oneof can be only one of the following:

roomService

boolean

Room service. A hotel staffer delivers meals prepared onsite to a guest's room as per their request. May or may not be available during specific hours. Services should be available to all guests (not based on rate/room booked/reward program, etc).

roomServiceException

enum (Exception)

Room service exception.

Union field twenty_four_hour_room_service_oneof.

twenty_four_hour_room_service_oneof can be only one of the following:

twentyFourHourRoomService

boolean

24hr room service. Room service is available 24 hours a day.

twentyFourHourRoomServiceException

enum (Exception)

24hr room service exception.

Union field restaurant_oneof.

restaurant_oneof can be only one of the following:

restaurant

boolean

Restaurant. A business onsite at the hotel that is open to the public as well as guests, and offers meals and beverages to consume at tables or counters. May or may not include table service. Also known as cafe, buffet, eatery. A "breakfast room" where the hotel serves breakfast only to guests (not the general public) does not count as a restaurant.

restaurantException

enum (Exception)

Restaurant exception.

Union field restaurants_count_oneof.

restaurants_count_oneof can be only one of the following:

restaurantsCount

integer

Restaurants count. The number of restaurants at the hotel.

restaurantsCountException

enum (Exception)

Restaurants count exception.

Union field table_service_oneof.

table_service_oneof can be only one of the following:

tableService

boolean

Table service. A restaurant in which a staff member is assigned to a guest's table to take their order, deliver and clear away food, and deliver the bill, if applicable. Also known as sit-down restaurant.

tableServiceException

enum (Exception)

Table service exception.

Union field buffet_oneof.

buffet_oneof can be only one of the following:

buffet

boolean

Buffet. A type of meal where guests serve themselves from a variety of dishes/foods that are put out on a table. Includes lunch and/or dinner meals. A breakfast-only buffet is not sufficient.

buffetException

enum (Exception)

Buffet exception.

Union field dinner_buffet_oneof.

dinner_buffet_oneof can be only one of the following:

dinnerBuffet

boolean

Dinner buffet. Dinner meal service where guests serve themselves from a variety of dishes/foods that are put out on a table.

dinnerBuffetException

enum (Exception)

Dinner buffet exception.

Union field breakfast_buffet_oneof.

breakfast_buffet_oneof can be only one of the following:

breakfastBuffet

boolean

Breakfast buffet. Breakfast meal service where guests serve themselves from a variety of dishes/foods that are put out on a table.

breakfastBuffetException

enum (Exception)

Breakfast buffet exception.

Union field breakfast_available_oneof.

breakfast_available_oneof can be only one of the following:

breakfastAvailable

boolean

Breakfast available. The morning meal is offered to all guests. Can be free or for a fee.

breakfastAvailableException

enum (Exception)

Breakfast available exception.

Union field free_breakfast_oneof.

free_breakfast_oneof can be only one of the following:

freeBreakfast

boolean

Free breakfast. Breakfast is offered for free to all guests. Does not apply if limited to certain room packages.

freeBreakfastException

enum (Exception)

Free breakfast exception.

Union field bar_oneof.

bar_oneof can be only one of the following:

bar

boolean

Bar. A designated room, lounge or area of an on-site restaurant with seating at a counter behind which a hotel staffer takes the guest's order and provides the requested alcoholic drink. Can be indoors or outdoors. Also known as Pub.

barException

enum (Exception)

Bar exception.

Union field vending_machine_oneof.

vending_machine_oneof can be only one of the following:

vendingMachine

boolean

Vending machine. A glass-fronted mechanized cabinet displaying and dispensing snacks and beverages for purchase by coins, paper money and/or credit cards.

vendingMachineException

enum (Exception)

Vending machine exception.

Pools

Swimming pool or recreational water facilities available at the hotel.

JSON representation
{

  // Union field pool_oneof can be only one of the following:
  "pool": boolean,
  "poolException": enum (Exception)
  // End of list of possible types for union field pool_oneof.

  // Union field pools_count_oneof can be only one of the following:
  "poolsCount": integer,
  "poolsCountException": enum (Exception)
  // End of list of possible types for union field pools_count_oneof.

  // Union field indoor_pool_oneof can be only one of the following:
  "indoorPool": boolean,
  "indoorPoolException": enum (Exception)
  // End of list of possible types for union field indoor_pool_oneof.

  // Union field indoor_pools_count_oneof can be only one of the following:
  "indoorPoolsCount": integer,
  "indoorPoolsCountException": enum (Exception)
  // End of list of possible types for union field indoor_pools_count_oneof.

  // Union field outdoor_pool_oneof can be only one of the following:
  "outdoorPool": boolean,
  "outdoorPoolException": enum (Exception)
  // End of list of possible types for union field outdoor_pool_oneof.

  // Union field outdoor_pools_count_oneof can be only one of the following:
  "outdoorPoolsCount": integer,
  "outdoorPoolsCountException": enum (Exception)
  // End of list of possible types for union field outdoor_pools_count_oneof.

  // Union field hot_tub_oneof can be only one of the following:
  "hotTub": boolean,
  "hotTubException": enum (Exception)
  // End of list of possible types for union field hot_tub_oneof.

  // Union field waterslide_oneof can be only one of the following:
  "waterslide": boolean,
  "waterslideException": enum (Exception)
  // End of list of possible types for union field waterslide_oneof.

  // Union field lazy_river_oneof can be only one of the following:
  "lazyRiver": boolean,
  "lazyRiverException": enum (Exception)
  // End of list of possible types for union field lazy_river_oneof.

  // Union field adult_pool_oneof can be only one of the following:
  "adultPool": boolean,
  "adultPoolException": enum (Exception)
  // End of list of possible types for union field adult_pool_oneof.

  // Union field wading_pool_oneof can be only one of the following:
  "wadingPool": boolean,
  "wadingPoolException": enum (Exception)
  // End of list of possible types for union field wading_pool_oneof.

  // Union field wave_pool_oneof can be only one of the following:
  "wavePool": boolean,
  "wavePoolException": enum (Exception)
  // End of list of possible types for union field wave_pool_oneof.

  // Union field water_park_oneof can be only one of the following:
  "waterPark": boolean,
  "waterParkException": enum (Exception)
  // End of list of possible types for union field water_park_oneof.

  // Union field lifeguard_oneof can be only one of the following:
  "lifeguard": boolean,
  "lifeguardException": enum (Exception)
  // End of list of possible types for union field lifeguard_oneof.
}
Fields

Union field pool_oneof.

pool_oneof can be only one of the following:

pool

boolean

Pool. The presence of a pool, either indoors or outdoors, for guests to use for swimming and/or soaking. Use may or may not be restricted to adults and/or children.

poolException

enum (Exception)

Pool exception.

Union field pools_count_oneof.

pools_count_oneof can be only one of the following:

poolsCount

integer

Pools count. The sum of all pools at the hotel.

poolsCountException

enum (Exception)

Pools count exception.

Union field indoor_pool_oneof.

indoor_pool_oneof can be only one of the following:

indoorPool

boolean

Indoor pool. A pool located inside the hotel and available for guests to use for swimming and/or soaking. Use may or may not be restricted to adults and/or children.

indoorPoolException

enum (Exception)

Indoor pool exception.

Union field indoor_pools_count_oneof.

indoor_pools_count_oneof can be only one of the following:

indoorPoolsCount

integer

Indoor pools count. The sum of all indoor pools at the hotel.

indoorPoolsCountException

enum (Exception)

Indoor pools count exception.

Union field outdoor_pool_oneof.

outdoor_pool_oneof can be only one of the following:

outdoorPool

boolean

Outdoor pool. A pool located outside on the grounds of the hotel and available for guests to use for swimming, soaking or recreation. Use may or may not be restricted to adults and/or children.

outdoorPoolException

enum (Exception)

Outdoor pool exception.

Union field outdoor_pools_count_oneof.

outdoor_pools_count_oneof can be only one of the following:

outdoorPoolsCount

integer

Outdoor pools count. The sum of all outdoor pools at the hotel.

outdoorPoolsCountException

enum (Exception)

Outdoor pools count exception.

Union field hot_tub_oneof.

hot_tub_oneof can be only one of the following:

hotTub

boolean

Hot tub. A man-made pool containing bubbling water maintained at a higher temperature and circulated by aerating jets for the purpose of soaking, relaxation and hydrotherapy. Can be indoors or outdoors. Not used for active swimming. Also known as Jacuzzi. Hot tub must be in a common area where all guests can access it. Does not apply to room-specific hot tubs that are only accessible to guest occupying that room.

hotTubException

enum (Exception)

Hot tub exception.

Union field waterslide_oneof.

waterslide_oneof can be only one of the following:

waterslide

boolean

Waterslide. A continuously wetted chute positioned by an indoor or outdoor pool which people slide down into the water.

waterslideException

enum (Exception)

Waterslide exception.

Union field lazy_river_oneof.

lazy_river_oneof can be only one of the following:

lazyRiver

boolean

Lazy river. A man-made pool or several interconnected recreational pools built to mimic the shape and current of a winding river where guests float in the water on inflated rubber tubes. Can be indoors or outdoors.

lazyRiverException

enum (Exception)

Lazy river exception.

Union field adult_pool_oneof.

adult_pool_oneof can be only one of the following:

adultPool

boolean

Adult pool. A pool restricted for use by adults only. Can be indoors or outdoors.

adultPoolException

enum (Exception)

Adult pool exception.

Union field wading_pool_oneof.

wading_pool_oneof can be only one of the following:

wadingPool

boolean

Wading pool. A shallow pool designed for small children to play in. Can be indoors or outdoors. Also known as kiddie pool.

wadingPoolException

enum (Exception)

Wading pool exception.

Union field wave_pool_oneof.

wave_pool_oneof can be only one of the following:

wavePool

boolean

Wave pool. A large indoor or outdoor pool with a machine that produces water currents to mimic the ocean's crests.

wavePoolException

enum (Exception)

Wave pool exception.

Union field water_park_oneof.

water_park_oneof can be only one of the following:

waterPark

boolean

Water park. An aquatic recreation area with a large pool or series of pools that has features such as a water slide or tube, wavepool, fountains, rope swings, and/or obstacle course. Can be indoors or outdoors. Also known as adventure pool.

waterParkException

enum (Exception)

Water park exception.

Union field lifeguard_oneof.

lifeguard_oneof can be only one of the following:

lifeguard

boolean

Lifeguard. A trained member of the hotel staff stationed by the hotel's indoor or outdoor swimming area and responsible for the safety of swimming guests.

lifeguardException

enum (Exception)

Lifeguard exception.

Wellness

Guest facilities at the property to promote or maintain health, beauty, and fitness.

JSON representation
{

  // Union field fitness_center_oneof can be only one of the following:
  "fitnessCenter": boolean,
  "fitnessCenterException": enum (Exception)
  // End of list of possible types for union field fitness_center_oneof.

  // Union field free_fitness_center_oneof can be only one of the following:
  "freeFitnessCenter": boolean,
  "freeFitnessCenterException": enum (Exception)
  // End of list of possible types for union field free_fitness_center_oneof.

  // Union field elliptical_machine_oneof can be only one of the following:
  "ellipticalMachine": boolean,
  "ellipticalMachineException": enum (Exception)
  // End of list of possible types for union field elliptical_machine_oneof.

  // Union field treadmill_oneof can be only one of the following:
  "treadmill": boolean,
  "treadmillException": enum (Exception)
  // End of list of possible types for union field treadmill_oneof.

  // Union field weight_machine_oneof can be only one of the following:
  "weightMachine": boolean,
  "weightMachineException": enum (Exception)
  // End of list of possible types for union field weight_machine_oneof.

  // Union field free_weights_oneof can be only one of the following:
  "freeWeights": boolean,
  "freeWeightsException": enum (Exception)
  // End of list of possible types for union field free_weights_oneof.

  // Union field spa_oneof can be only one of the following:
  "spa": boolean,
  "spaException": enum (Exception)
  // End of list of possible types for union field spa_oneof.

  // Union field salon_oneof can be only one of the following:
  "salon": boolean,
  "salonException": enum (Exception)
  // End of list of possible types for union field salon_oneof.

  // Union field sauna_oneof can be only one of the following:
  "sauna": boolean,
  "saunaException": enum (Exception)
  // End of list of possible types for union field sauna_oneof.

  // Union field massage_oneof can be only one of the following:
  "massage": boolean,
  "massageException": enum (Exception)
  // End of list of possible types for union field massage_oneof.

  // Union field doctor_on_call_oneof can be only one of the following:
  "doctorOnCall": boolean,
  "doctorOnCallException": enum (Exception)
  // End of list of possible types for union field doctor_on_call_oneof.
}
Fields

Union field fitness_center_oneof.

fitness_center_oneof can be only one of the following:

fitnessCenter

boolean

Fitness center. A room or building at the hotel containing equipment to promote physical activity, such as treadmills, elliptical machines, stationary bikes, weight machines, free weights, and/or stretching mats. Use of the fitness center can be free or for a fee. May or may not be staffed. May or may not offer instructor-led classes in various styles of physical conditioning. May or may not be open 24/7. May or may not include locker rooms and showers. Also known as health club, gym, fitness room, health center.

fitnessCenterException

enum (Exception)

Fitness center exception.

Union field free_fitness_center_oneof.

free_fitness_center_oneof can be only one of the following:

freeFitnessCenter

boolean

Free fitness center. Guests may use the fitness center for free.

freeFitnessCenterException

enum (Exception)

Free fitness center exception.

Union field elliptical_machine_oneof.

elliptical_machine_oneof can be only one of the following:

ellipticalMachine

boolean

Elliptical machine. An electric, stationary fitness machine with pedals that simulates climbing, walking or running and provides a user-controlled range of speeds and tensions. May not have arm-controlled levers to work out the upper body as well. Commonly found in a gym, fitness room, health center, or health club.

ellipticalMachineException

enum (Exception)

Elliptical machine exception.

Union field treadmill_oneof.

treadmill_oneof can be only one of the following:

treadmill

boolean

Treadmill. An electric stationary fitness machine that simulates a moving path to promote walking or running within a range of user-controlled speeds and inclines. Also known as running machine. Commonly found in a gym, fitness room, health center, or health club.

treadmillException

enum (Exception)

Treadmill exception.

Union field weight_machine_oneof.

weight_machine_oneof can be only one of the following:

weightMachine

boolean

Weight machine. Non-electronic fitness equipment designed for the user to target the exertion of different muscles. Usually incorporates a padded seat, a stack of flat weights and various bars and pulleys. May be designed for toning a specific part of the body or may involve different user-controlled settings, hardware and pulleys so as to provide an overall workout in one machine. Commonly found in a gym, fitness center, fitness room, or health club.

weightMachineException

enum (Exception)

Weight machine exception.

Union field free_weights_oneof.

free_weights_oneof can be only one of the following:

freeWeights

boolean

Free weights. Individual handheld fitness equipment of varied weights used for upper body strength training or bodybuilding. Also known as barbells, dumbbells, or kettlebells. Often stored on a rack with the weights arranged from light to heavy. Commonly found in a gym, fitness room, health center, or health club.

freeWeightsException

enum (Exception)

Free weights exception.

Union field spa_oneof.

spa_oneof can be only one of the following:

spa

boolean

Spa. A designated area, room or building at the hotel offering health and beauty treatment through such means as steam baths, exercise equipment, and massage. May also offer facials, nail care, and hair care. Services are usually available by appointment and for an additional fee. Does not apply if hotel only offers a steam room; must offer other beauty and/or health treatments as well.

spaException

enum (Exception)

Spa exception.

Union field salon_oneof.

salon_oneof can be only one of the following:

salon

boolean

Salon. A room at the hotel where professionals provide hair styling services such as shampooing, blow drying, hair dos, hair cutting and hair coloring. Also known as hairdresser or beauty salon.

salonException

enum (Exception)

Salon exception.

Union field sauna_oneof.

sauna_oneof can be only one of the following:

sauna

boolean

Sauna. A wood-paneled room heated to a high temperature where guests sit on built-in wood benches for the purpose of perspiring and relaxing their muscles. Can be dry or slightly wet heat. Not a steam room.

saunaException

enum (Exception)

Sauna exception.

Union field massage_oneof.

massage_oneof can be only one of the following:

massage

boolean

Massage. A service provided by a trained massage therapist involving the physical manipulation of a guest's muscles in order to achieve relaxation or pain relief.

massageException

enum (Exception)

Massage exception.

Union field doctor_on_call_oneof.

doctor_on_call_oneof can be only one of the following:

doctorOnCall

boolean

Doctor on call. The hotel has a contract with a medical professional who provides services to hotel guests should they fall ill during their stay. The doctor may or may not have an on-site office or be at the hotel at all times.

doctorOnCallException

enum (Exception)

Doctor on call exception.

Activities

Amenities and features related to leisure and play.

JSON representation
{

  // Union field game_room_oneof can be only one of the following:
  "gameRoom": boolean,
  "gameRoomException": enum (Exception)
  // End of list of possible types for union field game_room_oneof.

  // Union field nightclub_oneof can be only one of the following:
  "nightclub": boolean,
  "nightclubException": enum (Exception)
  // End of list of possible types for union field nightclub_oneof.

  // Union field casino_oneof can be only one of the following:
  "casino": boolean,
  "casinoException": enum (Exception)
  // End of list of possible types for union field casino_oneof.

  // Union field boutique_stores_oneof can be only one of the following:
  "boutiqueStores": boolean,
  "boutiqueStoresException": enum (Exception)
  // End of list of possible types for union field boutique_stores_oneof.

  // Union field tennis_oneof can be only one of the following:
  "tennis": boolean,
  "tennisException": enum (Exception)
  // End of list of possible types for union field tennis_oneof.

  // Union field golf_oneof can be only one of the following:
  "golf": boolean,
  "golfException": enum (Exception)
  // End of list of possible types for union field golf_oneof.

  // Union field horseback_riding_oneof can be only one of the following:
  "horsebackRiding": boolean,
  "horsebackRidingException": enum (Exception)
  // End of list of possible types for union field horseback_riding_oneof.

  // Union field snorkeling_oneof can be only one of the following:
  "snorkeling": boolean,
  "snorkelingException": enum (Exception)
  // End of list of possible types for union field snorkeling_oneof.

  // Union field scuba_oneof can be only one of the following:
  "scuba": boolean,
  "scubaException": enum (Exception)
  // End of list of possible types for union field scuba_oneof.

  // Union field water_skiing_oneof can be only one of the following:
  "waterSkiing": boolean,
  "waterSkiingException": enum (Exception)
  // End of list of possible types for union field water_skiing_oneof.

  // Union field bicycle_rental_oneof can be only one of the following:
  "bicycleRental": boolean,
  "bicycleRentalException": enum (Exception)
  // End of list of possible types for union field bicycle_rental_oneof.

  // Union field free_bicycle_rental_oneof can be only one of the following:
  "freeBicycleRental": boolean,
  "freeBicycleRentalException": enum (Exception)
  // End of list of possible types for union field free_bicycle_rental_oneof.

  // Union field watercraft_rental_oneof can be only one of the following:
  "watercraftRental": boolean,
  "watercraftRentalException": enum (Exception)
  // End of list of possible types for union field watercraft_rental_oneof.

  // Union field free_watercraft_rental_oneof can be only one of the following:
  "freeWatercraftRental": boolean,
  "freeWatercraftRentalException": enum (Exception)
  // End of list of possible types for union field free_watercraft_rental_oneof.

  // Union field beach_access_oneof can be only one of the following:
  "beachAccess": boolean,
  "beachAccessException": enum (Exception)
  // End of list of possible types for union field beach_access_oneof.

  // Union field private_beach_oneof can be only one of the following:
  "privateBeach": boolean,
  "privateBeachException": enum (Exception)
  // End of list of possible types for union field private_beach_oneof.

  // Union field beach_front_oneof can be only one of the following:
  "beachFront": boolean,
  "beachFrontException": enum (Exception)
  // End of list of possible types for union field beach_front_oneof.
}
Fields

Union field game_room_oneof.

game_room_oneof can be only one of the following:

gameRoom

boolean

Game room. There is a room at the hotel containing electronic machines for play such as pinball, prize machines, driving simulators, and other items commonly found at a family fun center or arcade. May also include non-electronic games like pool, foosball, darts, and more. May or may not be designed for children. Also known as arcade, fun room, or family fun center.

gameRoomException

enum (Exception)

Game room exception.

Union field nightclub_oneof.

nightclub_oneof can be only one of the following:

nightclub

boolean

Nightclub. There is a room at the hotel with a bar, a dance floor, and seating where designated staffers play dance music. There may also be a designated area for the performance of live music, singing and comedy acts.

nightclubException

enum (Exception)

Nightclub exception.

Union field casino_oneof.

casino_oneof can be only one of the following:

casino

boolean

Casino. A space designated for gambling and gaming featuring croupier-run table and card games, as well as electronic slot machines. May be on hotel premises or located nearby.

casinoException

enum (Exception)

Casino exception.

Union field boutique_stores_oneof.

boutique_stores_oneof can be only one of the following:

boutiqueStores

boolean

Boutique stores. There are stores selling clothing, jewelry, art and decor either on hotel premises or very close by. Does not refer to the hotel gift shop or convenience store.

boutiqueStoresException

enum (Exception)

Boutique stores exception.

Union field tennis_oneof.

tennis_oneof can be only one of the following:

tennis

boolean

Tennis. The hotel has the requisite court(s) on site or has an affiliation with a nearby facility for the purpose of providing guests with the opportunity to play a two-sided court-based game in which players use a stringed racquet to hit a ball across a net to the side of the opposing player. The court can be indoors or outdoors. Instructors, racquets and balls may or may not be provided.

tennisException

enum (Exception)

Tennis exception.

Union field golf_oneof.

golf_oneof can be only one of the following:

golf

boolean

Golf. There is a golf course on hotel grounds or there is a nearby, independently run golf course that allows use by hotel guests. Can be free or for a fee.

golfException

enum (Exception)

Golf exception.

Union field horseback_riding_oneof.

horseback_riding_oneof can be only one of the following:

horsebackRiding

boolean

Horseback riding. The hotel has a horse barn onsite or an affiliation with a nearby barn to allow for guests to sit astride a horse and direct it to walk, trot, cantor, gallop and/or jump. Can be in a riding ring, on designated paths, or in the wilderness. May or may not involve instruction.

horsebackRidingException

enum (Exception)

Horseback riding exception.

Union field snorkeling_oneof.

snorkeling_oneof can be only one of the following:

snorkeling

boolean

Snorkeling. The provision for guests to participate in a recreational water activity in which swimmers wear a diving mask, a simple, shaped breathing tube and flippers/swim fins for the purpose of exploring below the surface of an ocean, gulf or lake. Does not usually require user certification or professional supervision. Equipment may or may not be available for rent or purchase. Not scuba diving.

snorkelingException

enum (Exception)

Snorkeling exception.

Union field scuba_oneof.

scuba_oneof can be only one of the following:

scuba

boolean

Scuba. The provision for guests to dive under naturally occurring water fitted with a self-contained underwater breathing apparatus (SCUBA) for the purpose of exploring underwater life. Apparatus consists of a tank providing oxygen to the diver through a mask. Requires certification of the diver and supervision. The hotel may have the activity at its own waterfront or have an affiliation with a nearby facility. Required equipment is most often supplied to guests. Can be free or for a fee. Not snorkeling. Not done in a swimming pool.

scubaException

enum (Exception)

Scuba exception.

Union field water_skiing_oneof.

water_skiing_oneof can be only one of the following:

waterSkiing

boolean

Water skiing. The provision of giving guests the opportunity to be pulled across naturally occurring water while standing on skis and holding a tow rope attached to a motorboat. Can occur on hotel premises or at a nearby waterfront. Most often performed in a lake or ocean.

waterSkiingException

enum (Exception)

Water skiing exception.

Union field bicycle_rental_oneof.

bicycle_rental_oneof can be only one of the following:

bicycleRental

boolean

Bicycle rental. The hotel owns bicycles that it permits guests to borrow and use. Can be free or for a fee.

bicycleRentalException

enum (Exception)

Bicycle rental exception.

Union field free_bicycle_rental_oneof.

free_bicycle_rental_oneof can be only one of the following:

freeBicycleRental

boolean

Free bicycle rental. The hotel owns bicycles that it permits guests to borrow and use for free.

freeBicycleRentalException

enum (Exception)

Free bicycle rental exception.

Union field watercraft_rental_oneof.

watercraft_rental_oneof can be only one of the following:

watercraftRental

boolean

Watercraft rental. The hotel owns water vessels that it permits guests to borrow and use. Can be free or for a fee. Watercraft may include boats, pedal boats, rowboats, sailboats, powerboats, canoes, kayaks, or personal watercraft (such as a Jet Ski).

watercraftRentalException

enum (Exception)

Watercraft rental exception.

Union field free_watercraft_rental_oneof.

free_watercraft_rental_oneof can be only one of the following:

freeWatercraftRental

boolean

Free watercraft rental. The hotel owns watercraft that it permits guests to borrow and use for free.

freeWatercraftRentalException

enum (Exception)

Free Watercraft rental exception.

Union field beach_access_oneof.

beach_access_oneof can be only one of the following:

beachAccess

boolean

Beach access. The hotel property is in close proximity to a beach and offers a way to get to that beach. This can include a route to the beach such as stairs down if hotel is on a bluff, or a short trail. Not the same as beachfront (with beach access, the hotel's proximity is close to but not right on the beach).

beachAccessException

enum (Exception)

Beach access exception.

Union field private_beach_oneof.

private_beach_oneof can be only one of the following:

privateBeach

boolean

Private beach. The beach which is in close proximity to the hotel is open only to guests.

privateBeachException

enum (Exception)

Private beach exception.

Union field beach_front_oneof.

beach_front_oneof can be only one of the following:

beachFront

boolean

Breach front. The hotel property is physically located on the beach alongside an ocean, sea, gulf, or bay. It is not on a lake, river, stream, or pond. The hotel is not separated from the beach by a public road allowing vehicular, pedestrian, or bicycle traffic.

beachFrontException

enum (Exception)

Beach front exception.

Transportation

Vehicles or vehicular services facilitated or owned by the property.

JSON representation
{

  // Union field transfer_oneof can be only one of the following:
  "transfer": boolean,
  "transferException": enum (Exception)
  // End of list of possible types for union field transfer_oneof.

  // Union field airport_shuttle_oneof can be only one of the following:
  "airportShuttle": boolean,
  "airportShuttleException": enum (Exception)
  // End of list of possible types for union field airport_shuttle_oneof.

  // Union field free_airport_shuttle_oneof can be only one of the following:
  "freeAirportShuttle": boolean,
  "freeAirportShuttleException": enum (Exception)
  // End of list of possible types for union field free_airport_shuttle_oneof.

  // Union field local_shuttle_oneof can be only one of the following:
  "localShuttle": boolean,
  "localShuttleException": enum (Exception)
  // End of list of possible types for union field local_shuttle_oneof.

  // Union field car_rental_on_property_oneof can be only one of the following:
  "carRentalOnProperty": boolean,
  "carRentalOnPropertyException": enum (Exception)
  // End of list of possible types for union field car_rental_on_property_oneof.

  // Union field private_car_service_oneof can be only one of the following:
  "privateCarService": boolean,
  "privateCarServiceException": enum (Exception)
  // End of list of possible types for union field private_car_service_oneof.

  // Union field free_private_car_service_oneof can be only one of the following:
  "freePrivateCarService": boolean,
  "freePrivateCarServiceException": enum (Exception)
  // End of list of possible types for union field
  // free_private_car_service_oneof.
}
Fields

Union field transfer_oneof.

transfer_oneof can be only one of the following:

transfer

boolean

Transfer. Hotel provides a shuttle service or car service to take guests to and from the nearest airport or train station. Can be free or for a fee. Guests may share the vehicle with other guests unknown to them.

transferException

enum (Exception)

Transfer exception.

Union field airport_shuttle_oneof.

airport_shuttle_oneof can be only one of the following:

airportShuttle

boolean

Airport shuttle. The hotel provides guests with a chauffeured van or bus to and from the airport. Can be free or for a fee. Guests may share the vehicle with other guests unknown to them. Applies if the hotel has a third-party shuttle service (office/desk etc.) within the hotel. As long as hotel provides this service, it doesn't matter if it's directly with them or a third party they work with. Does not apply if guest has to coordinate with an entity outside/other than the hotel.

airportShuttleException

enum (Exception)

Airport shuttle exception.

Union field free_airport_shuttle_oneof.

free_airport_shuttle_oneof can be only one of the following:

freeAirportShuttle

boolean

Free airport shuttle. Airport shuttle is free to guests. Must be free to all guests without any conditions.

freeAirportShuttleException

enum (Exception)

Free airport shuttle exception.

Union field local_shuttle_oneof.

local_shuttle_oneof can be only one of the following:

localShuttle

boolean

Local shuttle. A car, van or bus provided by the hotel to transport guests to destinations within a specified range of distance around the hotel. Usually shopping and/or convention centers, downtown districts, or beaches. Can be free or for a fee.

localShuttleException

enum (Exception)

Local shuttle exception.

Union field car_rental_on_property_oneof.

car_rental_on_property_oneof can be only one of the following:

carRentalOnProperty

boolean

Car rental on property. A branch of a rental car company with a processing desk in the hotel. Available cars for rent may be awaiting at the hotel or in a nearby lot.

carRentalOnPropertyException

enum (Exception)

Car rental on property exception.

Union field private_car_service_oneof.

private_car_service_oneof can be only one of the following:

privateCarService

boolean

Private car service. Hotel provides a private chauffeured car to transport guests to destinations. Passengers in the car are either alone or are known to one another and have requested the car together. Service can be free or for a fee and travel distance is usually limited to a specific range. Not a taxi.

privateCarServiceException

enum (Exception)

Private car service exception.

Union field free_private_car_service_oneof.

free_private_car_service_oneof can be only one of the following:

freePrivateCarService

boolean

Free private car service. Private chauffeured car service is free to guests.

freePrivateCarServiceException

enum (Exception)

Free private car service exception.

Families

Services and amenities for families and young guests.

JSON representation
{

  // Union field babysitting_oneof can be only one of the following:
  "babysitting": boolean,
  "babysittingException": enum (Exception)
  // End of list of possible types for union field babysitting_oneof.

  // Union field kids_activities_oneof can be only one of the following:
  "kidsActivities": boolean,
  "kidsActivitiesException": enum (Exception)
  // End of list of possible types for union field kids_activities_oneof.

  // Union field kids_club_oneof can be only one of the following:
  "kidsClub": boolean,
  "kidsClubException": enum (Exception)
  // End of list of possible types for union field kids_club_oneof.

  // Union field kids_friendly_oneof can be only one of the following:
  "kidsFriendly": boolean,
  "kidsFriendlyException": enum (Exception)
  // End of list of possible types for union field kids_friendly_oneof.
}
Fields

Union field babysitting_oneof.

babysitting_oneof can be only one of the following:

babysitting

boolean

Babysitting. Child care that is offered by hotel staffers or coordinated by hotel staffers with local child care professionals. Can be free or for a fee.

babysittingException

enum (Exception)

Babysitting exception.

Union field kids_activities_oneof.

kids_activities_oneof can be only one of the following:

kidsActivities

boolean

Kids activities. Recreational options such as sports, films, crafts and games designed for the enjoyment of children and offered at the hotel. May or may not be supervised. May or may not be at a designated time or place. Cab be free or for a fee.

kidsActivitiesException

enum (Exception)

Kids activities exception.

Union field kids_club_oneof.

kids_club_oneof can be only one of the following:

kidsClub

boolean

Kids club. An organized program of group activities held at the hotel and designed for the enjoyment of children. Facilitated by hotel staff (or staff procured by the hotel) in an area(s) designated for the purpose of entertaining children without their parents. May include games, outings, water sports, team sports, arts and crafts, and films. Usually has set hours. Can be free or for a fee. Also known as Kids Camp or Kids program.

kidsClubException

enum (Exception)

Kids club exception.

Union field kids_friendly_oneof.

kids_friendly_oneof can be only one of the following:

kidsFriendly

boolean

Kids friendly. The hotel has one or more special features for families with children, such as reduced rates, child-sized beds, kids' club, babysitting service, or suitable place to play on premises.

kidsFriendlyException

enum (Exception)

Kids friendly exception.

Connectivity

The ways in which the property provides guests with the ability to access the internet.

JSON representation
{

  // Union field wifi_available_oneof can be only one of the following:
  "wifiAvailable": boolean,
  "wifiAvailableException": enum (Exception)
  // End of list of possible types for union field wifi_available_oneof.

  // Union field free_wifi_oneof can be only one of the following:
  "freeWifi": boolean,
  "freeWifiException": enum (Exception)
  // End of list of possible types for union field free_wifi_oneof.

  // Union field public_area_wifi_available_oneof can be only one of the
  // following:
  "publicAreaWifiAvailable": boolean,
  "publicAreaWifiAvailableException": enum (Exception)
  // End of list of possible types for union field
  // public_area_wifi_available_oneof.

  // Union field public_internet_terminal_oneof can be only one of the following:
  "publicInternetTerminal": boolean,
  "publicInternetTerminalException": enum (Exception)
  // End of list of possible types for union field
  // public_internet_terminal_oneof.
}
Fields

Union field wifi_available_oneof.

wifi_available_oneof can be only one of the following:

wifiAvailable

boolean

Wifi available. The hotel provides the ability for guests to wirelessly connect to the internet. Can be in the public areas of the hotel and/or in the guest rooms. Can be free or for a fee.

wifiAvailableException

enum (Exception)

Wifi available exception.

Union field free_wifi_oneof.

free_wifi_oneof can be only one of the following:

freeWifi

boolean

Free wifi. The hotel offers guests wifi for free.

freeWifiException

enum (Exception)

Free wifi exception.

Union field public_area_wifi_available_oneof.

public_area_wifi_available_oneof can be only one of the following:

publicAreaWifiAvailable

boolean

Public area wifi available. Guests have the ability to wirelessly connect to the internet in the areas of the hotel accessible to anyone. Can be free or for a fee.

publicAreaWifiAvailableException

enum (Exception)

Public area wifi available exception.

Union field public_internet_terminal_oneof.

public_internet_terminal_oneof can be only one of the following:

publicInternetTerminal

boolean

Public internet terminal. An area of the hotel supplied with computers and designated for the purpose of providing guests with the ability to access the internet.

publicInternetTerminalException

enum (Exception)

Public internet terminal exception.

Business

Features of the property of specific interest to the business traveler.

JSON representation
{

  // Union field business_center_oneof can be only one of the following:
  "businessCenter": boolean,
  "businessCenterException": enum (Exception)
  // End of list of possible types for union field business_center_oneof.

  // Union field meeting_rooms_oneof can be only one of the following:
  "meetingRooms": boolean,
  "meetingRoomsException": enum (Exception)
  // End of list of possible types for union field meeting_rooms_oneof.

  // Union field meeting_rooms_count_oneof can be only one of the following:
  "meetingRoomsCount": integer,
  "meetingRoomsCountException": enum (Exception)
  // End of list of possible types for union field meeting_rooms_count_oneof.
}
Fields

Union field business_center_oneof.

business_center_oneof can be only one of the following:

businessCenter

boolean

Business center. A designated room at the hotel with one or more desks and equipped with guest-use computers, printers, fax machines and/or photocopiers. May or may not be open 24/7. May or may not require a key to access. Not a meeting room or conference room.

businessCenterException

enum (Exception)

Business center exception.

Union field meeting_rooms_oneof.

meeting_rooms_oneof can be only one of the following:

meetingRooms

boolean

Meeting rooms. Rooms at the hotel designated for business-related gatherings. Rooms are usually equipped with tables or desks, office chairs and audio/visual facilities to allow for presentations and conference calls. Also known as conference rooms.

meetingRoomsException

enum (Exception)

Meeting rooms exception.

Union field meeting_rooms_count_oneof.

meeting_rooms_count_oneof can be only one of the following:

meetingRoomsCount

integer

Meeting rooms count. The number of meeting rooms at the property.

meetingRoomsCountException

enum (Exception)

Meeting rooms count exception.

Accessibility

Physical adaptations made to the property in consideration of varying levels of human physical ability.

JSON representation
{

  // Union field mobility_accessible_oneof can be only one of the following:
  "mobilityAccessible": boolean,
  "mobilityAccessibleException": enum (Exception)
  // End of list of possible types for union field mobility_accessible_oneof.

  // Union field mobility_accessible_parking_oneof can be only one of the
  // following:
  "mobilityAccessibleParking": boolean,
  "mobilityAccessibleParkingException": enum (Exception)
  // End of list of possible types for union field
  // mobility_accessible_parking_oneof.

  // Union field mobility_accessible_elevator_oneof can be only one of the
  // following:
  "mobilityAccessibleElevator": boolean,
  "mobilityAccessibleElevatorException": enum (Exception)
  // End of list of possible types for union field
  // mobility_accessible_elevator_oneof.

  // Union field mobility_accessible_pool_oneof can be only one of the following:
  "mobilityAccessiblePool": boolean,
  "mobilityAccessiblePoolException": enum (Exception)
  // End of list of possible types for union field
  // mobility_accessible_pool_oneof.
}
Fields

Union field mobility_accessible_oneof.

mobility_accessible_oneof can be only one of the following:

mobilityAccessible

boolean

Mobility accessible. Throughout the property there are physical adaptations to ease the stay of a person in a wheelchair, such as auto-opening doors, wide elevators, wide bathrooms or ramps.

mobilityAccessibleException

enum (Exception)

Mobility accessible exception.

Union field mobility_accessible_parking_oneof.

mobility_accessible_parking_oneof can be only one of the following:

mobilityAccessibleParking

boolean

Mobility accessible parking. The presence of a marked, designated area of prescribed size in which only registered, labeled vehicles transporting a person with physical challenges may park.

mobilityAccessibleParkingException

enum (Exception)

Mobility accessible parking exception.

Union field mobility_accessible_elevator_oneof.

mobility_accessible_elevator_oneof can be only one of the following:

mobilityAccessibleElevator

boolean

Mobility accessible elevator. A lift that transports people from one level to another and is built to accommodate a wheelchair-using passenger owing to the width of its doors and placement of call buttons.

mobilityAccessibleElevatorException

enum (Exception)

Mobility accessible elevator exception.

Union field mobility_accessible_pool_oneof.

mobility_accessible_pool_oneof can be only one of the following:

mobilityAccessiblePool

boolean

Mobility accessible pool. A swimming pool equipped with a mechanical chair that can be lowered and raised for the purpose of moving physically challenged guests into and out of the pool. May be powered by electricity or water. Also known as pool lift.

mobilityAccessiblePoolException

enum (Exception)

Mobility accessible pool exception.

Pets

Policies regarding guest-owned animals.

JSON representation
{

  // Union field pets_allowed_oneof can be only one of the following:
  "petsAllowed": boolean,
  "petsAllowedException": enum (Exception)
  // End of list of possible types for union field pets_allowed_oneof.

  // Union field pets_allowed_free_oneof can be only one of the following:
  "petsAllowedFree": boolean,
  "petsAllowedFreeException": enum (Exception)
  // End of list of possible types for union field pets_allowed_free_oneof.

  // Union field dogs_allowed_oneof can be only one of the following:
  "dogsAllowed": boolean,
  "dogsAllowedException": enum (Exception)
  // End of list of possible types for union field dogs_allowed_oneof.

  // Union field cats_allowed_oneof can be only one of the following:
  "catsAllowed": boolean,
  "catsAllowedException": enum (Exception)
  // End of list of possible types for union field cats_allowed_oneof.
}
Fields

Union field pets_allowed_oneof.

pets_allowed_oneof can be only one of the following:

petsAllowed

boolean

Pets allowed. Household animals are allowed at the property and in the specific guest room of their owner. May or may not include dogs, cats, reptiles and/or fish. May or may not require a fee. Service animals are not considered to be pets, so not governed by this policy.

petsAllowedException

enum (Exception)

Pets allowed exception.

Union field pets_allowed_free_oneof.

pets_allowed_free_oneof can be only one of the following:

petsAllowedFree

boolean

Pets allowed free. Household animals are allowed at the property and in the specific guest room of their owner for free. May or may not include dogs, cats, reptiles, and/or fish.

petsAllowedFreeException

enum (Exception)

Pets allowed free exception.

Union field dogs_allowed_oneof.

dogs_allowed_oneof can be only one of the following:

dogsAllowed

boolean

Dogs allowed. Domesticated canines are permitted at the property and allowed to stay in the guest room of their owner. May or may not require a fee.

dogsAllowedException

enum (Exception)

Dogs allowed exception.

Union field cats_allowed_oneof.

cats_allowed_oneof can be only one of the following:

catsAllowed

boolean

Cats allowed. Domesticated felines are permitted at the property and allowed to stay in the guest room of their owner. May or may not require a fee.

catsAllowedException

enum (Exception)

Cats allowed exception.

Parking

Parking options at the property.

JSON representation
{

  // Union field parking_available_oneof can be only one of the following:
  "parkingAvailable": boolean,
  "parkingAvailableException": enum (Exception)
  // End of list of possible types for union field parking_available_oneof.

  // Union field free_parking_oneof can be only one of the following:
  "freeParking": boolean,
  "freeParkingException": enum (Exception)
  // End of list of possible types for union field free_parking_oneof.

  // Union field self_parking_available_oneof can be only one of the following:
  "selfParkingAvailable": boolean,
  "selfParkingAvailableException": enum (Exception)
  // End of list of possible types for union field self_parking_available_oneof.

  // Union field free_self_parking_oneof can be only one of the following:
  "freeSelfParking": boolean,
  "freeSelfParkingException": enum (Exception)
  // End of list of possible types for union field free_self_parking_oneof.

  // Union field valet_parking_available_oneof can be only one of the following:
  "valetParkingAvailable": boolean,
  "valetParkingAvailableException": enum (Exception)
  // End of list of possible types for union field valet_parking_available_oneof.

  // Union field free_valet_parking_oneof can be only one of the following:
  "freeValetParking": boolean,
  "freeValetParkingException": enum (Exception)
  // End of list of possible types for union field free_valet_parking_oneof.

  // Union field electric_car_charging_stations_oneof can be only one of the
  // following:
  "electricCarChargingStations": boolean,
  "electricCarChargingStationsException": enum (Exception)
  // End of list of possible types for union field
  // electric_car_charging_stations_oneof.
}
Fields

Union field parking_available_oneof.

parking_available_oneof can be only one of the following:

parkingAvailable

boolean

Parking available. The hotel allows the cars of guests to be parked. Can be free or for a fee. Parking facility may be an outdoor lot or an indoor garage, but must be onsite. Nearby parking does not apply. Parking may be performed by the guest or by hotel staff.

parkingAvailableException

enum (Exception)

Parking available exception.

Union field free_parking_oneof.

free_parking_oneof can be only one of the following:

freeParking

boolean

Free parking. The hotel allows the cars of guests to be parked for free. Parking facility may be an outdoor lot or an indoor garage, but must be onsite. Nearby parking does not apply. Parking may be performed by the guest or by hotel staff. Free parking must be available to all guests (limited conditions does not apply).

freeParkingException

enum (Exception)

Free parking exception.

Union field self_parking_available_oneof.

self_parking_available_oneof can be only one of the following:

selfParkingAvailable

boolean

Self parking available. Guests park their own cars. Parking facility may be an outdoor lot or an indoor garage, but must be onsite. Nearby parking does not apply. Can be free or for a fee.

selfParkingAvailableException

enum (Exception)

Self parking available exception.

Union field free_self_parking_oneof.

free_self_parking_oneof can be only one of the following:

freeSelfParking

boolean

Free self parking. Guests park their own cars for free. Parking facility may be an outdoor lot or an indoor garage, but must be onsite. Nearby parking does not apply.

freeSelfParkingException

enum (Exception)

Free self parking exception.

Union field valet_parking_available_oneof.

valet_parking_available_oneof can be only one of the following:

valetParkingAvailable

boolean

Valet parking available. Hotel staff member parks the cars of guests. Parking with this service can be free or for a fee.

valetParkingAvailableException

enum (Exception)

Valet parking available exception.

Union field free_valet_parking_oneof.

free_valet_parking_oneof can be only one of the following:

freeValetParking

boolean

Free valet parking. Hotel staff member parks the cars of guests. Parking with this service is free.

freeValetParkingException

enum (Exception)

Free valet parking exception.

Union field electric_car_charging_stations_oneof.

electric_car_charging_stations_oneof can be only one of the following:

electricCarChargingStations

boolean

Electric car charging stations. Electric power stations, usually located outdoors, into which guests plug their electric cars to receive a charge.

electricCarChargingStationsException

enum (Exception)

Electric car charging stations exception.

Housekeeping

Conveniences provided in guest units to facilitate an easier, more comfortable stay.

JSON representation
{

  // Union field housekeeping_available_oneof can be only one of the following:
  "housekeepingAvailable": boolean,
  "housekeepingAvailableException": enum (Exception)
  // End of list of possible types for union field housekeeping_available_oneof.

  // Union field daily_housekeeping_oneof can be only one of the following:
  "dailyHousekeeping": boolean,
  "dailyHousekeepingException": enum (Exception)
  // End of list of possible types for union field daily_housekeeping_oneof.

  // Union field turndown_service_oneof can be only one of the following:
  "turndownService": boolean,
  "turndownServiceException": enum (Exception)
  // End of list of possible types for union field turndown_service_oneof.
}
Fields

Union field housekeeping_available_oneof.

housekeeping_available_oneof can be only one of the following:

housekeepingAvailable

boolean

Housekeeping available. Guest units are cleaned by hotel staff during guest's stay. Schedule may vary from daily, weekly, or specific days of the week.

housekeepingAvailableException

enum (Exception)

Housekeeping available exception.

Union field daily_housekeeping_oneof.

daily_housekeeping_oneof can be only one of the following:

dailyHousekeeping

boolean

Daily housekeeping. Guest units are cleaned by hotel staff daily during guest's stay.

dailyHousekeepingException

enum (Exception)

Daily housekeeping exception.

Union field turndown_service_oneof.

turndown_service_oneof can be only one of the following:

turndownService

boolean

Turndown service. Hotel staff enters guest units to prepare the bed for sleep use. May or may not include some light housekeeping. May or may not include an evening snack or candy. Also known as evening service.

turndownServiceException

enum (Exception)

Turndown service exception.

HealthAndSafety

Health and safety measures implemented by the hotel during COVID-19.

JSON representation
{
  "enhancedCleaning": {
    object (EnhancedCleaning)
  },
  "increasedFoodSafety": {
    object (IncreasedFoodSafety)
  },
  "minimizedContact": {
    object (MinimizedContact)
  },
  "personalProtection": {
    object (PersonalProtection)
  },
  "physicalDistancing": {
    object (PhysicalDistancing)
  }
}
Fields
enhancedCleaning

object (EnhancedCleaning)

Enhanced cleaning measures implemented by the hotel during COVID-19.

increasedFoodSafety

object (IncreasedFoodSafety)

Increased food safety measures implemented by the hotel during COVID-19.

minimizedContact

object (MinimizedContact)

Minimized contact measures implemented by the hotel during COVID-19.

personalProtection

object (PersonalProtection)

Personal protection measures implemented by the hotel during COVID-19.

physicalDistancing

object (PhysicalDistancing)

Physical distancing measures implemented by the hotel during COVID-19.

EnhancedCleaning

Enhanced cleaning measures implemented by the hotel during COVID-19.

JSON representation
{

  // Union field common_areas_enhanced_cleaning_oneof can be only one of the
  // following:
  "commonAreasEnhancedCleaning": boolean,
  "commonAreasEnhancedCleaningException": enum (Exception)
  // End of list of possible types for union field
  // common_areas_enhanced_cleaning_oneof.

  // Union field guest_rooms_enhanced_cleaning_oneof can be only one of the
  // following:
  "guestRoomsEnhancedCleaning": boolean,
  "guestRoomsEnhancedCleaningException": enum (Exception)
  // End of list of possible types for union field
  // guest_rooms_enhanced_cleaning_oneof.

  // Union field commercial_grade_disinfectant_cleaning_oneof can be only one of
  // the following:
  "commercialGradeDisinfectantCleaning": boolean,
  "commercialGradeDisinfectantCleaningException": enum (Exception)
  // End of list of possible types for union field
  // commercial_grade_disinfectant_cleaning_oneof.

  // Union field employees_trained_cleaning_procedures_oneof can be only one of
  // the following:
  "employeesTrainedCleaningProcedures": boolean,
  "employeesTrainedCleaningProceduresException": enum (Exception)
  // End of list of possible types for union field
  // employees_trained_cleaning_procedures_oneof.

  // Union field employees_trained_thorough_hand_washing_oneof can be only one of
  // the following:
  "employeesTrainedThoroughHandWashing": boolean,
  "employeesTrainedThoroughHandWashingException": enum (Exception)
  // End of list of possible types for union field
  // employees_trained_thorough_hand_washing_oneof.

  // Union field employees_wear_protective_equipment_oneof can be only one of the
  // following:
  "employeesWearProtectiveEquipment": boolean,
  "employeesWearProtectiveEquipmentException": enum (Exception)
  // End of list of possible types for union field
  // employees_wear_protective_equipment_oneof.
}
Fields

Union field common_areas_enhanced_cleaning_oneof.

common_areas_enhanced_cleaning_oneof can be only one of the following:

commonAreasEnhancedCleaning

boolean

Enhanced cleaning of common areas.

commonAreasEnhancedCleaningException

enum (Exception)

Common areas enhanced cleaning exception.

Union field guest_rooms_enhanced_cleaning_oneof.

guest_rooms_enhanced_cleaning_oneof can be only one of the following:

guestRoomsEnhancedCleaning

boolean

Enhanced cleaning of guest rooms.

guestRoomsEnhancedCleaningException

enum (Exception)

Guest rooms enhanced cleaning exception.

Union field commercial_grade_disinfectant_cleaning_oneof.

commercial_grade_disinfectant_cleaning_oneof can be only one of the following:

commercialGradeDisinfectantCleaning

boolean

Commercial-grade disinfectant used to clean the property.

commercialGradeDisinfectantCleaningException

enum (Exception)

Commercial grade disinfectant cleaning exception.

Union field employees_trained_cleaning_procedures_oneof.

employees_trained_cleaning_procedures_oneof can be only one of the following:

employeesTrainedCleaningProcedures

boolean

Employees trained in COVID-19 cleaning procedures.

employeesTrainedCleaningProceduresException

enum (Exception)

Employees trained cleaning procedures exception.

Union field employees_trained_thorough_hand_washing_oneof.

employees_trained_thorough_hand_washing_oneof can be only one of the following:

employeesTrainedThoroughHandWashing

boolean

Employees trained in thorough hand-washing.

employeesTrainedThoroughHandWashingException

enum (Exception)

Employees trained thorough hand washing exception.

Union field employees_wear_protective_equipment_oneof.

employees_wear_protective_equipment_oneof can be only one of the following:

employeesWearProtectiveEquipment

boolean

Employees wear masks, face shields, and/or gloves.

employeesWearProtectiveEquipmentException

enum (Exception)

Employees wear protective equipment exception.

IncreasedFoodSafety

Increased food safety measures implemented by the hotel during COVID-19.

JSON representation
{

  // Union field food_preparation_and_serving_additional_safety_oneof can be only
  // one of the following:
  "foodPreparationAndServingAdditionalSafety": boolean,
  "foodPreparationAndServingAdditionalSafetyException": enum (Exception)
  // End of list of possible types for union field
  // food_preparation_and_serving_additional_safety_oneof.

  // Union field dining_areas_additional_sanitation_oneof can be only one of the
  // following:
  "diningAreasAdditionalSanitation": boolean,
  "diningAreasAdditionalSanitationException": enum (Exception)
  // End of list of possible types for union field
  // dining_areas_additional_sanitation_oneof.

  // Union field individual_packaged_meals_oneof can be only one of the
  // following:
  "individualPackagedMeals": boolean,
  "individualPackagedMealsException": enum (Exception)
  // End of list of possible types for union field
  // individual_packaged_meals_oneof.

  // Union field disposable_flatware_oneof can be only one of the following:
  "disposableFlatware": boolean,
  "disposableFlatwareException": enum (Exception)
  // End of list of possible types for union field disposable_flatware_oneof.

  // Union field single_use_food_menus_oneof can be only one of the following:
  "singleUseFoodMenus": boolean,
  "singleUseFoodMenusException": enum (Exception)
  // End of list of possible types for union field single_use_food_menus_oneof.
}
Fields

Union field food_preparation_and_serving_additional_safety_oneof.

food_preparation_and_serving_additional_safety_oneof can be only one of the following:

foodPreparationAndServingAdditionalSafety

boolean

Additional safety measures during food prep and serving.

foodPreparationAndServingAdditionalSafetyException

enum (Exception)

Food preparation and serving additional safety exception.

Union field dining_areas_additional_sanitation_oneof.

dining_areas_additional_sanitation_oneof can be only one of the following:

diningAreasAdditionalSanitation

boolean

Additional sanitation in dining areas.

diningAreasAdditionalSanitationException

enum (Exception)

Dining areas additional sanitation exception.

Union field individual_packaged_meals_oneof.

individual_packaged_meals_oneof can be only one of the following:

individualPackagedMeals

boolean

Individually-packaged meals.

individualPackagedMealsException

enum (Exception)

Individual packaged meals exception.

Union field disposable_flatware_oneof.

disposable_flatware_oneof can be only one of the following:

disposableFlatware

boolean

Disposable flatware.

disposableFlatwareException

enum (Exception)

Disposable flatware exception.

Union field single_use_food_menus_oneof.

single_use_food_menus_oneof can be only one of the following:

singleUseFoodMenus

boolean

Single-use menus.

singleUseFoodMenusException

enum (Exception)

Single use food menus exception.

MinimizedContact

Minimized contact measures implemented by the hotel during COVID-19.

JSON representation
{

  // Union field no_high_touch_items_common_areas_oneof can be only one of the
  // following:
  "noHighTouchItemsCommonAreas": boolean,
  "noHighTouchItemsCommonAreasException": enum (Exception)
  // End of list of possible types for union field
  // no_high_touch_items_common_areas_oneof.

  // Union field no_high_touch_items_guest_rooms_oneof can be only one of the
  // following:
  "noHighTouchItemsGuestRooms": boolean,
  "noHighTouchItemsGuestRoomsException": enum (Exception)
  // End of list of possible types for union field
  // no_high_touch_items_guest_rooms_oneof.

  // Union field digital_guest_room_keys_oneof can be only one of the following:
  "digitalGuestRoomKeys": boolean,
  "digitalGuestRoomKeysException": enum (Exception)
  // End of list of possible types for union field digital_guest_room_keys_oneof.

  // Union field plastic_keycards_disinfected_oneof can be only one of the
  // following:
  "plasticKeycardsDisinfected": boolean,
  "plasticKeycardsDisinfectedException": enum (Exception)
  // End of list of possible types for union field
  // plastic_keycards_disinfected_oneof.

  // Union field room_bookings_buffer_oneof can be only one of the following:
  "roomBookingsBuffer": boolean,
  "roomBookingsBufferException": enum (Exception)
  // End of list of possible types for union field room_bookings_buffer_oneof.

  // Union field housekeeping_scheduled_request_only_oneof can be only one of the
  // following:
  "housekeepingScheduledRequestOnly": boolean,
  "housekeepingScheduledRequestOnlyException": enum (Exception)
  // End of list of possible types for union field
  // housekeeping_scheduled_request_only_oneof.

  // Union field contactless_checkin_checkout_oneof can be only one of the
  // following:
  "contactlessCheckinCheckout": boolean,
  "contactlessCheckinCheckoutException": enum (Exception)
  // End of list of possible types for union field
  // contactless_checkin_checkout_oneof.
}
Fields

Union field no_high_touch_items_common_areas_oneof.

no_high_touch_items_common_areas_oneof can be only one of the following:

noHighTouchItemsCommonAreas

boolean

High-touch items, such as magazines, removed from common areas.

noHighTouchItemsCommonAreasException

enum (Exception)

No high touch items common areas exception.

Union field no_high_touch_items_guest_rooms_oneof.

no_high_touch_items_guest_rooms_oneof can be only one of the following:

noHighTouchItemsGuestRooms

boolean

High-touch items, such as decorative pillows, removed from guest rooms.

noHighTouchItemsGuestRoomsException

enum (Exception)

No high touch items guest rooms exception.

Union field digital_guest_room_keys_oneof.

digital_guest_room_keys_oneof can be only one of the following:

digitalGuestRoomKeys

boolean

Keyless mobile entry to guest rooms.

digitalGuestRoomKeysException

enum (Exception)

Digital guest room keys exception.

Union field plastic_keycards_disinfected_oneof.

plastic_keycards_disinfected_oneof can be only one of the following:

plasticKeycardsDisinfected

boolean

Plastic key cards are disinfected or discarded.

plasticKeycardsDisinfectedException

enum (Exception)

Plastic keycards disinfected exception.

Union field room_bookings_buffer_oneof.

room_bookings_buffer_oneof can be only one of the following:

roomBookingsBuffer

boolean

Buffer maintained between room bookings.

roomBookingsBufferException

enum (Exception)

Room bookings buffer exception.

Union field housekeeping_scheduled_request_only_oneof.

housekeeping_scheduled_request_only_oneof can be only one of the following:

housekeepingScheduledRequestOnly

boolean

Housekeeping scheduled by request only.

housekeepingScheduledRequestOnlyException

enum (Exception)

Housekeeping scheduled request only exception.

Union field contactless_checkin_checkout_oneof.

contactless_checkin_checkout_oneof can be only one of the following:

contactlessCheckinCheckout

boolean

No-contact check-in and check-out.

contactlessCheckinCheckoutException

enum (Exception)

Contactless check-in check-out exception.

PersonalProtection

Personal protection measures implemented by the hotel during COVID-19.

JSON representation
{

  // Union field common_areas_offer_sanitizing_items_oneof can be only one of the
  // following:
  "commonAreasOfferSanitizingItems": boolean,
  "commonAreasOfferSanitizingItemsException": enum (Exception)
  // End of list of possible types for union field
  // common_areas_offer_sanitizing_items_oneof.

  // Union field guest_room_hygiene_kits_available_oneof can be only one of the
  // following:
  "guestRoomHygieneKitsAvailable": boolean,
  "guestRoomHygieneKitsAvailableException": enum (Exception)
  // End of list of possible types for union field
  // guest_room_hygiene_kits_available_oneof.

  // Union field protective_equipment_available_oneof can be only one of the
  // following:
  "protectiveEquipmentAvailable": boolean,
  "protectiveEquipmentAvailableException": enum (Exception)
  // End of list of possible types for union field
  // protective_equipment_available_oneof.

  // Union field face_mask_required_oneof can be only one of the following:
  "faceMaskRequired": boolean,
  "faceMaskRequiredException": enum (Exception)
  // End of list of possible types for union field face_mask_required_oneof.
}
Fields

Union field common_areas_offer_sanitizing_items_oneof.

common_areas_offer_sanitizing_items_oneof can be only one of the following:

commonAreasOfferSanitizingItems

boolean

Hand-sanitizer and/or sanitizing wipes are offered in common areas.

commonAreasOfferSanitizingItemsException

enum (Exception)

Common areas offer sanitizing items exception.

Union field guest_room_hygiene_kits_available_oneof.

guest_room_hygiene_kits_available_oneof can be only one of the following:

guestRoomHygieneKitsAvailable

boolean

In-room hygiene kits with masks, hand sanitizer, and/or antibacterial wipes.

guestRoomHygieneKitsAvailableException

enum (Exception)

Guest room hygiene kits available exception.

Union field protective_equipment_available_oneof.

protective_equipment_available_oneof can be only one of the following:

protectiveEquipmentAvailable

boolean

Masks and/or gloves available for guests.

protectiveEquipmentAvailableException

enum (Exception)

Protective equipment available exception.

Union field face_mask_required_oneof.

face_mask_required_oneof can be only one of the following:

faceMaskRequired

boolean

Masks required on the property.

faceMaskRequiredException

enum (Exception)

Face mask required exception.

PhysicalDistancing

Physical distancing measures implemented by the hotel during COVID-19.

JSON representation
{

  // Union field physical_distancing_required_oneof can be only one of the
  // following:
  "physicalDistancingRequired": boolean,
  "physicalDistancingRequiredException": enum (Exception)
  // End of list of possible types for union field
  // physical_distancing_required_oneof.

  // Union field safety_dividers_oneof can be only one of the following:
  "safetyDividers": boolean,
  "safetyDividersException": enum (Exception)
  // End of list of possible types for union field safety_dividers_oneof.

  // Union field shared_areas_limited_occupancy_oneof can be only one of the
  // following:
  "sharedAreasLimitedOccupancy": boolean,
  "sharedAreasLimitedOccupancyException": enum (Exception)
  // End of list of possible types for union field
  // shared_areas_limited_occupancy_oneof.

  // Union field wellness_areas_have_private_spaces_oneof can be only one of the
  // following:
  "wellnessAreasHavePrivateSpaces": boolean,
  "wellnessAreasHavePrivateSpacesException": enum (Exception)
  // End of list of possible types for union field
  // wellness_areas_have_private_spaces_oneof.

  // Union field common_areas_physical_distancing_arranged_oneof can be only one
  // of the following:
  "commonAreasPhysicalDistancingArranged": boolean,
  "commonAreasPhysicalDistancingArrangedException": enum (Exception)
  // End of list of possible types for union field
  // common_areas_physical_distancing_arranged_oneof.
}
Fields

Union field physical_distancing_required_oneof.

physical_distancing_required_oneof can be only one of the following:

physicalDistancingRequired

boolean

Physical distancing required.

physicalDistancingRequiredException

enum (Exception)

Physical distancing required exception.

Union field safety_dividers_oneof.

safety_dividers_oneof can be only one of the following:

safetyDividers

boolean

Safety dividers at front desk and other locations.

safetyDividersException

enum (Exception)

Safety dividers exception.

Union field shared_areas_limited_occupancy_oneof.

shared_areas_limited_occupancy_oneof can be only one of the following:

sharedAreasLimitedOccupancy

boolean

Guest occupancy limited within shared facilities.

sharedAreasLimitedOccupancyException

enum (Exception)

Shared areas limited occupancy exception.

Union field wellness_areas_have_private_spaces_oneof.

wellness_areas_have_private_spaces_oneof can be only one of the following:

wellnessAreasHavePrivateSpaces

boolean

Private spaces designated in spa and wellness areas.

wellnessAreasHavePrivateSpacesException

enum (Exception)

Wellness areas have private spaces exception.

Union field common_areas_physical_distancing_arranged_oneof.

common_areas_physical_distancing_arranged_oneof can be only one of the following:

commonAreasPhysicalDistancingArranged

boolean

Common areas arranged to maintain physical distancing.

commonAreasPhysicalDistancingArrangedException

enum (Exception)

Common areas physical distancing arranged exception.

Sustainability

Sustainability practices implemented at the hotel.

JSON representation
{
  "energyEfficiency": {
    object (EnergyEfficiency)
  },
  "waterConservation": {
    object (WaterConservation)
  },
  "wasteReduction": {
    object (WasteReduction)
  },
  "sustainableSourcing": {
    object (SustainableSourcing)
  },
  "sustainabilityCertifications": {
    object (SustainabilityCertifications)
  }
}
Fields
energyEfficiency

object (EnergyEfficiency)

Energy efficiency practices implemented at the hotel.

waterConservation

object (WaterConservation)

Water conservation practices implemented at the hotel.

wasteReduction

object (WasteReduction)

Waste reduction practices implemented at the hotel.

sustainableSourcing

object (SustainableSourcing)

Sustainable sourcing practices implemented at the hotel.

sustainabilityCertifications
(deprecated)

object (SustainabilityCertifications)

Sustainability certifications the hotel has been awarded. Deprecated: this field is no longer populated. All certification data is now provided by BeCause.

EnergyEfficiency

Energy efficiency practices implemented at the hotel.

JSON representation
{

  // Union field green_building_design_oneof can be only one of the following:
  "greenBuildingDesign": boolean,
  "greenBuildingDesignException": enum (Exception)
  // End of list of possible types for union field green_building_design_oneof.

  // Union field energy_conservation_program_oneof can be only one of the
  // following:
  "energyConservationProgram": boolean,
  "energyConservationProgramException": enum (Exception)
  // End of list of possible types for union field
  // energy_conservation_program_oneof.

  // Union field independent_organization_audits_energy_use_oneof can be only one
  // of the following:
  "independentOrganizationAuditsEnergyUse": boolean,
  "independentOrganizationAuditsEnergyUseException": enum (Exception)
  // End of list of possible types for union field
  // independent_organization_audits_energy_use_oneof.

  // Union field carbon_free_energy_sources_oneof can be only one of the
  // following:
  "carbonFreeEnergySources": boolean,
  "carbonFreeEnergySourcesException": enum (Exception)
  // End of list of possible types for union field
  // carbon_free_energy_sources_oneof.

  // Union field energy_efficient_heating_and_cooling_systems_oneof can be only
  // one of the following:
  "energyEfficientHeatingAndCoolingSystems": boolean,
  "energyEfficientHeatingAndCoolingSystemsException": enum (Exception)
  // End of list of possible types for union field
  // energy_efficient_heating_and_cooling_systems_oneof.

  // Union field energy_efficient_lighting_oneof can be only one of the
  // following:
  "energyEfficientLighting": boolean,
  "energyEfficientLightingException": enum (Exception)
  // End of list of possible types for union field
  // energy_efficient_lighting_oneof.

  // Union field energy_saving_thermostats_oneof can be only one of the
  // following:
  "energySavingThermostats": boolean,
  "energySavingThermostatsException": enum (Exception)
  // End of list of possible types for union field
  // energy_saving_thermostats_oneof.
}
Fields

Union field green_building_design_oneof.

green_building_design_oneof can be only one of the following:

greenBuildingDesign

boolean

Output only. Green building design. True if the property has been awarded a relevant certification.

greenBuildingDesignException

enum (Exception)

Output only. Green building design exception.

Union field energy_conservation_program_oneof.

energy_conservation_program_oneof can be only one of the following:

energyConservationProgram

boolean

Energy conservation program. The property tracks corporate-level Scope 1 and 2 GHG emissions, and Scope 3 emissions if available. The property has a commitment to implement initiatives that reduce GHG emissions year over year. The property has shown an absolute reduction in emissions for at least 2 years. Emissions are either verfied by a third-party and/or published in external communications.

energyConservationProgramException

enum (Exception)

Energy conservation program exception.

Union field independent_organization_audits_energy_use_oneof.

independent_organization_audits_energy_use_oneof can be only one of the following:

independentOrganizationAuditsEnergyUse

boolean

Independent organization audits energy use. The property conducts an energy audit at least every 5 years, the results of which are either verified by a third-party and/or published in external communications. An energy audit is a detailed assessment of the facility which provides recommendations to existing operations and procedures to improve energy efficiency, available incentives or rebates,and opportunities for improvements through renovations or upgrades. Examples of organizations that conduct credible third party audits include: Engie Impact, DNV GL (EU), Dexma, and local utility providers (they often provide energy and water audits).

independentOrganizationAuditsEnergyUseException

enum (Exception)

Independent organization audits energy use exception.

Union field carbon_free_energy_sources_oneof.

carbon_free_energy_sources_oneof can be only one of the following:

carbonFreeEnergySources

boolean

Carbon free energy sources. Property sources carbon-free electricity via at least one of the following methods: on-site clean energy generation, power purchase agreement(s) with clean energy generators, green power provided by electricity supplier, or purchases of Energy Attribute Certificates (such as Renewable Energy Certificates or Guarantees of Origin).

carbonFreeEnergySourcesException

enum (Exception)

Carbon free energy sources exception.

Union field energy_efficient_heating_and_cooling_systems_oneof.

energy_efficient_heating_and_cooling_systems_oneof can be only one of the following:

energyEfficientHeatingAndCoolingSystems

boolean

Energy efficient heating and cooling systems. The property doesn't use chlorofluorocarbon (CFC)-based refrigerants in heating, ventilating, and air-conditioning systems unless a third-party audit shows it's not economically feasible. The CFC-based refrigerants which are used should have a Global Warming Potential (GWP) ≤ 10. The property uses occupancy sensors on HVAC systems in back-of-house spaces, meeting rooms, and other low-traffic areas.

energyEfficientHeatingAndCoolingSystemsException

enum (Exception)

Energy efficient heating and cooling systems exception.

Union field energy_efficient_lighting_oneof.

energy_efficient_lighting_oneof can be only one of the following:

energyEfficientLighting

boolean

Energy efficient lighting. At least 75% of the property's lighting is energy efficient, using lighting that is more than 45 lumens per watt – typically LED or CFL lightbulbs.

energyEfficientLightingException

enum (Exception)

Energy efficient lighting exception.

Union field energy_saving_thermostats_oneof.

energy_saving_thermostats_oneof can be only one of the following:

energySavingThermostats

boolean

Energy saving thermostats. The property installed energy-saving thermostats throughout the building to conserve energy when rooms or areas are not in use. Energy-saving thermostats are devices that control heating/cooling in the building by learning temperature preferences and automatically adjusting to energy-saving temperatures as the default. The thermostats are automatically set to a temperature between 68-78 degrees F (20-26 °C), depending on seasonality. In the winter, set the thermostat to 68°F (20°C) when the room is occupied, lowering room temperature when unoccupied. In the summer, set the thermostat to 78°F (26°C) when the room is occupied.

energySavingThermostatsException

enum (Exception)

Energy saving thermostats exception.

WaterConservation

Water conservation practices implemented at the hotel.

JSON representation
{

  // Union field independent_organization_audits_water_use_oneof can be only one
  // of the following:
  "independentOrganizationAuditsWaterUse": boolean,
  "independentOrganizationAuditsWaterUseException": enum (Exception)
  // End of list of possible types for union field
  // independent_organization_audits_water_use_oneof.

  // Union field water_saving_sinks_oneof can be only one of the following:
  "waterSavingSinks": boolean,
  "waterSavingSinksException": enum (Exception)
  // End of list of possible types for union field water_saving_sinks_oneof.

  // Union field water_saving_toilets_oneof can be only one of the following:
  "waterSavingToilets": boolean,
  "waterSavingToiletsException": enum (Exception)
  // End of list of possible types for union field water_saving_toilets_oneof.

  // Union field water_saving_showers_oneof can be only one of the following:
  "waterSavingShowers": boolean,
  "waterSavingShowersException": enum (Exception)
  // End of list of possible types for union field water_saving_showers_oneof.

  // Union field towel_reuse_program_oneof can be only one of the following:
  "towelReuseProgram": boolean,
  "towelReuseProgramException": enum (Exception)
  // End of list of possible types for union field towel_reuse_program_oneof.

  // Union field linen_reuse_program_oneof can be only one of the following:
  "linenReuseProgram": boolean,
  "linenReuseProgramException": enum (Exception)
  // End of list of possible types for union field linen_reuse_program_oneof.
}
Fields

Union field independent_organization_audits_water_use_oneof.

independent_organization_audits_water_use_oneof can be only one of the following:

independentOrganizationAuditsWaterUse

boolean

Independent organization audits water use. The property conducts a water conservation audit every 5 years, the results of which are either verified by a third-party and/or published in external communications. A water conservation audit is a detailed assessment of the facility, providing recommendations to existing operations and procedures to improve water efficiency, available incentives or rebates, and opportunities for improvements through renovations or upgrades. Examples of organizations who conduct credible third party audits include: Engie Impact, and local utility providers (they often provide energy and water audits).

independentOrganizationAuditsWaterUseException

enum (Exception)

Independent organization audits water use exception.

Union field water_saving_sinks_oneof.

water_saving_sinks_oneof can be only one of the following:

waterSavingSinks

boolean

Water saving sinks. All of the property's guest rooms have bathroom faucets that use a maximum of 1.5 gallons per minute (gpm), public restroom faucets do not exceed 0.5 gpm, and kitchen faucets (excluding faucets used exclusively for filling operations) do not exceed 2.2 gpm.

waterSavingSinksException

enum (Exception)

Water saving sinks exception.

Union field water_saving_toilets_oneof.

water_saving_toilets_oneof can be only one of the following:

waterSavingToilets

boolean

Water saving toilets. All of the property's toilets use 1.6 gallons per flush, or less.

waterSavingToiletsException

enum (Exception)

Water saving toilets exception.

Union field water_saving_showers_oneof.

water_saving_showers_oneof can be only one of the following:

waterSavingShowers

boolean

Water saving showers. All of the property's guest rooms have shower heads that use no more than 2.0 gallons per minute (gpm).

waterSavingShowersException

enum (Exception)

Water saving showers exception.

Union field towel_reuse_program_oneof.

towel_reuse_program_oneof can be only one of the following:

towelReuseProgram

boolean

Towel reuse program. The property offers a towel reuse program.

towelReuseProgramException

enum (Exception)

Towel reuse program exception.

Union field linen_reuse_program_oneof.

linen_reuse_program_oneof can be only one of the following:

linenReuseProgram

boolean

Linen reuse program. The property offers a linen reuse program.

linenReuseProgramException

enum (Exception)

Linen reuse program exception.

WasteReduction

Waste reduction practices implemented at the hotel.

JSON representation
{

  // Union field recycling_program_oneof can be only one of the following:
  "recyclingProgram": boolean,
  "recyclingProgramException": enum (Exception)
  // End of list of possible types for union field recycling_program_oneof.

  // Union field food_waste_reduction_program_oneof can be only one of the
  // following:
  "foodWasteReductionProgram": boolean,
  "foodWasteReductionProgramException": enum (Exception)
  // End of list of possible types for union field
  // food_waste_reduction_program_oneof.

  // Union field donates_excess_food_oneof can be only one of the following:
  "donatesExcessFood": boolean,
  "donatesExcessFoodException": enum (Exception)
  // End of list of possible types for union field donates_excess_food_oneof.

  // Union field composts_excess_food_oneof can be only one of the following:
  "compostsExcessFood": boolean,
  "compostsExcessFoodException": enum (Exception)
  // End of list of possible types for union field composts_excess_food_oneof.

  // Union field soap_donation_program_oneof can be only one of the following:
  "soapDonationProgram": boolean,
  "soapDonationProgramException": enum (Exception)
  // End of list of possible types for union field soap_donation_program_oneof.

  // Union field toiletry_donation_program_oneof can be only one of the
  // following:
  "toiletryDonationProgram": boolean,
  "toiletryDonationProgramException": enum (Exception)
  // End of list of possible types for union field
  // toiletry_donation_program_oneof.

  // Union field safely_handles_hazardous_substances_oneof can be only one of the
  // following:
  "safelyHandlesHazardousSubstances": boolean,
  "safelyHandlesHazardousSubstancesException": enum (Exception)
  // End of list of possible types for union field
  // safely_handles_hazardous_substances_oneof.

  // Union field safely_disposes_electronics_oneof can be only one of the
  // following:
  "safelyDisposesElectronics": boolean,
  "safelyDisposesElectronicsException": enum (Exception)
  // End of list of possible types for union field
  // safely_disposes_electronics_oneof.

  // Union field safely_disposes_batteries_oneof can be only one of the
  // following:
  "safelyDisposesBatteries": boolean,
  "safelyDisposesBatteriesException": enum (Exception)
  // End of list of possible types for union field
  // safely_disposes_batteries_oneof.

  // Union field safely_disposes_lightbulbs_oneof can be only one of the
  // following:
  "safelyDisposesLightbulbs": boolean,
  "safelyDisposesLightbulbsException": enum (Exception)
  // End of list of possible types for union field
  // safely_disposes_lightbulbs_oneof.

  // Union field refillable_toiletry_containers_oneof can be only one of the
  // following:
  "refillableToiletryContainers": boolean,
  "refillableToiletryContainersException": enum (Exception)
  // End of list of possible types for union field
  // refillable_toiletry_containers_oneof.

  // Union field water_bottle_filling_stations_oneof can be only one of the
  // following:
  "waterBottleFillingStations": boolean,
  "waterBottleFillingStationsException": enum (Exception)
  // End of list of possible types for union field
  // water_bottle_filling_stations_oneof.

  // Union field compostable_food_containers_and_cutlery_oneof can be only one of
  // the following:
  "compostableFoodContainersAndCutlery": boolean,
  "compostableFoodContainersAndCutleryException": enum (Exception)
  // End of list of possible types for union field
  // compostable_food_containers_and_cutlery_oneof.

  // Union field no_styrofoam_food_containers_oneof can be only one of the
  // following:
  "noStyrofoamFoodContainers": boolean,
  "noStyrofoamFoodContainersException": enum (Exception)
  // End of list of possible types for union field
  // no_styrofoam_food_containers_oneof.

  // Union field no_single_use_plastic_water_bottles_oneof can be only one of the
  // following:
  "noSingleUsePlasticWaterBottles": boolean,
  "noSingleUsePlasticWaterBottlesException": enum (Exception)
  // End of list of possible types for union field
  // no_single_use_plastic_water_bottles_oneof.

  // Union field no_single_use_plastic_straws_oneof can be only one of the
  // following:
  "noSingleUsePlasticStraws": boolean,
  "noSingleUsePlasticStrawsException": enum (Exception)
  // End of list of possible types for union field
  // no_single_use_plastic_straws_oneof.
}
Fields

Union field recycling_program_oneof.

recycling_program_oneof can be only one of the following:

recyclingProgram

boolean

Recycling program. The property has a recycling program, aligned with LEED waste requirements, and a policy outlining efforts to send less than 50% of waste to landfill. The recycling program includes storage locations for recyclable materials, including mixed paper, corrugated cardboard, glass, plastics, and metals.

recyclingProgramException

enum (Exception)

Recycling program exception.

Union field food_waste_reduction_program_oneof.

food_waste_reduction_program_oneof can be only one of the following:

foodWasteReductionProgram

boolean

Food waste reduction program. The property has established a food waste reduction and donation program, aiming to reduce food waste by half. These programs typically use tools such as the Hotel Kitchen Toolkit and others to track waste and measure progress.

foodWasteReductionProgramException

enum (Exception)

Food waste reduction program exception.

Union field donates_excess_food_oneof.

donates_excess_food_oneof can be only one of the following:

donatesExcessFood

boolean

Donates excess food. The property has a program and/or policy for diverting waste from landfill that may include efforts to donate for human consumption or divert food for animal feed.

donatesExcessFoodException

enum (Exception)

Donates excess food exception.

Union field composts_excess_food_oneof.

composts_excess_food_oneof can be only one of the following:

compostsExcessFood

boolean

Composts excess food. The property has a program and/or policy for diverting waste from landfill by composting food and yard waste, either through compost collection and off-site processing or on-site compost processing.

compostsExcessFoodException

enum (Exception)

Composts excess food exception.

Union field soap_donation_program_oneof.

soap_donation_program_oneof can be only one of the following:

soapDonationProgram

boolean

Soap donation program. The property participates in a soap donation program such as Clean the World or something similar.

soapDonationProgramException

enum (Exception)

Soap donation program exception.

Union field toiletry_donation_program_oneof.

toiletry_donation_program_oneof can be only one of the following:

toiletryDonationProgram

boolean

Toiletry donation program. The property participates in a toiletry donation program such as Clean the World or something similar.

toiletryDonationProgramException

enum (Exception)

Toiletry donation program exception.

Union field safely_handles_hazardous_substances_oneof.

safely_handles_hazardous_substances_oneof can be only one of the following:

safelyHandlesHazardousSubstances

boolean

Safely handles hazardous substances. The property has a hazardous waste management program aligned wit GreenSeal and LEED requirements, and meets all regulatory requirements for hazardous waste disposal and recycling. Hazardous means substances that are classified as "hazardous" by an authoritative body (such as OSHA or DOT), are labeled with signal words such as "Danger," "Caution," "Warning," or are flammable, corrosive, or ignitable.

Requirements include: - The property shall maintain records of the efforts it has made to replace the hazardous substances it uses with less hazardous alternatives. - An inventory of the hazardous materials stored on-site. - Products intended for cleaning, dishwashing, laundry, and pool maintenance shall be stored in clearly labeled containers. These containers shall be checked regularly for leaks, and replaced a necessary. - Spill containment devices shall be installed to collect spills, drips, or leaching of chemicals.

safelyHandlesHazardousSubstancesException

enum (Exception)

Safely handles hazardous substances exception.

Union field safely_disposes_electronics_oneof.

safely_disposes_electronics_oneof can be only one of the following:

safelyDisposesElectronics

boolean

Safely disposes electronics. The property has a reputable recycling program that keeps hazardous electronic parts and chemical compounds out of landfills, dumps and other unauthorized abandonment sites, and recycles/reuses applicable materials. (e.g. certified electronics recyclers).

safelyDisposesElectronicsException

enum (Exception)

Safely disposes electronics exception.

Union field safely_disposes_batteries_oneof.

safely_disposes_batteries_oneof can be only one of the following:

safelyDisposesBatteries

boolean

Safely disposes batteries. The property safely stores and disposes batteries.

safelyDisposesBatteriesException

enum (Exception)

Safely disposes batteries exception.

Union field safely_disposes_lightbulbs_oneof.

safely_disposes_lightbulbs_oneof can be only one of the following:

safelyDisposesLightbulbs

boolean

Safely disposes lightbulbs. The property safely stores and disposes lightbulbs.

safelyDisposesLightbulbsException

enum (Exception)

Safely disposes lightbulbs exception.

Union field refillable_toiletry_containers_oneof.

refillable_toiletry_containers_oneof can be only one of the following:

refillableToiletryContainers

boolean

Refillable toiletry containers. The property has replaced miniature individual containers with refillable amenity dispensers for shampoo, conditioner, soap, and lotion.

refillableToiletryContainersException

enum (Exception)

Refillable toiletry containers exception.

Union field water_bottle_filling_stations_oneof.

water_bottle_filling_stations_oneof can be only one of the following:

waterBottleFillingStations

boolean

Water bottle filling stations. The property offers water stations throughout the building for guest use.

waterBottleFillingStationsException

enum (Exception)

Water bottle filling stations exception.

Union field compostable_food_containers_and_cutlery_oneof.

compostable_food_containers_and_cutlery_oneof can be only one of the following:

compostableFoodContainersAndCutlery

boolean

Compostable food containers and cutlery. 100% of food service containers and to-go cutlery are compostable, and reusable utensils are offered wherever possible. Compostable materials are capable of undergoing biological decomposition in a compost site, such that material is not visually distinguishable and breaks down into carbon dioxide, water, inorganic compounds, and biomass.

compostableFoodContainersAndCutleryException

enum (Exception)

Compostable food containers and cutlery exception.

Union field no_styrofoam_food_containers_oneof.

no_styrofoam_food_containers_oneof can be only one of the following:

noStyrofoamFoodContainers

boolean

No styrofoam food containers. The property eliminates the use of Styrofoam in disposable food service items.

noStyrofoamFoodContainersException

enum (Exception)

No styrofoam food containers exception.

Union field no_single_use_plastic_water_bottles_oneof.

no_single_use_plastic_water_bottles_oneof can be only one of the following:

noSingleUsePlasticWaterBottles

boolean

No single use plastic water bottles. The property bans single-use plastic water bottles.

noSingleUsePlasticWaterBottlesException

enum (Exception)

No single use plastic water bottles exception.

Union field no_single_use_plastic_straws_oneof.

no_single_use_plastic_straws_oneof can be only one of the following:

noSingleUsePlasticStraws

boolean

No single use plastic straws. The property bans single-use plastic straws.

noSingleUsePlasticStrawsException

enum (Exception)

No single use plastic straws exception.

SustainableSourcing

Sustainable sourcing practices implemented at the hotel.

JSON representation
{

  // Union field responsible_purchasing_policy_oneof can be only one of the
  // following:
  "responsiblePurchasingPolicy": boolean,
  "responsiblePurchasingPolicyException": enum (Exception)
  // End of list of possible types for union field
  // responsible_purchasing_policy_oneof.

  // Union field organic_food_and_beverages_oneof can be only one of the
  // following:
  "organicFoodAndBeverages": boolean,
  "organicFoodAndBeveragesException": enum (Exception)
  // End of list of possible types for union field
  // organic_food_and_beverages_oneof.

  // Union field locally_sourced_food_and_beverages_oneof can be only one of the
  // following:
  "locallySourcedFoodAndBeverages": boolean,
  "locallySourcedFoodAndBeveragesException": enum (Exception)
  // End of list of possible types for union field
  // locally_sourced_food_and_beverages_oneof.

  // Union field responsibly_sources_seafood_oneof can be only one of the
  // following:
  "responsiblySourcesSeafood": boolean,
  "responsiblySourcesSeafoodException": enum (Exception)
  // End of list of possible types for union field
  // responsibly_sources_seafood_oneof.

  // Union field organic_cage_free_eggs_oneof can be only one of the following:
  "organicCageFreeEggs": boolean,
  "organicCageFreeEggsException": enum (Exception)
  // End of list of possible types for union field organic_cage_free_eggs_oneof.

  // Union field vegetarian_meals_oneof can be only one of the following:
  "vegetarianMeals": boolean,
  "vegetarianMealsException": enum (Exception)
  // End of list of possible types for union field vegetarian_meals_oneof.

  // Union field vegan_meals_oneof can be only one of the following:
  "veganMeals": boolean,
  "veganMealsException": enum (Exception)
  // End of list of possible types for union field vegan_meals_oneof.

  // Union field eco_friendly_toiletries_oneof can be only one of the following:
  "ecoFriendlyToiletries": boolean,
  "ecoFriendlyToiletriesException": enum (Exception)
  // End of list of possible types for union field eco_friendly_toiletries_oneof.
}
Fields

Union field responsible_purchasing_policy_oneof.

responsible_purchasing_policy_oneof can be only one of the following:

responsiblePurchasingPolicy

boolean

Responsible purchasing policy. The property has a responsible procurement policy in place. Responsible means integration of social, ethical, and/or environmental performance factors into the procurement process when selecting suppliers.

responsiblePurchasingPolicyException

enum (Exception)

Responsible purchasing policy exception.

Union field organic_food_and_beverages_oneof.

organic_food_and_beverages_oneof can be only one of the following:

organicFoodAndBeverages

boolean

Organic food and beverages. At least 25% of food and beverages, by spend, are certified organic. Organic means products that are certified to one of the organic standard listed in the IFOAM family of standards. Qualifying certifications include USDA Organic and EU Organic, among others.

organicFoodAndBeveragesException

enum (Exception)

Organic food and beverages exception.

Union field locally_sourced_food_and_beverages_oneof.

locally_sourced_food_and_beverages_oneof can be only one of the following:

locallySourcedFoodAndBeverages

boolean

Locally sourced food and beverages. Property sources locally in order to lower the environmental footprint from reduced transportation and to stimulate the local economy. Products produced less than 62 miles from the establishment are normally considered as locally produced.

locallySourcedFoodAndBeveragesException

enum (Exception)

Locally sourced food and beverages exception.

Union field responsibly_sources_seafood_oneof.

responsibly_sources_seafood_oneof can be only one of the following:

responsiblySourcesSeafood

boolean

Responsibly sources seafood. The property does not source seafood from the Monterey Bay Aquarium Seafood Watch "avoid" list, and must sustainably source seafood listed as "good alternative," "eco-certified," and "best choice". The property has a policy outlining a commitment to source Marine Stewardship Council (MSC) and/or Aquaculture Stewardship Council (ASC) Chain of Custody certified seafood.

responsiblySourcesSeafoodException

enum (Exception)

Responsibly sources seafood exception.

Union field organic_cage_free_eggs_oneof.

organic_cage_free_eggs_oneof can be only one of the following:

organicCageFreeEggs

boolean

Organic cage free eggs. The property sources 100% certified organic and cage-free eggs (shell, liquid, and egg products). Cage-free means hens are able to walk, spread their wings and lay their eggs in nests).

organicCageFreeEggsException

enum (Exception)

Organic cage free eggs exception.

Union field vegetarian_meals_oneof.

vegetarian_meals_oneof can be only one of the following:

vegetarianMeals

boolean

Vegetarian meals. The property provides vegetarian menu options for guests. Vegetarian food does not contain meat, poultry, fish, or seafood.

vegetarianMealsException

enum (Exception)

Vegetarian meals exception.

Union field vegan_meals_oneof.

vegan_meals_oneof can be only one of the following:

veganMeals

boolean

Vegan meals. The property provides vegan menu options for guests. Vegan food does not contain animal products or byproducts.

veganMealsException

enum (Exception)

Vegan meals exception.

Union field eco_friendly_toiletries_oneof.

eco_friendly_toiletries_oneof can be only one of the following:

ecoFriendlyToiletries

boolean

Eco friendly toiletries. Soap, shampoo, lotion, and other toiletries provided for guests have a nationally or internationally recognized sustainability certification, such as USDA Organic, EU Organic, or cruelty-free.

ecoFriendlyToiletriesException

enum (Exception)

Eco friendly toiletries exception.

SustainabilityCertifications

Sustainability certifications the hotel has been awarded. Deprecated: this message is no longer populated. All certification data is now provided by BeCause.

JSON representation
{
  "ecoCertifications": [
    {
      object (EcoCertification)
    }
  ],

  // Union field breeam_certification_oneof can be only one of the following:
  "breeamCertification": enum (BreeamCertification),
  "breeamCertificationException": enum (Exception)
  // End of list of possible types for union field breeam_certification_oneof.

  // Union field leed_certification_oneof can be only one of the following:
  "leedCertification": enum (LeedCertification),
  "leedCertificationException": enum (Exception)
  // End of list of possible types for union field leed_certification_oneof.
}
Fields
ecoCertifications[]

object (EcoCertification)

The eco certificates awarded to the hotel.

Union field breeam_certification_oneof.

breeam_certification_oneof can be only one of the following:

breeamCertification

enum (BreeamCertification)

BREEAM certification.

breeamCertificationException

enum (Exception)

BREEAM certification exception.

Union field leed_certification_oneof.

leed_certification_oneof can be only one of the following:

leedCertification

enum (LeedCertification)

LEED certification.

leedCertificationException

enum (Exception)

LEED certification exception.

BreeamCertification

BREEAM certification enum. Deprecated: this enum is no longer used. All certification data is now provided by BeCause.

Enums
BREEAM_CERTIFICATION_UNSPECIFIED Default BreeamCertification. Do not use.
NO_BREEAM_CERTIFICATION Not certified.
BREEAM_PASS BREEAM Pass.
BREEAM_GOOD BREEAM Good.
BREEAM_VERY_GOOD BREEAM Very Good.
BREEAM_EXCELLENT BREEAM Excellent.
BREEAM_OUTSTANDING BREEAM Outstanding.

LeedCertification

LEED certification enum. Deprecated: this enum is no longer used. All certification data is now provided by BeCause.

Enums
LEED_CERTIFICATION_UNSPECIFIED Default LeedCertification. Do not use.
NO_LEED_CERTIFICATION Not certified.
LEED_CERTIFIED LEED Certified.
LEED_SILVER LEED Silver.
LEED_GOLD LEED Gold.
LEED_PLATINUM LEED Platinum.

EcoCertification

An eco certificate awarded to the hotel. Deprecated: this message is no longer populated. All certification data is now provided by BeCause.

JSON representation
{
  "ecoCertificate": enum (EcoCertificate),

  // Union field awarded_oneof can be only one of the following:
  "awarded": boolean,
  "awardedException": enum (Exception)
  // End of list of possible types for union field awarded_oneof.
}
Fields
ecoCertificate

enum (EcoCertificate)

Required. The eco certificate.

Union field awarded_oneof.

awarded_oneof can be only one of the following:

awarded

boolean

Whether the eco certificate was awarded or not.

awardedException

enum (Exception)

Awarded exception.

EcoCertificate

Eco certificate enum. Deprecated: this enum is no longer used. All certification data is now provided by BeCause.

Enums
ECO_CERTIFICATE_UNSPECIFIED Default EcoCertificate. Do not use.
ISO14001 ISO14001.
ISO50001 ISO50001.
ASIAN_ECOTOURISM Asian Ecotourism Standard for Accommodations (AESA).
BIOSPHERE_RESPOSNIBLE_TOURISM Biosphere Responsible Tourism Standard.
BUREAU_VERITAS Bureau Veritas.
CONTROL_UNION Control Union.
EARTHCHECK EarthCheck.
ECO_CERTIFICATION_MALTA Eco-Certification Malta Standard.
ECOTOURISM_AUSTRALIAS_ECO Ecotourism Australia's ECO Certification Standard.
GREAT_GREEN_DEAL GREAT Green Deal Certification.
GREEN_GLOBE Green Globe.
GREEN_GROWTH2050 Green Growth 2050 Standard.
GREEN_KEY Green Key.
GREEN_KEY_ECO_RATING Geen Key Eco Rating.
GREEN_SEAL Green Seal.
GREEN_STAR Green Star Hotel Standard.
GREEN_TOURISM_ACTIVE Green Tourism Active Standard.
HILTON_LIGHTSTAY Hilton LightStay.
HOSTELLING_INTERNATIONALS_QUALITY_AND_SUSTAINABILITY Hostelling International's Quality and Sustainability Standard.
HOTELES_MAS_VERDES Hoteles más Verdes (AHT) Standard.
NORDIC_SWAN_ECOLABEL Nordic Swan Ecolabel.
PREFERRED_BY_NATURE_SUSTAINABLE_TOURISM Preferred by Nature Sustainable Tourism Standard for Accommodation.
SUSTAINABLE_TRAVEL_IRELAND Sustainable Travel Ireland – GSTC Industry Criteria.
TOF_TIGERS_INITITIVES_PUG TOFTigers Initiative's Pug Standard.
TRAVELIFE Travelife Standard for Hotels & Accommodations.
UNITED_CERTIFICATION_SYSTEMS_LIMITED United Certification Systems Limited.
VIREO_SRL Vireo Srl.

LivingArea

An individual room, such as kitchen, bathroom, bedroom, within a bookable guest unit.

JSON representation
{
  "layout": {
    object (LivingAreaLayout)
  },
  "features": {
    object (LivingAreaFeatures)
  },
  "eating": {
    object (LivingAreaEating)
  },
  "sleeping": {
    object (LivingAreaSleeping)
  },
  "accessibility": {
    object (LivingAreaAccessibility)
  }
}
Fields
layout

object (LivingAreaLayout)

Information about the layout of the living area.

features

object (LivingAreaFeatures)

Features in the living area.

eating

object (LivingAreaEating)

Information about eating features in the living area.

sleeping

object (LivingAreaSleeping)

Information about sleeping features in the living area.

accessibility

object (LivingAreaAccessibility)

Accessibility features of the living area.

LivingAreaLayout

Information about the layout of the living area.

JSON representation
{

  // Union field living_area_sq_meters_oneof can be only one of the following:
  "livingAreaSqMeters": number,
  "livingAreaSqMetersException": enum (Exception)
  // End of list of possible types for union field living_area_sq_meters_oneof.

  // Union field stairs_oneof can be only one of the following:
  "stairs": boolean,
  "stairsException": enum (Exception)
  // End of list of possible types for union field stairs_oneof.

  // Union field loft_oneof can be only one of the following:
  "loft": boolean,
  "loftException": enum (Exception)
  // End of list of possible types for union field loft_oneof.

  // Union field non_smoking_oneof can be only one of the following:
  "nonSmoking": boolean,
  "nonSmokingException": enum (Exception)
  // End of list of possible types for union field non_smoking_oneof.

  // Union field patio_oneof can be only one of the following:
  "patio": boolean,
  "patioException": enum (Exception)
  // End of list of possible types for union field patio_oneof.

  // Union field balcony_oneof can be only one of the following:
  "balcony": boolean,
  "balconyException": enum (Exception)
  // End of list of possible types for union field balcony_oneof.
}
Fields

Union field living_area_sq_meters_oneof.

living_area_sq_meters_oneof can be only one of the following:

livingAreaSqMeters

number

Living area sq meters. The measurement in meters of the area of a guestroom's living space.

livingAreaSqMetersException

enum (Exception)

Living area sq meters exception.

Union field stairs_oneof.

stairs_oneof can be only one of the following:

stairs

boolean

Stairs. There are steps leading from one level or story to another in the unit.

stairsException

enum (Exception)

Stairs exception.

Union field loft_oneof.

loft_oneof can be only one of the following:

loft

boolean

Loft. A three-walled upper area accessed by stairs or a ladder that overlooks the lower area of a room.

loftException

enum (Exception)

Loft exception.

Union field non_smoking_oneof.

non_smoking_oneof can be only one of the following:

nonSmoking

boolean

Non smoking. A guestroom in which the smoking of cigarettes, cigars and pipes is prohibited.

nonSmokingException

enum (Exception)

Non smoking exception.

Union field patio_oneof.

patio_oneof can be only one of the following:

patio

boolean

Patio. A paved, outdoor area with seating attached to and accessed through a ground-floor guestroom for use by the occupants of the guestroom.

patioException

enum (Exception)

Patio exception.

Union field balcony_oneof.

balcony_oneof can be only one of the following:

balcony

boolean

Balcony. An outdoor platform attached to a building and surrounded by a short wall, fence or other safety railing. The balcony is accessed through a door in a guestroom or suite and is for use by the guest staying in that room. May or may not include seating or outdoor furniture. Is not located on the ground floor. Also lanai.

balconyException

enum (Exception)

Balcony exception.

LivingAreaFeatures

Features in the living area.

JSON representation
{

  // Union field private_bathroom_oneof can be only one of the following:
  "privateBathroom": boolean,
  "privateBathroomException": enum (Exception)
  // End of list of possible types for union field private_bathroom_oneof.

  // Union field toilet_oneof can be only one of the following:
  "toilet": boolean,
  "toiletException": enum (Exception)
  // End of list of possible types for union field toilet_oneof.

  // Union field bidet_oneof can be only one of the following:
  "bidet": boolean,
  "bidetException": enum (Exception)
  // End of list of possible types for union field bidet_oneof.

  // Union field shower_oneof can be only one of the following:
  "shower": boolean,
  "showerException": enum (Exception)
  // End of list of possible types for union field shower_oneof.

  // Union field bathtub_oneof can be only one of the following:
  "bathtub": boolean,
  "bathtubException": enum (Exception)
  // End of list of possible types for union field bathtub_oneof.

  // Union field hairdryer_oneof can be only one of the following:
  "hairdryer": boolean,
  "hairdryerException": enum (Exception)
  // End of list of possible types for union field hairdryer_oneof.

  // Union field washer_oneof can be only one of the following:
  "washer": boolean,
  "washerException": enum (Exception)
  // End of list of possible types for union field washer_oneof.

  // Union field dryer_oneof can be only one of the following:
  "dryer": boolean,
  "dryerException": enum (Exception)
  // End of list of possible types for union field dryer_oneof.

  // Union field ironing_equipment_oneof can be only one of the following:
  "ironingEquipment": boolean,
  "ironingEquipmentException": enum (Exception)
  // End of list of possible types for union field ironing_equipment_oneof.

  // Union field universal_power_adapters_oneof can be only one of the following:
  "universalPowerAdapters": boolean,
  "universalPowerAdaptersException": enum (Exception)
  // End of list of possible types for union field
  // universal_power_adapters_oneof.

  // Union field air_conditioning_oneof can be only one of the following:
  "airConditioning": boolean,
  "airConditioningException": enum (Exception)
  // End of list of possible types for union field air_conditioning_oneof.

  // Union field heating_oneof can be only one of the following:
  "heating": boolean,
  "heatingException": enum (Exception)
  // End of list of possible types for union field heating_oneof.

  // Union field fireplace_oneof can be only one of the following:
  "fireplace": boolean,
  "fireplaceException": enum (Exception)
  // End of list of possible types for union field fireplace_oneof.

  // Union field tv_oneof can be only one of the following:
  "tv": boolean,
  "tvException": enum (Exception)
  // End of list of possible types for union field tv_oneof.

  // Union field tv_casting_oneof can be only one of the following:
  "tvCasting": boolean,
  "tvCastingException": enum (Exception)
  // End of list of possible types for union field tv_casting_oneof.

  // Union field tv_streaming_oneof can be only one of the following:
  "tvStreaming": boolean,
  "tvStreamingException": enum (Exception)
  // End of list of possible types for union field tv_streaming_oneof.

  // Union field pay_per_view_movies_oneof can be only one of the following:
  "payPerViewMovies": boolean,
  "payPerViewMoviesException": enum (Exception)
  // End of list of possible types for union field pay_per_view_movies_oneof.

  // Union field inunit_safe_oneof can be only one of the following:
  "inunitSafe": boolean,
  "inunitSafeException": enum (Exception)
  // End of list of possible types for union field inunit_safe_oneof.

  // Union field electronic_room_key_oneof can be only one of the following:
  "electronicRoomKey": boolean,
  "electronicRoomKeyException": enum (Exception)
  // End of list of possible types for union field electronic_room_key_oneof.

  // Union field inunit_wifi_available_oneof can be only one of the following:
  "inunitWifiAvailable": boolean,
  "inunitWifiAvailableException": enum (Exception)
  // End of list of possible types for union field inunit_wifi_available_oneof.
}
Fields

Union field private_bathroom_oneof.

private_bathroom_oneof can be only one of the following:

privateBathroom

boolean

Private bathroom. A bathroom designated for the express use of the guests staying in a specific guestroom.

privateBathroomException

enum (Exception)

Private bathroom exception.

Union field toilet_oneof.

toilet_oneof can be only one of the following:

toilet

boolean

Toilet. A fixed bathroom feature connected to a sewer or septic system and consisting of a water-flushed bowl with a seat, as well as a device that elicites the water-flushing action. Used for the process and disposal of human waste.

toiletException

enum (Exception)

Toilet exception.

Union field bidet_oneof.

bidet_oneof can be only one of the following:

bidet

boolean

Bidet. A plumbing fixture attached to a toilet or a low, fixed sink designed for the purpose of washing after toilet use.

bidetException

enum (Exception)

Bidet exception.

Union field shower_oneof.

shower_oneof can be only one of the following:

shower

boolean

Shower. A fixed plumbing fixture for standing bathing that features a tall spray spout or faucet through which water flows, a knob or knobs that control the water's temperature, and a drain in the floor.

showerException

enum (Exception)

Shower exception.

Union field bathtub_oneof.

bathtub_oneof can be only one of the following:

bathtub

boolean

Bathtub. A fixed plumbing feature set on the floor and consisting of a large container that accommodates the body of an adult for the purpose of seated bathing. Includes knobs or fixtures to control the temperature of the water, a faucet through which the water flows, and a drain that can be closed for filling and opened for draining.

bathtubException

enum (Exception)

Bathtub exception.

Union field hairdryer_oneof.

hairdryer_oneof can be only one of the following:

hairdryer

boolean

Hairdryer. A handheld electric appliance that blows temperature-controlled air for the purpose of drying wet hair. Can be mounted to a bathroom wall or a freestanding device stored in the guestroom's bathroom or closet.

hairdryerException

enum (Exception)

Hairdryer exception.

Union field washer_oneof.

washer_oneof can be only one of the following:

washer

boolean

Washer. An electrical machine connected to a running water source designed to launder clothing.

washerException

enum (Exception)

Washer exception.

Union field dryer_oneof.

dryer_oneof can be only one of the following:

dryer

boolean

Dryer. An electrical machine designed to dry clothing.

dryerException

enum (Exception)

Dryer exception.

Union field ironing_equipment_oneof.

ironing_equipment_oneof can be only one of the following:

ironingEquipment

boolean

Ironing equipment. A device, usually with a flat metal base, that is heated to smooth, finish, or press clothes and a flat, padded, cloth-covered surface on which the clothes are worked.

ironingEquipmentException

enum (Exception)

Ironing equipment exception.

Union field universal_power_adapters_oneof.

universal_power_adapters_oneof can be only one of the following:

universalPowerAdapters

boolean

Universal power adapters. A power supply for electronic devices which plugs into a wall for the purpose of converting AC to a single DC voltage. Also know as AC adapter or charger.

universalPowerAdaptersException

enum (Exception)

Universal power adapters exception.

Union field air_conditioning_oneof.

air_conditioning_oneof can be only one of the following:

airConditioning

boolean

Air conditioning. An electrical machine used to cool the temperature of the guestroom.

airConditioningException

enum (Exception)

Air conditioning exception.

Union field heating_oneof.

heating_oneof can be only one of the following:

heating

boolean

Heating. An electrical machine used to warm the temperature of the guestroom.

heatingException

enum (Exception)

Heating exception.

Union field fireplace_oneof.

fireplace_oneof can be only one of the following:

fireplace

boolean

Fireplace. A framed opening (aka hearth) at the base of a chimney in which logs or an electrical fire feature are burned to provide a relaxing ambiance or to heat the room. Often made of bricks or stone.

fireplaceException

enum (Exception)

Fireplace exception.

Union field tv_oneof.

tv_oneof can be only one of the following:

tv

boolean

TV. A television is available in the guestroom.

tvException

enum (Exception)

TV exception.

Union field tv_casting_oneof.

tv_casting_oneof can be only one of the following:

tvCasting

boolean

TV casting. A television equipped with a device through which the video entertainment accessed on a personal computer, phone or tablet can be wirelessly delivered to and viewed on the guestroom's television.

tvCastingException

enum (Exception)

TV exception.

Union field tv_streaming_oneof.

tv_streaming_oneof can be only one of the following:

tvStreaming

boolean

TV streaming. Televisions that embed a range of web-based apps to allow for watching media from those apps.

tvStreamingException

enum (Exception)

TV streaming exception.

Union field pay_per_view_movies_oneof.

pay_per_view_movies_oneof can be only one of the following:

payPerViewMovies

boolean

Pay per view movies. Televisions with channels that offer films that can be viewed for a fee, and have an interface to allow the viewer to accept the terms and approve payment.

payPerViewMoviesException

enum (Exception)

Pay per view movies exception.

Union field inunit_safe_oneof.

inunit_safe_oneof can be only one of the following:

inunitSafe

boolean

In-unit safe. A strong fireproof cabinet with a programmable lock, used for the protected storage of valuables in a guestroom. Often built into a closet.

inunitSafeException

enum (Exception)

In-unit safe exception.

Union field electronic_room_key_oneof.

electronic_room_key_oneof can be only one of the following:

electronicRoomKey

boolean

Electronic room key. A card coded by the check-in computer that is read by the lock on the hotel guestroom door to allow for entry.

electronicRoomKeyException

enum (Exception)

Electronic room key exception.

Union field inunit_wifi_available_oneof.

inunit_wifi_available_oneof can be only one of the following:

inunitWifiAvailable

boolean

In-unit Wifi available. Guests can wirelessly connect to the Internet in the guestroom. Can be free or for a fee.

inunitWifiAvailableException

enum (Exception)

In-unit Wifi available exception.

LivingAreaEating

Information about eating features in the living area.

JSON representation
{

  // Union field kitchen_available_oneof can be only one of the following:
  "kitchenAvailable": boolean,
  "kitchenAvailableException": enum (Exception)
  // End of list of possible types for union field kitchen_available_oneof.

  // Union field refrigerator_oneof can be only one of the following:
  "refrigerator": boolean,
  "refrigeratorException": enum (Exception)
  // End of list of possible types for union field refrigerator_oneof.

  // Union field dishwasher_oneof can be only one of the following:
  "dishwasher": boolean,
  "dishwasherException": enum (Exception)
  // End of list of possible types for union field dishwasher_oneof.

  // Union field stove_oneof can be only one of the following:
  "stove": boolean,
  "stoveException": enum (Exception)
  // End of list of possible types for union field stove_oneof.

  // Union field oven_oneof can be only one of the following:
  "oven": boolean,
  "ovenException": enum (Exception)
  // End of list of possible types for union field oven_oneof.

  // Union field cookware_oneof can be only one of the following:
  "cookware": boolean,
  "cookwareException": enum (Exception)
  // End of list of possible types for union field cookware_oneof.

  // Union field sink_oneof can be only one of the following:
  "sink": boolean,
  "sinkException": enum (Exception)
  // End of list of possible types for union field sink_oneof.

  // Union field microwave_oneof can be only one of the following:
  "microwave": boolean,
  "microwaveException": enum (Exception)
  // End of list of possible types for union field microwave_oneof.

  // Union field toaster_oneof can be only one of the following:
  "toaster": boolean,
  "toasterException": enum (Exception)
  // End of list of possible types for union field toaster_oneof.

  // Union field indoor_grill_oneof can be only one of the following:
  "indoorGrill": boolean,
  "indoorGrillException": enum (Exception)
  // End of list of possible types for union field indoor_grill_oneof.

  // Union field outdoor_grill_oneof can be only one of the following:
  "outdoorGrill": boolean,
  "outdoorGrillException": enum (Exception)
  // End of list of possible types for union field outdoor_grill_oneof.

  // Union field minibar_oneof can be only one of the following:
  "minibar": boolean,
  "minibarException": enum (Exception)
  // End of list of possible types for union field minibar_oneof.

  // Union field snackbar_oneof can be only one of the following:
  "snackbar": boolean,
  "snackbarException": enum (Exception)
  // End of list of possible types for union field snackbar_oneof.

  // Union field coffee_maker_oneof can be only one of the following:
  "coffeeMaker": boolean,
  "coffeeMakerException": enum (Exception)
  // End of list of possible types for union field coffee_maker_oneof.

  // Union field kettle_oneof can be only one of the following:
  "kettle": boolean,
  "kettleException": enum (Exception)
  // End of list of possible types for union field kettle_oneof.

  // Union field tea_station_oneof can be only one of the following:
  "teaStation": boolean,
  "teaStationException": enum (Exception)
  // End of list of possible types for union field tea_station_oneof.
}
Fields

Union field kitchen_available_oneof.

kitchen_available_oneof can be only one of the following:

kitchenAvailable

boolean

Kitchen available. An area of the guestroom designated for the preparation and storage of food via the presence of a refrigerator, cook top, oven and sink, as well as cutlery, dishes and cookware. Usually includes small appliances such a coffee maker and a microwave. May or may not include an automatic dishwasher.

kitchenAvailableException

enum (Exception)

Kitchen available exception.

Union field refrigerator_oneof.

refrigerator_oneof can be only one of the following:

refrigerator

boolean

Refrigerator. A large, climate-controlled electrical cabinet with vertical doors. Built for the purpose of chilling and storing perishable foods.

refrigeratorException

enum (Exception)

Refrigerator exception.

Union field dishwasher_oneof.

dishwasher_oneof can be only one of the following:

dishwasher

boolean

Dishwasher. A counter-height electrical cabinet containing racks for dirty dishware, cookware and cutlery, and a dispenser for soap built into the pull-down door. The cabinet is attached to the plumbing system to facilitate the automatic cleaning of its contents.

dishwasherException

enum (Exception)

Dishwasher exception.

Union field stove_oneof.

stove_oneof can be only one of the following:

stove

boolean

Stove. A kitchen appliance powered by gas or electricity for the purpose of creating a flame or hot surface on which pots of food can be cooked. Also known as cooktop or hob.

stoveException

enum (Exception)

Stove exception.

Union field oven_oneof.

oven_oneof can be only one of the following:

oven

boolean

Oven. A temperature controlled, heated metal cabinet powered by gas or electricity in which food is placed for the purpose of cooking or reheating.

ovenException

enum (Exception)

Oven exception.

Union field cookware_oneof.

cookware_oneof can be only one of the following:

cookware

boolean

Cookware. Kitchen pots, pans and utensils used in connection with the preparation of food.

cookwareException

enum (Exception)

Cookware exception.

Union field sink_oneof.

sink_oneof can be only one of the following:

sink

boolean

Sink. A basin with a faucet attached to a water source and used for the purpose of washing and rinsing.

sinkException

enum (Exception)

Sink exception.

Union field microwave_oneof.

microwave_oneof can be only one of the following:

microwave

boolean

Microwave. An electric oven that quickly cooks and heats food by microwave energy. Smaller than a standing or wall mounted oven. Usually placed on a kitchen counter, a shelf or tabletop or mounted above a cooktop.

microwaveException

enum (Exception)

Microwave exception.

Union field toaster_oneof.

toaster_oneof can be only one of the following:

toaster

boolean

Toaster. A small, temperature controlled electric appliance with rectangular slots at the top that are lined with heated coils for the purpose of browning slices of bread products.

toasterException

enum (Exception)

Toaster exception.

Union field indoor_grill_oneof.

indoor_grill_oneof can be only one of the following:

indoorGrill

boolean

Indoor grill. Metal grates built into an indoor cooktop on which food is cooked over an open flame or electric heat source.

indoorGrillException

enum (Exception)

Indoor grill exception.

Union field outdoor_grill_oneof.

outdoor_grill_oneof can be only one of the following:

outdoorGrill

boolean

Outdoor grill. Metal grates on which food is cooked over an open flame or electric heat source. Part of an outdoor apparatus that supports the grates. Also known as barbecue grill or barbecue.

outdoorGrillException

enum (Exception)

Outdoor grill exception.

Union field minibar_oneof.

minibar_oneof can be only one of the following:

minibar

boolean

Minibar. A small refrigerated cabinet in the guestroom containing bottles/cans of soft drinks, mini bottles of alcohol, and snacks. The items are most commonly available for a fee.

minibarException

enum (Exception)

Minibar exception.

Union field snackbar_oneof.

snackbar_oneof can be only one of the following:

snackbar

boolean

Snackbar. A small cabinet in the guestroom containing snacks. The items are most commonly available for a fee.

snackbarException

enum (Exception)

Snackbar exception.

Union field coffee_maker_oneof.

coffee_maker_oneof can be only one of the following:

coffeeMaker

boolean

Coffee maker. An electric appliance that brews coffee by heating and forcing water through ground coffee.

coffeeMakerException

enum (Exception)

Coffee maker exception.

Union field kettle_oneof.

kettle_oneof can be only one of the following:

kettle

boolean

Kettle. A covered container with a handle and a spout used for boiling water.

kettleException

enum (Exception)

Kettle exception.

Union field tea_station_oneof.

tea_station_oneof can be only one of the following:

teaStation

boolean

Tea station. A small area with the supplies needed to heat water and make tea.

teaStationException

enum (Exception)

Tea station exception.

LivingAreaSleeping

Information about sleeping features in the living area.

JSON representation
{

  // Union field beds_count_oneof can be only one of the following:
  "bedsCount": integer,
  "bedsCountException": enum (Exception)
  // End of list of possible types for union field beds_count_oneof.

  // Union field king_beds_count_oneof can be only one of the following:
  "kingBedsCount": integer,
  "kingBedsCountException": enum (Exception)
  // End of list of possible types for union field king_beds_count_oneof.

  // Union field queen_beds_count_oneof can be only one of the following:
  "queenBedsCount": integer,
  "queenBedsCountException": enum (Exception)
  // End of list of possible types for union field queen_beds_count_oneof.

  // Union field double_beds_count_oneof can be only one of the following:
  "doubleBedsCount": integer,
  "doubleBedsCountException": enum (Exception)
  // End of list of possible types for union field double_beds_count_oneof.

  // Union field single_or_twin_beds_count_oneof can be only one of the
  // following:
  "singleOrTwinBedsCount": integer,
  "singleOrTwinBedsCountException": enum (Exception)
  // End of list of possible types for union field
  // single_or_twin_beds_count_oneof.

  // Union field sofa_beds_count_oneof can be only one of the following:
  "sofaBedsCount": integer,
  "sofaBedsCountException": enum (Exception)
  // End of list of possible types for union field sofa_beds_count_oneof.

  // Union field bunk_beds_count_oneof can be only one of the following:
  "bunkBedsCount": integer,
  "bunkBedsCountException": enum (Exception)
  // End of list of possible types for union field bunk_beds_count_oneof.

  // Union field other_beds_count_oneof can be only one of the following:
  "otherBedsCount": integer,
  "otherBedsCountException": enum (Exception)
  // End of list of possible types for union field other_beds_count_oneof.

  // Union field roll_away_beds_count_oneof can be only one of the following:
  "rollAwayBedsCount": integer,
  "rollAwayBedsCountException": enum (Exception)
  // End of list of possible types for union field roll_away_beds_count_oneof.

  // Union field cribs_count_oneof can be only one of the following:
  "cribsCount": integer,
  "cribsCountException": enum (Exception)
  // End of list of possible types for union field cribs_count_oneof.

  // Union field hypoallergenic_bedding_oneof can be only one of the following:
  "hypoallergenicBedding": boolean,
  "hypoallergenicBeddingException": enum (Exception)
  // End of list of possible types for union field hypoallergenic_bedding_oneof.

  // Union field synthetic_pillows_oneof can be only one of the following:
  "syntheticPillows": boolean,
  "syntheticPillowsException": enum (Exception)
  // End of list of possible types for union field synthetic_pillows_oneof.

  // Union field memory_foam_pillows_oneof can be only one of the following:
  "memoryFoamPillows": boolean,
  "memoryFoamPillowsException": enum (Exception)
  // End of list of possible types for union field memory_foam_pillows_oneof.

  // Union field feather_pillows_oneof can be only one of the following:
  "featherPillows": boolean,
  "featherPillowsException": enum (Exception)
  // End of list of possible types for union field feather_pillows_oneof.
}
Fields

Union field beds_count_oneof.

beds_count_oneof can be only one of the following:

bedsCount

integer

Beds count. The number of permanent beds present in a guestroom. Does not include rollaway beds, cribs or sofabeds.

bedsCountException

enum (Exception)

Beds count exception.

Union field king_beds_count_oneof.

king_beds_count_oneof can be only one of the following:

kingBedsCount

integer

King beds count. The number of large beds measuring 76"W x 80"L (193cm x 102cm). Most often meant to accompany two people. Includes California king and super king.

kingBedsCountException

enum (Exception)

King beds count exception.

Union field queen_beds_count_oneof.

queen_beds_count_oneof can be only one of the following:

queenBedsCount

integer

Queen beds count. The number of medium-large beds measuring 60"W x 80"L (152cm x 102cm).

queenBedsCountException

enum (Exception)

Queen beds count exception.

Union field double_beds_count_oneof.

double_beds_count_oneof can be only one of the following:

doubleBedsCount

integer

Double beds count. The number of medium beds measuring 53"W x 75"L (135cm x 191cm). Also known as full size bed.

doubleBedsCountException

enum (Exception)

Double beds count exception.

Union field single_or_twin_beds_count_oneof.

single_or_twin_beds_count_oneof can be only one of the following:

singleOrTwinBedsCount

integer

Single or twin count beds. The number of smaller beds measuring 38"W x 75"L (97cm x 191cm) that can accommodate one adult.

singleOrTwinBedsCountException

enum (Exception)

Single or twin beds count exception.

Union field sofa_beds_count_oneof.

sofa_beds_count_oneof can be only one of the following:

sofaBedsCount

integer

Sofa beds count. The number of specially designed sofas that can be made to serve as a bed by lowering its hinged upholstered back to horizontal position or by pulling out a concealed mattress.

sofaBedsCountException

enum (Exception)

Sofa beds count exception.

Union field bunk_beds_count_oneof.

bunk_beds_count_oneof can be only one of the following:

bunkBedsCount

integer

Bunk beds count. The number of furniture pieces in which one framed mattress is fixed directly above another by means of a physical frame. This allows one person(s) to sleep in the bottom bunk and one person(s) to sleep in the top bunk. Also known as double decker bed.

bunkBedsCountException

enum (Exception)

Bunk beds count exception.

Union field other_beds_count_oneof.

other_beds_count_oneof can be only one of the following:

otherBedsCount

integer

Other beds count. The number of beds that are not standard mattress and boxspring setups such as Japanese tatami mats, trundle beds, air mattresses and cots.

otherBedsCountException

enum (Exception)

Other beds count exception.

Union field roll_away_beds_count_oneof.

roll_away_beds_count_oneof can be only one of the following:

rollAwayBedsCount

integer

Roll away beds count. The number of mattresses on wheeled frames that can be folded in half and rolled away for easy storage that the guestroom can obtain upon request.

rollAwayBedsCountException

enum (Exception)

Roll away beds count exception.

Union field cribs_count_oneof.

cribs_count_oneof can be only one of the following:

cribsCount

integer

Cribs count. The number of small beds for an infant or toddler that the guestroom can obtain. The bed is surrounded by a high railing to prevent the child from falling or climbing out of the bed

cribsCountException

enum (Exception)

Cribs count exception.

Union field hypoallergenic_bedding_oneof.

hypoallergenic_bedding_oneof can be only one of the following:

hypoallergenicBedding

boolean

Hypoallergenic bedding. Bedding such as linens, pillows, mattress covers and/or mattresses that are made of materials known to be resistant to allergens such as mold, dust and dander.

hypoallergenicBeddingException

enum (Exception)

Hypoallergenic bedding exception.

Union field synthetic_pillows_oneof.

synthetic_pillows_oneof can be only one of the following:

syntheticPillows

boolean

Synthetic pillows. The option for guests to obtain bed pillows stuffed with polyester material crafted to reproduce the feel of a pillow stuffed with down and feathers.

syntheticPillowsException

enum (Exception)

Synthetic pillows exception.

Union field memory_foam_pillows_oneof.

memory_foam_pillows_oneof can be only one of the following:

memoryFoamPillows

boolean

Memory foam pillows. The option for guests to obtain bed pillows that are stuffed with a man-made foam that responds to body heat by conforming to the body closely, and then recovers its shape when the pillow cools down.

memoryFoamPillowsException

enum (Exception)

Memory foam pillows exception.

Union field feather_pillows_oneof.

feather_pillows_oneof can be only one of the following:

featherPillows

boolean

Feather pillows. The option for guests to obtain bed pillows that are stuffed with the feathers and down of ducks or geese.

featherPillowsException

enum (Exception)

Feather pillows exception.

LivingAreaAccessibility

Accessibility features of the living area.

JSON representation
{

  // Union field mobility_accessible_unit_oneof can be only one of the following:
  "mobilityAccessibleUnit": boolean,
  "mobilityAccessibleUnitException": enum (Exception)
  // End of list of possible types for union field
  // mobility_accessible_unit_oneof.

  // Union field ada_compliant_unit_oneof can be only one of the following:
  "adaCompliantUnit": boolean,
  "adaCompliantUnitException": enum (Exception)
  // End of list of possible types for union field ada_compliant_unit_oneof.

  // Union field hearing_accessible_unit_oneof can be only one of the following:
  "hearingAccessibleUnit": boolean,
  "hearingAccessibleUnitException": enum (Exception)
  // End of list of possible types for union field hearing_accessible_unit_oneof.

  // Union field mobility_accessible_shower_oneof can be only one of the
  // following:
  "mobilityAccessibleShower": boolean,
  "mobilityAccessibleShowerException": enum (Exception)
  // End of list of possible types for union field
  // mobility_accessible_shower_oneof.

  // Union field mobility_accessible_bathtub_oneof can be only one of the
  // following:
  "mobilityAccessibleBathtub": boolean,
  "mobilityAccessibleBathtubException": enum (Exception)
  // End of list of possible types for union field
  // mobility_accessible_bathtub_oneof.

  // Union field mobility_accessible_toilet_oneof can be only one of the
  // following:
  "mobilityAccessibleToilet": boolean,
  "mobilityAccessibleToiletException": enum (Exception)
  // End of list of possible types for union field
  // mobility_accessible_toilet_oneof.

  // Union field hearing_accessible_doorbell_oneof can be only one of the
  // following:
  "hearingAccessibleDoorbell": boolean,
  "hearingAccessibleDoorbellException": enum (Exception)
  // End of list of possible types for union field
  // hearing_accessible_doorbell_oneof.

  // Union field hearing_accessible_fire_alarm_oneof can be only one of the
  // following:
  "hearingAccessibleFireAlarm": boolean,
  "hearingAccessibleFireAlarmException": enum (Exception)
  // End of list of possible types for union field
  // hearing_accessible_fire_alarm_oneof.
}
Fields

Union field mobility_accessible_unit_oneof.

mobility_accessible_unit_oneof can be only one of the following:

mobilityAccessibleUnit

boolean

Mobility-accessible unit. A guestroom designed to accommodate the physical challenges of a guest with mobility and/or auditory and/or visual issues. Usually features enlarged doorways, roll-in showers with seats, bathroom grab bars, and communication equipment for the hearing and sight challenged.

mobilityAccessibleUnitException

enum (Exception)

Mobility-accessible unit exception.

Union field ada_compliant_unit_oneof.

ada_compliant_unit_oneof can be only one of the following:

adaCompliantUnit

boolean

ADA compliant unit. A guestroom designed to accommodate the physical challenges of a guest with mobility and/or auditory and/or visual issues, as determined by legislative policy. Usually features enlarged doorways, roll-in showers with seats, bathroom grab bars, and communication equipment for the hearing and sight challenged.

adaCompliantUnitException

enum (Exception)

ADA compliant unit exception.

Union field hearing_accessible_unit_oneof.

hearing_accessible_unit_oneof can be only one of the following:

hearingAccessibleUnit

boolean

Hearing-accessible unit. A guestroom designed to accommodate the physical challenges of a guest with auditory issues.

hearingAccessibleUnitException

enum (Exception)

Hearing-accessible unit exception.

Union field mobility_accessible_shower_oneof.

mobility_accessible_shower_oneof can be only one of the following:

mobilityAccessibleShower

boolean

Mobility-accessible shower. A shower with an enlarged door or access point to accommodate a wheelchair or a waterproof seat for the physically challenged.

mobilityAccessibleShowerException

enum (Exception)

Mobility-accessible shower exception.

Union field mobility_accessible_bathtub_oneof.

mobility_accessible_bathtub_oneof can be only one of the following:

mobilityAccessibleBathtub

boolean

Mobility-accessible bathtub. A bathtub that accomodates the physically challenged with additional railings or hand grips, a transfer seat or lift, and/or a door to enable walking into the tub.

mobilityAccessibleBathtubException

enum (Exception)

Mobility-accessible bathtub exception.

Union field mobility_accessible_toilet_oneof.

mobility_accessible_toilet_oneof can be only one of the following:

mobilityAccessibleToilet

boolean

Mobility-accessible toilet. A toilet with a higher seat, grab bars, and/or a larger area around it to accommodate the physically challenged.

mobilityAccessibleToiletException

enum (Exception)

Mobility-accessible toilet exception.

Union field hearing_accessible_doorbell_oneof.

hearing_accessible_doorbell_oneof can be only one of the following:

hearingAccessibleDoorbell

boolean

Hearing-accessible doorbell. A visual indicator(s) of a knock or ring at the door.

hearingAccessibleDoorbellException

enum (Exception)

Hearing-accessible doorbell exception.

Union field hearing_accessible_fire_alarm_oneof.

hearing_accessible_fire_alarm_oneof can be only one of the following:

hearingAccessibleFireAlarm

boolean

Hearing-accessible fire alarm. A device that gives warning of a fire through flashing lights.

hearingAccessibleFireAlarmException

enum (Exception)

Hearing-accessible fire alarm exception.

GuestUnitType

A specific type of unit primarily defined by its features.

JSON representation
{
  "codes": [
    string
  ],
  "label": string,
  "features": {
    object (GuestUnitFeatures)
  }
}
Fields
codes[]

string

Required. Unit or room code identifiers for a single GuestUnitType. Each code must be unique within a Lodging instance.

label

string

Required. Short, English label or name of the GuestUnitType. Target <50 chars.

features

object (GuestUnitFeatures)

Features and available amenities of the GuestUnitType.

GuestUnitFeatures

Features and available amenities in the guest unit.

JSON representation
{
  "views": {
    object (ViewsFromUnit)
  },
  "totalLivingAreas": {
    object (LivingArea)
  },

  // Union field tier_oneof can be only one of the following:
  "tier": enum (UnitTier),
  "tierException": enum (Exception)
  // End of list of possible types for union field tier_oneof.

  // Union field max_occupants_count_oneof can be only one of the following:
  "maxOccupantsCount": integer,
  "maxOccupantsCountException": enum (Exception)
  // End of list of possible types for union field max_occupants_count_oneof.

  // Union field max_adult_occupants_count_oneof can be only one of the
  // following:
  "maxAdultOccupantsCount": integer,
  "maxAdultOccupantsCountException": enum (Exception)
  // End of list of possible types for union field
  // max_adult_occupants_count_oneof.

  // Union field max_child_occupants_count_oneof can be only one of the
  // following:
  "maxChildOccupantsCount": integer,
  "maxChildOccupantsCountException": enum (Exception)
  // End of list of possible types for union field
  // max_child_occupants_count_oneof.

  // Union field private_home_oneof can be only one of the following:
  "privateHome": boolean,
  "privateHomeException": enum (Exception)
  // End of list of possible types for union field private_home_oneof.

  // Union field suite_oneof can be only one of the following:
  "suite": boolean,
  "suiteException": enum (Exception)
  // End of list of possible types for union field suite_oneof.

  // Union field bungalow_or_villa_oneof can be only one of the following:
  "bungalowOrVilla": boolean,
  "bungalowOrVillaException": enum (Exception)
  // End of list of possible types for union field bungalow_or_villa_oneof.

  // Union field executive_floor_oneof can be only one of the following:
  "executiveFloor": boolean,
  "executiveFloorException": enum (Exception)
  // End of list of possible types for union field executive_floor_oneof.

  // Union field connecting_unit_available_oneof can be only one of the
  // following:
  "connectingUnitAvailable": boolean,
  "connectingUnitAvailableException": enum (Exception)
  // End of list of possible types for union field
  // connecting_unit_available_oneof.
}
Fields
views

object (ViewsFromUnit)

Views available from the guest unit itself.

totalLivingAreas

object (LivingArea)

Features available in the living areas in the guest unit.

Union field tier_oneof.

tier_oneof can be only one of the following:

tier

enum (UnitTier)

Tier. Classification of the unit based on available features/amenities. A non-standard tier is only permitted if at least one other unit type falls under the standard tier.

tierException

enum (Exception)

Tier exception.

Union field max_occupants_count_oneof.

max_occupants_count_oneof can be only one of the following:

maxOccupantsCount

integer

Max occupants count. The total number of guests allowed to stay overnight in the guestroom.

maxOccupantsCountException

enum (Exception)

Max occupants count exception.

Union field max_adult_occupants_count_oneof.

max_adult_occupants_count_oneof can be only one of the following:

maxAdultOccupantsCount

integer

Max adult occupants count. The total number of adult guests allowed to stay overnight in the guestroom.

maxAdultOccupantsCountException

enum (Exception)

Max adult occupants count exception.

Union field max_child_occupants_count_oneof.

max_child_occupants_count_oneof can be only one of the following:

maxChildOccupantsCount

integer

Max child occupants count. The total number of children allowed to stay overnight in the room.

maxChildOccupantsCountException

enum (Exception)

Max child occupants count exception.

Union field private_home_oneof.

private_home_oneof can be only one of the following:

privateHome

boolean

Private home. A privately owned home (house, townhouse, apartment, cabin, bungalow etc) that may or not serve as the owner's residence, but is rented out in its entirety or by the room(s) to paying guest(s) for vacation stays. Not for lease-based, long-term residency.

privateHomeException

enum (Exception)

Private home exception.

Union field suite_oneof.

suite_oneof can be only one of the following:

suite

boolean

Suite. A guestroom category that implies both a bedroom area and a separate living area. There may or may not be full walls and doors separating the two areas, but regardless, they are very distinct. Does not mean a couch or chair in a bedroom.

suiteException

enum (Exception)

Suite exception.

Union field bungalow_or_villa_oneof.

bungalow_or_villa_oneof can be only one of the following:

bungalowOrVilla

boolean

Bungalow or villa. An independent structure that is part of a hotel or resort that is rented to one party for a vacation stay. The hotel or resort may be completely comprised of bungalows or villas, or they may be one of several guestroom options. Guests in the bungalows or villas most often have the same, if not more, amenities and services offered to guests in other guestroom types.

bungalowOrVillaException

enum (Exception)

Bungalow or villa exception.

Union field executive_floor_oneof.

executive_floor_oneof can be only one of the following:

executiveFloor

boolean

Executive floor. A floor of the hotel where the guestrooms are only bookable by members of the hotel's frequent guest membership program. Benefits of this room class include access to a designated lounge which may or may not feature free breakfast, cocktails or other perks specific to members of the program.

executiveFloorException

enum (Exception)

Executive floor exception.

Union field connecting_unit_available_oneof.

connecting_unit_available_oneof can be only one of the following:

connectingUnitAvailable

boolean

Connecting unit available. A guestroom type that features access to an adjacent guestroom for the purpose of booking both rooms. Most often used by families who need more than one room to accommodate the number of people in their group.

connectingUnitAvailableException

enum (Exception)

Connecting unit available exception.

UnitTier

The tier for the unit.

Enums
UNIT_TIER_UNSPECIFIED Default tier. Equivalent to STANDARD. Prefer using STANDARD directly.
STANDARD_UNIT Standard unit. The predominant and most basic guestroom type available at the hotel. All other guestroom types include the features/amenities of this room, as well as additional features/amenities.
DELUXE_UNIT Deluxe unit. A guestroom type that builds on the features of the standard guestroom by offering additional amenities and/or more space, and/or views. The room rate is higher than that of the standard room type. Also known as Superior. Only allowed if another unit type is a standard tier.

ViewsFromUnit

Views available from the guest unit itself.

JSON representation
{

  // Union field beach_view_oneof can be only one of the following:
  "beachView": boolean,
  "beachViewException": enum (Exception)
  // End of list of possible types for union field beach_view_oneof.

  // Union field city_view_oneof can be only one of the following:
  "cityView": boolean,
  "cityViewException": enum (Exception)
  // End of list of possible types for union field city_view_oneof.

  // Union field garden_view_oneof can be only one of the following:
  "gardenView": boolean,
  "gardenViewException": enum (Exception)
  // End of list of possible types for union field garden_view_oneof.

  // Union field lake_view_oneof can be only one of the following:
  "lakeView": boolean,
  "lakeViewException": enum (Exception)
  // End of list of possible types for union field lake_view_oneof.

  // Union field landmark_view_oneof can be only one of the following:
  "landmarkView": boolean,
  "landmarkViewException": enum (Exception)
  // End of list of possible types for union field landmark_view_oneof.

  // Union field ocean_view_oneof can be only one of the following:
  "oceanView": boolean,
  "oceanViewException": enum (Exception)
  // End of list of possible types for union field ocean_view_oneof.

  // Union field pool_view_oneof can be only one of the following:
  "poolView": boolean,
  "poolViewException": enum (Exception)
  // End of list of possible types for union field pool_view_oneof.

  // Union field valley_view_oneof can be only one of the following:
  "valleyView": boolean,
  "valleyViewException": enum (Exception)
  // End of list of possible types for union field valley_view_oneof.
}
Fields

Union field beach_view_oneof.

beach_view_oneof can be only one of the following:

beachView

boolean

Beach view. A guestroom that features a window through which guests can see the beach.

beachViewException

enum (Exception)

Beach view exception.

Union field city_view_oneof.

city_view_oneof can be only one of the following:

cityView

boolean

City view. A guestroom that features a window through which guests can see the buildings, parks and/or streets of the city.

cityViewException

enum (Exception)

City view exception.

Union field garden_view_oneof.

garden_view_oneof can be only one of the following:

gardenView

boolean

Garden view. A guestroom that features a window through which guests can see a garden.

gardenViewException

enum (Exception)

Garden view exception.

Union field lake_view_oneof.

lake_view_oneof can be only one of the following:

lakeView

boolean

Lake view.

lakeViewException

enum (Exception)

Lake view exception.

Union field landmark_view_oneof.

landmark_view_oneof can be only one of the following:

landmarkView

boolean

Landmark view. A guestroom that features a window through which guests can see a landmark such as the countryside, a golf course, the forest, a park, a rain forst, a mountain or a slope.

landmarkViewException

enum (Exception)

Landmark view exception.

Union field ocean_view_oneof.

ocean_view_oneof can be only one of the following:

oceanView

boolean

Ocean view. A guestroom that features a window through which guests can see the ocean.

oceanViewException

enum (Exception)

Ocean view exception.

Union field pool_view_oneof.

pool_view_oneof can be only one of the following:

poolView

boolean

Pool view. A guestroom that features a window through which guests can see the hotel's swimming pool.

poolViewException

enum (Exception)

Pool view exception.

Union field valley_view_oneof.

valley_view_oneof can be only one of the following:

valleyView

boolean

Valley view. A guestroom that features a window through which guests can see over a valley.

valleyViewException

enum (Exception)

Valley view exception.