Verifone · Schema

Model1

Model1 from PayPal eComm API

PaymentsPOSTerminal ManagementeCommerceFinTechPayment ProcessingOmnichannel

Properties

Name Type Description
startingQuantity string The starting quantity for the tier.
endingQuantity string The ending quantity for the tier. Optional for the last tier.
amount object
View JSON Schema on GitHub

JSON Schema

paypal-ecommerce-api-model1.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-model1.json",
  "title": "Model1",
  "description": "Model1 from PayPal eComm API",
  "required": [
    "amount",
    "startingQuantity"
  ],
  "type": "object",
  "properties": {
    "startingQuantity": {
      "type": "string",
      "description": "The starting quantity for the tier."
    },
    "endingQuantity": {
      "type": "string",
      "description": "The ending quantity for the tier. Optional for the last tier."
    },
    "amount": {
      "$ref": "#/components/schemas/amount"
    }
  }
}