Salesforce · Schema

TransactionJournal

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
activityDate string
journalSubType string
journalType string
loyaltyProgram string
loyaltyProgramMember string
referredMember ['string', 'null']
status string
transactionJournalId string
View JSON Schema on GitHub

JSON Schema

salesforce-transaction-journal-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "activityDate": {
      "type": "string",
      "example": "example_value"
    },
    "journalSubType": {
      "type": "string",
      "example": "example_value"
    },
    "journalType": {
      "type": "string",
      "example": "example_value"
    },
    "loyaltyProgram": {
      "type": "string",
      "example": "example_value"
    },
    "loyaltyProgramMember": {
      "type": "string",
      "example": "example_value"
    },
    "referredMember": {
      "type": "['string', 'null']",
      "example": "example_value"
    },
    "status": {
      "type": "string",
      "example": "example_value"
    },
    "transactionJournalId": {
      "type": "string",
      "example": "500123"
    }
  },
  "required": [
    "activityDate",
    "journalSubType",
    "journalType",
    "loyaltyProgram",
    "loyaltyProgramMember",
    "referredMember",
    "status",
    "transactionJournalId"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "TransactionJournal"
}