Adyen · JSON Structure

Transfer Webhooks Transaction Rules Result Structure

TransactionRulesResult schema from Adyen API

Type: object Properties: 4
PaymentsFinancial ServicesFintech

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

Properties

advice allHardBlockRulesPassed score triggeredTransactionRules

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/transfer-webhooks-transaction-rules-result-structure.json",
  "description": "TransactionRulesResult schema from Adyen API",
  "type": "object",
  "properties": {
    "advice": {
      "description": "The advice given by the Risk analysis.",
      "type": "string"
    },
    "allHardBlockRulesPassed": {
      "x-addedInVersion": "4",
      "description": "Indicates whether the transaction passed the evaluation for all hardblock rules",
      "type": "boolean"
    },
    "score": {
      "description": "The score of the Risk analysis.",
      "type": "int32"
    },
    "triggeredTransactionRules": {
      "x-addedInVersion": "4",
      "description": "Array containing all the transaction rules that the transaction triggered.",
      "items": {
        "$ref": "#/components/schemas/TransactionEventViolation"
      },
      "type": "array"
    }
  },
  "name": "TransactionRulesResult"
}