{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/LineItemRefund",
"title": "LineItemRefund",
"type": "object",
"properties": {
"amount": {
"description": "This field shows the refund amount for a line item. This field is only returned if the buyer is due a refund for the line item.
Note: The refund amount shown is the seller's net amount received from the sale/transaction. eBay-collected tax will not be included in this amount, so the actual amount of the buyer's refund may be higher than this value.",
"$ref": "#/components/schemas/Amount"
},
"refundDate": {
"type": "string",
"description": "The date and time that the refund was issued for the line item. This timestamp is in ISO 8601 format, which uses the 24-hour Universal Coordinated Time (UTC) clock. This field is not returned until the refund has been issued.
Format: [YYYY]-[MM]-[DD]T[hh]:[mm]:[ss].[sss]Z
Example: 2015-08-04T19:09:02.768Z"
},
"refundId": {
"type": "string",
"description": "Unique identifier of a refund that was initiated for an order's line item through the issueRefund method. If the issueRefund method was used to issue a refund at the order level, this identifier is returned at the order level instead (paymentSummary.refunds.refundId field).
A refundId value is returned in the response of the issueRefund method, and this same value will be returned in the getOrder and getOrders responses for pending and completed refunds."
},
"refundReferenceId": {
"type": "string",
"description": "This field is reserved for internal or future use."
}
},
"description": "This type contains refund information for a line item."
}