Salesforce · Schema

AddanitemtoacartRequest

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
productId string
quantity integer
type string
View JSON Schema on GitHub

JSON Schema

salesforce-addanitemtoacart-request-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "productId": {
      "type": "string",
      "example": "500123"
    },
    "quantity": {
      "type": "integer",
      "example": 10
    },
    "type": {
      "type": "string",
      "example": "example_value"
    }
  },
  "required": [
    "productId",
    "quantity",
    "type"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "AddanitemtoacartRequest"
}