{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "RecurringParametersO",
"allOf": [
{
"type": "object",
"properties": {
"type": {
"type": "string",
"name": "type",
"enum": [
"M",
"A",
"O"
],
"description": "The type of recurring payment; allowed values: A, O, M",
"in": "formData"
},
"expirationDate": {
"type": "string",
"description": "Allowed format: YYYY-MM-DD hh:mm:ss"
},
"availableBanks": {
"description": "Parameter to control the verification of whether the bank supports recursion. If set to false, it is not checked if the bank supports recursion.",
"default": true,
"type": "boolean"
},
"initDate": {
"type": "string",
"description": "Allowed format: YYYY-MM-DD"
}
},
"required": [
"type"
]
}
]
}