{ "$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-response-schema.json", "title": "StoreDetailResponse", "description": "StoreDetailResponse 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" }, "recurringDetailReference": { "description": "The token which you can use later on for submitting the payout.", "type": "string" }, "resultCode": { "description": "The result code of the transaction. `Success` indicates that the details were stored successfully.", "type": "string" } }, "required": [ "pspReference", "recurringDetailReference", "resultCode" ] }