Synctera · Schema

spending_limit_with_time

Limit over a specific time period.

FinTechBaaSBankingPaymentsCard IssuingKYC

Properties

Name Type Description
amount integer Maximum amount allowed within the time range. Unit in cents.
transactions integer Maximum number of transactions allowed within the time range
View JSON Schema on GitHub

JSON Schema

synctera-spending-limit-with-time-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/spending_limit_with_time",
  "title": "spending_limit_with_time",
  "description": "Limit over a specific time period.",
  "properties": {
    "amount": {
      "description": "Maximum amount allowed within the time range. Unit in cents.",
      "format": "int64",
      "minimum": 0,
      "type": "integer"
    },
    "transactions": {
      "description": "Maximum number of transactions allowed within the time range",
      "format": "int64",
      "minimum": 0,
      "type": "integer"
    }
  },
  "type": "object"
}