airbnb · JSON Structure

Airbnb Guest Structure

Type: Properties: 0

Guest is a JSON Structure definition published by airbnb.

Meta-schema:

JSON Structure

Raw ↑
{
  "name": "Guest",
  "fields": [
    {
      "name": "id",
      "type": "string",
      "description": "The unique identifier of the guest."
    },
    {
      "name": "first_name",
      "type": "string",
      "description": "The first name of the guest."
    },
    {
      "name": "last_name",
      "type": "string",
      "description": "The last name of the guest."
    },
    {
      "name": "phone",
      "type": "string",
      "description": "The phone number of the guest, available after booking is confirmed."
    },
    {
      "name": "profile_picture_url",
      "type": "uri",
      "description": "The URL of the guest profile picture."
    },
    {
      "name": "verified",
      "type": "boolean",
      "description": "Whether the guest has completed identity verification."
    }
  ]
}