# Product Taxonomy Attribute
The `product_taxonomy_attribute` object describes a taxonomy attribute for a product, such as color or material.
## Usage Example
```liquid
{%- comment -%} Show taxonomy attribute and its values {%- endcomment -%}
{{ product_taxonomy_attribute.translated_name }}:
{% for value in product_taxonomy_attribute.values %}
- {{ value.translated_name }}
{% endfor %}
```
## Properties
### handle
Returns the handle.
### id
Returns the id.
### name
Returns the name.
### translated_name
Returns the translated name.
### type
Returns the type.
### values
Returns the [values](/reference/liquid/objects/store/product_taxonomy_value/) for this attribute.