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

# Overview

> Inventory tracks stock levels and availability for catalog items across e-commerce platforms.

The Inventory Data Model tracks stock quantities, reserved amounts, and availability status for items in your e-commerce catalog.

## Attributes

### Inventory Attributes

| Property                  | Type    | Description                                             |
| ------------------------- | ------- | ------------------------------------------------------- |
| `rootfi_id`               | integer | Unique identifier for this inventory record             |
| `rootfi_created_at`       | string  |                                                         |
| `rootfi_updated_at`       | string  |                                                         |
| `rootfi_integration_type` | enum    |                                                         |
| `platform_id`             | string  | Platform-specific inventory identifier                  |
| `item_id`                 | string  | Reference to the related item                           |
| `variant_id`              | string  |                                                         |
| `description`             | string  |                                                         |
| `sku`                     | string  |                                                         |
| `quantity`                | integer | Total quantity on hand                                  |
| `reserved_quantity`       | integer | Quantity allocated to pending orders                    |
| `available_quantity`      | integer | Quantity available for new orders                       |
| `status`                  | enum    | `IN_STOCK`, `LOW_STOCK`, `OUT_OF_STOCK`, `DISCONTINUED` |
| `is_trackable`            | boolean |                                                         |
| `reorder_level`           | integer |                                                         |
| `reorder_quantity`        | integer |                                                         |
| `created_at`              | string  |                                                         |
| `updated_at`              | string  | Last update timestamp (ISO 8601)                        |
