eBay · Schema

Coupon

The details for the coupon available for the item.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
redemptionCode string The coupon code.
terms object The terms of use associated with the coupon.
View JSON Schema on GitHub

JSON Schema

ebay-coupon-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Coupon",
  "title": "Coupon",
  "type": "object",
  "properties": {
    "redemptionCode": {
      "type": "string",
      "description": "The coupon code."
    },
    "terms": {
      "description": "The terms of use associated with the coupon.",
      "$ref": "#/components/schemas/Terms"
    }
  },
  "description": "The details for the coupon available for the item."
}