-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Expand file tree
/
Copy pathPermissionsTranslator.json
More file actions
5393 lines (5393 loc) · 304 KB
/
Copy pathPermissionsTranslator.json
File metadata and controls
5393 lines (5393 loc) · 304 KB
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
[
{
"description": "Allows the app to impersonate the signed-in user to access the Partner Center API.",
"displayName": "Partner Center as User",
"id": "1cebfa2a-fb4d-419e-b5f9-839b4383e05a",
"origin": "Delegated (Microsoft Partner Center)",
"value": "user_impersonation"
},
{
"description": "Allows Exchange Management as app",
"displayName": "Manage Exchange As Application ",
"id": "dc50a0fb-09a3-484d-be87-e023b12c6440",
"origin": "Application (Office 365 Exchange Online)",
"value": "Exchange.ManageAsApp"
},
{
"description": "Allows the app to read a basic set of profile properties of other users in your organization without a signed-in user. Includes display name, first and last name, email address, open extensions, and photo.",
"displayName": "Read all users' basic profiles",
"id": "97235f07-e226-4f63-ace3-39588e11d3a1",
"origin": "Application",
"value": "User.ReadBasic.All"
},
{
"description": "Allows the app to read all\u00a0class assignments without grades for all users without a signed-in user.",
"displayName": "Read all class assignments without grades",
"id": "6e0a958b-b7fc-4348-b7c4-a6ab9fd3dd0e",
"origin": "Application",
"value": "EduAssignments.ReadBasic.All"
},
{
"description": "Allows the app to create, read, update and delete all\u00a0class assignments without grades for all users without a signed-in user.",
"displayName": "Create, read, update and delete all\u00a0class assignments without grades",
"id": "f431cc63-a2de-48c4-8054-a34bc093af84",
"origin": "Application",
"value": "EduAssignments.ReadWriteBasic.All"
},
{
"description": "Allows the app to read all\u00a0class assignments with grades for all users without a signed-in user.",
"displayName": "Read all class assignments with grades",
"id": "4c37e1b6-35a1-43bf-926a-6f30f2cdf585",
"origin": "Application",
"value": "EduAssignments.Read.All"
},
{
"description": "Allows the app to create, read, update and delete all\u00a0class assignments with grades for all users without a signed-in user.",
"displayName": "Create, read, update and delete all\u00a0class assignments with grades",
"id": "0d22204b-6cad-4dd0-8362-3e3f2ae699d9",
"origin": "Application",
"value": "EduAssignments.ReadWrite.All"
},
{
"description": "Allows\u00a0the\u00a0app\u00a0to\u00a0read\u00a0subject\u00a0rights requests\u00a0without a\u00a0signed-in\u00a0user.",
"displayName": "Read\u00a0all subject\u00a0rights requests",
"id": "ee1460f0-368b-4153-870a-4e1ca7e72c42",
"origin": "Application",
"value": "SubjectRightsRequest.Read.All"
},
{
"description": "Allows\u00a0the\u00a0app\u00a0to\u00a0read\u00a0and\u00a0write subject\u00a0rights requests\u00a0without a signed in user.",
"displayName": "Read\u00a0and\u00a0write\u00a0all subject\u00a0rights requests",
"id": "8387eaa4-1a3c-41f5-b261-f888138e6041",
"origin": "Application",
"value": "SubjectRightsRequest.ReadWrite.All"
},
{
"description": "Allows the app to read attack simulation and training data for an organization without a signed-in user.",
"displayName": "Read attack simulation data of an organization",
"id": "93283d0a-6322-4fa8-966b-8c121624760d",
"origin": "Application",
"value": "AttackSimulation.Read.All"
},
{
"description": "Allows custom authentication extensions associated with the app to receive HTTP requests triggered by an authentication event. The request can include information about a user, client and resource service principals, and other information about the authentication.",
"displayName": "Receive custom authentication extension HTTP requests",
"id": "214e810f-fda8-4fd7-a475-29461495eb00",
"origin": "Application",
"value": "CustomAuthenticationExtension.Receive.Payload"
},
{
"description": "Allows the app to read and write your organization's directory access review default policy without a signed-in user.",
"displayName": "Read and write your organization's directory access review default policy",
"id": "77c863fd-06c0-47ce-a7eb-49773e89d319",
"origin": "Application",
"value": "Policy.ReadWrite.AccessReview"
},
{
"description": "Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write conversations. All of these operations can be performed by the app without a signed-in user.",
"displayName": "Read and write all groups",
"id": "62a82d76-70ea-41e2-9197-370581804d09",
"origin": "Application",
"value": "Group.ReadWrite.All"
},
{
"description": "Allows the app to read group properties and memberships, and read\u00a0conversations for all groups, without a signed-in user.",
"displayName": "Read all groups",
"id": "5b567255-7703-4780-807c-7be8301ae99b",
"origin": "Application",
"value": "Group.Read.All"
},
{
"description": "Allows the app to read your organization's threat submissions and threat submission policies without a signed-in user. Also allows the app to create new threat submissions without a signed-in user.",
"displayName": "Read and write all of the organization's threat submissions",
"id": "d72bdbf4-a59b-405c-8b04-5995895819ac",
"origin": "Application",
"value": "ThreatSubmission.ReadWrite.All"
},
{
"description": "Allows an app to read Bookings appointments, businesses, customers, services, and staff without a signed-in user. ",
"displayName": "Read all Bookings related resources.",
"id": "6e98f277-b046-4193-a4f2-6bf6a78cd491",
"origin": "Application",
"value": "Bookings.Read.All"
},
{
"description": "Allows an app to read and write Bookings appointments and customers, and additionally allows reading businesses, services, and staff without a signed-in user. ",
"displayName": "Read and write all Bookings related resources.",
"id": "9769393e-5a9f-4302-9e3d-7e018ecb64a7",
"origin": "Application",
"value": "BookingsAppointment.ReadWrite.All"
},
{
"description": "Allows the application to read any data from Records Management, such as configuration, labels, and policies without the signed in user.",
"displayName": "Read Records Management configuration,\u00a0labels and policies",
"id": "ac3a2b8e-03a3-4da9-9ce0-cbe28bf1accd",
"origin": "Application",
"value": "RecordsManagement.Read.All"
},
{
"description": "Allow the application to create, update and delete any data from Records Management, such as configuration, labels, and policies without the signed in user.",
"displayName": "Read and write Records Management configuration, labels and policies",
"id": "eb158f57-df43-4751-8b21-b8932adb3d34",
"origin": "Application",
"value": "RecordsManagement.ReadWrite.All"
},
{
"description": "Allows the app to read details of delegated admin relationships with customers like access details (that includes roles) and the duration as well as specific role assignments to security groups without a signed-in user.",
"displayName": "Read Delegated Admin relationships with customers",
"id": "f6e9e124-4586-492f-adc0-c6f96e4823fd",
"origin": "Application",
"value": "DelegatedAdminRelationship.Read.All"
},
{
"description": "Allows the app to manage (create-update-terminate) Delegated Admin relationships with customers and role assignments to security groups for active Delegated Admin relationships without a signed-in user.",
"displayName": "Manage Delegated Admin relationships with customers",
"id": "cc13eba4-8cd8-44c6-b4d4-f93237adce58",
"origin": "Application",
"value": "DelegatedAdminRelationship.ReadWrite.All"
},
{
"description": "Allows the app to read and manage the Cloud PC role-based access control (RBAC) settings, without a signed-in user. This includes reading and managing Cloud PC role definitions and memberships.",
"displayName": "Read and write all Cloud PC RBAC settings",
"id": "274d0592-d1b6-44bd-af1d-26d259bcb43a",
"origin": "Application",
"value": "RoleManagement.ReadWrite.CloudPC"
},
{
"description": "Allows the app to read the Cloud PC role-based access control (RBAC) settings, without a signed-in user.",
"displayName": "Read Cloud PC RBAC settings",
"id": "031a549a-bb80-49b6-8032-2068448c6a3c",
"origin": "Application",
"value": "RoleManagement.Read.CloudPC"
},
{
"description": "Allows the app to read custom security attribute assignments for all principals in the tenant without a signed in user.",
"displayName": "Read custom security attribute assignments",
"id": "3b37c5a4-1226-493d-bec3-5d6c6b866f3f",
"origin": "Application",
"value": "CustomSecAttributeAssignment.Read.All"
},
{
"description": "Allows the app to read custom security attribute definitions for the tenant without a signed in user.",
"displayName": "Read custom security attribute definitions",
"id": "b185aa14-d8d2-42c1-a685-0f5596613624",
"origin": "Application",
"value": "CustomSecAttributeDefinition.Read.All"
},
{
"description": "Allows the app to read all external connections without a signed-in user.",
"displayName": "Read all external connections",
"id": "1914711b-a1cb-4793-b019-c2ce0ed21b8c",
"origin": "Application",
"value": "ExternalConnection.Read.All"
},
{
"description": "Allows the app to read and write all external connections without a signed-in user.",
"displayName": "Read and write all external connections",
"id": "34c37bc0-2b40-4d5e-85e1-2365cd256d79",
"origin": "Application",
"value": "ExternalConnection.ReadWrite.All"
},
{
"description": "Allows the app to read all external items without a signed-in user.",
"displayName": "Read all external items",
"id": "7a7cffad-37d2-4f48-afa4-c6ab129adcc2",
"origin": "Application",
"value": "ExternalItem.Read.All"
},
{
"description": "Allows the app to read and write your organization's cross tenant access policies without a signed-in user.",
"displayName": "Read and write your organization's cross tenant access policies",
"id": "338163d7-f101-4c92-94ba-ca46fe52447c",
"origin": "Application",
"value": "Policy.ReadWrite.CrossTenantAccess"
},
{
"description": "Allows the app to read and write custom security attribute definitions for the tenant without a signed in user.",
"displayName": "Read and write custom security attribute definitions",
"id": "12338004-21f4-4896-bf5e-b75dfaf1016d",
"origin": "Application",
"value": "CustomSecAttributeDefinition.ReadWrite.All"
},
{
"description": "Allows the app to read and write custom security attribute assignments for all principals in the tenant without a signed in user.",
"displayName": "Read and write custom security attribute assignments",
"id": "de89b5e4-5b8f-48eb-8925-29c2b33bd8bd",
"origin": "Application",
"value": "CustomSecAttributeAssignment.ReadWrite.All"
},
{
"description": "Allows the app to read and write to all security incidents, without a signed-in user.",
"displayName": "Read and write to all security incidents",
"id": "34bf0e97-1971-4929-b999-9e2442d941d7",
"origin": "Application",
"value": "SecurityIncident.ReadWrite.All"
},
{
"description": "Allows the app to read all security incidents, without a signed-in user.",
"displayName": "Read all security incidents",
"id": "45cc0394-e837-488b-a098-1918f48d186c",
"origin": "Application",
"value": "SecurityIncident.Read.All"
},
{
"description": "Allows the app to read and write to all security alerts, without a signed-in user.",
"displayName": "Read and write to all security alerts",
"id": "ed4fca05-be46-441f-9803-1873825f8fdb",
"origin": "Application",
"value": "SecurityAlert.ReadWrite.All"
},
{
"description": "Allows the app to read all security alerts, without a signed-in user.",
"displayName": "Read all security alerts",
"id": "472e4a4d-bb4a-4026-98d1-0b0d74cb74a5",
"origin": "Application",
"value": "SecurityAlert.Read.All"
},
{
"description": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects without a signed-in user.",
"displayName": "Read and write all eDiscovery objects",
"id": "b2620db1-3bf7-4c5b-9cb9-576d29eac736",
"origin": "Application",
"value": "eDiscovery.ReadWrite.All"
},
{
"description": "Allows the app to read eDiscovery objects such as cases, custodians, review sets and other related objects without a signed-in user.",
"displayName": "Read all eDiscovery objects",
"id": "50180013-6191-4d1e-a373-e590ff4e66af",
"origin": "Application",
"value": "eDiscovery.Read.All"
},
{
"description": "Allows the app to run hunting queries, without a signed-in user.",
"displayName": "Run hunting queries",
"id": "dd98c7f5-2d42-42d3-a0e4-633161547251",
"origin": "Application",
"value": "ThreatHunting.Read.All"
},
{
"description": "Allow the app to read the management data for Teams devices, without a signed-in user.",
"displayName": "Read Teams devices",
"id": "0591bafd-7c1c-4c30-a2a5-2b9aacb1dfe8",
"origin": "Application",
"value": "TeamworkDevice.Read.All"
},
{
"description": "Allow the app to read and write the management data for Teams devices, without a signed-in user.",
"displayName": "Read and write Teams devices",
"id": "79c02f5b-bd4f-4713-bc2c-a8a4a66e127b",
"origin": "Application",
"value": "TeamworkDevice.ReadWrite.All"
},
{
"description": "Allows the app to read and update identity risky service principal for your organization, without a signed-in user.",
"displayName": "Read and write all identity risky service principal information",
"id": "cb8d6980-6bcb-4507-afec-ed6de3a2d798",
"origin": "Application",
"value": "IdentityRiskyServicePrincipal.ReadWrite.All"
},
{
"description": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs for any user, without a signed-in user.",
"displayName": "Allow the Teams app to manage only its own tabs for all users",
"id": "3c42dec6-49e8-4a0a-b469-36cff0d9da93",
"origin": "Application",
"value": "TeamsTab.ReadWriteSelfForUser.All"
},
{
"description": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs in any team, without a signed-in user.",
"displayName": "Allow the Teams app to manage only its own tabs for all teams",
"id": "91c32b81-0ef0-453f-a5c7-4ce2e562f449",
"origin": "Application",
"value": "TeamsTab.ReadWriteSelfForTeam.All"
},
{
"description": "Allows a Teams app to read, install, upgrade, and uninstall its own tabs for any chat, without a signed-in user.",
"displayName": "Allow the Teams app to manage only its own tabs for all chats",
"id": "9f62e4a2-a2d6-4350-b28b-d244728c4f86",
"origin": "Application",
"value": "TeamsTab.ReadWriteSelfForChat.All"
},
{
"description": "Allows the app to read all risky service principal information for your organization, without a signed-in user.",
"displayName": "Read all identity risky service principal information",
"id": "607c7344-0eed-41e5-823a-9695ebe1b7b0",
"origin": "Application",
"value": "IdentityRiskyServicePrincipal.Read.All"
},
{
"description": "Allows the app to read and write search configurations, without a signed-in user.",
"displayName": "Read and write your organization's search configuration",
"id": "0e778b85-fefa-466d-9eec-750569d92122",
"origin": "Application",
"value": "SearchConfiguration.ReadWrite.All"
},
{
"description": "Allows the app to read search configurations, without a signed-in user.",
"displayName": "Read your organization's search configuration",
"id": "ada977a5-b8b1-493b-9a91-66c206d76ecf",
"origin": "Application",
"value": "SearchConfiguration.Read.All"
},
{
"description": "Allows the app to read online meeting artifacts in your organization, without a signed-in user.",
"displayName": "Read online meeting artifacts",
"id": "df01ed3b-eb61-4eca-9965-6b3d789751b2",
"origin": "Application",
"value": "OnlineMeetingArtifact.Read.All"
},
{
"description": "Allows the app to create, read, update, and delete apps in the app catalogs without a signed-in user.",
"displayName": "Read and write to all app catalogs",
"id": "dc149144-f292-421e-b185-5953f2e98d7f",
"origin": "Application",
"value": "AppCatalog.ReadWrite.All"
},
{
"description": "Allows the app to read apps in the app catalogs without a signed-in user.",
"displayName": "Read all app catalogs",
"id": "e12dae10-5a57-4817-b79d-dfbec5348930",
"origin": "Application",
"value": "AppCatalog.Read.All"
},
{
"description": "Allows the app to manage workforce integrations to synchronize data from Microsoft Teams Shifts, without a signed-in user.",
"displayName": "Read and write workforce integrations",
"id": "202bf709-e8e6-478e-bcfd-5d63c50b68e3",
"origin": "Application",
"value": "WorkforceIntegration.ReadWrite.All"
},
{
"description": "Allows the app to read all presence information and write activity and availability of all users in the directory without a signed-in user. Presence information includes activity, availability, status note, calendar out-of-office message, time zone and location.",
"displayName": "Read and write presence information for all users",
"id": "83cded22-8297-4ff6-a7fa-e97e9545a259",
"origin": "Application",
"value": "Presence.ReadWrite.All"
},
{
"description": "Allows the app to read and write tags in Teams without a signed-in user.",
"displayName": "Read and write tags in Teams",
"id": "a3371ca5-911d-46d6-901c-42c8c7a937d8",
"origin": "Application",
"value": "TeamworkTag.ReadWrite.All"
},
{
"description": "Allows the app to read\u00a0tags in Teams\u00a0without a signed-in user.",
"displayName": "Read tags in Teams",
"id": "b74fd6c4-4bde-488e-9695-eeb100e4907f",
"origin": "Application",
"value": "TeamworkTag.Read.All"
},
{
"description": "Allows the app to read and write all Windows update deployment settings for the organization without a signed-in user.",
"displayName": "Read and write all Windows update deployment settings",
"id": "7dd1be58-6e76-4401-bf8d-31d1e8180d5b",
"origin": "Application",
"value": "WindowsUpdates.ReadWrite.All"
},
{
"description": "Allows the app to read and write external connections without a signed-in user. The app can only read and write external connections that it is authorized to, or it can create new external connections. ",
"displayName": "Read and write external connections",
"id": "f431331c-49a6-499f-be1c-62af19c34a9d",
"origin": "Application",
"value": "ExternalConnection.ReadWrite.OwnedBy"
},
{
"description": "Allows the app to read and write external items without a signed-in user. The app can only read external items of the connection that it is authorized to.",
"displayName": "Read and write external items",
"id": "8116ae0f-55c2-452d-9944-d18420f5b2c8",
"origin": "Application",
"value": "ExternalItem.ReadWrite.OwnedBy"
},
{
"description": "Allow the application to access a subset of site collections without a signed in user.\u00a0\u00a0The specific site collections and the permissions granted will be configured in SharePoint Online.",
"displayName": "Access selected site collections",
"id": "883ea226-0bf2-4a8f-9f9d-92c9162a727d",
"origin": "Application",
"value": "Sites.Selected"
},
{
"description": "Allows the app to read documents and list items in all site collections without a signed in user.",
"displayName": "Read items in all site collections ",
"id": "332a536c-c7ef-4017-ab91-336970924f0d",
"origin": "Application",
"value": "Sites.Read.All"
},
{
"description": "Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.",
"displayName": "Read and write items in all site collections",
"id": "9492366f-7969-46a4-8d15-ed1a20078fff",
"origin": "Application",
"value": "Sites.ReadWrite.All"
},
{
"description": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.",
"displayName": "Read and write Cloud PCs",
"id": "3b4349e1-8cf5-45a3-95b7-69d1751d3e6a",
"origin": "Application",
"value": "CloudPC.ReadWrite.All"
},
{
"description": "Allows the app to read the properties of Cloud PCs, without a signed-in user.",
"displayName": "Read Cloud PCs",
"id": "a9e09520-8ed4-4cde-838e-4fdea192c227",
"origin": "Application",
"value": "CloudPC.Read.All"
},
{
"description": "Allows the app to update service principal endpoints",
"displayName": "Read and update service principal endpoints",
"id": "89c8469c-83ad-45f7-8ff2-6e3d4285709e",
"origin": "Application",
"value": "ServicePrincipalEndpoint.ReadWrite.All"
},
{
"description": "Allows the app to read service principal endpoints",
"displayName": "Read service principal endpoints",
"id": "5256681e-b7f6-40c0-8447-2d9db68797a0",
"origin": "Application",
"value": "ServicePrincipalEndpoint.Read.All"
},
{
"description": "Allows the app to create new notifications in users' teamwork activity feeds without a signed in user. These notifications may not be discoverable or be held or governed by compliance policies.",
"displayName": "Send a teamwork activity to any user",
"id": "a267235f-af13-44dc-8385-c1dc93023186",
"origin": "Application",
"value": "TeamsActivity.Send"
},
{
"description": "Allows the app to read terms of use acceptance statuses, without a signed in user.",
"displayName": "Read all terms of use acceptance statuses",
"id": "d8e4ec18-f6c0-4620-8122-c8b1f2bf400e",
"origin": "Application",
"value": "AgreementAcceptance.Read.All"
},
{
"description": "Allows the app to read and write terms of use agreements, without a signed in user.",
"displayName": "Read and write all terms of use agreements",
"id": "c9090d00-6101-42f0-a729-c41074260d47",
"origin": "Application",
"value": "Agreement.ReadWrite.All"
},
{
"description": "Allows the app to read terms of use agreements, without a signed in user.",
"displayName": "Read all terms of use agreements",
"id": "2f3e6f8c-093b-4c57-a58b-ba5ce494a169",
"origin": "Application",
"value": "Agreement.Read.All"
},
{
"description": "Allows the app to read app consent requests and approvals, and deny or approve those requests without a signed-in user.",
"displayName": "Read and write all consent requests",
"id": "9f1b81a7-0223-4428-bfa4-0bcb5535f27d",
"origin": "Application",
"value": "ConsentRequest.ReadWrite.All"
},
{
"description": "Allows the app to read and write your organization's consent requests policy without a signed-in user.",
"displayName": "Read and write your organization's consent request policy",
"id": "999f8c63-0a38-4f1b-91fd-ed1947bdd1a9",
"origin": "Application",
"value": "Policy.ReadWrite.ConsentRequest"
},
{
"description": "Allows the app to read consent requests and approvals without a signed-in user.",
"displayName": "Read all consent requests",
"id": "1260ad83-98fb-4785-abbb-d6cc1806fd41",
"origin": "Application",
"value": "ConsentRequest.Read.All"
},
{
"description": "Allows the app to read basic mail properties in all mailboxes without a signed-in user. Includes all properties except body, previewBody, attachments and any extended properties.",
"displayName": "Read basic mail in all mailboxes",
"id": "693c5e45-0940-467d-9b8a-1022fb9d42ef",
"origin": "Application",
"value": "Mail.ReadBasic.All"
},
{
"description": "Allows the app to read basic mail properties in all mailboxes without a signed-in user. Includes all properties except body, previewBody, attachments and any extended properties.",
"displayName": "Read basic mail in all mailboxes",
"id": "6be147d2-ea4f-4b5a-a3fa-3eab6f3c140a",
"origin": "Application",
"value": "Mail.ReadBasic"
},
{
"description": "Allows the app to read and write feature rollout policies without a signed-in user. Includes abilities to assign and remove users and groups to rollout of a specific feature.",
"displayName": "Read and write feature rollout policies",
"id": "2044e4f1-e56c-435b-925c-44cd8f6ba89a",
"origin": "Application",
"value": "Policy.ReadWrite.FeatureRollout"
},
{
"description": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.",
"displayName": "Read and write all directory RBAC settings",
"id": "9e3f62cf-ca93-4989-b6ce-bf83c28f9fe8",
"origin": "Application",
"value": "RoleManagement.ReadWrite.Directory"
},
{
"description": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.",
"displayName": "Read all directory RBAC settings",
"id": "483bed4a-2ad3-4361-a73b-c83ccdbdc53c",
"origin": "Application",
"value": "RoleManagement.Read.Directory"
},
{
"description": "Allows the app to read and write the organization and related resources, without a signed-in user.\u00a0Related resources include things like subscribed skus and tenant branding information.",
"displayName": "Read and write organization information",
"id": "292d869f-3427-49a8-9dab-8c70152b74e9",
"origin": "Application",
"value": "Organization.ReadWrite.All"
},
{
"description": "Allows the app to read the organization and related resources, without a signed-in user.\u00a0Related resources include things like subscribed skus and tenant branding information.",
"displayName": "Read organization information",
"id": "498476ce-e0fe-48b0-b801-37ba7e2685c6",
"origin": "Application",
"value": "Organization.Read.All"
},
{
"description": "Allows the app to read company places (conference rooms and room lists) for calendar events and other applications, without a signed-in user.",
"displayName": "Read all company places",
"id": "913b9306-0ce1-42b8-9137-6a7df690a760",
"origin": "Application",
"value": "Place.Read.All"
},
{
"description": "Allows the app to read the memberships of hidden groups and administrative units without a signed-in user.",
"displayName": "Read all hidden memberships",
"id": "658aa5d8-239f-45c4-aa12-864f4fc7e490",
"origin": "Application",
"value": "Member.Read.Hidden"
},
{
"description": "Allow the app to read or write items in all external datasets that the app is authorized to access",
"displayName": "Read and write items in external datasets",
"id": "38c3d6ee-69ee-422f-b954-e17819665354",
"origin": "Application",
"value": "ExternalItem.ReadWrite.All"
},
{
"description": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization for group and app memberships, without a signed-in user.",
"displayName": "Manage access reviews for group and app memberships",
"id": "18228521-a591-40f1-b215-5fad4488c117",
"origin": "Application",
"value": "AccessReview.ReadWrite.Membership"
},
{
"description": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.",
"displayName": "Read Microsoft Intune device configuration and policies",
"id": "dc377aa6-52d8-4e23-b271-2a7ae04cedf3",
"origin": "Application",
"value": "DeviceManagementConfiguration.Read.All"
},
{
"description": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.",
"displayName": "Read Microsoft Intune apps",
"id": "7a6ee1e7-141e-4cec-ae74-d9db155731ff",
"origin": "Application",
"value": "DeviceManagementApps.Read.All"
},
{
"description": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.",
"displayName": "Read Microsoft Intune devices",
"id": "2f51be20-0bb4-4fed-bf7b-db946066c75e",
"origin": "Application",
"value": "DeviceManagementManagedDevices.Read.All"
},
{
"description": "Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings, without a signed-in user.",
"displayName": "Read Microsoft Intune RBAC settings",
"id": "58ca0d9a-1575-47e1-a3cb-007ef2e4583b",
"origin": "Application",
"value": "DeviceManagementRBAC.Read.All"
},
{
"description": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.",
"displayName": "Read Microsoft Intune configuration",
"id": "06a5fe6d-c49d-46a7-b082-56b1b14103c7",
"origin": "Application",
"value": "DeviceManagementServiceConfig.Read.All"
},
{
"description": "Allows the app to create, view, update and delete on-premises published resources, on-premises agents and agent groups, as part of a hybrid identity configuration, without a signed in user.",
"displayName": "Manage on-premises published resources",
"id": "0b57845e-aa49-4e6f-8109-ce654fffa618",
"origin": "Application",
"value": "OnPremisesPublishingProfiles.ReadWrite.All"
},
{
"description": "Allows the app to read and write trust framework key set properties without a signed-in user.",
"displayName": "Read and write trust framework key sets",
"id": "4a771c9a-1cf2-4609-b88e-3d3e02d539cd",
"origin": "Application",
"value": "TrustFrameworkKeySet.ReadWrite.All"
},
{
"description": "Allows the app to read trust framework key set properties without a signed-in user.",
"displayName": "Read trust framework key sets",
"id": "fff194f1-7dce-4428-8301-1badb5518201",
"origin": "Application",
"value": "TrustFrameworkKeySet.Read.All"
},
{
"description": "Allows the app to read and write your organization's trust framework policies without a signed in user.",
"displayName": "Read and write your organization's trust framework policies",
"id": "79a677f7-b79d-40d0-a36a-3e6f8688dd7a",
"origin": "Application",
"value": "Policy.ReadWrite.TrustFramework"
},
{
"description": "Allows the app to read all your organization's policies without a signed in user.",
"displayName": "Read your organization's policies",
"id": "246dd0d5-5bd0-4def-940b-0421030a5b68",
"origin": "Application",
"value": "Policy.Read.All"
},
{
"description": "Allows the app to read and write your organization\u2019s identity (authentication) providers\u2019 properties without a signed in user.",
"displayName": "Read and write identity providers",
"id": "90db2b9a-d928-4d33-a4dd-8442ae3d41e4",
"origin": "Application",
"value": "IdentityProvider.ReadWrite.All"
},
{
"description": "Allows the app to read your organization\u2019s identity (authentication) providers\u2019 properties without a signed in user.",
"displayName": "Read identity providers",
"id": "e321f0bb-e7f7-481e-bb28-e3b0b32d4bd0",
"origin": "Application",
"value": "IdentityProvider.Read.All"
},
{
"description": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.",
"displayName": "Read and write all administrative units",
"id": "5eb59dd3-1da2-4329-8733-9dabdc435916",
"origin": "Application",
"value": "AdministrativeUnit.ReadWrite.All"
},
{
"description": "Allows the app to read administrative units and administrative unit membership without a signed-in user.",
"displayName": "Read all administrative units",
"id": "134fd756-38ce-4afd-ba33-e9623dbe66c2",
"origin": "Application",
"value": "AdministrativeUnit.Read.All"
},
{
"description": "Allows an app to read published sensitivity labels and label policy settings for the entire organization or a specific user, without a signed in user.",
"displayName": "Read all published labels and label policies for an organization.",
"id": "19da66cb-0fb0-4390-b071-ebc76a349482",
"origin": "Application",
"value": "InformationProtectionPolicy.Read.All"
},
{
"description": "Allows the app to read all the OneNote notebooks in your organization, without a signed-in user.",
"displayName": "Read all OneNote notebooks",
"id": "3aeca27b-ee3a-4c2b-8ded-80376e2134a4",
"origin": "Application",
"value": "Notes.Read.All"
},
{
"description": "Allows the app to invite guest users to the organization, without a signed-in user.",
"displayName": "Invite guest users to the organization",
"id": "09850681-111b-4a89-9bed-3f2cae46d706",
"origin": "Application",
"value": "User.Invite.All"
},
{
"description": "Allows the app to read, create, update and delete all files in all site collections without a signed in user. ",
"displayName": "Read and write files in all site collections",
"id": "75359482-378d-4052-8f01-80520e7db3cd",
"origin": "Application",
"value": "Files.ReadWrite.All"
},
{
"description": "Allows the app to create threat indicators, and fully manage those threat indicators (read, update and delete), without a signed-in user. \u00a0It cannot update any threat indicators it does not own.",
"displayName": "Manage threat indicators this app creates or owns",
"id": "21792b6c-c986-4ffc-85de-df9da54b52fa",
"origin": "Application",
"value": "ThreatIndicators.ReadWrite.OwnedBy"
},
{
"description": "Allows the app to read or update security actions, without a signed-in user.",
"displayName": "Read and update your organization's security actions",
"id": "f2bf083f-0179-402a-bedb-b2784de8a49b",
"origin": "Application",
"value": "SecurityActions.ReadWrite.All"
},
{
"description": "Allows the app to read security actions, without a signed-in user.",
"displayName": "Read your organization's security actions",
"id": "5e0edab9-c148-49d0-b423-ac253e121825",
"origin": "Application",
"value": "SecurityActions.Read.All"
},
{
"description": "Allows the app to read your organization\u2019s security events without a signed-in user. Also allows the app to update editable properties in security events.",
"displayName": "Read and update your organization\u2019s security events",
"id": "d903a879-88e0-4c09-b0c9-82f6a1333f84",
"origin": "Application",
"value": "SecurityEvents.ReadWrite.All"
},
{
"description": "Allows the app to read your organization\u2019s security events without a signed-in user.",
"displayName": "Read your organization\u2019s security events",
"id": "bf394140-e372-4bf9-a898-299cfc7564e5",
"origin": "Application",
"value": "SecurityEvents.Read.All"
},
{
"description": "Allows an app to read and write all chat messages in Microsoft Teams, without a signed-in user.",
"displayName": "Read and write all chat messages",
"id": "294ce7c9-31ba-490a-ad7d-97a7d075e4ed",
"origin": "Application",
"value": "Chat.ReadWrite.All"
},
{
"description": "Allows the app to read and update identity risk detection information for your organization without a signed-in user. Update operations include confirming risk event detections.\u00a0",
"displayName": "Read and write all risk detection information",
"id": "db06fb33-1953-4b7b-a2ac-f1e2c854f7ae",
"origin": "Application",
"value": "IdentityRiskEvent.ReadWrite.All"
},
{
"description": "Allows the app to read and update identity risky user information for your organization without a signed-in user. \u00a0Update operations include dismissing risky users.",
"displayName": "Read and write all risky user information",
"id": "656f6061-f9fe-4807-9708-6a2e0934df76",
"origin": "Application",
"value": "IdentityRiskyUser.ReadWrite.All"
},
{
"description": "Allows the app to read all files in all site collections without a signed in user.",
"displayName": "Read files in all site collections",
"id": "01d4889c-1287-42c6-ac1f-5d1e02578ef6",
"origin": "Application",
"value": "Files.Read.All"
},
{
"description": "Allows the app to read the identity risk event information for your organization without a signed in user.",
"displayName": "Read all identity risk event information",
"id": "6e472fd1-ad78-48da-a0f0-97ab2c6b769e",
"origin": "Application",
"value": "IdentityRiskEvent.Read.All"
},
{
"description": "Allows the app to read a limited subset of properties from both the structure of schools and classes in the organization's roster and education-specific information about all users. Includes name, status, role, email address and photo.",
"displayName": "Read a limited subset of the organization's roster",
"id": "0d412a8c-a06c-439f-b3ec-8abcf54d2f96",
"origin": "Application",
"value": "EduRoster.ReadBasic.All"
},
{
"description": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.",
"displayName": "Read the organization's roster",
"id": "e0ac9e1b-cb65-4fc5-87c5-1a8bc181f648",
"origin": "Application",
"value": "EduRoster.Read.All"
},
{
"description": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.",
"displayName": "Read and write the organization's roster",
"id": "d1808e82-ce13-47af-ae0d-f9b254e6d58a",
"origin": "Application",
"value": "EduRoster.ReadWrite.All"
},
{
"description": "Read the state and settings of all Microsoft education apps.",
"displayName": "Read Education app settings",
"id": "7c9db06a-ec2d-4e7b-a592-5a1e30992566",
"origin": "Application",
"value": "EduAdministration.Read.All"
},
{
"description": "Manage the state and settings of all Microsoft education apps.",
"displayName": "Manage education app settings",
"id": "9bc431c3-b8bc-4a8d-a219-40f10f92eff6",
"origin": "Application",
"value": "EduAdministration.ReadWrite.All"
},
{
"description": "Allows the app to read the identity risky user information for your organization without a signed in user.",
"displayName": "Read all identity risky user information",
"id": "dc5007c0-2d7d-4c42-879c-2dab87571379",
"origin": "Application",
"value": "IdentityRiskyUser.Read.All"
},
{
"description": "Allows the app to read and update user profiles without a signed in user.",
"displayName": "Read and write all users' full profiles",
"id": "741f803b-c850-494e-b5df-cde7c675a1ca",
"origin": "Application",
"value": "User.ReadWrite.All"
},
{
"description": "Allows the app to read user profiles without a signed in user.",
"displayName": "Read all users' full profiles",
"id": "df021288-bdef-4463-88db-98f22de89214",
"origin": "Application",
"value": "User.Read.All"
},
{
"description": "Allows the app to read and query your audit log activities, without a signed-in user.",
"displayName": "Read all audit log data",
"id": "b0afded3-3588-46d8-8b3d-9842eff778da",
"origin": "Application",
"value": "AuditLog.Read.All"
},
{
"description": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. \u00a0It cannot update any apps that it is not an owner of.",
"displayName": "Manage apps that this app creates or owns",
"id": "18a4783c-866b-4cc7-a460-3d5e5662c884",
"origin": "Application",
"value": "Application.ReadWrite.OwnedBy"
},
{
"description": "Allows the app to export data (e.g. customer content or system-generated logs), associated with any user in your company, when the app is used by a privileged user (e.g. a Company Administrator).",
"displayName": "Export user's data",
"id": "405a51b5-8d8d-430b-9842-8be4b0e9f324",
"origin": "Application",
"value": "User.Export.All"
},
{
"description": "Allows the app to read, update, delete and perform actions on programs and program controls in the organization, without a signed-in user.",
"displayName": "Manage all programs",
"id": "60a901ed-09f7-4aa5-a16e-7dd3d6f9de36",
"origin": "Application",
"value": "ProgramControl.ReadWrite.All"
},
{
"description": "Allows the app to read programs and program controls in the organization, without a signed-in user.",
"displayName": "Read all programs",
"id": "eedb7fdd-7539-4345-a38b-4839e4a84cbd",
"origin": "Application",
"value": "ProgramControl.Read.All"
},
{
"description": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
"displayName": "Manage all access reviews",
"id": "ef5f7d5c-338f-44b0-86c3-351f46c8bb5f",
"origin": "Application",
"value": "AccessReview.ReadWrite.All"
},
{
"description": "Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.",
"displayName": "Read all access reviews",
"id": "d07a8cc0-3d51-4b77-b3b0-32704d1f69fa",
"origin": "Application",
"value": "AccessReview.Read.All"
},
{
"description": "Allows an app to read all service usage reports without a signed-in user. Services that provide usage reports include Office 365 and Azure Active Directory.",
"displayName": "Read all usage reports",
"id": "230c1aed-a721-4c5d-9cb4-a90514e508ef",
"origin": "Application",
"value": "Reports.Read.All"
},
{
"description": "Allows the app to read any user's scored list of relevant people, without a signed-in user. The list can include local contacts, contacts from social networking, your organization's directory, and people from recent communications (such as email and Skype).",
"displayName": "Read all users' relevant people lists",
"id": "b528084d-ad10-4598-8b93-929746b4d7d6",
"origin": "Application",
"value": "People.Read.All"
},
{
"description": "Allows the app to update Microsoft Teams 1-to-1 or group chat messages by patching a set of Data Loss Prevention (DLP) policy violation properties to handle the output of DLP processing.",
"displayName": "Flag chat messages for violating policy",
"id": "7e847308-e030-4183-9899-5235d7270f58",
"origin": "Application",
"value": "Chat.UpdatePolicyViolation.All"
},
{
"description": "Allows the app to read all 1-to-1 or group chat messages in Microsoft Teams.",
"displayName": "Read all chat messages",
"id": "6b7d71aa-70aa-4810-a8d9-5d9fb2830017",
"origin": "Application",
"value": "Chat.Read.All"
},
{
"description": "Allows the app to read all channel messages in Microsoft Teams",
"displayName": "Read all channel messages",
"id": "7b2449af-6ccd-4f4d-9f78-e550c193f0d1",
"origin": "Application",
"value": "ChannelMessage.Read.All"
},
{
"description": "Allows the app to update Microsoft Teams channel messages by patching a set of Data Loss Prevention (DLP) policy violation properties to handle the output of DLP processing.",
"displayName": "Flag channel messages for violating policy",
"id": "4d02b0cc-d90b-441f-8d82-4fb55c34d6bb",
"origin": "Application",
"value": "ChannelMessage.UpdatePolicyViolation.All"
},
{
"description": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.",
"displayName": "Read and write all applications",
"id": "1bfefb4e-e0b5-418b-a88f-73c46d2cc8e9",
"origin": "Application",
"value": "Application.ReadWrite.All"
},
{
"description": "Allows the app to create, read, update, and delete user's mailbox settings without a signed-in user. Does not include permission to send mail.",
"displayName": "Read and write all user mailbox settings",
"id": "6931bccd-447a-43d1-b442-00a195474933",
"origin": "Application",
"value": "MailboxSettings.ReadWrite"
},
{
"description": "Allows the app to read and write all domain properties without a signed in user. \u00a0Also allows the app to add, \u00a0verify and remove domains.",
"displayName": "Read and write domains",
"id": "7e05723c-0bb0-42da-be95-ae9f08a6e53c",
"origin": "Application",
"value": "Domain.ReadWrite.All"
},
{
"description": "Allows the app to read user's mailbox settings without a signed-in user. Does not include permission to send mail.",
"displayName": "Read all user mailbox settings",
"id": "40f97065-369a-49f4-947c-6a255697ae91",
"origin": "Application",
"value": "MailboxSettings.Read"
},
{
"description": "Allows the app to read mail in all mailboxes without a signed-in user.",
"displayName": "Read mail in all mailboxes",
"id": "810c84a8-4a9e-49e6-bf7d-12d183f40d01",
"origin": "Application",
"value": "Mail.Read"
},
{
"description": "Allows the app to create, read, update, and delete mail in all mailboxes without a signed-in user. Does not include permission to send mail.",
"displayName": "Read and write mail in all mailboxes",
"id": "e2a3a72e-5f79-4c64-b1b1-878b674786c9",
"origin": "Application",
"value": "Mail.ReadWrite"
},
{
"description": "Allows the app to send mail as any user without a signed-in user.",
"displayName": "Send mail as any user",
"id": "b633e1c5-b582-4048-a93e-9f11b44c7e96",
"origin": "Application",
"value": "Mail.Send"
},
{
"description": "Allows the app to read all contacts in all mailboxes without a signed-in user.",
"displayName": "Read contacts in all mailboxes",
"id": "089fe4d0-434a-44c5-8827-41ba8a0b17f5",
"origin": "Application",
"value": "Contacts.Read"
},
{
"description": "Allows the app to create, read, update, and delete all contacts in all mailboxes without a signed-in user.",
"displayName": "Read and write contacts in all mailboxes",
"id": "6918b873-d17a-4dc1-b314-35f528134491",
"origin": "Application",
"value": "Contacts.ReadWrite"
},
{
"description": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.",
"displayName": "Read directory data",
"id": "7ab1d382-f21e-4acd-a863-ba3e13f7da61",
"origin": "Application",
"value": "Directory.Read.All"
},
{
"description": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.",
"displayName": "Read and write directory data",
"id": "19dbc75e-c2e2-444c-a770-ec69d8559fc7",
"origin": "Application",
"value": "Directory.ReadWrite.All"
},
{
"description": "Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.",
"displayName": "Read and write devices",
"id": "1138cb37-bd11-4084-a2b7-9f71582aeddb",
"origin": "Application",