Properties
| Name | Type | Description |
|---|---|---|
| ProductId | string | Unique identifier of the [Product](https://mews-systems.gitbook.io/connector-api/operations/products/#product). |
| AgeCategoryId | string | Unique identifier of the [Age Category](https://mews-systems.gitbook.io/connector-api/operations/agecategories/#age-category). |
| ProductType | object | Type of Product, e.g. whether allowance or product. Product Allowance |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/OrderItemProductData",
"title": "Product data",
"required": [
"ProductId"
],
"type": "object",
"properties": {
"ProductId": {
"type": "string",
"description": "Unique identifier of the [Product](https://mews-systems.gitbook.io/connector-api/operations/products/#product).",
"format": "uuid"
},
"AgeCategoryId": {
"type": "string",
"description": "Unique identifier of the [Age Category](https://mews-systems.gitbook.io/connector-api/operations/agecategories/#age-category).",
"format": "uuid",
"nullable": true
},
"ProductType": {
"allOf": [
{
"$ref": "#/components/schemas/ProductTypeEnum"
}
],
"description": "Type of Product, e.g. whether allowance or product.\n\nProduct\n\nAllowance",
"nullable": true
}
},
"additionalProperties": false,
"x-schema-id": "OrderItemProductData"
}