{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SubmitResponse", "title": "SubmitResponse", "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* In case of success, it is `payout-submit-received`.\n* In case of an error, an informational message is returned.", "type": "string" } }, "required": [ "pspReference", "resultCode" ], "type": "object" }