Skip to content

Commit

Permalink
fix_amount_and_taxAmount_non-negative
Browse files Browse the repository at this point in the history
  • Loading branch information
PedroDiez committed May 15, 2024
1 parent a9510f8 commit 7b224ea
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions code/API_definitions/carrier_billing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -928,6 +928,7 @@ components:
type: number
format: float
multipleOf: 0.001
minimum: 0.001
description: Specific amount to be charged or reserved referred to a specific item.
example: 100
currency:
Expand All @@ -946,6 +947,7 @@ components:
type: number
format: float
multipleOf: 0.001
minimum: 0
description: |
The tax amount charged by the merchant. Indicated when the merchant is the one applying taxes. This field also provides an indicator to the downstream billing system.
example: 21
Expand All @@ -960,6 +962,7 @@ components:
type: number
format: float
multipleOf: 0.001
minimum: 0.001
description: Amount to be charged or reserved.
example: 100
currency:
Expand All @@ -978,6 +981,7 @@ components:
type: number
format: float
multipleOf: 0.001
minimum: 0
description: |
The tax amount charged by the merchant. Indicated when the merchant is the one applying taxes. This field also provides an indicator to the downstream billing system.
example: 21
Expand Down

0 comments on commit 7b224ea

Please sign in to comment.