Salesforce · Schema

RequestProductInformationNoBundlesRequest

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
productContexts array
fields array
retrievalType string
View JSON Schema on GitHub

JSON Schema

salesforce-request-product-information-no-bundles-request-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "productContexts": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "object",
        "properties": {
          "product2Id": {
            "type": "string",
            "example": "500123"
          },
          "productSellingModelId": {
            "type": "string",
            "example": "500123"
          }
        },
        "required": [
          "product2Id"
        ]
      }
    },
    "fields": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "string"
      }
    },
    "retrievalType": {
      "type": "string",
      "example": "example_value"
    }
  },
  "required": [
    "productContexts",
    "fields",
    "retrievalType"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "RequestProductInformationNoBundlesRequest"
}