# Chapter 5.3.3 - Location Item

Source: https://developer.avalara.com/products/communications/integration-guides/dev-guide_rest_v2/reference/location-item/

-   [Previous](/communications/dev-guide_rest_v2/reference/zip-lookup-result/)
-   [Next](/communications/dev-guide_rest_v2/reference/geocode-requests/)

### Location Item

The `LocationItem` object contains the **location information**, including the name and jurisdiction PCode:

Key

Value

`IsAlternate`

`[bool]` Is Alternate  

Flag indicating whether the location is an alternate or a primary

-   `true`: Location is an alternate to a primary location
-   `false`: Location is a primary location

`CountryISO`

`[string]` Country ISO  

3-character country ISO code  

`State`

`[string]` State  

2-character state abbreviation  

`County`

`[string]` County name

`Locality`

`[string]` Locality name

`PCode`

`[int]` Jurisdiction PCode

### Example

```json
"LocationData": [ { "CountryIso": "USA", "State": "WA", "County": "KING", "Locality": "SEATTLE", "PCode": 4133800 }]
```

-   [Previous](/communications/dev-guide_rest_v2/reference/zip-lookup-result/)
-   [Next](/communications/dev-guide_rest_v2/reference/geocode-requests/)