eBay · Schema

SellingLimit

Type used by the sellingLimit container, a container that lists the monthly cap for the quantity of items sold and total sales amount allowed for the seller's account.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
amount object This container shows the monthly cap for total sales amount allowed for the seller's account. This container may not be returned if a seller does not have a monthly cap for total sales amount.
quantity integer This field shows the monthly cap for total quantity sold allowed for the seller's account. This container may not be returned if a seller does not have a monthly cap for total quantity sold.
View JSON Schema on GitHub

JSON Schema

ebay-sellinglimit-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SellingLimit",
  "title": "SellingLimit",
  "type": "object",
  "properties": {
    "amount": {
      "description": "This container shows the monthly cap for total sales amount allowed for the seller's account. This container may not be returned if a seller does not have a monthly cap for total sales amount.",
      "$ref": "#/components/schemas/Amount"
    },
    "quantity": {
      "type": "integer",
      "description": "This field shows the monthly cap for total quantity sold allowed for the seller's account. This container may not be returned if a seller does not have a monthly cap for total quantity sold.",
      "format": "int32"
    }
  },
  "description": "Type used by the <b>sellingLimit</b> container, a container that lists the monthly cap for the quantity of items sold and total sales amount allowed for the seller's account."
}