connect-sdk-nodejs
Version:
SDK to communicate with the Worldline Global Collect platform using the Worldline Connect Server API
121 lines (120 loc) • 2.61 kB
JSON
{
"$schema" : "http://json-schema.org/draft-04/schema#",
"type" : "object",
"properties" : {
"alias" : {
"type" : "string"
},
"customer" : {
"$ref" : "#/definitions/MandateCustomer"
},
"customerReference" : {
"type" : "string"
},
"language" : {
"type" : "string"
},
"recurrenceType" : {
"type" : "string"
},
"returnUrl" : {
"type" : "string"
},
"signatureType" : {
"type" : "string"
},
"uniqueMandateReference" : {
"type" : "string"
}
},
"additionalProperties" : false,
"definitions" : {
"BankAccountIban" : {
"type" : "object",
"properties" : {
"accountHolderName" : {
"type" : "string"
},
"iban" : {
"type" : "string"
}
},
"additionalProperties" : false
},
"MandateAddress" : {
"type" : "object",
"properties" : {
"city" : {
"type" : "string"
},
"countryCode" : {
"type" : "string"
},
"houseNumber" : {
"type" : "string"
},
"street" : {
"type" : "string"
},
"zip" : {
"type" : "string"
}
},
"additionalProperties" : false
},
"MandateContactDetails" : {
"type" : "object",
"properties" : {
"emailAddress" : {
"type" : "string"
}
},
"additionalProperties" : false
},
"MandateCustomer" : {
"type" : "object",
"properties" : {
"bankAccountIban" : {
"$ref" : "#/definitions/BankAccountIban"
},
"companyName" : {
"type" : "string"
},
"contactDetails" : {
"$ref" : "#/definitions/MandateContactDetails"
},
"mandateAddress" : {
"$ref" : "#/definitions/MandateAddress"
},
"personalInformation" : {
"$ref" : "#/definitions/MandatePersonalInformation"
}
},
"additionalProperties" : false
},
"MandatePersonalInformation" : {
"type" : "object",
"properties" : {
"name" : {
"$ref" : "#/definitions/MandatePersonalName"
},
"title" : {
"type" : "string"
}
},
"additionalProperties" : false
},
"MandatePersonalName" : {
"type" : "object",
"properties" : {
"firstName" : {
"type" : "string"
},
"surname" : {
"type" : "string"
}
},
"additionalProperties" : false
}
}
}