# Restaurant

## Fields

| Field | Description | Type | Min/max | Notes |
|  --- | --- | --- | --- | --- |
| [Restaurants](/connectivity/docs/api-reference/restaurants)/`Restaurant` | Restaurant details. | object | 0..* | - |
| `Restaurant`/`@OfferBreakfast` | Specifies whether restaurant offers breakfast. | int | 0..1 | Accepts: `1`, `0`. Default: `0` |
| `Restaurant`/`@OfferBrunch` | Specifies whether restaurant offers brunch. | int | 0..1 | Accepts: `1`, `0`. Default: `0` |
| `Restaurant`/`@OfferDinner` | Specifies whether restaurant offers dinner. | int | 0..1 | Accepts: `1`, `0`. Default: `0` |
| `Restaurant`/`@OfferLunch` | Specifies whether restaurant offers lunch. | int | 0..1 | Accepts: `1`, `0`. Default: `0` |
| `Restaurant`/`@RestaurantName` | Name of the restaurant. | string | 0..1 | - |
| `Restaurant`/[CuisineCodes](/connectivity/docs/api-reference/cuisinecodes) | Container for cuisine details. | array of [CuisineCode](/connectivity/docs/api-reference/cuisinecode) | 0..1 | - |
| `Restaurant`/[OperationSchedules](/connectivity/docs/api-reference/operationschedules) | Container for operation schedules (opening/closing times). | array of [OperationSchedule](/connectivity/docs/api-reference/operationschedule) | 0..1 | - |
| `Restaurant`/[Features](/connectivity/docs/api-reference/features) | Container for special features. | array of [Feature](/connectivity/docs/api-reference/feature) | 0..1 | - |
| `Restaurant`/[TPA_Extensions](/connectivity/docs/api-reference/tpa_extensions) | Container for [Ambiances](/connectivity/docs/api-reference/ambiances) and [DietaryOptions](/connectivity/docs/api-reference/dietaryoptions). | object | 0..1 | - |


## XML


```xml
<Restaurant
  OfferBreakfast="1"
  OfferBrunch="0"
  OfferDinner="1"
  OfferLunch="1"
  RestaurantName="Orient">
 <CuisineCodes>
   ...
 </CuisineCodes>
 <OperationSchedules>
   ...
 </OperationSchedules>
 <Features>
   ...
 </Features>
 <TPA_Extensions>
   ...
 </TPA_Extensions>
</Restaurant>
```

## Related endpoints

* [/ota/OTA_HotelDescriptiveContentNotif](/connectivity/docs/ota-hoteldescriptivecontentnotif)