JSON Object
acsRenderingType
acsRenderingType
Data Elements
Key | Format | Condition | Description |
acsInterface | string | M | This the ACS interface that the challenge will present to the cardholder. Values accepted: · native · html |
acsUiTemplate | string | M | Identifies the UI Template format that the ACS first presents to the consumer. Values accepted: · text · singleSelect · multiSelect · oob · htmlOther htmlOther is only valid in combination with html UI (see acsInterface). |
Schema
{
“$id”: “https://www.computop-paygate.com/schemas/acsRenderingType.json”,
“title”: “accountInfo”,
“description”: “ACS Rendering Type”,
“type”: “object”,
“properties”: {
“acsRenderingType”: {
“type”: “object”,
“properties”: {
“acsInterface”: {
“type”: “string”,
“enum”: [
“native”,
“html”
]
},
“acsUiTemplate”: {
“type”: “string”,
“enum”: [
“text”,
“singleSelect”,
“multiSelect”,
“oob”,
“other”
]
}
},
“required”: [
“acsInterface”,
“acsUiTemplate”
],
“additionalProperties”: false
}
},
“additionalProperties”: false
}
Sample
{
“acsRenderingType”: {
“acsInterface”: “native”,
“acsUiTemplate”: “singleSelect”
}
}