> For the complete documentation index, see [llms.txt](https://help.accentuate.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.accentuate.io/metafield-definitions/fields/field-data-type/shopify-field-types/shopify-dimensions.md).

# Shopify » Dimensions

A Shopify Dimension type allows you to select a unit and a decimal value to go with that unit.\
\
Dimension units can be any of **in**, **ft**, **yd**, **mm**, **cm** or **m**.\
\
The entered dimension is then available as a JSON structure with *unit* and *value* properties, for example:

```liquid
{% assign dimension = product.metafields.accentuate.dimension.value %}
<p>The dimension is {{ dimension.value }}{{ dimension.unit }}</p>
```

Referencing *.value* alone will render the output as "*value*\<space>*unit*", so this works as well:

```liquid
<p>The dimension is {{ product.metafields.accentuate.dimension.value }}</p>
```
