# ProductTaxonomyValue Describes a product taxonomy value. This type represents taxonomy information associated with products and provides localized naming for taxonomy values. ## Type Definition ```graphql type ProductTaxonomyValue { translatedName: String } ``` ## Fields | Field | Type | Description | |-------|------|-------------| | translatedName | String | Returns the translated name. | ## Relationships ProductTaxonomyValue is used by other types in the schema to provide taxonomy information: - **FilterValue**: The `taxonomyValue` field references ProductTaxonomyValue to include taxonomy data in filter results - **ProductOptionValue**: The `taxonomyValue` field references ProductTaxonomyValue to include taxonomy data in product option values ## Example ```graphql { translatedName } ``` ## Implements This type does not implement any interfaces. ## Related Types - [FilterValue](/docs/api/types/filter-value) - [ProductOptionValue](/docs/api/types/product-option-value)