Adyen · Schema

InputUpdate

Definition: Content of the Input Update message. : It conveys update of the display of an Input request in progress.

PaymentsFinancial-ServicesFintech

Properties

Name Type Description
MessageReference object
OutputContent object
MenuEntry array
OutputSignature string
MinLength integer
MaxLength integer
MaxDecimalLength integer
View JSON Schema on GitHub

JSON Schema

terminal-input-update-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/terminal-input-update-schema.json",
  "title": "InputUpdate",
  "description": "Definition: Content of the Input Update message. : It conveys \t\t\t\tupdate of the display of an Input request in progress.",
  "type": "object",
  "properties": {
    "MessageReference": {
      "$ref": "#/components/schemas/MessageReference"
    },
    "OutputContent": {
      "$ref": "#/components/schemas/OutputContent"
    },
    "MenuEntry": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/MenuEntry"
      }
    },
    "OutputSignature": {
      "type": "string",
      "format": "byte",
      "pattern": "^.+$"
    },
    "MinLength": {
      "type": "integer"
    },
    "MaxLength": {
      "type": "integer"
    },
    "MaxDecimalLength": {
      "type": "integer"
    }
  },
  "required": [
    "MessageReference",
    "OutputContent"
  ]
}