It contains a complete display operation for a Display or an Input Device type. For the Input Devices, Diagnosis and EnableService, ResponseRequiredFlag and MinimumDisplayTime shall be absent. Information to display and the way to process the display.
PaymentsFinancial ServicesFintech
Properties
Name
Type
Description
ResponseRequiredFlag
boolean
Request of a message response.
MinimumDisplayTime
integer
Number of seconds the message has to be displayed.
Device
object
InfoQualify
object
OutputContent
object
MenuEntry
array
OutputSignature
string
If protection has to be provided to the vendor on the text to display or print.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DisplayOutput",
"title": "DisplayOutput",
"type": "object",
"description": "It contains a complete display operation for a Display or an Input Device type. For the Input Devices, Diagnosis and EnableService, ResponseRequiredFlag and MinimumDisplayTime shall be absent. Information to display and the way to process the display.",
"properties": {
"ResponseRequiredFlag": {
"type": "boolean",
"default": true,
"description": "Request of a message response."
},
"MinimumDisplayTime": {
"type": "integer",
"minimum": 0,
"maximum": 999,
"default": 0,
"description": "Number of seconds the message has to be displayed."
},
"Device": {
"$ref": "#/components/schemas/Device"
},
"InfoQualify": {
"$ref": "#/components/schemas/InfoQualify"
},
"OutputContent": {
"$ref": "#/components/schemas/OutputContent"
},
"MenuEntry": {
"type": "array",
"items": {
"$ref": "#/components/schemas/MenuEntry"
}
},
"OutputSignature": {
"type": "string",
"format": "byte",
"pattern": "^.+$",
"description": "If protection has to be provided to the vendor on the text to display or print."
}
},
"required": [
"Device",
"InfoQualify",
"OutputContent"
]
}