Salesforce · Schema
Section1
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales
Properties
| Name | Type | Description |
|---|---|---|
| collapsible | boolean | |
| columns | integer | |
| heading | string | |
| id | string | |
| layoutRows | array | |
| rows | integer | |
| useHeading | boolean |
JSON Schema
{
"type": "object",
"properties": {
"collapsible": {
"type": "boolean",
"example": true
},
"columns": {
"type": "integer",
"example": 10
},
"heading": {
"type": "string",
"example": "example_value"
},
"id": {
"type": "string",
"example": "abc123"
},
"layoutRows": {
"type": "array",
"description": "",
"example": [],
"items": {
"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"
}
},
"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"
]
}
},
"rows": {
"type": "integer",
"example": 10
},
"useHeading": {
"type": "boolean",
"example": true
}
},
"required": [
"collapsible",
"columns",
"heading",
"id",
"layoutRows",
"rows",
"useHeading"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Section1"
}