Salesforce · JSON Structure

Salesforce Associated Contact Details Structure

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

AssociatedContactDetails 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

firstName lastName email allowDuplicateRecords

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

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "AssociatedContactDetails",
  "properties": {
    "firstName": {
      "type": "string"
    },
    "lastName": {
      "type": "string"
    },
    "email": {
      "type": "string"
    },
    "allowDuplicateRecords": {
      "type": "string"
    }
  },
  "required": [
    "firstName",
    "lastName",
    "email",
    "allowDuplicateRecords"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}