# The Usage Record object

## Attributes

- `id` (string)
  Unique identifier for the object.

- `object` (string)
  String representing the object’s type. Objects of the same type share the same value.

- `livemode` (boolean)
  Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.

- `quantity` (integer)
  The usage quantity for the specified date.

- `subscription_item` (string)
  The ID of the subscription item this usage record contains data for.

- `timestamp` (timestamp)
  The timestamp when this usage occurred.

### The Usage Record object

```json
{
  "id": "mbur_1IJ3zE2eZvKYlo2CsJAtf1Jl",
  "object": "usage_record",
  "livemode": false,
  "quantity": 100,
  "subscription_item": "si_IutmSSymhsWA5i",
  "timestamp": 1571252444
}
```
