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** |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AmountMinMaxRequirement",
"title": "AmountMinMaxRequirement",
"additionalProperties": false,
"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"
],
"type": "object"
}