{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CashbackPayoutItem", "title": "CashbackPayoutItem", "type": "object", "properties": { "status": { "type": "string", "description": "The status of the cashback payout item.", "readOnly": true, "writeOnly": false }, "amount": { "type": "object", "description": "The amount of cashback earned.", "readOnly": true, "writeOnly": false, "$ref": "#/components/schemas/Amount" }, "rate_applied": { "type": "string", "description": "The cashback rate.", "readOnly": true, "writeOnly": false }, "transaction_category": { "type": "object", "description": "The transaction category that this cashback is for.", "readOnly": true, "writeOnly": false, "$ref": "#/components/schemas/AdditionalTransactionInformationCategory" } } }