Salesforce · Schema

AssociatedContact

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

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

JSON Schema

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