Product object
E-commerce products with pricing, inventory, and images
| Field | Type | Description |
|---|---|---|
id | integer (int32) | Unique product identifier |
categoryId | integer (int32) | Parent category ID |
namerequired | string | Product name |
description | string | Product description |
pricerequired | number (double) | Current price in USD |
originalPrice | number (double) | Original price before discount (null if none) |
currency | string | ISO 4217 currency code |
stock | integer (int32) | Available inventory count |
sku | string | Stock keeping unit |
rating | number (double) | Average customer rating |
reviewCount | integer (int32) | Total reviews |
image | string (uri) | Primary image URL |
images | string[] | Image gallery URLs |
weight | number (double) | Weight in kg |
dimensions | object | Dimensions in cm |
isAvailable | boolean | Can be purchased |
isFeatured | boolean | Editorially featured |
tags | string[] | Search and filter tags |
createdAt | string (date-time) | |
updatedAt | string (date-time) |