Salesforce · Schema
CartDetail
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales
Properties
| Name | Type | Description |
|---|---|---|
| activityStartDate | string | |
| contactId | string | |
| transactionAmount | integer | |
| currencyISOCode | string | |
| cartLineDetails | array |
JSON Schema
{
"type": "object",
"properties": {
"activityStartDate": {
"type": "string",
"example": "example_value"
},
"contactId": {
"type": "string",
"example": "500123"
},
"transactionAmount": {
"type": "integer",
"example": 10
},
"currencyISOCode": {
"type": "string",
"example": "example_value"
},
"cartLineDetails": {
"type": "array",
"description": "",
"example": [],
"items": {
"type": "object",
"properties": {
"cartLineProductId": {
"type": "string",
"example": "500123"
},
"cartLineItemQuantity": {
"type": "integer",
"example": 10
},
"cartLineItemAmount": {
"type": "integer",
"example": 10
},
"cartLineProductCatalogId": {
"type": "string",
"example": "500123"
}
},
"required": [
"cartLineProductId",
"cartLineItemQuantity",
"cartLineItemAmount",
"cartLineProductCatalogId"
]
}
}
},
"required": [
"activityStartDate",
"contactId",
"transactionAmount",
"currencyISOCode",
"cartLineDetails"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "CartDetail"
}