Salesforce · Schema

TransactionLedgerSummary

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
message ['string', 'null']
status boolean
transactionJournalCount integer
transactionJournals array
View JSON Schema on GitHub

JSON Schema

salesforce-transaction-ledger-summary-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "message": {
      "type": "['string', 'null']",
      "example": "example_value"
    },
    "status": {
      "type": "boolean",
      "example": true
    },
    "transactionJournalCount": {
      "type": "integer",
      "example": 42
    },
    "transactionJournals": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "object",
        "properties": {
          "activityDate": {
            "type": "string",
            "example": "example_value"
          },
          "additionalTransactionJournalAttributes": {
            "type": "array",
            "description": "",
            "example": [],
            "items": {
              "type": "string"
            }
          },
          "journalSubTypeName": {
            "type": "string",
            "example": "example_value"
          },
          "journalTypeName": {
            "type": "string",
            "example": "example_value"
          },
          "pointsChange": {
            "type": "array",
            "description": "",
            "example": [],
            "items": {
              "type": "string"
            }
          },
          "transactionJournalId": {
            "type": "string",
            "example": "500123"
          },
          "transactionJournalNumber": {
            "type": "string",
            "example": "example_value"
          }
        },
        "required": [
          "activityDate",
          "additionalTransactionJournalAttributes",
          "journalSubTypeName",
          "journalTypeName",
          "pointsChange",
          "transactionJournalId",
          "transactionJournalNumber"
        ]
      }
    }
  },
  "required": [
    "message",
    "status",
    "transactionJournalCount",
    "transactionJournals"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "TransactionLedgerSummary"
}