{ "$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:
\"lineItemAspects\": [
{
\"name\": \"Tire Type\",
\"value\": \"All Season\"
},

...

{
\"name\": \"Car Type\",
\"value\": \"Performance\"
}
]
Note: 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.", "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.

Note: 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." } }, "description": "This type contains data on a line item that is related to, but not a part of the order." }