Properties
| Name | Type | Description |
|---|---|---|
| Id | integer | SKU kit ID, same as `StockKeepingUnitParent`. |
| StockKeepingUnitParent | integer | Parent SKU ID. |
| StockKeepingUnitId | integer | SKU ID of the kit component. |
| Quantity | integer | Component quantity. |
| UnitPrice | integer | Component price per unit. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SkuKit",
"title": "SkuKit",
"type": "object",
"properties": {
"Id": {
"type": "integer",
"description": "SKU kit ID, same as `StockKeepingUnitParent`."
},
"StockKeepingUnitParent": {
"type": "integer",
"description": "Parent SKU ID."
},
"StockKeepingUnitId": {
"type": "integer",
"description": "SKU ID of the kit component."
},
"Quantity": {
"type": "integer",
"description": "Component quantity."
},
"UnitPrice": {
"type": "integer",
"description": "Component price per unit."
}
},
"example": {
"Id": 7,
"StockKeepingUnitParent": 7,
"StockKeepingUnitId": 1,
"Quantity": 1,
"UnitPrice": 50.0
}
}