Salesforce · Schema

AssociatedAccountDetails

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
name string
phone string
website string
allowDuplicateRecords string
View JSON Schema on GitHub

JSON Schema

salesforce-associated-account-details-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "Example Title"
    },
    "phone": {
      "type": "string",
      "example": "example_value"
    },
    "website": {
      "type": "string",
      "example": "example_value"
    },
    "allowDuplicateRecords": {
      "type": "string",
      "example": "example_value"
    }
  },
  "required": [
    "name",
    "phone",
    "website",
    "allowDuplicateRecords"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "AssociatedAccountDetails"
}