Adyen · JSON Structure

Checkout Fraud Check Result Structure

FraudCheckResult schema from Adyen API

Type: object Properties: 3 Required: 3
PaymentsFinancial ServicesFintech

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

Properties

accountScore checkId name

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/checkout-fraud-check-result-structure.json",
  "description": "FraudCheckResult schema from Adyen API",
  "type": "object",
  "properties": {
    "accountScore": {
      "description": "The fraud score generated by the risk check.",
      "type": "int32"
    },
    "checkId": {
      "description": "The ID of the risk check.",
      "type": "int32"
    },
    "name": {
      "description": "The name of the risk check.",
      "type": "string"
    }
  },
  "required": [
    "checkId",
    "name",
    "accountScore"
  ],
  "name": "FraudCheckResult"
}