Skip to content

Commit db303a2

Browse files
authored
Update get-started-create-site-design.md
added note on site script action limit (to 30 actions).
1 parent 2dbb080 commit db303a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/declarative-customization/get-started-create-site-design.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Each action is specified by the "verb" value in the JSON script. Also, actions c
2323
1. Follow the instructions at [Connect to SharePoint Online PowerShell](https://technet.microsoft.com/en-us/library/fp161372.aspx) to connect to your SharePoint tenant.
2424
1. Create and assign the JSON that describes the new script to a variable as shown in the PowerShell code below.
2525

26-
```powershell
26+
```powershell
2727
$site_script = @'
2828
{
2929
"$schema": "schema.json",
@@ -73,7 +73,7 @@ $site_script = @'
7373
'@
7474
```
7575

76-
The previous script will create a new SharePoint list named Customer Tracking. It will set the description, and also add four fields to the list.
76+
The previous script will create a new SharePoint list named Customer Tracking. It will set the description, and also add four fields to the list. Note that each of these are considered an action. Site scripts are limited to 30 cumulative actions (across one or more scripts that may be called in a site design).
7777

7878
## Add the site script
7979

0 commit comments

Comments
 (0)