Salesforce · JSON Structure

Salesforce Corporate Member Enrollments Structure

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

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

Properties

accountId loyaltyProgramMemberId loyaltyProgramName membershipNumber transactionJournals

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

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "CorporateMemberEnrollments",
  "properties": {
    "accountId": {
      "type": "string"
    },
    "loyaltyProgramMemberId": {
      "type": "string"
    },
    "loyaltyProgramName": {
      "type": "string"
    },
    "membershipNumber": {
      "type": "string"
    },
    "transactionJournals": {
      "type": "array",
      "description": "",
      "items": {
        "type": "object",
        "properties": {
          "activityDate": {
            "type": "string"
          },
          "journalSubType": {
            "type": "string"
          },
          "journalType": {
            "type": "string"
          },
          "loyaltyProgram": {
            "type": "string"
          },
          "loyaltyProgramMember": {
            "type": "string"
          },
          "referredMember": {
            "type": "['string', 'null']"
          },
          "status": {
            "type": "string"
          },
          "transactionJournalId": {
            "type": "string"
          }
        },
        "required": [
          "activityDate",
          "journalSubType",
          "journalType",
          "loyaltyProgram",
          "loyaltyProgramMember",
          "referredMember",
          "status",
          "transactionJournalId"
        ]
      }
    }
  },
  "required": [
    "accountId",
    "loyaltyProgramMemberId",
    "loyaltyProgramName",
    "membershipNumber",
    "transactionJournals"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}