# ProductTaxonomyCategory Describes a product taxonomy category used for organizing and classifying products within the system. ## Type Definition ```graphql type ProductTaxonomyCategory { googleProductCategory: String } ``` ## Fields | Field | Type | Description | |-------|------|-------------| | googleProductCategory | String | Returns the Google product category. | ## Relationships This type is used by the `ProductTaxonomy` type through its `category` field, establishing a relationship between product taxonomy data and category classification information. ## Example ```graphql { googleProductCategory } ``` ## Implements This type does not implement any interfaces. ## Related Types - `ProductTaxonomy`