airbnb · Schema
Reservation
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique identifier of the reservation. |
| confirmation_code | string | The human-readable confirmation code for the reservation. |
| status | string | The current status of the reservation. |
| listing_id | string | The identifier of the listing that was booked. |
| guest | object | |
| check_in | string | The guest check-in date. |
| check_out | string | The guest check-out date. |
| nights | integer | The total number of nights in the reservation. |
| guests_count | integer | The number of guests included in the reservation. |
| total_price | number | The total price of the reservation in the listing currency. |
| currency | string | The ISO 4217 currency code for the reservation pricing. |
| host_payout | number | The amount to be paid out to the host after fees. |
| created_at | string | The timestamp when the reservation was created. |
| updated_at | string | The timestamp when the reservation was last updated. |