> ## 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.

# OrderingAsset

An asset installed at a property, purchased through Sibi.

```graphql theme={null}
type OrderingAsset {
  id: ID!
  createdAt: String!
  manufacturer: String!
  viewUrl: String!
  name: String!
  sku: String!
  serialNumber: String
  category: String!
  subcategories: [String!]!
  returned: Boolean!
  poNumber: String
  orderId: String
  propertyAddress: OrderingAddress!
  property: OrderingAssetProperty!
  dimensions: OrderingAssetDimensions!
  warrantyCoverages: [OrderingWarrantyCoverage!]!
}
```

### `id`

`string` - Sibi-assigned identifier. Uniquely identifies this asset.

***

### `createdAt`

`string` - When the asset was created, in ISO 8601 format.

***

### `manufacturer`

`string` - A slug identifying which shop the product was purchased from.

***

### `viewUrl`

`string` - Link to view the asset in Sibi's web interface.

***

### `name`

`string` - Human-readable product name.

***

### `sku`

`string` - Manufacturer's product identifier.

***

### `serialNumber`

`string | null` - Defined by the manufacturer and sometimes provided at invoice time.

***

### `category`

`string` - Broad product category.

***

### `subcategories`

`string[]` - Specific subcategories the product belongs to. May be empty.

***

### `returned`

`boolean` - True if this asset has been returned.

***

### `poNumber`

`string | null` - External purchase order number provided with the invoice.

***

### `orderId`

`string | null` - Unique identifier for the order associated with this asset within Sibi.

***

### `propertyAddress`

[`OrderingAddress`](/graphql/ordering/ordering-address) - The address of the property this asset is installed at.

***

### `property`

[`OrderingAssetProperty`](/graphql/ordering/ordering-asset-property) - The property this asset is installed at.

***

### `dimensions`

[`OrderingAssetDimensions`](/graphql/ordering/ordering-asset-dimensions) - Product measurements. Omits dimensions the product does not report.

***

### `warrantyCoverages`

[`OrderingWarrantyCoverage[]`](/graphql/ordering/ordering-warranty-coverage) - Time-sliced warranty coverage windows for this asset.
