Adyen · JSON Structure

Terminal Transaction Conditions Structure

Conditions on which the transaction must be processed.

Type: object Properties: 9
PaymentsFinancial ServicesFintech

TransactionConditions is a JSON Structure definition published by Adyen, describing 9 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

AllowedPaymentBrand AcquirerID DebitPreferredFlag AllowedLoyaltyBrand LoyaltyHandling CustomerLanguage ForceOnlineFlag ForceEntryMode MerchantCategoryCode

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-transaction-conditions-structure.json",
  "description": "Conditions on which the transaction must be processed.",
  "type": "object",
  "properties": {
    "AllowedPaymentBrand": {
      "type": "array",
      "items": {
        "type": "string",
        "pattern": "^.+$",
        "description": "Restrict brand if data sent."
      }
    },
    "AcquirerID": {
      "type": "array",
      "items": {
        "type": "int32",
        "description": "Restrict to these Acquirer if present."
      }
    },
    "DebitPreferredFlag": {
      "type": "boolean",
      "description": "The preferred type of payment is a debit transaction rather a credit transaction."
    },
    "AllowedLoyaltyBrand": {
      "type": "array",
      "items": {
        "type": "string",
        "pattern": "^.+$",
        "description": "Restrict brand if data sent."
      }
    },
    "LoyaltyHandling": {
      "$ref": "#/components/schemas/LoyaltyHandling"
    },
    "CustomerLanguage": {
      "type": "string",
      "pattern": "^[a-z]{2,2}$",
      "description": "If the language is selected by the Sale System before the request to the POI."
    },
    "ForceOnlineFlag": {
      "type": "boolean",
      "default": false,
      "description": "Go online if data sent."
    },
    "ForceEntryMode": {
      "$ref": "#/components/schemas/ForceEntryMode"
    },
    "MerchantCategoryCode": {
      "type": "string",
      "pattern": "^.{3,4}$",
      "description": "The payment implies a specific MCC."
    }
  },
  "name": "TransactionConditions"
}