{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/payouts-store-detail-and-submit-response-schema.json", "title": "StoreDetailAndSubmitResponse", "description": "StoreDetailAndSubmitResponse schema from Adyen API", "type": "object", "properties": { "additionalData": { "additionalProperties": { "type": "string" }, "description": "This field contains additional data, which may be returned in a particular response.", "type": "object" }, "pspReference": { "description": "A new reference to uniquely identify this request.", "type": "string" }, "refusalReason": { "description": "In case of refusal, an informational message for the reason.", "type": "string" }, "resultCode": { "description": "The response:\n\n* In case of success is payout-submit-received.\n* In case of an error, an informational message is returned.", "type": "string" } }, "required": [ "pspReference", "resultCode" ] }