PayPal · Schema

Amount Range

The amount range.

BillingCommerceDisputesInvoicesOrdersPaymentsPayoutsSubscriptionsTokensWebhooks

Properties

Name Type Description
lower_amount object The lower limit of the amount range.
upper_amount object The upper limit of the amount range.
View JSON Schema on GitHub

JSON Schema

paypal-amount-range-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/amount_range",
  "title": "Amount Range",
  "type": "object",
  "description": "The amount range.",
  "properties": {
    "lower_amount": {
      "$ref": "#/components/schemas/money",
      "description": "The lower limit of the amount range."
    },
    "upper_amount": {
      "$ref": "#/components/schemas/money",
      "description": "The upper limit of the amount range."
    }
  },
  "required": [
    "lower_amount",
    "upper_amount"
  ]
}