Salesforce · Schema

Update

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
giftTransactionId string
transactionStatus string
processorReference string
gatewayReference string
lastGatewayResponseCode string
lastGatewayErrorMessage string
lastGatewayProcessedDateTime string
processorTransactionFee number
gatewayTransactionFee number
donorCoverAmount number
View JSON Schema on GitHub

JSON Schema

salesforce-update-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "giftTransactionId": {
      "type": "string",
      "example": "500123"
    },
    "transactionStatus": {
      "type": "string",
      "example": "example_value"
    },
    "processorReference": {
      "type": "string",
      "example": "example_value"
    },
    "gatewayReference": {
      "type": "string",
      "example": "example_value"
    },
    "lastGatewayResponseCode": {
      "type": "string",
      "example": "example_value"
    },
    "lastGatewayErrorMessage": {
      "type": "string",
      "example": "example_value"
    },
    "lastGatewayProcessedDateTime": {
      "type": "string",
      "example": "2026-01-15T10:30:00Z"
    },
    "processorTransactionFee": {
      "type": "number",
      "example": 42.5
    },
    "gatewayTransactionFee": {
      "type": "number",
      "example": 42.5
    },
    "donorCoverAmount": {
      "type": "number",
      "example": 42.5
    }
  },
  "required": [
    "giftTransactionId",
    "transactionStatus",
    "processorReference",
    "gatewayReference",
    "lastGatewayResponseCode",
    "lastGatewayErrorMessage",
    "lastGatewayProcessedDateTime",
    "processorTransactionFee",
    "gatewayTransactionFee",
    "donorCoverAmount"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Update"
}