eBay · Schema

LinkedOrderLineItem

This type contains data on a line item that is related to, but not a part of the order.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
lineItemAspects array This array contains the complete set of items aspects for the linked line item. For example:
"lineItemAspects": [
{
"name": "Tire Type",
"value": "All Season"
},

...
lineItemId string The unique identifier of the linked order line item.
maxEstimatedDeliveryDate string The end of the date range in which the linked line item is expected to be delivered to the shipping address.
minEstimatedDeliveryDate string The beginning of the date range in which the linked line item is expected to be delivered to the shipping address.
orderId string The unique identifier of the order to which the linked line item belongs.
sellerId string The eBay user ID of the seller who sold the linked line item. For example, the user ID of the tire seller.
shipments array An array containing any shipment tracking information available for the linked line item.
title string The listing title of the linked line item.

Note: The Item ID value for the listing will be returned in this field instead of the actual title if this particular l
View JSON Schema on GitHub

JSON Schema

ebay-linkedorderlineitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LinkedOrderLineItem",
  "title": "LinkedOrderLineItem",
  "type": "object",
  "properties": {
    "lineItemAspects": {
      "type": "array",
      "description": "This array contains the complete set of items aspects for the linked line item. For example:<br><pre>\"lineItemAspects\": [<br>    {<br>        \"name\": \"Tire Type\",<br>        \"value\": \"All Season\"<br>    },<br><br>    ...<br> <br>    {<br>        \"name\": \"Car Type\",<br>        \"value\": \"Performance\"<br>    }<br>]</pre><span class=\"tablenote\"><strong>Note:</strong> All item specifics for the listing are returned. The name/value pairs returned are in the language of the linked line item's listing site, which may vary from the seller's language.</span>",
      "items": {
        "$ref": "#/components/schemas/NameValuePair"
      }
    },
    "lineItemId": {
      "type": "string",
      "description": "The unique identifier of the linked order line item."
    },
    "maxEstimatedDeliveryDate": {
      "type": "string",
      "description": "The end of the date range in which the linked line item is expected to be delivered to the shipping address."
    },
    "minEstimatedDeliveryDate": {
      "type": "string",
      "description": "The beginning of the date range in which the linked line item is expected to be delivered to the shipping address."
    },
    "orderId": {
      "type": "string",
      "description": "The unique identifier of the order to which the linked line item belongs."
    },
    "sellerId": {
      "type": "string",
      "description": "The eBay user ID of the seller who sold the linked line item. For example, the user ID of the tire seller."
    },
    "shipments": {
      "type": "array",
      "description": "An array containing any shipment tracking information available for the linked line item.",
      "items": {
        "$ref": "#/components/schemas/TrackingInfo"
      }
    },
    "title": {
      "type": "string",
      "description": "The listing title of the linked line item.<br><br><span class=\"tablenote\"><b>Note:</b> The Item ID value for the listing will be returned in this field instead of the actual title if this particular listing is on-hold due to an eBay policy violation.</span>"
    }
  },
  "description": "This type contains data on a line item that is related to, but not a part of the order."
}