# product_option

> The product_option Liquid object, which represents a product option such as color or size in a Shoplazza theme, with the full list of its properties.

A product option, such as color or size.

| Properties | Type                                            | Description                                 |
| :--------- | :---------------------------------------------- | :------------------------------------------ |
| `id`       | [string](../basics/liquid-types#string)             | The id of the product option.               |
| `name`     | [string](../basics/liquid-types#string)             | The name of the product option.             |
| `position` | [number](../basics/liquid-types#number)             | The 1-based index of the product option.    |
| `values`   | an array of [string](../basics/liquid-types#string) | The possible values for the product option. |

```json title="Object"
{
  "id": "1c63160d-61e1-4729-9649-dc064f228f46",
  "name": "Size",
  "position": 2,
  "values": [
    "35",
    "36",
    "37",
    "38",
    "39",
    "40"
  ]
}
```
