Verifone · Schema

pricingScheme

The active pricing scheme for this billing cycle.

PaymentsPOSTerminal ManagementeCommerceFinTechPayment ProcessingOmnichannel

Properties

Name Type Description
version number The version of the pricing scheme.
fixedPrice object
pricingModel string The pricing model for tiered plan
tiers object
View JSON Schema on GitHub

JSON Schema

paypal-ecommerce-api-pricingscheme.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/verifone/refs/heads/main/json-schema/paypal-ecommerce-api-pricingscheme.json",
  "title": "pricingScheme",
  "description": "The active pricing scheme for this billing cycle.",
  "type": "object",
  "properties": {
    "version": {
      "maximum": 999,
      "type": "number",
      "description": "The version of the pricing scheme."
    },
    "fixedPrice": {
      "$ref": "#/components/schemas/fixedPrice"
    },
    "pricingModel": {
      "type": "string",
      "description": "The pricing model for tiered plan",
      "enum": [
        "VOLUME",
        "TIERED"
      ]
    },
    "tiers": {
      "$ref": "#/components/schemas/tiers"
    }
  }
}