# The Tax location object

### The Tax location object

```json
{
  "id": "taxloc_1Rb0Af09x9VUP01myZ3aqF1z",
  "object": "tax.location",
  "address": {
    "city": "Boulder",
    "country": "US",
    "line1": "Folsom and, Pearl St",
    "line2": null,
    "postal_code": "80302",
    "state": "CO"
  },
  "description": "Greenleaf Park",
  "type": "performance"
}
```

## 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.

- [`address`](https://docs.stripe.com/api/tax/location/object.md?query=address&api-version=2026-03-25.preview) (object)
  An object representing the address of the tax location.

- `description` (string, nullable)
  A descriptive text providing additional context about the tax location. This can include information about the venue, types of events held, services available, or any relevant details for better identification (e.g., “A spacious auditorium suitable for large concerts and events.”).

- `type` (enum)
  The type of tax location to be defined. Currently the only option is `performance`.
Possible enum values:
  - `performance`
    Calculates the tax of the products or services based on the location of the performance or event, rather than the customer’s address.
