eBay · Schema

Buyer

This type is used to express details about the buyer associated with an order. At this time, the only field in this type is the eBay user ID of the buyer, but more fields may get added at a later date.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
username string The eBay user ID of the order's buyer.
View JSON Schema on GitHub

JSON Schema

ebay-buyer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Buyer",
  "title": "Buyer",
  "type": "object",
  "properties": {
    "username": {
      "type": "string",
      "description": "The eBay user ID of the order's buyer."
    }
  },
  "description": "This type is used to express details about the buyer associated with an order. At this time, the only field in this type is the eBay user ID of the buyer, but more fields may get added at a later date."
}