|
| 1 | +{ |
| 2 | + "$schema" : "http://json-schema.org/draft-04/schema#", |
| 3 | + "type" : "object", |
| 4 | + "properties" : { |
| 5 | + "createMandateInfo" : { |
| 6 | + "$ref" : "#/definitions/HostedMandateInfo" |
| 7 | + }, |
| 8 | + "hostedMandateManagementSpecificInput" : { |
| 9 | + "$ref" : "#/definitions/HostedMandateManagementSpecificInput" |
| 10 | + } |
| 11 | + }, |
| 12 | + "required" : [ "createMandateInfo" ], |
| 13 | + "additionalProperties" : false, |
| 14 | + "definitions" : { |
| 15 | + "BankAccountIban" : { |
| 16 | + "type" : "object", |
| 17 | + "properties" : { |
| 18 | + "accountHolderName" : { |
| 19 | + "type" : "string" |
| 20 | + }, |
| 21 | + "iban" : { |
| 22 | + "type" : "string" |
| 23 | + } |
| 24 | + }, |
| 25 | + "additionalProperties" : false |
| 26 | + }, |
| 27 | + "HostedMandateInfo" : { |
| 28 | + "type" : "object", |
| 29 | + "properties" : { |
| 30 | + "alias" : { |
| 31 | + "type" : "string" |
| 32 | + }, |
| 33 | + "customer" : { |
| 34 | + "$ref" : "#/definitions/MandateCustomer" |
| 35 | + }, |
| 36 | + "customerReference" : { |
| 37 | + "type" : "string" |
| 38 | + }, |
| 39 | + "recurrenceType" : { |
| 40 | + "type" : "string" |
| 41 | + }, |
| 42 | + "signatureType" : { |
| 43 | + "type" : "string" |
| 44 | + }, |
| 45 | + "uniqueMandateReference" : { |
| 46 | + "type" : "string" |
| 47 | + } |
| 48 | + }, |
| 49 | + "required" : [ "customerReference", "recurrenceType", "signatureType" ], |
| 50 | + "additionalProperties" : false |
| 51 | + }, |
| 52 | + "HostedMandateManagementSpecificInput" : { |
| 53 | + "type" : "object", |
| 54 | + "properties" : { |
| 55 | + "locale" : { |
| 56 | + "type" : "string" |
| 57 | + }, |
| 58 | + "returnUrl" : { |
| 59 | + "type" : "string" |
| 60 | + }, |
| 61 | + "showResultPage" : { |
| 62 | + "type" : "boolean" |
| 63 | + }, |
| 64 | + "variant" : { |
| 65 | + "type" : "string" |
| 66 | + } |
| 67 | + }, |
| 68 | + "additionalProperties" : false |
| 69 | + }, |
| 70 | + "MandateAddress" : { |
| 71 | + "type" : "object", |
| 72 | + "properties" : { |
| 73 | + "city" : { |
| 74 | + "type" : "string" |
| 75 | + }, |
| 76 | + "countryCode" : { |
| 77 | + "type" : "string" |
| 78 | + }, |
| 79 | + "houseNumber" : { |
| 80 | + "type" : "string" |
| 81 | + }, |
| 82 | + "street" : { |
| 83 | + "type" : "string" |
| 84 | + }, |
| 85 | + "zip" : { |
| 86 | + "type" : "string" |
| 87 | + } |
| 88 | + }, |
| 89 | + "additionalProperties" : false |
| 90 | + }, |
| 91 | + "MandateContactDetails" : { |
| 92 | + "type" : "object", |
| 93 | + "properties" : { |
| 94 | + "emailAddress" : { |
| 95 | + "type" : "string" |
| 96 | + } |
| 97 | + }, |
| 98 | + "additionalProperties" : false |
| 99 | + }, |
| 100 | + "MandateCustomer" : { |
| 101 | + "type" : "object", |
| 102 | + "properties" : { |
| 103 | + "bankAccountIban" : { |
| 104 | + "$ref" : "#/definitions/BankAccountIban" |
| 105 | + }, |
| 106 | + "companyName" : { |
| 107 | + "type" : "string" |
| 108 | + }, |
| 109 | + "contactDetails" : { |
| 110 | + "$ref" : "#/definitions/MandateContactDetails" |
| 111 | + }, |
| 112 | + "mandateAddress" : { |
| 113 | + "$ref" : "#/definitions/MandateAddress" |
| 114 | + }, |
| 115 | + "personalInformation" : { |
| 116 | + "$ref" : "#/definitions/MandatePersonalInformation" |
| 117 | + } |
| 118 | + }, |
| 119 | + "additionalProperties" : false |
| 120 | + }, |
| 121 | + "MandatePersonalInformation" : { |
| 122 | + "type" : "object", |
| 123 | + "properties" : { |
| 124 | + "name" : { |
| 125 | + "$ref" : "#/definitions/MandatePersonalName" |
| 126 | + }, |
| 127 | + "title" : { |
| 128 | + "type" : "string" |
| 129 | + } |
| 130 | + }, |
| 131 | + "additionalProperties" : false |
| 132 | + }, |
| 133 | + "MandatePersonalName" : { |
| 134 | + "type" : "object", |
| 135 | + "properties" : { |
| 136 | + "firstName" : { |
| 137 | + "type" : "string" |
| 138 | + }, |
| 139 | + "surname" : { |
| 140 | + "type" : "string" |
| 141 | + } |
| 142 | + }, |
| 143 | + "additionalProperties" : false |
| 144 | + } |
| 145 | + } |
| 146 | +} |
0 commit comments