# The Tax location 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. - `address` (object) An object representing the address of the tax location. - `address.city` (string, nullable) City, district, suburb, town, or village. - `address.country` (string, nullable) Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)). - `address.line1` (string, nullable) Address line 1, such as the street, PO Box, or company name. - `address.line2` (string, nullable) Address line 2, such as the apartment, suite, unit, or building. - `address.postal_code` (string, nullable) ZIP or postal code. - `address.state` (string, nullable) State, county, province, or region ([ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2)). - `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. ### 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" } ```