LayoutSection

A section within a layout

CMSCommunitiesCRMCustomer PortalDigital ExperienceExperience CloudPartner Portal

Properties

Name Type Description
collapsible boolean
columns integer
heading string
id string
layoutRows array
rows integer
useHeading boolean
View JSON Schema on GitHub

JSON Schema

salesforce-experience-cloud-layoutsection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LayoutSection",
  "title": "LayoutSection",
  "type": "object",
  "description": "A section within a layout",
  "properties": {
    "collapsible": {
      "type": "boolean"
    },
    "columns": {
      "type": "integer"
    },
    "heading": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "layoutRows": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "layoutItems": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/LayoutItem"
            }
          }
        }
      }
    },
    "rows": {
      "type": "integer"
    },
    "useHeading": {
      "type": "boolean"
    }
  }
}