eBay · Schema

MetadataRecord

A complex type that defines the data records returned in the report.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
metadataValues array A list of data in a row returned in the traffic report. The data in each of the cells match the labels in headers of the report.
value object The value of the key on which the report is based.

For example, if the key is the listing ID, the value of this container could be:

"value": {
  "value": "1421339542
View JSON Schema on GitHub

JSON Schema

ebay-metadatarecord-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MetadataRecord",
  "title": "MetadataRecord",
  "type": "object",
  "properties": {
    "metadataValues": {
      "type": "array",
      "description": "A list of data in a row returned in the traffic report. The data in each of the cells match the labels in headers of the report.",
      "items": {
        "$ref": "#/components/schemas/Value"
      }
    },
    "value": {
      "description": "The value of the key on which the report is based. <br><br>For example, if the key is the listing ID, the value of this container could be: <br><br><code>\"value\": {<br>&nbsp;&nbsp;\"value\": \"142133954229\",<br>&nbsp;&nbsp;\"applicable\": true<br>}</code>",
      "$ref": "#/components/schemas/Value"
    }
  },
  "description": "A complex type that defines the data records returned in the report."
}