JSON Object

acsRenderingType

acsRenderingType

Data Elements

KeyFormatConditionDescription
acsInterfacestringMThis the ACS interface that the challenge will present to the cardholder. Values accepted: · native · html
acsUiTemplatestringMIdentifies 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”

    }

}