eBay · Schema

Value

A complex type that contains a value, plus the veracity of that value.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
applicable boolean If set to true, this flag indicates the value in the value field is valid as computed.

A value of false indicates one or more of the values used to calculate t
value object The value of the report data.
View JSON Schema on GitHub

JSON Schema

ebay-value-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Value",
  "title": "Value",
  "type": "object",
  "properties": {
    "applicable": {
      "type": "boolean",
      "description": "If set to <code>true</code>, this flag indicates the value in the <b>value</b> field is valid as computed.  <br><br>A value of <code>false</code> indicates one or more of the values used to calculate the value was invalid. The occurrence of this is a rare, however consider this case: suppose a buyer navigates to a View Item page at 11:59 pm (the end of the day) and purchases the item at 12:05am the next day. In this case, the item would have been purchased with <code>0</code> views for the day."
    },
    "value": {
      "type": "object",
      "description": "The value of the report data."
    }
  },
  "description": "A complex type that contains a value, plus the veracity of that value."
}