gridstack_save
Save dashboard grid layouts to JSON format with options to include widget content and grid configuration settings for persistence and restoration.
Instructions
Save grid layout to JSON
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| saveContent | No | Include widget content in save | |
| saveGridOpt | No | Include grid options in save |
Input Schema (JSON Schema)
{
"properties": {
"saveContent": {
"default": true,
"description": "Include widget content in save",
"type": "boolean"
},
"saveGridOpt": {
"default": false,
"description": "Include grid options in save",
"type": "boolean"
}
},
"type": "object"
}