Salesforce · Schema

Customdata

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
mobilePhone string
streetAddress string
city string
state string
zip string
privacyPolicy boolean
View JSON Schema on GitHub

JSON Schema

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