Skip to content

Columns Component

Travis Tidwell edited this page Jul 3, 2017 · 5 revisions

JSON Schema

The JSON Schema definition for this component is defined as follows.

Core Properties

This component uses the core properties defined within the Common Parameters section.

Specific Properties

Property Description Value Required Default
columns The columns configuration and components. This is an array of Column Configurations defined below. true see below

Column Configuration

The columns definition is defined as an array of column configurations. For example, lets say you have 3 different columns, your schema may look like the following.

{
  "type": "columns",
  "components": [
    {
      ... COLUMN CONFIGURATION ...
    },
    {
      ... COLUMN CONFIGURATION ...
    },
    {
      ... COLUMN CONFIGURATION ...
    }
  ]
}
Clone this wiki locally