Verifone · Schema

frequency

frequency from PayPal eComm API

PaymentsPOSTerminal ManagementeCommerceFinTechPayment ProcessingOmnichannel

Properties

Name Type Description
intervalUnit string The interval at which the subscription is charged or billed.
intervalCount number The number of intervals after which a subscriber is billed.
View JSON Schema on GitHub

JSON Schema

paypal-ecommerce-api-frequency.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-frequency.json",
  "title": "frequency",
  "description": "frequency from PayPal eComm API",
  "required": [
    "intervalUnit"
  ],
  "type": "object",
  "properties": {
    "intervalUnit": {
      "type": "string",
      "description": "The interval at which the subscription is charged or billed.",
      "enum": [
        "DAY",
        "WEEK",
        "MONTH",
        "YEAR"
      ]
    },
    "intervalCount": {
      "type": "number",
      "description": "The number of intervals after which a subscriber is billed."
    }
  }
}