Adyen · Schema

CostEstimateAssumptions

CostEstimateAssumptions schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
assume3DSecureAuthenticated boolean If true, the cardholder is expected to successfully authorise via 3D Secure.
assumeLevel3Data boolean If true, the transaction is expected to have valid Level 3 data.
installments integer If not zero, the number of installments.
View JSON Schema on GitHub

JSON Schema

binlookup-cost-estimate-assumptions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/binlookup-cost-estimate-assumptions-schema.json",
  "title": "CostEstimateAssumptions",
  "description": "CostEstimateAssumptions schema from Adyen API",
  "type": "object",
  "properties": {
    "assume3DSecureAuthenticated": {
      "description": "If true, the cardholder is expected to successfully authorise via 3D Secure.",
      "type": "boolean"
    },
    "assumeLevel3Data": {
      "description": "If true, the transaction is expected to have valid Level 3 data.",
      "type": "boolean"
    },
    "installments": {
      "description": "If not zero, the number of installments.",
      "format": "int32",
      "type": "integer"
    }
  }
}