{
"$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."
}
}
}