Salesforce · JSON Structure

Salesforce User Preferences Structure

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

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

Properties

columnWidths columnWrap

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

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "UserPreferences",
  "properties": {
    "columnWidths": {
      "type": "object",
      "properties": {
        "Site": {
          "type": "integer"
        },
        "Type": {
          "type": "integer"
        },
        "BillingCountry": {
          "type": "integer"
        },
        "Owner.Alias": {
          "type": "integer"
        },
        "Phone": {
          "type": "integer"
        },
        "Name": {
          "type": "integer"
        }
      },
      "required": [
        "Site",
        "Type",
        "BillingCountry",
        "Owner.Alias",
        "Phone",
        "Name"
      ]
    },
    "columnWrap": {
      "type": "object",
      "properties": {
        "Site": {
          "type": "boolean"
        },
        "Type": {
          "type": "boolean"
        },
        "BillingCountry": {
          "type": "boolean"
        },
        "Owner.Alias": {
          "type": "boolean"
        },
        "Phone": {
          "type": "boolean"
        },
        "Name": {
          "type": "boolean"
        }
      },
      "required": [
        "Site",
        "Type",
        "BillingCountry",
        "Owner.Alias",
        "Phone",
        "Name"
      ]
    }
  },
  "required": [
    "columnWidths",
    "columnWrap"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}