airbnb · Schema

Guest

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, available after booking is confirmed.
profile_picture_url string The URL of the guest profile picture.
verified boolean Whether the guest has completed identity verification.
View JSON Schema on GitHub

JSON Schema

airbnb-guest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/airbnb/refs/heads/main/json-schema/airbnb-guest-schema.json",
  "title": "Guest",
  "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, available after booking is confirmed."
    },
    "profile_picture_url": {
      "type": "string",
      "format": "uri",
      "description": "The URL of the guest profile picture."
    },
    "verified": {
      "type": "boolean",
      "description": "Whether the guest has completed identity verification."
    }
  }
}