{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "BASEURL/threeDSConfig.json",
"title": "3DS Config",
"description": "3DS Configuration Data",
"type": "object",
"properties": {
"loginID": {
"type": "string"
},
"acquirerBIN": {
"type": "string",
"minLength": 6,
"maxLength": 11
},
"merchantCategoryCode": {
"type": "string",
"minLength": 4,
"maxLength": 4
},
"merchantCountry": {
"type": "object"
},
"merchantName": {
"type": "string"
},
"merchantURL": {
"type": "string",
"maxLength": 2048,
"description": "Fully qualified URL of the merchant site. A URL that is “fully qualified” is prefixed with the URL scheme, either “http://” or “https://”."
}
},
"additionalProperties": false,
"required": ["loginID", "acquirerBIN", "merchantCategoryCode", "merchantCountry", "merchantName"]
} |