Booking Holdings · Schema

TraderOutput

The trader information.

AccommodationsAirlinesCar RentalsHospitalityHotelsRestaurantsTravel

Properties

Name Type Description
address object The address of the trader
email string The email of the trader
name string The name of the trader
registration_number string The registration number of the trader
telephone string The telephone of the trader
trade_register string The trade register name
trader_verified boolean Indicates whether the trader has successfully met Booking.com's internal verification process, based on established criteria and checklists
View JSON Schema on GitHub

JSON Schema

demand-api-trader-output-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/booking-holdings/refs/heads/main/json-schema/demand-api-trader-output-schema.json",
  "title": "TraderOutput",
  "description": "The trader information.",
  "type": "object",
  "nullable": true,
  "properties": {
    "address": {
      "description": "The address of the trader",
      "type": "object",
      "properties": {
        "address_line": {
          "type": "string"
        },
        "city": {
          "type": "string"
        },
        "country": {
          "type": "string"
        },
        "post_code": {
          "type": "string"
        }
      }
    },
    "email": {
      "description": "The email of the trader",
      "type": "string"
    },
    "name": {
      "description": "The name of the trader",
      "type": "string"
    },
    "registration_number": {
      "description": "The registration number of the trader",
      "type": "string"
    },
    "telephone": {
      "description": "The telephone of the trader",
      "type": "string"
    },
    "trade_register": {
      "description": "The trade register name",
      "type": "string"
    },
    "trader_verified": {
      "description": "Indicates whether the trader has successfully met Booking.com's internal verification process, based on established criteria and checklists",
      "type": "boolean"
    }
  }
}