# sku\_inventory

From **Stripe API**.

- Type: `object`

## Properties

### `quantity`

- Required: false
- Type: `integer`
- Nullable: true

The count of inventory available. Will be present if and only if `type` is `finite`.

### `type`

- Required: true
- Type: `string`
- maxLength: `5000`

Inventory type. Possible values are `finite`, `bucket` (not quantified), and `infinite`.

### `value`

- Required: false
- Type: `string`
- Nullable: true
- maxLength: `5000`

An indicator of the inventory available. Possible values are `in_stock`, `limited`, and `out_of_stock`. Will be present if and only if `type` is `bucket`.

## JSON Schema

```json
{"properties":{"quantity":{"description":"The count of inventory available. Will be present if and only if `type` is `finite`.","nullable":true,"type":"integer"},"type":{"description":"Inventory type. Possible values are `finite`, `bucket` (not quantified), and `infinite`.","maxLength":5000,"type":"string"},"value":{"description":"An indicator of the inventory available. Possible values are `in_stock`, `limited`, and `out_of_stock`. Will be present if and only if `type` is `bucket`.","maxLength":5000,"nullable":true,"type":"string"}},"required":["type"],"title":"SKUInventory","type":"object","x-expandableFields":[]}
```
