# Card spend policy sub-object

The card spend policy object defines volume and frequency limits for card transactions over specific time intervals.

### Object Parameters

- `interval` `enum` — Interval for enforcing the spend policy (`transaction`, `1_day`, `7_days`, `30_days`, or `all_time`)
  Possible values: `transaction`, `1_day`, `7_days`, `30_days`, `all_time`
- `number_of_transactions` `number` — Maximum number of transactions allowed over the interval
- `scope` `enum` — Scope of this spend policy (`card_program`, `card_account`, or card)
  Possible values: `card_program`, `card_account`, `card`
- `total_volume` `number` — Maximum allowed spend volume over the interval (in centi units, e.g., 100000 = $1,000.00)

**Response 200**

```json
{
  "interval": "transaction",
  "number_of_transactions": 10,
  "scope": "card_program",
  "total_volume": 100000
}
```
