> For the complete documentation index, see [llms.txt](https://docs.gridmate.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.gridmate.io/troubleshooting/config-samples/record-layout.md).

# Layout - basic setup

```coffeescript
{
   "sections": [
      {
         "name": "accountInformation",
         "label": "Account Information",
         "active": true,
         "cols": 3,
         "rows": [
            [
               {
                  "apiName": "Name"
               },
               {
                  "apiName": "AccountSource"
               },
               {
                  "apiName": "Industry"
               }
            ],
            [
               {
                  "apiName": "Phone"
               },
               {
                  "apiName": "Fax"
               },
               {
                  "apiName": "Website"
               }
            ]
         ]
      }
   ]
}
```
