> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sibipro.com/llms.txt
> Use this file to discover all available pages before exploring further.

# OrderingProductAttribute

A catalog attribute of a product, as a name/value pair — e.g. `sheen` or `color`. Returned in [`OrderingProduct.attributes`](/graphql/ordering/search-products#attributes) by [`searchProducts`](/graphql/ordering/search-products) and [`products`](/graphql/ordering/list-products), and in [`OrderingOrderProduct.attributes`](/graphql/ordering/ordering-order-product#attributes) by [`reviewOrder`](/graphql/ordering/review-order) and [`createOrder`](/graphql/ordering/create-order).

Which attributes a product carries varies by product.

```graphql theme={null}
type OrderingProductAttribute {
  name: String!
  value: String!
}
```

### `name`

`string` - The attribute's identifier (e.g. `"sheen"`, `"color"`).

***

### `value`

`string` - The attribute's value (e.g. `"Satin"`, `"Stainless Steel"`).
