airbnb · Schema
BookingGuest
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique identifier of the guest. |
| first_name | string | The first name of the guest. |
| last_name | string | The last name of the guest. |
| phone | string | The phone number of the guest. |
| verified | boolean | Whether the guest has completed identity verification. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/airbnb/refs/heads/main/json-schema/airbnb-booking-guest-schema.json",
"title": "BookingGuest",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The unique identifier of the guest."
},
"first_name": {
"type": "string",
"description": "The first name of the guest."
},
"last_name": {
"type": "string",
"description": "The last name of the guest."
},
"phone": {
"type": "string",
"description": "The phone number of the guest."
},
"verified": {
"type": "boolean",
"description": "Whether the guest has completed identity verification."
}
}
}