# terminal.location

From **Stripe API**.

A Location represents a grouping of readers.

Related guide: [Fleet Management](https://stripe.com/docs/terminal/fleet/locations).

- Type: `object`

## Properties

### `address`

- Required: true
- Type: `object`

### `display_name`

- Required: true
- Type: `string`
- maxLength: `5000`

The display name of the location.

### `id`

- Required: true
- Type: `string`
- maxLength: `5000`

Unique identifier for the object.

### `livemode`

- Required: true
- Type: `boolean`

Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.

### `metadata`

- Required: true
- Type: `object`

Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format.

### `object`

- Required: true
- Type: `string`
- Allowed values: `"terminal.location"`

String representing the object's type. Objects of the same type share the same value.

## JSON Schema

```json
{"description":"A Location represents a grouping of readers.\n\nRelated guide: [Fleet Management](https://stripe.com/docs/terminal/fleet/locations).","properties":{"address":{"$ref":"#/components/schemas/address"},"display_name":{"description":"The display name of the location.","maxLength":5000,"type":"string"},"id":{"description":"Unique identifier for the object.","maxLength":5000,"type":"string"},"livemode":{"description":"Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.","type":"boolean"},"metadata":{"additionalProperties":{"maxLength":500,"type":"string"},"description":"Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format.","type":"object"},"object":{"description":"String representing the object's type. Objects of the same type share the same value.","enum":["terminal.location"],"type":"string"}},"required":["address","display_name","id","livemode","metadata","object"],"title":"TerminalLocationLocation","type":"object","x-expandableFields":["address"],"x-resourceId":"terminal.location"}
```
