Skip to content

Commit d487286

Browse files
Merge pull request SharePoint#8475 from sparkitect/patch-2
Update to sample Site Script code
2 parents c3cb36e + 3560025 commit d487286

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

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

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Get started creating SharePoint site templates and site scripts
33
description: Create site templates to provide reusable lists, themes, layouts, pages, or custom actions so that your users can quickly build new SharePoint sites with the features they need.
4-
ms.date: 06/28/2022
4+
ms.date: 09/30/2022
55
ms.localizationpriority: high
66
---
77

@@ -24,7 +24,7 @@ Each action is specified by the "verb" value in the JSON script. Also, actions c
2424
```powershell
2525
$site_script = '
2626
{
27-
"$schema": "schema.json",
27+
"$schema": "https://developer.microsoft.com/json-schemas/sp/site-design-script-actions.schema.json",
2828
"actions": [
2929
{
3030
"verb": "createSPList",
@@ -64,9 +64,7 @@ Each action is specified by the "verb" value in the JSON script. Also, actions c
6464
}
6565
]
6666
}
67-
],
68-
"bindata": { },
69-
"version": 1
67+
]
7068
}
7169
'
7270
```

0 commit comments

Comments
 (0)