Salesforce · Schema

DisplayColumn

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
fieldApiName string
inlineEditAttributes object
label string
lookupId ['string', 'null']
searchable boolean
sortable boolean
View JSON Schema on GitHub

JSON Schema

salesforce-display-column-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "fieldApiName": {
      "type": "string",
      "example": "example_value"
    },
    "inlineEditAttributes": {
      "type": "object",
      "example": "example_value"
    },
    "label": {
      "type": "string",
      "example": "Example Title"
    },
    "lookupId": {
      "type": "['string', 'null']",
      "example": "500123"
    },
    "searchable": {
      "type": "boolean",
      "example": true
    },
    "sortable": {
      "type": "boolean",
      "example": true
    }
  },
  "required": [
    "fieldApiName",
    "inlineEditAttributes",
    "label",
    "lookupId",
    "searchable",
    "sortable"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "DisplayColumn"
}