Adyen · Schema

AmountMinMaxRequirement

AmountMinMaxRequirement schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
description string Specifies the eligible amounts for a particular route.
max integer Maximum amount.
min integer Minimum amount.
type string **amountMinMaxRequirement**
View JSON Schema on GitHub

JSON Schema

configuration-amount-min-max-requirement-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/configuration-amount-min-max-requirement-schema.json",
  "title": "AmountMinMaxRequirement",
  "description": "AmountMinMaxRequirement schema from Adyen API",
  "type": "object",
  "properties": {
    "description": {
      "description": "Specifies the eligible amounts for a particular route.",
      "type": "string"
    },
    "max": {
      "description": "Maximum amount.",
      "format": "int64",
      "type": "integer"
    },
    "min": {
      "description": "Minimum amount.",
      "format": "int64",
      "type": "integer"
    },
    "type": {
      "default": "amountMinMaxRequirement",
      "description": "**amountMinMaxRequirement**",
      "enum": [
        "amountMinMaxRequirement"
      ],
      "type": "string"
    }
  },
  "required": [
    "type"
  ],
  "additionalProperties": false
}