> For the complete documentation index, see [llms.txt](https://docs.simplestore.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.simplestore.io/concepts/inventory.md).

# Inventory

Optionally SimpleStore supports the tracking of product inventory.

### Portal View

![](/files/-M3ur_g8fXpD-OCpKtvE)

The following elements can be specified for management of inventory:

### Inventory Properties

{% tabs %}
{% tab title="Attributes" %}

| Element           | Description                                                                                                         |
| ----------------- | ------------------------------------------------------------------------------------------------------------------- |
| sku               | Stock-keeping unit of product                                                                                       |
| availableQuantity | How many available in stock                                                                                         |
| minActiveQuantity | If AvailableQuantity is below this value then the Product will not longer will be available (Status = Out Of Stock) |
| grossWeight       | Gross weight of the product                                                                                         |
| trackInventory    | Enable tracking of inventory (true\|false)                                                                          |
| {% endtab %}      |                                                                                                                     |

{% tab title="Sample Object" %}

```
{
    "sku":	"string"
    "availableQuantity":		number($double)
    "minActiveQuantity":		number($double)
    "grossWeight":		number($double)
    "trackInventory":		boolean
}
```

{% endtab %}
{% endtabs %}

|   |
| - |
