Salesforce · JSON Structure

Salesforce Customdata Structure

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

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

Properties

mobilePhone streetAddress city state zip privacyPolicy

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

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "Customdata",
  "properties": {
    "mobilePhone": {
      "type": "string"
    },
    "streetAddress": {
      "type": "string"
    },
    "city": {
      "type": "string"
    },
    "state": {
      "type": "string"
    },
    "zip": {
      "type": "string"
    },
    "privacyPolicy": {
      "type": "boolean"
    }
  },
  "required": [
    "mobilePhone",
    "streetAddress",
    "city",
    "state",
    "zip",
    "privacyPolicy"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}