# ProductTaxonomy Describes a product taxonomy, providing structured categorization and attribute information for products. ## Type Definition ```graphql type ProductTaxonomy { category: ProductTaxonomyCategory attributes: [ProductTaxonomyAttribute] } ``` ## Fields | Field | Type | Description | |-------|------|-------------| | category | ProductTaxonomyCategory | Returns the category. | | attributes | [ProductTaxonomyAttribute] | Returns the attributes. | ## Relationships ProductTaxonomy is used by the Product type to provide taxonomy information. It contains a reference to a ProductTaxonomyCategory that describes the product's category, and a list of ProductTaxonomyAttribute objects that define the product's specific attributes within that taxonomy. ## Example ```graphql { category { id name } attributes { id name value } } ``` ## Implements This type does not implement any interfaces. ## Related Types - [ProductTaxonomyCategory](/reference/storefront/v1/objects/product-taxonomy-category) - [ProductTaxonomyAttribute](/reference/storefront/v1/objects/product-taxonomy-attribute)