{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ShippingFulfillmentPagedCollection",
"title": "ShippingFulfillmentPagedCollection",
"type": "object",
"properties": {
"fulfillments": {
"type": "array",
"description": "This array contains one or more fulfillments required for the order that was specified in method endpoint.",
"items": {
"$ref": "#/components/schemas/ShippingFulfillment"
}
},
"total": {
"type": "integer",
"description": "The total number of fulfillments in the specified order.
Note: If no fulfillments are found for the order, this field is returned with a value of 0.",
"format": "int32"
},
"warnings": {
"type": "array",
"description": "This array is only returned if one or more errors or warnings occur with the call request.",
"items": {
"$ref": "#/components/schemas/Error"
}
}
},
"description": "This type contains the specifications for the entire collection of shipping fulfillments that are associated with the order specified by a getShippingFulfillments call. The fulfillments container returns an array of all the fulfillments in the collection."
}