# Inputs / Price Lists

# Price Lists

**Object**
## PriceListItemDetailsInput

| Fields | Type | Description |
| --- | --- | --- |
| id | [ID!](/documentation/Types/UUID#UUID) | The ID of the price list item |



**Object**
## PriceListItemInput

| Fields | Type | Description | Validation |
| --- | --- | --- | --- |
| type | [ProductClassificationTypeEnum](/documentation/Enums/Product-Classification-Type-Enum#ProductClassificationTypeEnum) | The type of item this is |  |
| rule | [PriceListRuleEnum](/documentation/Enums/Price-List-Rule-Enum#PriceListRuleEnum) | The rule to apply to this item |  |
| amount | *Float* | The rule amount to apply (null if using OVERRIDE rule) | Minimum: -10,000Maximum: 10,000 |
| prices | [[PriceListItemPriceInput]](/documentation/Inputs/Price-Lists#PriceListItemPriceInput) | The prices to apply to this item (null if not using OVERRIDE rule) |  |
| item | [PriceListItemDetailsInput](/documentation/Inputs/Price-Lists#PriceListItemDetailsInput) | The details of the item |  |
| minRule | [PriceListRuleEnum](/documentation/Enums/Price-List-Rule-Enum#PriceListRuleEnum) | The optional minimum price rule to apply to this item |  |
| minAmount | *Float* | The rule amount to apply to the minRule (null if using OVERRIDE minRule) | Minimum: -10,000Maximum: 10,000 |
| minPrices | [[PriceListItemPriceInput]](/documentation/Inputs/Price-Lists#PriceListItemPriceInput) | The prices to apply to this item (null if not using OVERRIDE minRule) |  |
| exclude | *Boolean* | Whether this item is excluded from the price list |  |



**Object**
## PriceListItemPriceInput

| Fields | Type | Description | Validation |
| --- | --- | --- | --- |
| quantity | *Int* | The quantity to trigger the price | Minimum: 1Maximum: 1,000,000,000 |
| price | *Float* | The price to use | Minimum: -100,000,000Maximum: 100,000,000 |