Salesforce · Schema

UserPreferences

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
columnWidths object
columnWrap object
View JSON Schema on GitHub

JSON Schema

salesforce-user-preferences-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "columnWidths": {
      "type": "object",
      "properties": {
        "Site": {
          "type": "integer",
          "example": 10
        },
        "Type": {
          "type": "integer",
          "example": 10
        },
        "BillingCountry": {
          "type": "integer",
          "example": 42
        },
        "Owner.Alias": {
          "type": "integer",
          "example": 10
        },
        "Phone": {
          "type": "integer",
          "example": 10
        },
        "Name": {
          "type": "integer",
          "example": "Example Title"
        }
      },
      "required": [
        "Site",
        "Type",
        "BillingCountry",
        "Owner.Alias",
        "Phone",
        "Name"
      ]
    },
    "columnWrap": {
      "type": "object",
      "properties": {
        "Site": {
          "type": "boolean",
          "example": true
        },
        "Type": {
          "type": "boolean",
          "example": true
        },
        "BillingCountry": {
          "type": "boolean",
          "example": 42
        },
        "Owner.Alias": {
          "type": "boolean",
          "example": true
        },
        "Phone": {
          "type": "boolean",
          "example": true
        },
        "Name": {
          "type": "boolean",
          "example": "Example Title"
        }
      },
      "required": [
        "Site",
        "Type",
        "BillingCountry",
        "Owner.Alias",
        "Phone",
        "Name"
      ]
    }
  },
  "required": [
    "columnWidths",
    "columnWrap"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "UserPreferences"
}