Verifone · Schema

payment_frequency

Payment frequencies. Used only for processing_model=RECURRING

PaymentsPOSTerminal ManagementeCommerceFinTechPayment ProcessingOmnichannel

Properties

Name Type Description
time_unit string must be one of DAY WEEK MONTH YEAR
value number
View JSON Schema on GitHub

JSON Schema

checkout-api-payment_frequency.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/verifone/refs/heads/main/json-schema/checkout-api-payment_frequency.json",
  "title": "payment_frequency",
  "description": "Payment frequencies. Used only for processing_model=RECURRING",
  "type": "object",
  "properties": {
    "time_unit": {
      "type": "string",
      "description": "must be one of  DAY WEEK MONTH YEAR",
      "enum": [
        "DAY",
        "WEEK",
        "MONTH",
        "YEAR"
      ]
    },
    "value": {
      "type": "number"
    }
  }
}