{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ShippingFulfillment",
"title": "ShippingFulfillment",
"type": "object",
"properties": {
"fulfillmentId": {
"type": "string",
"description": "The unique identifier of the fulfillment; for example, 9405509699937003457459. This eBay-generated value is created with a successful createShippingFulfillment call."
},
"lineItems": {
"type": "array",
"description": "This array contains a list of one or more line items (and purchased quantity) to which the fulfillment applies.",
"items": {
"$ref": "#/components/schemas/LineItemReference"
}
},
"shipmentTrackingNumber": {
"type": "string",
"description": "The tracking number provided by the shipping carrier for the package shipped in this fulfillment. This field is returned if available."
},
"shippedDate": {
"type": "string",
"description": "The date and time that the fulfillment package was shipped. This timestamp is in ISO 8601 format, which uses the 24-hour Universal Coordinated Time (UTC) clock. This field should only be returned if the package has been shipped.
Format: [YYYY]-[MM]-[DD]T[hh]:[mm]:[ss].[sss]Z
Example: 2015-08-04T19:09:02.768Z"
},
"shippingCarrierCode": {
"type": "string",
"description": "The eBay code identifying the shipping carrier for this fulfillment. This field is returned if available.
Note: The Trading API's ShippingCarrierCodeType enumeration type contains the most current list of eBay shipping carrier codes and the countries served by each carrier. See ShippingCarrierCodeType."
}
},
"description": "This type contains the complete details of an existing fulfillment for an order."
}