{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PriceQuantityResponse", "title": "PriceQuantityResponse", "type": "object", "properties": { "errors": { "type": "array", "description": "This array will be returned if there were one or more errors associated with the update to the offer or inventory item record.", "items": { "$ref": "#/components/schemas/Error" } }, "offerId": { "type": "string", "description": "The unique identifier of the offer that was updated. This field will not be returned in situations where the seller is only updating the total 'ship-to-home' quantity of an inventory item record." }, "sku": { "type": "string", "description": "This is the seller-defined SKU value of the product. This field is returned whether the seller attempted to update an offer with the SKU value or just attempted to update the total 'ship-to-home' quantity of an inventory item record.

Max Length: 50
" }, "statusCode": { "type": "integer", "description": "The value returned in this container will indicate the status of the attempt to update the price and/or quantity of the offer (specified in the corresponding offerId field) or the attempt to update the total 'ship-to-home' quantity of an inventory item (specified in the corresponding sku field). For a completely successful update of an offer or inventory item record, a value of 200 will appear in this field. A user can view the HTTP status codes section for information on other status codes that may be returned with the bulkUpdatePriceQuantity method.", "format": "int32" }, "warnings": { "type": "array", "description": "This array will be returned if there were one or more warnings associated with the update to the offer or inventory item record.", "items": { "$ref": "#/components/schemas/Error" } } }, "description": "This type is used to display the result for each offer and/or inventory item that the seller attempted to update with a bulkUpdatePriceQuantity call. If any errors or warnings occur, the error/warning data is returned at the offer/inventory item level." }