Adyen · JSON Structure

Terminal Input Data Structure

InputData schema from Adyen API

Type: object Properties: 21 Required: 3
PaymentsFinancial ServicesFintech

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

Properties

Device InfoQualify InputCommand NotifyCardInputFlag MaxInputTime ImmediateResponseFlag MinLength MaxLength MaxDecimalLength WaitUserValidationFlag DefaultInputString DefaultLayoutString StringMask FromRightToLeftFlag MaskCharactersFlag BeepKeyFlag GlobalCorrectionFlag DisableCancelFlag DisableCorrectFlag DisableValidFlag MenuBackFlag

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-data-structure.json",
  "description": "InputData schema from Adyen API",
  "type": "object",
  "properties": {
    "Device": {
      "$ref": "#/components/schemas/Device"
    },
    "InfoQualify": {
      "$ref": "#/components/schemas/InfoQualify"
    },
    "InputCommand": {
      "$ref": "#/components/schemas/InputCommand"
    },
    "NotifyCardInputFlag": {
      "type": "boolean",
      "default": false
    },
    "MaxInputTime": {
      "type": "int32"
    },
    "ImmediateResponseFlag": {
      "type": "boolean",
      "default": false
    },
    "MinLength": {
      "type": "int32"
    },
    "MaxLength": {
      "type": "int32"
    },
    "MaxDecimalLength": {
      "type": "int32"
    },
    "WaitUserValidationFlag": {
      "type": "boolean",
      "default": true
    },
    "DefaultInputString": {
      "type": "string",
      "pattern": "^.+$"
    },
    "DefaultLayoutString": {
      "type": "string",
      "pattern": "^.+$"
    },
    "StringMask": {
      "type": "string",
      "pattern": "^.+$"
    },
    "FromRightToLeftFlag": {
      "type": "boolean",
      "default": false
    },
    "MaskCharactersFlag": {
      "type": "boolean",
      "default": false
    },
    "BeepKeyFlag": {
      "type": "boolean",
      "default": false
    },
    "GlobalCorrectionFlag": {
      "type": "boolean",
      "default": false
    },
    "DisableCancelFlag": {
      "type": "boolean",
      "default": false
    },
    "DisableCorrectFlag": {
      "type": "boolean",
      "default": false
    },
    "DisableValidFlag": {
      "type": "boolean",
      "default": false
    },
    "MenuBackFlag": {
      "type": "boolean",
      "default": false
    }
  },
  "required": [
    "Device",
    "InfoQualify",
    "InputCommand"
  ],
  "name": "InputData"
}