# ProductTaxonomyValue A value for a product taxonomy attribute, including name, handle, and color. ## Type Definition ```graphql type ProductTaxonomyValue { id: Int handle: String name: String translatedName: String isTransparent: Boolean isMulticolor: Boolean color: Color color2: Color color3: Color colors: [Color] isStandard: Boolean } ``` ## Fields | Field | Type | Description | |-------|------|-------------| | id | Int | Returns the id. | | handle | String | Returns the handle. | | name | String | Returns the name. | | translatedName | String | Returns the translated name. | | isTransparent | Boolean | Returns true if the color is considered transparent, i.e. clear. | | isMulticolor | Boolean | Returns true if the color is multicolor. | | color | Color | Returns the color if any. | | color2 | Color | Returns the second color if any. | | color3 | Color | Returns the third color if any. | | colors | [Color] | Returns the colors. | | isStandard | Boolean | Returns true if the value is standard. | ## Relationships ProductTaxonomyValue represents a structured taxonomy value for product attributes. It is used by FilterValue and ProductOptionValue objects to provide detailed attribute information including color variations and standardization status. ## Example ```graphql { id handle name translatedName isTransparent isMulticolor color { id name } colors { id name } isStandard } ``` ## Implements None ## Related Types - [Color](/reference/storefront/1.3.0/objects/color)