Adyen · JSON Structure

Notification Webhooks Transaction Rules Result Structure

TransactionRulesResult schema from Adyen API

Type: object Properties: 2
PaymentsFinancial ServicesFintech

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

Properties

allRulesPassed failedTransactionRules

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/notification-webhooks-transaction-rules-result-structure.json",
  "description": "TransactionRulesResult schema from Adyen API",
  "properties": {
    "allRulesPassed": {
      "description": "Indicates whether the transaction passed the evaluation for all transaction rules.",
      "type": "boolean"
    },
    "failedTransactionRules": {
      "description": "Array containing all the transaction rules that the transaction violated. This list is only sent when `allRulesPassed` is **false**.",
      "items": {
        "$ref": "#/components/schemas/TransactionEventViolation"
      },
      "type": "array"
    }
  },
  "type": "object",
  "name": "TransactionRulesResult"
}