---
title: 'Liquid objects: store_availability'
description: A variant's inventory information for a physical store location.
api_name: liquid
source_url:
html: 'https://shopify.dev/docs/api/liquid/objects/store_availability'
md: 'https://shopify.dev/docs/api/liquid/objects/store_availability.md'
---
# store\_availability
A variant's inventory information for a physical store location.
If a location doesn't stock a variant, then there won't be a `store_availability` for that variant and location.
***
**Note:** The \\store\\_availability\\ object is defined only if one or more locations has \local pickup\ enabled.
***
## Properties
* * **available**
[boolean](https://shopify.dev/docs/api/liquid/basics#boolean)
* Returns `true` if the variant has available inventory at the location. Returns `false` if not.
* **location**
[location](https://shopify.dev/docs/api/liquid/objects/location)
* The location that the variant is stocked at.
* **pick\_up\_enabled**
[boolean](https://shopify.dev/docs/api/liquid/basics#boolean)
* Returns `true` if the location has pickup enabled. Returns `false` if not.
* **pick\_up\_time**
[string](https://shopify.dev/docs/api/liquid/basics#string)
* The amount of time that it takes for pickup orders to be ready at the location.
**Tip:** This value can be configured in the Shopify admin. To learn more, visit the \Shopify Help Center\.
##### Example
```json
{
"available": true,
"location": {},
"pick_up_enabled": true,
"pick_up_time": "Usually ready in 24 hours"
}
```