{ "$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." } } }