Adyen · JSON Structure

Terminal Input Structure

Input schema from Adyen API

Type: object Properties: 7 Required: 1
PaymentsFinancial ServicesFintech

Input is a JSON Structure definition published by Adyen, describing 7 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

InputCommand ConfirmedFlag FunctionKey TextInput DigitInput Password MenuEntryNumber

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/terminal-input-structure.json",
  "description": "Input schema from Adyen API",
  "type": "object",
  "properties": {
    "InputCommand": {
      "$ref": "#/components/schemas/InputCommand"
    },
    "ConfirmedFlag": {
      "type": "boolean"
    },
    "FunctionKey": {
      "type": "int32"
    },
    "TextInput": {
      "type": "string"
    },
    "DigitInput": {
      "type": "int32"
    },
    "Password": {
      "type": "string"
    },
    "MenuEntryNumber": {
      "type": "array",
      "items": {
        "type": "int32"
      }
    }
  },
  "required": [
    "InputCommand"
  ],
  "name": "Input"
}