Salesforce · JSON Structure

Salesforce Cart Line Detail Structure

Type: object Properties: 4 Required: 4
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

CartLineDetail is a JSON Structure definition published by Salesforce, describing 4 properties, of which 4 are required. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

cartLineProductId cartLineItemQuantity cartLineItemAmount cartLineProductCatalogId

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "CartLineDetail",
  "properties": {
    "cartLineProductId": {
      "type": "string"
    },
    "cartLineItemQuantity": {
      "type": "integer"
    },
    "cartLineItemAmount": {
      "type": "integer"
    },
    "cartLineProductCatalogId": {
      "type": "string"
    }
  },
  "required": [
    "cartLineProductId",
    "cartLineItemQuantity",
    "cartLineItemAmount",
    "cartLineProductCatalogId"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}