-
Notifications
You must be signed in to change notification settings - Fork 220
/
ProvisioningSchema-2020-02.xsd
9848 lines (8951 loc) · 396 KB
/
ProvisioningSchema-2020-02.xsd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<xsd:schema targetNamespace="http://schemas.dev.office.com/PnP/2020/02/ProvisioningSchema"
elementFormDefault="qualified"
xmlns="http://schemas.dev.office.com/PnP/2020/02/ProvisioningSchema"
xmlns:pnp="http://schemas.dev.office.com/PnP/2020/02/ProvisioningSchema"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<!-- The main element -->
<xsd:element name="Provisioning" type="pnp:Provisioning">
<xsd:annotation>
<xsd:documentation xml:lang="en">
This is the base element of a Provisioning File.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<!-- The main element for external references -->
<xsd:element name="ProvisioningTemplate" type="pnp:ProvisioningTemplate">
<xsd:annotation>
<xsd:documentation xml:lang="en">
This is the base element of a referenced SharePoint Provisioning Template File.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:complexType name="Provisioning">
<xsd:sequence>
<xsd:element name="Preferences" type="pnp:Preferences" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>
Section of preferences for the current provisioning definition.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Localizations" type="pnp:Localizations" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:documentation>
An optional list of localizations files to include.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Tenant" type="pnp:Tenant" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201801</xsd:appinfo>
<xsd:documentation xml:lang="en">
Entry point to manage tenant-wide settings.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:sequence minOccurs="1" maxOccurs="unbounded">
<xsd:element name="Templates" type="pnp:Templates" minOccurs="0">
<xsd:annotation>
<xsd:documentation>
An optional section made of provisioning templates.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Sequence" type="pnp:Sequence" minOccurs="0">
<xsd:annotation>
<xsd:documentation>
An optional section made of provisioning sequences, which can include Sites, Site Collections, Taxonomies, Provisioning Templates, etc.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
<xsd:element name="Teams" type="pnp:Teams" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201903</xsd:appinfo>
<xsd:documentation xml:lang="en">
Entry point to manage Microsoft Teams provisioning.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="AzureActiveDirectory" type="pnp:AzureActiveDirectory" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201903</xsd:appinfo>
<xsd:documentation xml:lang="en">
Entry point to manage Microsoft Azure Active Directory provisioning.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Drive" type="pnp:Drive" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201909</xsd:appinfo>
<xsd:documentation xml:lang="en">
Entry point to manage OneDrive for Business provisioning.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="ProvisioningWebhooks" type="pnp:ProvisioningWebhooks" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201909</xsd:appinfo>
<xsd:documentation xml:lang="en">
Entry point to manage global provisioning webhooks.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="Version" type="xsd:decimal" use="optional">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The Version of the Provisioning Template, optional attribute.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Author" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The Author of the Provisioning Template, optional attribute.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Generator" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Name of the tool generating this Provisioning File, optional attribute.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="ImagePreviewUrl" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The Image Preview Url of the Provisioning File, optional attribute.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="DisplayName" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The Display Name of the Provisioning File, optional attribute.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Description" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The Description of the Provisioning file, optional attribute.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<xsd:complexType name="Preferences" >
<xsd:annotation>
<xsd:documentation>
General settings for a Provisioning file.
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="Parameters" minOccurs="0">
<xsd:annotation>
<xsd:documentation>
Definition of parameters that can be used as replacement within templates and provisioning objects.
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Parameter" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>
A Parameter that can be used as a replacement within templates and provisioning objects.
</xsd:documentation>
</xsd:annotation>
<xsd:complexType mixed="true">
<xsd:attribute name="Key" use="required" type="xsd:string">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The name of the Parameter
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Required" use="optional" type="xsd:boolean" default="false">
<xsd:annotation>
<xsd:documentation>
When set to true then a value must be provided in the XML or provided at runtime.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="Version" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Provisioning File Version number, optional attribute.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Author" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Provisioning File Author name, optional attribute.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Generator" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:documentation xml:lang="en">
Name of the tool generating this Provisioning File, optional attribute.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<xsd:complexType name="Localizations" >
<xsd:annotation>
<xsd:documentation>
An optional list of localizations files to include.
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="Localization" minOccurs="1" maxOccurs="unbounded">
<xsd:annotation>
<xsd:documentation>
A Localization element
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:attribute name="LCID" type="xsd:int" use="required">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The Locale ID of a Localization Language, required attribute.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Name" type="xsd:string" use="required">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The Name of a Localization Language, required attribute.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="ResourceFile" type="xsd:string" use="required">
<xsd:annotation>
<xsd:documentation xml:lang="en">
The path to the .RESX (XML) resource file for the current Localization, required attribute.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="Tenant">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201801</xsd:appinfo>
<xsd:documentation xml:lang="en">
Element to manage tenant-wide settings.
</xsd:documentation>
</xsd:annotation>
<xsd:all>
<xsd:element name="AppCatalog" type="pnp:AppCatalog" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201801</xsd:appinfo>
<xsd:documentation xml:lang="en">
Entry point for the tenant-wide AppCatalog, optional element.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="WebApiPermissions" type="pnp:WebApiPermissions" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
Entry point for the tenant-wide Web API permissions, optional element.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="ContentDeliveryNetwork" type="pnp:ContentDeliveryNetwork" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201801</xsd:appinfo>
<xsd:documentation xml:lang="en">
Entry point for the tenant-wide Content Delivery Network, optional element.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="SiteDesigns" type="pnp:SiteDesigns" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
Entry point for the tenant-wide Site Designs, optional element.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="SiteScripts" type="pnp:SiteScripts" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
Entry point for the tenant-wide Site Scripts, optional element.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="StorageEntities" type="pnp:StorageEntities" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
Entry point for the tenant-wide properties (Storage Entities), optional element.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Themes" type="pnp:Themes" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201807</xsd:appinfo>
<xsd:documentation xml:lang="en">
Entry point for the tenant-wide Themes, optional element.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="SPUsersProfiles" type="pnp:SPUsersProfiles" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201909</xsd:appinfo>
<xsd:documentation xml:lang="en">
Entry point for the User Profile properties, optional element.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Office365GroupLifecyclePolicies" type="pnp:Office365GroupLifecyclePolicies" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201909</xsd:appinfo>
<xsd:documentation xml:lang="en">
Defines a collection of Group Lifecycle Policies, optional element.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="Office365GroupsSettings" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201909</xsd:appinfo>
<xsd:documentation xml:lang="en">
Defines the configuration properties for Unified Groups at tenant level, optional element.
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Property" type="pnp:StringDictionaryItem" minOccurs="1" maxOccurs="unbounded">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201909</xsd:appinfo>
<xsd:documentation xml:lang="en">
Defines a custom property and value for the Unified Group Settings
</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="SharingSettings" type="pnp:SharingSettings" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:appinfo>Added with schema version 202002</xsd:appinfo>
<xsd:documentation xml:lang="en">
Defines the tenant-level sharing settings, optional element.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:all>
</xsd:complexType>
<xsd:complexType name="WebApiPermissions">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
Collection of tenant-wide Web API permissions.
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="WebApiPermission" minOccurs="1" maxOccurs="unbounded">
<xsd:complexType>
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
A single tenant-wide Web API permission.
</xsd:documentation>
</xsd:annotation>
<xsd:attribute name="Resource" type="xsd:string" use="required">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
The target resource for a Web API permission, required attribute.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Scope" type="xsd:string" use="required">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
The target resource for a Web API permission, required attribute.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="SiteDesigns">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
Collection of tenant-wide Site Designs
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="SiteDesign" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
Defines a single tenant-wide Site Design
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:all>
<xsd:element name="SiteScripts" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
A collection of Site Scripts references for the current Site Design
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:element name="SiteScriptRef" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
Reference to a Site Script to be used by the current Site Design
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:attribute name="ID" type="pnp:ReplaceableString" use="required">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
Reference to the ID of a Site Script to be used by the current Site Design, required attribute. It can be a token like {SiteScriptID:[Title]}.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="Grants" minOccurs="0" maxOccurs="1">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
A collection of Grants for the Site Design
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Grant" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
A single permission Grant for the current Site Design
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:attribute name="Principal" type="xsd:string" use="required">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
The Principal for the Grant for the Site Design, required attribute.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Right" use="required">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
The Right for the Grant for the Site Design, required attribute.
</xsd:documentation>
</xsd:annotation>
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="None">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
The Right "None" for the Grant for the Site Design, required attribute.
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="View">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
The Right "View" for the Grant for the Site Design, required attribute.
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:all>
<xsd:attribute name="Title" type="xsd:string" use="required">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
The Title of the Site Design
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Description" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
The Description of the Site Design, optional attribute.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="IsDefault" type="xsd:boolean" use="optional" default="false">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
Defines whether the Site Design is default or not, optional attribute (default: false).
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="WebTemplate" use="required">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
Defines whether the Site Design is default or not, required attribute.
</xsd:documentation>
</xsd:annotation>
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="TeamSite">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
Declares that the Site Design targets a "modern" Team Site
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="CommunicationSite">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
Declares that the Site Design targets a "modern" Communication Site
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
<xsd:attribute name="PreviewImageUrl" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
The URL of the preview image for the Site Design, optional attribute.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="PreviewImageAltText" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
The alternate text for the preview image of the Site Design, optional attribute.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Overwrite" type="xsd:boolean" use="optional" default="true">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
Defines whether the Site Design should be overwritten in case of existence, optional attribute (default:true).
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="SiteScripts">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
Collection of tenant-wide Site Scripts
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="SiteScript" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
Defines a single tenant-wide Site Script
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:attribute name="Title" type="xsd:string" use="required">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
The Title of the Site Script, required attribute.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Description" type="xsd:string" use="required">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
The Description of the Site Script, required attribute.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="JsonFilePath" type="xsd:string" use="required">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
The path of the JSON file defining the Site Script, required attribute.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Overwrite" type="xsd:boolean" use="optional" default="true">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
Defines whether the Site Script should be overwritten in case of existence, optional attribute (default:true).
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="StorageEntities">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
Collection of tenant-wide properties (Storage Entities)
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="StorageEntity" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
Defines a single tenant-wide property (Storage Entity)
</xsd:documentation>
</xsd:annotation>
<xsd:complexType>
<xsd:complexContent>
<xsd:extension base="pnp:StringDictionaryItem">
<xsd:attribute name="Comment" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
The Comment of the tenant-wide property, optional attribute.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Description" type="xsd:string" use="optional">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201805</xsd:appinfo>
<xsd:documentation xml:lang="en">
The Description of the tenant-wide property, optional attribute.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="Themes">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201807</xsd:appinfo>
<xsd:documentation xml:lang="en">
Collection of tenant-wide Themes
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="Theme" minOccurs="0" maxOccurs="unbounded" type="pnp:Theme">
<xsd:annotation>
<xsd:appinfo>Updated with schema version 201903</xsd:appinfo>
<xsd:documentation xml:lang="en">
Defines a single tenant-wide Theme
</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="Theme" mixed="true">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201903</xsd:appinfo>
<xsd:documentation xml:lang="en">
Defines a single Theme
</xsd:documentation>
</xsd:annotation>
<xsd:attribute name="Name" type="xsd:string" use="required">
<xsd:annotation>
<xsd:appinfo>Updated with schema version 201903</xsd:appinfo>
<xsd:documentation xml:lang="en">
Defines the name of the tenant-wide Theme
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="IsInverted" type="xsd:boolean" use="optional" default="false">
<xsd:annotation>
<xsd:appinfo>Updated with schema version 201903</xsd:appinfo>
<xsd:documentation xml:lang="en">
Defines the name of the tenant-wide Theme
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Overwrite" type="xsd:boolean" use="optional" default="false">
<xsd:annotation>
<xsd:appinfo>Updated with schema version 201909</xsd:appinfo>
<xsd:documentation xml:lang="en">
Defines whether to overwrite an already existing theme, optional attribute.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<xsd:complexType name="SPUsersProfiles">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201909</xsd:appinfo>
<xsd:documentation xml:lang="en">
Collection of UserProfile objects with custom properties
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="SPUserProfile" type="pnp:SPUserProfile" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:appinfo>Updated with schema version 201909</xsd:appinfo>
<xsd:documentation xml:lang="en">
Defines a single UserProfile
</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="SPUserProfile">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201909</xsd:appinfo>
<xsd:documentation xml:lang="en">
Defines a single UserProfile
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="Property" type="pnp:StringDictionaryItem" minOccurs="1" maxOccurs="unbounded">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201909</xsd:appinfo>
<xsd:documentation xml:lang="en">
Defines a custom property and value for a UserProfile
</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="TargetUser" type="pnp:ReplaceableString" use="optional">
<xsd:annotation>
<xsd:appinfo>Updated with schema version 201909</xsd:appinfo>
<xsd:documentation xml:lang="en">
Defines the target User
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="TargetGroup" type="pnp:ReplaceableString" use="optional">
<xsd:annotation>
<xsd:appinfo>Updated with schema version 201909</xsd:appinfo>
<xsd:documentation xml:lang="en">
Defines the target AAD Group
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<xsd:complexType name="Office365GroupLifecyclePolicies">
<xsd:annotation>
<xsd:appinfo>Added with schema version 201909</xsd:appinfo>
<xsd:documentation xml:lang="en">
Collection of Group Lifecycle Policies objects
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="Office365GroupLifecyclePolicy" type="pnp:Office365GroupLifecyclePolicy" minOccurs="0" maxOccurs="unbounded">
<xsd:annotation>
<xsd:appinfo>Updated with schema version 201909</xsd:appinfo>
<xsd:documentation xml:lang="en">
Defines a single Group Lifecycle Policy
</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="SharingSettings">
<xsd:annotation>
<xsd:appinfo>Added with schema version 202002</xsd:appinfo>
<xsd:documentation xml:lang="en">
Defines the tenant-level sharing settings
</xsd:documentation>
</xsd:annotation>
<xsd:attribute name="SharingCapability" use="required">
<xsd:annotation>
<xsd:appinfo>Added with schema version 202002</xsd:appinfo>
<xsd:documentation xml:lang="en">
Configures the sharing capability for the tenant, required attribute.
</xsd:documentation>
</xsd:annotation>
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="Disabled">
<xsd:annotation>
<xsd:appinfo>Added with schema version 202002</xsd:appinfo>
<xsd:documentation xml:lang="en">
Don't allow sharing outside your organization
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="ExternalUserSharingOnly">
<xsd:annotation>
<xsd:appinfo>Added with schema version 202002</xsd:appinfo>
<xsd:documentation xml:lang="en">
Allow external users who accept sharing invitations and sign in as authenticated users
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="ExternalUserAndGuestSharing">
<xsd:annotation>
<xsd:appinfo>Added with schema version 202002</xsd:appinfo>
<xsd:documentation xml:lang="en">
Allow sharing with all external users, and by using anonymous access links
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="ExistingExternalUserSharingOnly">
<xsd:annotation>
<xsd:appinfo>Added with schema version 202002</xsd:appinfo>
<xsd:documentation xml:lang="en">
Allow sharing only with the external users that already exist in your organization's directory
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
<xsd:attribute name="RequireAnonymousLinksExpireInDays" type="xsd:int" use="optional">
<xsd:annotation>
<xsd:appinfo>Added with schema version 202002</xsd:appinfo>
<xsd:documentation xml:lang="en">
Number of days before expiration of anonymous sharing links, optional attribute.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="FileAnonymousLinkType" type="pnp:AnonymousLinkType" use="optional">
<xsd:annotation>
<xsd:appinfo>Added with schema version 202002</xsd:appinfo>
<xsd:documentation xml:lang="en">
Defines the permissions for anonymous links for files, optional attribute.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="FolderAnonymousLinkType" type="pnp:AnonymousLinkType" use="optional">
<xsd:annotation>
<xsd:appinfo>Added with schema version 202002</xsd:appinfo>
<xsd:documentation xml:lang="en">
Defines the permissions for anonymous links for folders, optional attribute.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="DefaultSharingLinkType" use="optional">
<xsd:annotation>
<xsd:appinfo>Added with schema version 202002</xsd:appinfo>
<xsd:documentation xml:lang="en">
Defines the default type of a sharing link, optional attribute.
</xsd:documentation>
</xsd:annotation>
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="None">
<xsd:annotation>
<xsd:appinfo>Updated with schema version 202002</xsd:appinfo>
<xsd:documentation xml:lang="en">
None
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="Direct">
<xsd:annotation>
<xsd:appinfo>Updated with schema version 202002</xsd:appinfo>
<xsd:documentation xml:lang="en">
Direct - only people who have permission
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="Internal">
<xsd:annotation>
<xsd:appinfo>Updated with schema version 202002</xsd:appinfo>
<xsd:documentation xml:lang="en">
Internal - only people in the organization
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="AnonymousAccess">
<xsd:annotation>
<xsd:appinfo>Updated with schema version 202002</xsd:appinfo>
<xsd:documentation xml:lang="en">
AnonymousAccess - anyone with the link
</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
<xsd:attribute name="PreventExternalUsersFromResharing" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:appinfo>Added with schema version 202002</xsd:appinfo>
<xsd:documentation xml:lang="en">
Defines whether external users are allowed to reshare the content, optional attribute.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="RequireAcceptingAccountMatchInvitedAccount" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:appinfo>Added with schema version 202002</xsd:appinfo>
<xsd:documentation xml:lang="en">
Defines whether invited external users need to use the same account used as the target for the invite, optional attribute.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="SharingDomainRestrictionMode" use="optional">
<xsd:annotation>
<xsd:appinfo>Added with schema version 202002</xsd:appinfo>
<xsd:documentation xml:lang="en">
Defines domains restrictions for sharing, optional attribute.
</xsd:documentation>
</xsd:annotation>