{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PaymentDisputeOutcomeDetail", "title": "PaymentDisputeOutcomeDetail", "type": "object", "properties": { "fees": { "description": "This container will show the dollar value of any fees associated with the payment dispute. This container is only returned if there are fees associated with the payment dispute.", "$ref": "#/components/schemas/SimpleAmount" }, "protectedAmount": { "description": "This container shows the amount of money that the seller is protected against in a payment dispute under eBay's seller protection policy.", "$ref": "#/components/schemas/SimpleAmount" }, "protectionStatus": { "type": "string", "description": "This enumeration value indicates if the seller is fully protected, partially protected, or not protected by eBay for the payment dispute. This field is always returned once the payment dispute is resolved. For implementation help, refer to eBay API documentation" }, "reasonForClosure": { "type": "string", "description": "The enumeration value returned in this field indicates the outcome of the payment dispute for the seller. This field is always returned once the payment dispute is resolved. For implementation help, refer to eBay API documentation" }, "recoupAmount": { "description": "This container shows the dollar amount being recouped from the seller. This container is empty if the seller wins the payment dispute or if the seller is fully protected by eBay's seller protection policy.", "$ref": "#/components/schemas/SimpleAmount" }, "totalFeeCredit": { "description": "This container shows the amount of money in selling fee credits due back to the seller after a payment dispute is settled.", "$ref": "#/components/schemas/SimpleAmount" } }, "description": "This type is used by the resolution container that is returned for payment disputes that have been resolved." }