{ "type": "object", "name": "CartDetail", "properties": { "activityStartDate": { "type": "string" }, "contactId": { "type": "string" }, "transactionAmount": { "type": "integer" }, "currencyISOCode": { "type": "string" }, "cartLineDetails": { "type": "array", "description": "", "items": { "type": "object", "properties": { "cartLineProductId": { "type": "string" }, "cartLineItemQuantity": { "type": "integer" }, "cartLineItemAmount": { "type": "integer" }, "cartLineProductCatalogId": { "type": "string" } }, "required": [ "cartLineProductId", "cartLineItemQuantity", "cartLineItemAmount", "cartLineProductCatalogId" ] } } }, "required": [ "activityStartDate", "contactId", "transactionAmount", "currencyISOCode", "cartLineDetails" ], "$schema": "https://json-structure.org/draft/2020-12/schema" }