Salesforce · Schema

AssociatedContactDetails

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
firstName string
lastName string
email string
allowDuplicateRecords string
View JSON Schema on GitHub

JSON Schema

salesforce-associated-contact-details-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "firstName": {
      "type": "string",
      "example": "example_value"
    },
    "lastName": {
      "type": "string",
      "example": "example_value"
    },
    "email": {
      "type": "string",
      "example": "user@example.com"
    },
    "allowDuplicateRecords": {
      "type": "string",
      "example": "example_value"
    }
  },
  "required": [
    "firstName",
    "lastName",
    "email",
    "allowDuplicateRecords"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "AssociatedContactDetails"
}