connect-sdk-nodejs
Version:
SDK to communicate with the Worldline Global Collect platform using the Worldline Connect Server API
33 lines (32 loc) • 625 B
JSON
{
"$schema" : "http://json-schema.org/draft-04/schema#",
"type" : "object",
"properties" : {
"countryCode" : {
"type" : "string"
},
"values" : {
"type" : "array",
"items" : {
"$ref" : "#/definitions/KeyValuePair"
},
"minItems" : 1,
"uniqueItems" : false
}
},
"additionalProperties" : false,
"definitions" : {
"KeyValuePair" : {
"type" : "object",
"properties" : {
"key" : {
"type" : "string"
},
"value" : {
"type" : "string"
}
},
"additionalProperties" : false
}
}
}