{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TransferDetail",
"title": "TransferDetail",
"type": "object",
"properties": {
"balanceAdjustment": {
"description": "This container shows the seller payout balance that will be applied toward the charges outlined in the charges array.",
"$ref": "#/components/schemas/BalanceAdjustment"
},
"charges": {
"type": "array",
"description": "This container is an array of one or more charges related to the transfer. Charges can be related to an order cancellation, order return, case, payment dispute, etc.",
"items": {
"$ref": "#/components/schemas/Charge"
}
},
"totalChargeNetAmount": {
"description": "This container shows the total amount that the seller owes for all of the charges outlined in the charges array.",
"$ref": "#/components/schemas/Amount"
}
},
"description": "This type is used by the transferDetail container, which provides more details about the transfer and the charge(s) associated with the transfer."
}