Salesforce · JSON Structure

Salesforce Transaction History Structure

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

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

Properties

message status totalCount transactionJournals

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

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "TransactionHistory",
  "properties": {
    "message": {
      "type": "['string', 'null']"
    },
    "status": {
      "type": "boolean"
    },
    "totalCount": {
      "type": "integer"
    },
    "transactionJournals": {
      "type": "array",
      "description": "",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "message",
    "status",
    "totalCount",
    "transactionJournals"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}