Salesforce · Schema

AccountCustomField

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
fieldName string
fieldValue string
View JSON Schema on GitHub

JSON Schema

salesforce-account-custom-field-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "fieldName": {
      "type": "string",
      "example": "example_value"
    },
    "fieldValue": {
      "type": "string",
      "example": "example_value"
    }
  },
  "required": [
    "fieldName",
    "fieldValue"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "AccountCustomField"
}