Adyen · JSON Structure

Terminal Output Text Structure

It conveys Information related to the content of the text message and its format. All the data elements related to the format of the text to display or print are parameters valid for the whole Text content. Content of text message to display or print.

Type: object Properties: 11 Required: 1
PaymentsFinancial ServicesFintech

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

Properties

Text CharacterSet Font StartRow StartColumn Color CharacterWidth CharacterHeight CharacterStyle Alignment EndOfLineFlag

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-output-text-structure.json",
  "description": "It conveys Information related to the content of the text message and its format. All the data elements related to the format of the text to display or print are parameters valid for the whole Text content. Content of text message to display or print.",
  "type": "object",
  "properties": {
    "Text": {
      "type": "string"
    },
    "CharacterSet": {
      "type": "int32"
    },
    "Font": {
      "type": "string",
      "pattern": "^.+$"
    },
    "StartRow": {
      "type": "int32",
      "minimum": 1,
      "maximum": 500
    },
    "StartColumn": {
      "type": "int32",
      "minimum": 1,
      "maximum": 500
    },
    "Color": {
      "$ref": "#/components/schemas/Color"
    },
    "CharacterWidth": {
      "$ref": "#/components/schemas/CharacterWidth"
    },
    "CharacterHeight": {
      "$ref": "#/components/schemas/CharacterHeight"
    },
    "CharacterStyle": {
      "$ref": "#/components/schemas/CharacterStyle"
    },
    "Alignment": {
      "$ref": "#/components/schemas/Alignment"
    },
    "EndOfLineFlag": {
      "type": "boolean",
      "default": true
    }
  },
  "required": [
    "Text"
  ],
  "name": "OutputText"
}