# Product Option Value The `product_option_value` object describes a value for a product option, such as a specific size or color. It provides access to the value's handle, title, sort order, taxonomy value, selection state, related variant, and image. ## Usage Example ```liquid {%- comment -%} Render all values for a product option and highlight the selected one {%- endcomment -%} {% for value in product_option.values %} {{ value.title }} (handle: {{ value.handle }}){% if value.selected %} ✓{% endif %} {% endfor %} ``` ## Properties ### handle Returns the handle. ### title Returns the title (name) of the value. ### sort_order Returns the sort order. ### selected Returns whether this value is selected. ### taxonomy_value_id Returns the taxonomy value ID. ### taxonomy_value Returns the related [taxonomy value](/reference/liquid/objects/store/product_taxonomy_value/) for this value. ### variant Returns the related [variant](/reference/liquid/objects/store/product_variant/) for this value, if available. ### image Returns the related [image](/reference/liquid/objects/store/image/) for this value, if available.