{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AccountSpendLimits", "title": "AccountSpendLimits", "properties": { "available_spend_limit": { "properties": { "daily": { "description": "The available spend limit (in cents) relative to the daily limit configured on the Account (e.g. 100000 would be a $1,000 limit).", "example": 100000, "type": "integer" }, "lifetime": { "description": "The available spend limit (in cents) relative to the lifetime limit configured on the Account.", "example": 300000, "type": "integer" }, "monthly": { "description": "The available spend limit (in cents) relative to the monthly limit configured on the Account.", "example": 200000, "type": "integer" } }, "type": "object" }, "spend_limit": { "properties": { "daily": { "description": "The configured daily spend limit (in cents) on the Account.", "example": 500000, "type": "integer" }, "lifetime": { "description": "The configured lifetime spend limit (in cents) on the Account.", "example": 500000, "type": "integer" }, "monthly": { "description": "The configured monthly spend limit (in cents) on the Account.", "example": 500000, "type": "integer" } }, "type": "object" }, "spend_velocity": { "properties": { "daily": { "description": "Current daily spend velocity (in cents) on the Account. Present if daily spend limit is set.", "example": 40000, "type": "integer" }, "lifetime": { "description": "Current lifetime spend velocity (in cents) on the Account. Present if lifetime spend limit is set.", "example": 20000, "type": "integer" }, "monthly": { "description": "Current monthly spend velocity (in cents) on the Account. Present if monthly spend limit is set.", "example": 30000, "type": "integer" } }, "type": "object" } }, "required": [ "available_spend_limit" ], "type": "object" }