Salesforce · Schema

LayoutRow

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
layoutItems array
View JSON Schema on GitHub

JSON Schema

salesforce-layout-row-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "layoutItems": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "object",
        "properties": {
          "editableForNew": {
            "type": "boolean",
            "example": true
          },
          "editableForUpdate": {
            "type": "boolean",
            "example": true
          },
          "label": {
            "type": "string",
            "example": "Example Title"
          },
          "layoutComponents": {
            "type": "array",
            "description": "",
            "example": [],
            "items": {
              "type": "object",
              "properties": {
                "apiName": {
                  "type": "['string', 'null']",
                  "example": "example_value"
                },
                "componentType": {
                  "type": "string",
                  "example": "example_value"
                },
                "label": {
                  "type": "string",
                  "example": "Example Title"
                }
              },
              "required": [
                "apiName",
                "componentType",
                "label"
              ]
            }
          },
          "lookupIdApiName": {
            "type": "['string', 'null']",
            "example": "example_value"
          },
          "required": {
            "type": "boolean",
            "example": true
          },
          "sortable": {
            "type": "boolean",
            "example": true
          }
        },
        "required": [
          "editableForNew",
          "editableForUpdate",
          "label",
          "layoutComponents",
          "lookupIdApiName",
          "required",
          "sortable"
        ]
      }
    }
  },
  "required": [
    "layoutItems"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "LayoutRow"
}