{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/WithdrawResponse", "title": "WithdrawResponse", "type": "object", "properties": { "listingId": { "type": "string", "description": "The unique identifier of the eBay listing associated with the offer that was withdrawn. This field will not be returned if the eBay listing was not successfully ended." }, "warnings": { "type": "array", "description": "This container will be returned if there were one or more warnings associated with the attempt to withdraw the offer.", "items": { "$ref": "#/components/schemas/Error" } } }, "description": "The base response of the withdrawOffer call." }