Salesforce · Schema

ColumnWidths

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
Site integer
Type integer
BillingCountry integer
Owner.Alias integer
Phone integer
Name integer
View JSON Schema on GitHub

JSON Schema

salesforce-column-widths-schema.json Raw ↑
{
  "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"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ColumnWidths"
}