BlueCart · Schema
Product
A product available for wholesale ordering.
RestaurantProcurementWholesaleOrderingFood DistributionHospitalityeCommerce
Properties
| Name | Type | Description |
|---|---|---|
| productId | integer | Unique product identifier. |
| productName | string | Product name. |
| sku | string | Stock keeping unit. |
| description | string | Product description. |
| uom | string | Unit of measure. |
| price | number | Unit price. |
| pack | integer | Number of units per pack. |
| tags | array | Tags associated with the product. |
| inventory | object | Inventory management details. |
| discounts | object | Discount configuration for the product. |
| creationDateTime | string | |
| lastUpdateDateTime | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Product",
"description": "A product available for wholesale ordering.",
"$id": "https://raw.githubusercontent.com/api-evangelist/bluecart/refs/heads/main/json-schema/bluecart-product-schema.json",
"type": "object",
"properties": {
"productId": {
"type": "integer",
"format": "int64",
"description": "Unique product identifier.",
"example": 90210
},
"productName": {
"type": "string",
"description": "Product name.",
"example": "Cabernet Sauvignon 750ml"
},
"sku": {
"type": "string",
"description": "Stock keeping unit.",
"example": "WINE-CAB-750"
},
"description": {
"type": "string",
"description": "Product description.",
"example": "Estate-bottled Cabernet Sauvignon, vintage 2022."
},
"uom": {
"type": "string",
"description": "Unit of measure.",
"example": "Bottle"
},
"price": {
"type": "number",
"format": "float",
"description": "Unit price.",
"example": 18.5
},
"pack": {
"type": "integer",
"description": "Number of units per pack.",
"example": 12
},
"tags": {
"type": "array",
"description": "Tags associated with the product.",
"items": {
"type": "string"
},
"example": [
"Wine",
"Red"
]
},
"inventory": {
"type": "object",
"description": "Inventory management details.",
"additionalProperties": true
},
"discounts": {
"type": "object",
"description": "Discount configuration for the product.",
"additionalProperties": true
},
"creationDateTime": {
"type": "string",
"format": "date-time",
"example": "2026-06-02T14:30:00Z"
},
"lastUpdateDateTime": {
"type": "string",
"format": "date-time",
"example": "2026-06-02T15:00:00Z"
}
}
}