brevo · Schema
Product
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier of the product. |
| name | string | Name of the product. |
| url | string | URL of the product page. |
| imageUrl | string | URL of the product image. |
| sku | string | Stock keeping unit identifier. |
| price | number | Price of the product. |
| categories | array | IDs of categories the product belongs to. |
| metaInfo | object | Additional metadata for the product as key-value pairs. |
| createdAt | string | UTC date-time when the product was created. |
| modifiedAt | string | UTC date-time when the product was last modified. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Product",
"title": "Product",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier of the product."
},
"name": {
"type": "string",
"description": "Name of the product."
},
"url": {
"type": "string",
"format": "uri",
"description": "URL of the product page."
},
"imageUrl": {
"type": "string",
"format": "uri",
"description": "URL of the product image."
},
"sku": {
"type": "string",
"description": "Stock keeping unit identifier."
},
"price": {
"type": "number",
"format": "float",
"description": "Price of the product."
},
"categories": {
"type": "array",
"description": "IDs of categories the product belongs to.",
"items": {
"type": "string"
}
},
"metaInfo": {
"type": "object",
"description": "Additional metadata for the product as key-value pairs.",
"additionalProperties": true
},
"createdAt": {
"type": "string",
"format": "date-time",
"description": "UTC date-time when the product was created."
},
"modifiedAt": {
"type": "string",
"format": "date-time",
"description": "UTC date-time when the product was last modified."
}
}
}