Adyen · Schema

Input

PaymentsFinancial ServicesFintech

Properties

Name Type Description
InputCommand object
ConfirmedFlag boolean
FunctionKey integer
TextInput string
DigitInput integer
Password string
MenuEntryNumber array
View JSON Schema on GitHub

JSON Schema

adyen-input-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Input",
  "title": "Input",
  "type": "object",
  "properties": {
    "InputCommand": {
      "$ref": "#/components/schemas/InputCommand"
    },
    "ConfirmedFlag": {
      "type": "boolean"
    },
    "FunctionKey": {
      "type": "integer"
    },
    "TextInput": {
      "type": "string"
    },
    "DigitInput": {
      "type": "integer"
    },
    "Password": {
      "type": "string"
    },
    "MenuEntryNumber": {
      "type": "array",
      "items": {
        "type": "integer"
      }
    }
  },
  "required": [
    "InputCommand"
  ]
}