eBay · Schema

TrackingInfo

This type is used for seller provided shipment tracking information.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
shipmentTrackingNumber string This string value represents the shipment tracking number of the package.
shippingCarrierCode string This string value represents the shipping carrier used to ship the package.
View JSON Schema on GitHub

JSON Schema

ebay-trackinginfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TrackingInfo",
  "title": "TrackingInfo",
  "type": "object",
  "properties": {
    "shipmentTrackingNumber": {
      "type": "string",
      "description": "This string value represents the shipment tracking number of the package."
    },
    "shippingCarrierCode": {
      "type": "string",
      "description": "This string value represents the shipping carrier used to ship the package."
    }
  },
  "description": "This type is used for seller provided shipment tracking information."
}