Salesforce · JSON Structure

Salesforce Record16 Structure

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

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

Properties

referenceId record

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

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "Record16",
  "properties": {
    "referenceId": {
      "type": "string"
    },
    "record": {
      "type": "object",
      "properties": {
        "attributes": {
          "type": "object",
          "properties": {
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ]
        },
        "CurrencyIsoCode": {
          "type": "string"
        },
        "SalesTransactionShapeId": {
          "type": "string"
        },
        "StartDate": {
          "type": "string"
        },
        "ProductId": {
          "type": "string"
        },
        "ProductSellingModelId": {
          "type": "string"
        },
        "Quantity": {
          "type": "number"
        },
        "PricingTransactionType": {
          "type": "string"
        },
        "EndDate": {
          "type": "string"
        }
      },
      "required": [
        "attributes",
        "CurrencyIsoCode"
      ]
    }
  },
  "required": [
    "referenceId",
    "record"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}