{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RefundRequest_Post", "title": "RefundRequest_Post", "type": "object", "description": "Request body for refund requests.", "x-internal": false, "properties": { "items": { "type": "array", "items": { "$ref": "#/components/schemas/ItemsRefund" } }, "payments": { "type": "array", "items": { "$ref": "#/components/schemas/PaymentRequest" } }, "merchant_calculated_override": { "$ref": "#/components/schemas/MerchantOverride" } }, "required": [ "items", "payments" ], "x-examples": {} }