Adyen · JSON Structure

Payouts Fraud Result Structure

FraudResult schema from Adyen API

Type: object Properties: 2 Required: 1
PaymentsFinancial ServicesFintech

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

Properties

accountScore results

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/payouts-fraud-result-structure.json",
  "description": "FraudResult schema from Adyen API",
  "type": "object",
  "properties": {
    "accountScore": {
      "description": "The total fraud score generated by the risk checks.",
      "type": "int32"
    },
    "results": {
      "description": "The result of the individual risk checks.",
      "items": {
        "$ref": "#/components/schemas/FraudCheckResultWrapper"
      },
      "type": "array"
    }
  },
  "required": [
    "accountScore"
  ],
  "name": "FraudResult"
}