Salesforce · JSON Structure

Salesforce Transaction Journals Execution Request Structure

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

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

Properties

transactionJournals

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

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "TransactionJournalsExecutionRequest",
  "properties": {
    "transactionJournals": {
      "type": "array",
      "description": "",
      "items": {
        "type": "object",
        "properties": {
          "ActivityDate": {
            "type": "string"
          },
          "JournalTypeId": {
            "type": "string"
          },
          "LoyaltyProgramId": {
            "type": "string"
          },
          "MemberId": {
            "type": "string"
          },
          "Status": {
            "type": "string"
          },
          "appliedPromotions": {
            "type": "array",
            "description": "",
            "items": {
              "type": "object",
              "properties": {
                "promotionId": {
                  "type": "string"
                },
                "rewards": {
                  "type": "array",
                  "description": "",
                  "items": {
                    "type": "object"
                  }
                }
              },
              "required": [
                "promotionId",
                "rewards"
              ]
            }
          }
        },
        "required": [
          "ActivityDate",
          "JournalTypeId",
          "LoyaltyProgramId",
          "MemberId",
          "Status",
          "appliedPromotions"
        ]
      }
    }
  },
  "required": [
    "transactionJournals"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}