-
Notifications
You must be signed in to change notification settings - Fork 231
Expand file tree
/
Copy pathSchemaExtensions.yml
More file actions
2799 lines (2799 loc) · 302 KB
/
Copy pathSchemaExtensions.yml
File metadata and controls
2799 lines (2799 loc) · 302 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
openapi: 3.0.4
info:
title: SchemaExtensions
version: beta
servers:
- url: https://graph.microsoft.com/beta/
description: Core
paths:
/schemaExtensions:
get:
tags:
- schemaExtensions.schemaExtension
summary: List schemaExtensions
description: "Get a list of schemaExtension objects in your tenant. The schema extensions can be InDevelopment, Available, or Deprecated and includes schema extensions:\r\n+ Created by any apps you own in the current tenant.\r\n+ Owned by other apps that are marked as Available.\r\n+ Created by other developers from other tenants and marked as Available. This is different from other APIs that only return tenant-specific data. Extension data created based on schema extension definitions is tenant-specific and can only be accessed by apps explicitly granted permission. "
externalDocs:
description: Find more info here
url: https://learn.microsoft.com/graph/api/schemaextension-list?view=graph-rest-beta
operationId: schemaExtensions.schemaExtension.ListSchemaExtension
parameters:
- $ref: '#/components/parameters/top'
- $ref: '#/components/parameters/skip'
- $ref: '#/components/parameters/search'
- $ref: '#/components/parameters/filter'
- $ref: '#/components/parameters/count'
- name: $orderby
in: query
description: Order items by property values
style: form
explode: false
schema:
uniqueItems: true
type: array
items:
type: string
- name: $select
in: query
description: Select properties to be returned
style: form
explode: false
schema:
uniqueItems: true
type: array
items:
type: string
- name: $expand
in: query
description: Expand related entities
style: form
explode: false
schema:
uniqueItems: true
type: array
items:
type: string
responses:
2XX:
$ref: '#/components/responses/microsoft.graph.schemaExtensionCollectionResponse'
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
x-ms-pageable:
nextLinkName: '@odata.nextLink'
operationName: listMore
x-ms-docs-operation-type: operation
post:
tags:
- schemaExtensions.schemaExtension
summary: Create schemaExtension
description: "Create a new schemaExtension definition and its associated schema extension property to extend a supporting resource type. Schema extensions let you add strongly-typed custom data to a resource. The app that creates a schema extension is the owner app. Depending on the \r\nstate of the extension, the owner app, and only the owner app, may update or delete the extension. See examples of how to define a schema extension that describes a training course, \r\nuse the schema extension definition to create a new group with training course data, and \r\nadd training course data to an existing group."
externalDocs:
description: Find more info here
url: https://learn.microsoft.com/graph/api/schemaextension-post-schemaextensions?view=graph-rest-beta
operationId: schemaExtensions.schemaExtension.CreateSchemaExtension
requestBody:
description: New entity
content:
application/json:
schema:
$ref: '#/components/schemas/microsoft.graph.schemaExtension'
required: true
responses:
2XX:
description: Created entity
content:
application/json:
schema:
$ref: '#/components/schemas/microsoft.graph.schemaExtension'
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
'/schemaExtensions/{schemaExtension-id}':
get:
tags:
- schemaExtensions.schemaExtension
summary: Get schemaExtension
description: Get the properties of the specified schemaExtension definition.
externalDocs:
description: Find more info here
url: https://learn.microsoft.com/graph/api/schemaextension-get?view=graph-rest-beta
operationId: schemaExtensions.schemaExtension.GetSchemaExtension
parameters:
- name: $select
in: query
description: Select properties to be returned
style: form
explode: false
schema:
uniqueItems: true
type: array
items:
type: string
- name: $expand
in: query
description: Expand related entities
style: form
explode: false
schema:
uniqueItems: true
type: array
items:
type: string
responses:
2XX:
description: Retrieved entity
content:
application/json:
schema:
$ref: '#/components/schemas/microsoft.graph.schemaExtension'
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
patch:
tags:
- schemaExtensions.schemaExtension
summary: Update schemaExtension
description: 'Update properties in the definition of the specified schemaExtension. Additive updates to the extension can only be made when the extension is in the InDevelopment or Available status. This means custom properties or target resource types cannot be removed from the definition, but new custom properties can be added and the description of the extension changed. The update applies to all the resources that are included in the targetTypes property of the extension. These resources are among the supporting resource types. For delegated flows, the signed-in user can update a schema extension as long as the owner property of the extension is set to the appId of an application the signed-in user owns. That application can be the one that initially created the extension, or some other application owned by the signed-in user. This criteria for the owner property allows a signed-in user to make updates through other applications they don''t own, such as Microsoft Graph Explorer. When using Graph Explorer to update a schemaExtension resource, include the owner property in the PATCH request body.'
externalDocs:
description: Find more info here
url: https://learn.microsoft.com/graph/api/schemaextension-update?view=graph-rest-beta
operationId: schemaExtensions.schemaExtension.UpdateSchemaExtension
requestBody:
description: New property values
content:
application/json:
schema:
$ref: '#/components/schemas/microsoft.graph.schemaExtension'
required: true
responses:
2XX:
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/microsoft.graph.schemaExtension'
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
delete:
tags:
- schemaExtensions.schemaExtension
summary: Delete schemaExtension
description: 'Delete the definition of a schema extension. In app-only scenarios, only the app that created the schema extension (owner app) can delete the schema extension definition, and only when the extension is in the InDevelopment state. In delegated scenarios, the owner of the owner app can delete the schema extension definition, and only when the extension is in the InDevelopment state. Deleting a schema extension definition before deleting the data associated with the extension in the target resources makes the data inaccessible. To recover the data, you can recreate the schema extension definition with the same configuration, but only if you used the verified domain for the schema extension id.'
externalDocs:
description: Find more info here
url: https://learn.microsoft.com/graph/api/schemaextension-delete?view=graph-rest-beta
operationId: schemaExtensions.schemaExtension.DeleteSchemaExtension
parameters:
- name: If-Match
in: header
description: ETag
style: simple
schema:
type: string
responses:
'204':
description: Success
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
x-ms-docs-operation-type: operation
/schemaExtensions/$count:
get:
tags:
- schemaExtensions.schemaExtension
summary: Get the number of the resource
operationId: schemaExtensions.GetCount-e324
parameters:
- $ref: '#/components/parameters/search'
- $ref: '#/components/parameters/filter'
responses:
2XX:
$ref: '#/components/responses/ODataCountResponse'
4XX:
$ref: '#/components/responses/error'
5XX:
$ref: '#/components/responses/error'
components:
schemas:
microsoft.graph.schemaExtension:
allOf:
- $ref: '#/components/schemas/microsoft.graph.entity'
- title: schemaExtension
required:
- '@odata.type'
type: object
properties:
description:
type: string
description: Description for the schema extension.
nullable: true
owner:
type: string
description: 'The appId of the application that is the owner of the schema extension. The owner of the schema definition must be explicitly specified during the Create and Update operations, or it will be implied and auto-assigned by Microsoft Entra ID as follows: In delegated access: The signed-in user must be the owner of the app that calls Microsoft Graph to create the schema extension definition. If the signed-in user isn''t the owner of the calling app, they must explicitly specify the owner property, and assign it the appId of an app that they own. In app-only access: The owner property isn''t required in the request body. Instead, the calling app is assigned ownership of the schema extension. So, for example, if creating a new schema extension definition using Graph Explorer, you must supply the owner property. Once set, this property is read-only and cannot be changed. Supports $filter (eq).'
properties:
type: array
items:
$ref: '#/components/schemas/microsoft.graph.extensionSchemaProperty'
description: The collection of property names and types that make up the schema extension definition.
status:
type: string
description: 'The lifecycle state of the schema extension. Possible states are InDevelopment, Available, and Deprecated. Automatically set to InDevelopment on creation. For more information about the possible state transitions and behaviors, see Schema extensions lifecycle. Supports $filter (eq).'
targetTypes:
type: array
items:
type: string
description: 'Set of Microsoft Graph types (that can support extensions) that the schema extension can be applied to. Select from administrativeUnit, contact, device, event, group, message, organization, post, todoTask, todoTaskList, or user.'
'@odata.type':
type: string
x-ms-discriminator-value: '#microsoft.graph.schemaExtension'
microsoft.graph.entity:
title: entity
required:
- '@odata.type'
type: object
properties:
id:
type: string
description: The unique identifier for an entity. Read-only.
'@odata.type':
type: string
discriminator:
propertyName: '@odata.type'
mapping:
'#microsoft.graph.accessPackage': '#/components/schemas/microsoft.graph.accessPackage'
'#microsoft.graph.accessPackageAssignment': '#/components/schemas/microsoft.graph.accessPackageAssignment'
'#microsoft.graph.accessPackageAssignmentPolicy': '#/components/schemas/microsoft.graph.accessPackageAssignmentPolicy'
'#microsoft.graph.accessPackageAssignmentRequest': '#/components/schemas/microsoft.graph.accessPackageAssignmentRequest'
'#microsoft.graph.accessPackageAssignmentResourceRole': '#/components/schemas/microsoft.graph.accessPackageAssignmentResourceRole'
'#microsoft.graph.accessPackageCatalog': '#/components/schemas/microsoft.graph.accessPackageCatalog'
'#microsoft.graph.accessPackageResource': '#/components/schemas/microsoft.graph.accessPackageResource'
'#microsoft.graph.customDataProvidedResource': '#/components/schemas/microsoft.graph.customDataProvidedResource'
'#microsoft.graph.accessPackageResourceEnvironment': '#/components/schemas/microsoft.graph.accessPackageResourceEnvironment'
'#microsoft.graph.accessPackageResourceRequest': '#/components/schemas/microsoft.graph.accessPackageResourceRequest'
'#microsoft.graph.accessPackageResourceRole': '#/components/schemas/microsoft.graph.accessPackageResourceRole'
'#microsoft.graph.accessPackageResourceRoleScope': '#/components/schemas/microsoft.graph.accessPackageResourceRoleScope'
'#microsoft.graph.accessPackageResourceScope': '#/components/schemas/microsoft.graph.accessPackageResourceScope'
'#microsoft.graph.accessPackageSubject': '#/components/schemas/microsoft.graph.accessPackageSubject'
'#microsoft.graph.accessPackageSuggestion': '#/components/schemas/microsoft.graph.accessPackageSuggestion'
'#microsoft.graph.accessReview': '#/components/schemas/microsoft.graph.accessReview'
'#microsoft.graph.accessReviewDecision': '#/components/schemas/microsoft.graph.accessReviewDecision'
'#microsoft.graph.accessReviewHistoryDefinition': '#/components/schemas/microsoft.graph.accessReviewHistoryDefinition'
'#microsoft.graph.accessReviewHistoryInstance': '#/components/schemas/microsoft.graph.accessReviewHistoryInstance'
'#microsoft.graph.accessReviewInstance': '#/components/schemas/microsoft.graph.accessReviewInstance'
'#microsoft.graph.accessReviewInstanceDecisionItem': '#/components/schemas/microsoft.graph.accessReviewInstanceDecisionItem'
'#microsoft.graph.accessReviewPolicy': '#/components/schemas/microsoft.graph.accessReviewPolicy'
'#microsoft.graph.accessReviewReviewer': '#/components/schemas/microsoft.graph.accessReviewReviewer'
'#microsoft.graph.accessReviewScheduleDefinition': '#/components/schemas/microsoft.graph.accessReviewScheduleDefinition'
'#microsoft.graph.accessReviewSet': '#/components/schemas/microsoft.graph.accessReviewSet'
'#microsoft.graph.accessReviewStage': '#/components/schemas/microsoft.graph.accessReviewStage'
'#microsoft.graph.activeUsersMetric': '#/components/schemas/microsoft.graph.activeUsersMetric'
'#microsoft.graph.activitiesContainer': '#/components/schemas/microsoft.graph.activitiesContainer'
'#microsoft.graph.activityHistoryItem': '#/components/schemas/microsoft.graph.activityHistoryItem'
'#microsoft.graph.activityLogBase': '#/components/schemas/microsoft.graph.activityLogBase'
'#microsoft.graph.backupPolicyActivityLog': '#/components/schemas/microsoft.graph.backupPolicyActivityLog'
'#microsoft.graph.dynamicRuleActivityLog': '#/components/schemas/microsoft.graph.dynamicRuleActivityLog'
'#microsoft.graph.offboardingActivityLog': '#/components/schemas/microsoft.graph.offboardingActivityLog'
'#microsoft.graph.restoreTaskActivityLog': '#/components/schemas/microsoft.graph.restoreTaskActivityLog'
'#microsoft.graph.activityStatistics': '#/components/schemas/microsoft.graph.activityStatistics'
'#microsoft.graph.callActivityStatistics': '#/components/schemas/microsoft.graph.callActivityStatistics'
'#microsoft.graph.chatActivityStatistics': '#/components/schemas/microsoft.graph.chatActivityStatistics'
'#microsoft.graph.emailActivityStatistics': '#/components/schemas/microsoft.graph.emailActivityStatistics'
'#microsoft.graph.focusActivityStatistics': '#/components/schemas/microsoft.graph.focusActivityStatistics'
'#microsoft.graph.meetingActivityStatistics': '#/components/schemas/microsoft.graph.meetingActivityStatistics'
'#microsoft.graph.adhocCall': '#/components/schemas/microsoft.graph.adhocCall'
'#microsoft.graph.adminAppsAndServices': '#/components/schemas/microsoft.graph.adminAppsAndServices'
'#microsoft.graph.adminConsentRequestPolicy': '#/components/schemas/microsoft.graph.adminConsentRequestPolicy'
'#microsoft.graph.adminDynamics': '#/components/schemas/microsoft.graph.adminDynamics'
'#microsoft.graph.adminForms': '#/components/schemas/microsoft.graph.adminForms'
'#microsoft.graph.adminMicrosoft365Apps': '#/components/schemas/microsoft.graph.adminMicrosoft365Apps'
'#microsoft.graph.adminReportSettings': '#/components/schemas/microsoft.graph.adminReportSettings'
'#microsoft.graph.adminTodo': '#/components/schemas/microsoft.graph.adminTodo'
'#microsoft.graph.adminWindows': '#/components/schemas/microsoft.graph.adminWindows'
'#microsoft.graph.adminWindowsUpdates': '#/components/schemas/microsoft.graph.adminWindowsUpdates'
'#microsoft.graph.advancedThreatProtectionOnboardingDeviceSettingState': '#/components/schemas/microsoft.graph.advancedThreatProtectionOnboardingDeviceSettingState'
'#microsoft.graph.advancedThreatProtectionOnboardingStateSummary': '#/components/schemas/microsoft.graph.advancedThreatProtectionOnboardingStateSummary'
'#microsoft.graph.agent': '#/components/schemas/microsoft.graph.agent'
'#microsoft.graph.agentCardManifest': '#/components/schemas/microsoft.graph.agentCardManifest'
'#microsoft.graph.agentCollection': '#/components/schemas/microsoft.graph.agentCollection'
'#microsoft.graph.agentInstance': '#/components/schemas/microsoft.graph.agentInstance'
'#microsoft.graph.agentRegistration': '#/components/schemas/microsoft.graph.agentRegistration'
'#microsoft.graph.agentRiskDetection': '#/components/schemas/microsoft.graph.agentRiskDetection'
'#microsoft.graph.agreement': '#/components/schemas/microsoft.graph.agreement'
'#microsoft.graph.agreementAcceptance': '#/components/schemas/microsoft.graph.agreementAcceptance'
'#microsoft.graph.agreementFileProperties': '#/components/schemas/microsoft.graph.agreementFileProperties'
'#microsoft.graph.agreementFile': '#/components/schemas/microsoft.graph.agreementFile'
'#microsoft.graph.agreementFileLocalization': '#/components/schemas/microsoft.graph.agreementFileLocalization'
'#microsoft.graph.agreementFileVersion': '#/components/schemas/microsoft.graph.agreementFileVersion'
'#microsoft.graph.aiInteraction': '#/components/schemas/microsoft.graph.aiInteraction'
'#microsoft.graph.aiInteractionHistory': '#/components/schemas/microsoft.graph.aiInteractionHistory'
'#microsoft.graph.aiOnlineMeeting': '#/components/schemas/microsoft.graph.aiOnlineMeeting'
'#microsoft.graph.aiUser': '#/components/schemas/microsoft.graph.aiUser'
'#microsoft.graph.alert': '#/components/schemas/microsoft.graph.alert'
'#microsoft.graph.allowedDataLocation': '#/components/schemas/microsoft.graph.allowedDataLocation'
'#microsoft.graph.allowedValue': '#/components/schemas/microsoft.graph.allowedValue'
'#microsoft.graph.androidAppConfigurationSchema': '#/components/schemas/microsoft.graph.androidAppConfigurationSchema'
'#microsoft.graph.androidDeviceComplianceLocalActionBase': '#/components/schemas/microsoft.graph.androidDeviceComplianceLocalActionBase'
'#microsoft.graph.androidDeviceComplianceLocalActionLockDevice': '#/components/schemas/microsoft.graph.androidDeviceComplianceLocalActionLockDevice'
'#microsoft.graph.androidDeviceComplianceLocalActionLockDeviceWithPasscode': '#/components/schemas/microsoft.graph.androidDeviceComplianceLocalActionLockDeviceWithPasscode'
'#microsoft.graph.androidDeviceOwnerEnrollmentProfile': '#/components/schemas/microsoft.graph.androidDeviceOwnerEnrollmentProfile'
'#microsoft.graph.androidForWorkAppConfigurationSchema': '#/components/schemas/microsoft.graph.androidForWorkAppConfigurationSchema'
'#microsoft.graph.androidForWorkEnrollmentProfile': '#/components/schemas/microsoft.graph.androidForWorkEnrollmentProfile'
'#microsoft.graph.androidForWorkSettings': '#/components/schemas/microsoft.graph.androidForWorkSettings'
'#microsoft.graph.androidManagedStoreAccountEnterpriseSettings': '#/components/schemas/microsoft.graph.androidManagedStoreAccountEnterpriseSettings'
'#microsoft.graph.androidManagedStoreAppConfigurationSchema': '#/components/schemas/microsoft.graph.androidManagedStoreAppConfigurationSchema'
'#microsoft.graph.appConsentApprovalRoute': '#/components/schemas/microsoft.graph.appConsentApprovalRoute'
'#microsoft.graph.appConsentRequest': '#/components/schemas/microsoft.graph.appConsentRequest'
'#microsoft.graph.appCredentialSignInActivity': '#/components/schemas/microsoft.graph.appCredentialSignInActivity'
'#microsoft.graph.appleEnrollmentProfileAssignment': '#/components/schemas/microsoft.graph.appleEnrollmentProfileAssignment'
'#microsoft.graph.applePushNotificationCertificate': '#/components/schemas/microsoft.graph.applePushNotificationCertificate'
'#microsoft.graph.appleUserInitiatedEnrollmentProfile': '#/components/schemas/microsoft.graph.appleUserInitiatedEnrollmentProfile'
'#microsoft.graph.applicationSegment': '#/components/schemas/microsoft.graph.applicationSegment'
'#microsoft.graph.ipApplicationSegment': '#/components/schemas/microsoft.graph.ipApplicationSegment'
'#microsoft.graph.webApplicationSegment': '#/components/schemas/microsoft.graph.webApplicationSegment'
'#microsoft.graph.applicationSignInDetailedSummary': '#/components/schemas/microsoft.graph.applicationSignInDetailedSummary'
'#microsoft.graph.applicationSignInSummary': '#/components/schemas/microsoft.graph.applicationSignInSummary'
'#microsoft.graph.applicationTemplate': '#/components/schemas/microsoft.graph.applicationTemplate'
'#microsoft.graph.appLogCollectionRequest': '#/components/schemas/microsoft.graph.appLogCollectionRequest'
'#microsoft.graph.approval': '#/components/schemas/microsoft.graph.approval'
'#microsoft.graph.approvalItem': '#/components/schemas/microsoft.graph.approvalItem'
'#microsoft.graph.approvalItemRequest': '#/components/schemas/microsoft.graph.approvalItemRequest'
'#microsoft.graph.approvalItemResponse': '#/components/schemas/microsoft.graph.approvalItemResponse'
'#microsoft.graph.approvalOperation': '#/components/schemas/microsoft.graph.approvalOperation'
'#microsoft.graph.approvalSolution': '#/components/schemas/microsoft.graph.approvalSolution'
'#microsoft.graph.approvalStep': '#/components/schemas/microsoft.graph.approvalStep'
'#microsoft.graph.approvalWorkflowProvider': '#/components/schemas/microsoft.graph.approvalWorkflowProvider'
'#microsoft.graph.approvedClientApp': '#/components/schemas/microsoft.graph.approvedClientApp'
'#microsoft.graph.appScope': '#/components/schemas/microsoft.graph.appScope'
'#microsoft.graph.customAppScope': '#/components/schemas/microsoft.graph.customAppScope'
'#microsoft.graph.appVulnerabilityManagedDevice': '#/components/schemas/microsoft.graph.appVulnerabilityManagedDevice'
'#microsoft.graph.appVulnerabilityMobileApp': '#/components/schemas/microsoft.graph.appVulnerabilityMobileApp'
'#microsoft.graph.assignedComputeInstanceDetails': '#/components/schemas/microsoft.graph.assignedComputeInstanceDetails'
'#microsoft.graph.assignmentFilterEvaluationStatusDetails': '#/components/schemas/microsoft.graph.assignmentFilterEvaluationStatusDetails'
'#microsoft.graph.attachment': '#/components/schemas/microsoft.graph.attachment'
'#microsoft.graph.fileAttachment': '#/components/schemas/microsoft.graph.fileAttachment'
'#microsoft.graph.itemAttachment': '#/components/schemas/microsoft.graph.itemAttachment'
'#microsoft.graph.referenceAttachment': '#/components/schemas/microsoft.graph.referenceAttachment'
'#microsoft.graph.attachmentBase': '#/components/schemas/microsoft.graph.attachmentBase'
'#microsoft.graph.taskFileAttachment': '#/components/schemas/microsoft.graph.taskFileAttachment'
'#microsoft.graph.attachmentSession': '#/components/schemas/microsoft.graph.attachmentSession'
'#microsoft.graph.attackSimulationRoot': '#/components/schemas/microsoft.graph.attackSimulationRoot'
'#microsoft.graph.attendanceRecord': '#/components/schemas/microsoft.graph.attendanceRecord'
'#microsoft.graph.attributeMappingFunctionSchema': '#/components/schemas/microsoft.graph.attributeMappingFunctionSchema'
'#microsoft.graph.attributeSet': '#/components/schemas/microsoft.graph.attributeSet'
'#microsoft.graph.audioRoutingGroup': '#/components/schemas/microsoft.graph.audioRoutingGroup'
'#microsoft.graph.auditActivityType': '#/components/schemas/microsoft.graph.auditActivityType'
'#microsoft.graph.auditEvent': '#/components/schemas/microsoft.graph.auditEvent'
'#microsoft.graph.authentication': '#/components/schemas/microsoft.graph.authentication'
'#microsoft.graph.authenticationCombinationConfiguration': '#/components/schemas/microsoft.graph.authenticationCombinationConfiguration'
'#microsoft.graph.fido2CombinationConfiguration': '#/components/schemas/microsoft.graph.fido2CombinationConfiguration'
'#microsoft.graph.x509CertificateCombinationConfiguration': '#/components/schemas/microsoft.graph.x509CertificateCombinationConfiguration'
'#microsoft.graph.authenticationContextClassReference': '#/components/schemas/microsoft.graph.authenticationContextClassReference'
'#microsoft.graph.authenticationEventListener': '#/components/schemas/microsoft.graph.authenticationEventListener'
'#microsoft.graph.onAttributeCollectionListener': '#/components/schemas/microsoft.graph.onAttributeCollectionListener'
'#microsoft.graph.onAttributeCollectionStartListener': '#/components/schemas/microsoft.graph.onAttributeCollectionStartListener'
'#microsoft.graph.onAttributeCollectionSubmitListener': '#/components/schemas/microsoft.graph.onAttributeCollectionSubmitListener'
'#microsoft.graph.onAuthenticationMethodLoadStartListener': '#/components/schemas/microsoft.graph.onAuthenticationMethodLoadStartListener'
'#microsoft.graph.onEmailOtpSendListener': '#/components/schemas/microsoft.graph.onEmailOtpSendListener'
'#microsoft.graph.onFraudProtectionLoadStartListener': '#/components/schemas/microsoft.graph.onFraudProtectionLoadStartListener'
'#microsoft.graph.onInteractiveAuthFlowStartListener': '#/components/schemas/microsoft.graph.onInteractiveAuthFlowStartListener'
'#microsoft.graph.onPasswordSubmitListener': '#/components/schemas/microsoft.graph.onPasswordSubmitListener'
'#microsoft.graph.onPhoneMethodLoadStartListener': '#/components/schemas/microsoft.graph.onPhoneMethodLoadStartListener'
'#microsoft.graph.onTokenIssuanceStartListener': '#/components/schemas/microsoft.graph.onTokenIssuanceStartListener'
'#microsoft.graph.onUserCreateStartListener': '#/components/schemas/microsoft.graph.onUserCreateStartListener'
'#microsoft.graph.onVerifiedIdClaimValidationListener': '#/components/schemas/microsoft.graph.onVerifiedIdClaimValidationListener'
'#microsoft.graph.authenticationEventsFlow': '#/components/schemas/microsoft.graph.authenticationEventsFlow'
'#microsoft.graph.externalUsersSelfServiceSignUpEventsFlow': '#/components/schemas/microsoft.graph.externalUsersSelfServiceSignUpEventsFlow'
'#microsoft.graph.authenticationEventsPolicy': '#/components/schemas/microsoft.graph.authenticationEventsPolicy'
'#microsoft.graph.authenticationFailure': '#/components/schemas/microsoft.graph.authenticationFailure'
'#microsoft.graph.authenticationFlowsPolicy': '#/components/schemas/microsoft.graph.authenticationFlowsPolicy'
'#microsoft.graph.authenticationListener': '#/components/schemas/microsoft.graph.authenticationListener'
'#microsoft.graph.invokeUserFlowListener': '#/components/schemas/microsoft.graph.invokeUserFlowListener'
'#microsoft.graph.authenticationMethod': '#/components/schemas/microsoft.graph.authenticationMethod'
'#microsoft.graph.emailAuthenticationMethod': '#/components/schemas/microsoft.graph.emailAuthenticationMethod'
'#microsoft.graph.externalAuthenticationMethod': '#/components/schemas/microsoft.graph.externalAuthenticationMethod'
'#microsoft.graph.fido2AuthenticationMethod': '#/components/schemas/microsoft.graph.fido2AuthenticationMethod'
'#microsoft.graph.hardwareOathAuthenticationMethod': '#/components/schemas/microsoft.graph.hardwareOathAuthenticationMethod'
'#microsoft.graph.microsoftAuthenticatorAuthenticationMethod': '#/components/schemas/microsoft.graph.microsoftAuthenticatorAuthenticationMethod'
'#microsoft.graph.passwordAuthenticationMethod': '#/components/schemas/microsoft.graph.passwordAuthenticationMethod'
'#microsoft.graph.passwordlessMicrosoftAuthenticatorAuthenticationMethod': '#/components/schemas/microsoft.graph.passwordlessMicrosoftAuthenticatorAuthenticationMethod'
'#microsoft.graph.phoneAuthenticationMethod': '#/components/schemas/microsoft.graph.phoneAuthenticationMethod'
'#microsoft.graph.platformCredentialAuthenticationMethod': '#/components/schemas/microsoft.graph.platformCredentialAuthenticationMethod'
'#microsoft.graph.qrCodePinAuthenticationMethod': '#/components/schemas/microsoft.graph.qrCodePinAuthenticationMethod'
'#microsoft.graph.softwareOathAuthenticationMethod': '#/components/schemas/microsoft.graph.softwareOathAuthenticationMethod'
'#microsoft.graph.temporaryAccessPassAuthenticationMethod': '#/components/schemas/microsoft.graph.temporaryAccessPassAuthenticationMethod'
'#microsoft.graph.windowsHelloForBusinessAuthenticationMethod': '#/components/schemas/microsoft.graph.windowsHelloForBusinessAuthenticationMethod'
'#microsoft.graph.authenticationMethodConfiguration': '#/components/schemas/microsoft.graph.authenticationMethodConfiguration'
'#microsoft.graph.emailAuthenticationMethodConfiguration': '#/components/schemas/microsoft.graph.emailAuthenticationMethodConfiguration'
'#microsoft.graph.externalAuthenticationMethodConfiguration': '#/components/schemas/microsoft.graph.externalAuthenticationMethodConfiguration'
'#microsoft.graph.fido2AuthenticationMethodConfiguration': '#/components/schemas/microsoft.graph.fido2AuthenticationMethodConfiguration'
'#microsoft.graph.hardwareOathAuthenticationMethodConfiguration': '#/components/schemas/microsoft.graph.hardwareOathAuthenticationMethodConfiguration'
'#microsoft.graph.microsoftAuthenticatorAuthenticationMethodConfiguration': '#/components/schemas/microsoft.graph.microsoftAuthenticatorAuthenticationMethodConfiguration'
'#microsoft.graph.qrCodePinAuthenticationMethodConfiguration': '#/components/schemas/microsoft.graph.qrCodePinAuthenticationMethodConfiguration'
'#microsoft.graph.smsAuthenticationMethodConfiguration': '#/components/schemas/microsoft.graph.smsAuthenticationMethodConfiguration'
'#microsoft.graph.softwareOathAuthenticationMethodConfiguration': '#/components/schemas/microsoft.graph.softwareOathAuthenticationMethodConfiguration'
'#microsoft.graph.temporaryAccessPassAuthenticationMethodConfiguration': '#/components/schemas/microsoft.graph.temporaryAccessPassAuthenticationMethodConfiguration'
'#microsoft.graph.verifiableCredentialsAuthenticationMethodConfiguration': '#/components/schemas/microsoft.graph.verifiableCredentialsAuthenticationMethodConfiguration'
'#microsoft.graph.voiceAuthenticationMethodConfiguration': '#/components/schemas/microsoft.graph.voiceAuthenticationMethodConfiguration'
'#microsoft.graph.x509CertificateAuthenticationMethodConfiguration': '#/components/schemas/microsoft.graph.x509CertificateAuthenticationMethodConfiguration'
'#microsoft.graph.authenticationMethodDevice': '#/components/schemas/microsoft.graph.authenticationMethodDevice'
'#microsoft.graph.hardwareOathTokenAuthenticationMethodDevice': '#/components/schemas/microsoft.graph.hardwareOathTokenAuthenticationMethodDevice'
'#microsoft.graph.authenticationMethodModeDetail': '#/components/schemas/microsoft.graph.authenticationMethodModeDetail'
'#microsoft.graph.authenticationMethodsPolicy': '#/components/schemas/microsoft.graph.authenticationMethodsPolicy'
'#microsoft.graph.authenticationMethodsRoot': '#/components/schemas/microsoft.graph.authenticationMethodsRoot'
'#microsoft.graph.authenticationMethodTarget': '#/components/schemas/microsoft.graph.authenticationMethodTarget'
'#microsoft.graph.microsoftAuthenticatorAuthenticationMethodTarget': '#/components/schemas/microsoft.graph.microsoftAuthenticatorAuthenticationMethodTarget'
'#microsoft.graph.passkeyAuthenticationMethodTarget': '#/components/schemas/microsoft.graph.passkeyAuthenticationMethodTarget'
'#microsoft.graph.smsAuthenticationMethodTarget': '#/components/schemas/microsoft.graph.smsAuthenticationMethodTarget'
'#microsoft.graph.verifiableCredentialAuthenticationMethodTarget': '#/components/schemas/microsoft.graph.verifiableCredentialAuthenticationMethodTarget'
'#microsoft.graph.voiceAuthenticationMethodTarget': '#/components/schemas/microsoft.graph.voiceAuthenticationMethodTarget'
'#microsoft.graph.authenticationsMetric': '#/components/schemas/microsoft.graph.authenticationsMetric'
'#microsoft.graph.authenticationStrengthPolicy': '#/components/schemas/microsoft.graph.authenticationStrengthPolicy'
'#microsoft.graph.authenticationStrengthRoot': '#/components/schemas/microsoft.graph.authenticationStrengthRoot'
'#microsoft.graph.authoredNote': '#/components/schemas/microsoft.graph.authoredNote'
'#microsoft.graph.authorizationSystem': '#/components/schemas/microsoft.graph.authorizationSystem'
'#microsoft.graph.awsAuthorizationSystem': '#/components/schemas/microsoft.graph.awsAuthorizationSystem'
'#microsoft.graph.azureAuthorizationSystem': '#/components/schemas/microsoft.graph.azureAuthorizationSystem'
'#microsoft.graph.gcpAuthorizationSystem': '#/components/schemas/microsoft.graph.gcpAuthorizationSystem'
'#microsoft.graph.authorizationSystemIdentity': '#/components/schemas/microsoft.graph.authorizationSystemIdentity'
'#microsoft.graph.awsIdentity': '#/components/schemas/microsoft.graph.awsIdentity'
'#microsoft.graph.awsAccessKey': '#/components/schemas/microsoft.graph.awsAccessKey'
'#microsoft.graph.awsEc2Instance': '#/components/schemas/microsoft.graph.awsEc2Instance'
'#microsoft.graph.awsGroup': '#/components/schemas/microsoft.graph.awsGroup'
'#microsoft.graph.awsLambda': '#/components/schemas/microsoft.graph.awsLambda'
'#microsoft.graph.awsRole': '#/components/schemas/microsoft.graph.awsRole'
'#microsoft.graph.awsUser': '#/components/schemas/microsoft.graph.awsUser'
'#microsoft.graph.azureIdentity': '#/components/schemas/microsoft.graph.azureIdentity'
'#microsoft.graph.azureGroup': '#/components/schemas/microsoft.graph.azureGroup'
'#microsoft.graph.azureManagedIdentity': '#/components/schemas/microsoft.graph.azureManagedIdentity'
'#microsoft.graph.azureServerlessFunction': '#/components/schemas/microsoft.graph.azureServerlessFunction'
'#microsoft.graph.azureServicePrincipal': '#/components/schemas/microsoft.graph.azureServicePrincipal'
'#microsoft.graph.azureUser': '#/components/schemas/microsoft.graph.azureUser'
'#microsoft.graph.gcpIdentity': '#/components/schemas/microsoft.graph.gcpIdentity'
'#microsoft.graph.gcpCloudFunction': '#/components/schemas/microsoft.graph.gcpCloudFunction'
'#microsoft.graph.gcpGroup': '#/components/schemas/microsoft.graph.gcpGroup'
'#microsoft.graph.gcpServiceAccount': '#/components/schemas/microsoft.graph.gcpServiceAccount'
'#microsoft.graph.gcpUser': '#/components/schemas/microsoft.graph.gcpUser'
'#microsoft.graph.authorizationSystemResource': '#/components/schemas/microsoft.graph.authorizationSystemResource'
'#microsoft.graph.awsAuthorizationSystemResource': '#/components/schemas/microsoft.graph.awsAuthorizationSystemResource'
'#microsoft.graph.azureAuthorizationSystemResource': '#/components/schemas/microsoft.graph.azureAuthorizationSystemResource'
'#microsoft.graph.gcpAuthorizationSystemResource': '#/components/schemas/microsoft.graph.gcpAuthorizationSystemResource'
'#microsoft.graph.authorizationSystemTypeAction': '#/components/schemas/microsoft.graph.authorizationSystemTypeAction'
'#microsoft.graph.awsAuthorizationSystemTypeAction': '#/components/schemas/microsoft.graph.awsAuthorizationSystemTypeAction'
'#microsoft.graph.azureAuthorizationSystemTypeAction': '#/components/schemas/microsoft.graph.azureAuthorizationSystemTypeAction'
'#microsoft.graph.gcpAuthorizationSystemTypeAction': '#/components/schemas/microsoft.graph.gcpAuthorizationSystemTypeAction'
'#microsoft.graph.authorizationSystemTypeService': '#/components/schemas/microsoft.graph.authorizationSystemTypeService'
'#microsoft.graph.availableAccessPackage': '#/components/schemas/microsoft.graph.availableAccessPackage'
'#microsoft.graph.awsPolicy': '#/components/schemas/microsoft.graph.awsPolicy'
'#microsoft.graph.azureADAuthentication': '#/components/schemas/microsoft.graph.azureADAuthentication'
'#microsoft.graph.azureADPremiumLicenseInsight': '#/components/schemas/microsoft.graph.azureADPremiumLicenseInsight'
'#microsoft.graph.azureRoleDefinition': '#/components/schemas/microsoft.graph.azureRoleDefinition'
'#microsoft.graph.b2cAuthenticationMethodsPolicy': '#/components/schemas/microsoft.graph.b2cAuthenticationMethodsPolicy'
'#microsoft.graph.backupReport': '#/components/schemas/microsoft.graph.backupReport'
'#microsoft.graph.backupRestoreRoot': '#/components/schemas/microsoft.graph.backupRestoreRoot'
'#microsoft.graph.baseItem': '#/components/schemas/microsoft.graph.baseItem'
'#microsoft.graph.baseSitePage': '#/components/schemas/microsoft.graph.baseSitePage'
'#microsoft.graph.newsLinkPage': '#/components/schemas/microsoft.graph.newsLinkPage'
'#microsoft.graph.pageTemplate': '#/components/schemas/microsoft.graph.pageTemplate'
'#microsoft.graph.sitePage': '#/components/schemas/microsoft.graph.sitePage'
'#microsoft.graph.videoNewsLinkPage': '#/components/schemas/microsoft.graph.videoNewsLinkPage'
'#microsoft.graph.drive': '#/components/schemas/microsoft.graph.drive'
'#microsoft.graph.driveItem': '#/components/schemas/microsoft.graph.driveItem'
'#microsoft.graph.list': '#/components/schemas/microsoft.graph.list'
'#microsoft.graph.listItem': '#/components/schemas/microsoft.graph.listItem'
'#microsoft.graph.recycleBin': '#/components/schemas/microsoft.graph.recycleBin'
'#microsoft.graph.recycleBinItem': '#/components/schemas/microsoft.graph.recycleBinItem'
'#microsoft.graph.sharedDriveItem': '#/components/schemas/microsoft.graph.sharedDriveItem'
'#microsoft.graph.site': '#/components/schemas/microsoft.graph.site'
'#microsoft.graph.baseItemVersion': '#/components/schemas/microsoft.graph.baseItemVersion'
'#microsoft.graph.driveItemVersion': '#/components/schemas/microsoft.graph.driveItemVersion'
'#microsoft.graph.listItemVersion': '#/components/schemas/microsoft.graph.listItemVersion'
'#microsoft.graph.documentSetVersion': '#/components/schemas/microsoft.graph.documentSetVersion'
'#microsoft.graph.baseMapFeature': '#/components/schemas/microsoft.graph.baseMapFeature'
'#microsoft.graph.buildingMap': '#/components/schemas/microsoft.graph.buildingMap'
'#microsoft.graph.fixtureMap': '#/components/schemas/microsoft.graph.fixtureMap'
'#microsoft.graph.footprintMap': '#/components/schemas/microsoft.graph.footprintMap'
'#microsoft.graph.levelMap': '#/components/schemas/microsoft.graph.levelMap'
'#microsoft.graph.sectionMap': '#/components/schemas/microsoft.graph.sectionMap'
'#microsoft.graph.unitMap': '#/components/schemas/microsoft.graph.unitMap'
'#microsoft.graph.bitlocker': '#/components/schemas/microsoft.graph.bitlocker'
'#microsoft.graph.bitlockerRecoveryKey': '#/components/schemas/microsoft.graph.bitlockerRecoveryKey'
'#microsoft.graph.bookingAppointment': '#/components/schemas/microsoft.graph.bookingAppointment'
'#microsoft.graph.bookingCurrency': '#/components/schemas/microsoft.graph.bookingCurrency'
'#microsoft.graph.bookingCustomQuestion': '#/components/schemas/microsoft.graph.bookingCustomQuestion'
'#microsoft.graph.bookingNamedEntity': '#/components/schemas/microsoft.graph.bookingNamedEntity'
'#microsoft.graph.bookingBusiness': '#/components/schemas/microsoft.graph.bookingBusiness'
'#microsoft.graph.bookingPerson': '#/components/schemas/microsoft.graph.bookingPerson'
'#microsoft.graph.bookingCustomer': '#/components/schemas/microsoft.graph.bookingCustomer'
'#microsoft.graph.bookingStaffMember': '#/components/schemas/microsoft.graph.bookingStaffMember'
'#microsoft.graph.bookingService': '#/components/schemas/microsoft.graph.bookingService'
'#microsoft.graph.browserSharedCookie': '#/components/schemas/microsoft.graph.browserSharedCookie'
'#microsoft.graph.browserSite': '#/components/schemas/microsoft.graph.browserSite'
'#microsoft.graph.browserSiteList': '#/components/schemas/microsoft.graph.browserSiteList'
'#microsoft.graph.browseSessionBase': '#/components/schemas/microsoft.graph.browseSessionBase'
'#microsoft.graph.oneDriveForBusinessBrowseSession': '#/components/schemas/microsoft.graph.oneDriveForBusinessBrowseSession'
'#microsoft.graph.sharePointBrowseSession': '#/components/schemas/microsoft.graph.sharePointBrowseSession'
'#microsoft.graph.bulkUpload': '#/components/schemas/microsoft.graph.bulkUpload'
'#microsoft.graph.businessFlow': '#/components/schemas/microsoft.graph.businessFlow'
'#microsoft.graph.businessFlowTemplate': '#/components/schemas/microsoft.graph.businessFlowTemplate'
'#microsoft.graph.businessScenario': '#/components/schemas/microsoft.graph.businessScenario'
'#microsoft.graph.businessScenarioPlanner': '#/components/schemas/microsoft.graph.businessScenarioPlanner'
'#microsoft.graph.businessScenarioPlanReference': '#/components/schemas/microsoft.graph.businessScenarioPlanReference'
'#microsoft.graph.calendar': '#/components/schemas/microsoft.graph.calendar'
'#microsoft.graph.calendarGroup': '#/components/schemas/microsoft.graph.calendarGroup'
'#microsoft.graph.calendarPermission': '#/components/schemas/microsoft.graph.calendarPermission'
'#microsoft.graph.call': '#/components/schemas/microsoft.graph.call'
'#microsoft.graph.callAiInsight': '#/components/schemas/microsoft.graph.callAiInsight'
'#microsoft.graph.callEvent': '#/components/schemas/microsoft.graph.callEvent'
'#microsoft.graph.emergencyCallEvent': '#/components/schemas/microsoft.graph.emergencyCallEvent'
'#microsoft.graph.callRecording': '#/components/schemas/microsoft.graph.callRecording'
'#microsoft.graph.callSettings': '#/components/schemas/microsoft.graph.callSettings'
'#microsoft.graph.callTranscript': '#/components/schemas/microsoft.graph.callTranscript'
'#microsoft.graph.canvasLayout': '#/components/schemas/microsoft.graph.canvasLayout'
'#microsoft.graph.caPoliciesDeletableRoot': '#/components/schemas/microsoft.graph.caPoliciesDeletableRoot'
'#microsoft.graph.cartToClassAssociation': '#/components/schemas/microsoft.graph.cartToClassAssociation'
'#microsoft.graph.certificateAuthorityAsEntity': '#/components/schemas/microsoft.graph.certificateAuthorityAsEntity'
'#microsoft.graph.certificateAuthorityPath': '#/components/schemas/microsoft.graph.certificateAuthorityPath'
'#microsoft.graph.certificateBasedAuthConfiguration': '#/components/schemas/microsoft.graph.certificateBasedAuthConfiguration'
'#microsoft.graph.certificateConnectorDetails': '#/components/schemas/microsoft.graph.certificateConnectorDetails'
'#microsoft.graph.changeTrackedEntity': '#/components/schemas/microsoft.graph.changeTrackedEntity'
'#microsoft.graph.dayNote': '#/components/schemas/microsoft.graph.dayNote'
'#microsoft.graph.openShift': '#/components/schemas/microsoft.graph.openShift'
'#microsoft.graph.scheduleChangeRequest': '#/components/schemas/microsoft.graph.scheduleChangeRequest'
'#microsoft.graph.offerShiftRequest': '#/components/schemas/microsoft.graph.offerShiftRequest'
'#microsoft.graph.swapShiftsChangeRequest': '#/components/schemas/microsoft.graph.swapShiftsChangeRequest'
'#microsoft.graph.openShiftChangeRequest': '#/components/schemas/microsoft.graph.openShiftChangeRequest'
'#microsoft.graph.timeOffRequest': '#/components/schemas/microsoft.graph.timeOffRequest'
'#microsoft.graph.schedulingGroup': '#/components/schemas/microsoft.graph.schedulingGroup'
'#microsoft.graph.shift': '#/components/schemas/microsoft.graph.shift'
'#microsoft.graph.shiftPreferences': '#/components/schemas/microsoft.graph.shiftPreferences'
'#microsoft.graph.timeCard': '#/components/schemas/microsoft.graph.timeCard'
'#microsoft.graph.timeOff': '#/components/schemas/microsoft.graph.timeOff'
'#microsoft.graph.timeOffReason': '#/components/schemas/microsoft.graph.timeOffReason'
'#microsoft.graph.workforceIntegration': '#/components/schemas/microsoft.graph.workforceIntegration'
'#microsoft.graph.channel': '#/components/schemas/microsoft.graph.channel'
'#microsoft.graph.chat': '#/components/schemas/microsoft.graph.chat'
'#microsoft.graph.chatMessage': '#/components/schemas/microsoft.graph.chatMessage'
'#microsoft.graph.targetedChatMessage': '#/components/schemas/microsoft.graph.targetedChatMessage'
'#microsoft.graph.chatMessageInfo': '#/components/schemas/microsoft.graph.chatMessageInfo'
'#microsoft.graph.checklistItem': '#/components/schemas/microsoft.graph.checklistItem'
'#microsoft.graph.chromeOSOnboardingSettings': '#/components/schemas/microsoft.graph.chromeOSOnboardingSettings'
'#microsoft.graph.cloudAppSecurityProfile': '#/components/schemas/microsoft.graph.cloudAppSecurityProfile'
'#microsoft.graph.cloudCertificationAuthority': '#/components/schemas/microsoft.graph.cloudCertificationAuthority'
'#microsoft.graph.cloudCertificationAuthorityLeafCertificate': '#/components/schemas/microsoft.graph.cloudCertificationAuthorityLeafCertificate'
'#microsoft.graph.cloudCertificationAuthorityVersion': '#/components/schemas/microsoft.graph.cloudCertificationAuthorityVersion'
'#microsoft.graph.cloudClipboardItem': '#/components/schemas/microsoft.graph.cloudClipboardItem'
'#microsoft.graph.cloudClipboardRoot': '#/components/schemas/microsoft.graph.cloudClipboardRoot'
'#microsoft.graph.cloudPC': '#/components/schemas/microsoft.graph.cloudPC'
'#microsoft.graph.cloudPcAuditEvent': '#/components/schemas/microsoft.graph.cloudPcAuditEvent'
'#microsoft.graph.cloudPcBulkAction': '#/components/schemas/microsoft.graph.cloudPcBulkAction'
'#microsoft.graph.cloudPcBulkCreateSnapshot': '#/components/schemas/microsoft.graph.cloudPcBulkCreateSnapshot'
'#microsoft.graph.cloudPcBulkDisasterRecovery': '#/components/schemas/microsoft.graph.cloudPcBulkDisasterRecovery'
'#microsoft.graph.cloudPcBulkDisasterRecoveryFailback': '#/components/schemas/microsoft.graph.cloudPcBulkDisasterRecoveryFailback'
'#microsoft.graph.cloudPcBulkDisasterRecoveryFailover': '#/components/schemas/microsoft.graph.cloudPcBulkDisasterRecoveryFailover'
'#microsoft.graph.cloudPcBulkModifyDiskEncryptionType': '#/components/schemas/microsoft.graph.cloudPcBulkModifyDiskEncryptionType'
'#microsoft.graph.cloudPcBulkMove': '#/components/schemas/microsoft.graph.cloudPcBulkMove'
'#microsoft.graph.cloudPcBulkPowerOff': '#/components/schemas/microsoft.graph.cloudPcBulkPowerOff'
'#microsoft.graph.cloudPcBulkPowerOn': '#/components/schemas/microsoft.graph.cloudPcBulkPowerOn'
'#microsoft.graph.cloudPcBulkReinstallAgent': '#/components/schemas/microsoft.graph.cloudPcBulkReinstallAgent'
'#microsoft.graph.cloudPcBulkReprovision': '#/components/schemas/microsoft.graph.cloudPcBulkReprovision'
'#microsoft.graph.cloudPcBulkResize': '#/components/schemas/microsoft.graph.cloudPcBulkResize'
'#microsoft.graph.cloudPcBulkRestart': '#/components/schemas/microsoft.graph.cloudPcBulkRestart'
'#microsoft.graph.cloudPcBulkRestore': '#/components/schemas/microsoft.graph.cloudPcBulkRestore'
'#microsoft.graph.cloudPcBulkSetReviewStatus': '#/components/schemas/microsoft.graph.cloudPcBulkSetReviewStatus'
'#microsoft.graph.cloudPcBulkTroubleshoot': '#/components/schemas/microsoft.graph.cloudPcBulkTroubleshoot'
'#microsoft.graph.cloudPcCloudApp': '#/components/schemas/microsoft.graph.cloudPcCloudApp'
'#microsoft.graph.cloudPCConnectivityIssue': '#/components/schemas/microsoft.graph.cloudPCConnectivityIssue'
'#microsoft.graph.cloudPcCrossCloudGovernmentOrganizationMapping': '#/components/schemas/microsoft.graph.cloudPcCrossCloudGovernmentOrganizationMapping'
'#microsoft.graph.cloudPcDeviceImage': '#/components/schemas/microsoft.graph.cloudPcDeviceImage'
'#microsoft.graph.cloudPcExportJob': '#/components/schemas/microsoft.graph.cloudPcExportJob'
'#microsoft.graph.cloudPcExternalPartner': '#/components/schemas/microsoft.graph.cloudPcExternalPartner'
'#microsoft.graph.cloudPcExternalPartnerSetting': '#/components/schemas/microsoft.graph.cloudPcExternalPartnerSetting'
'#microsoft.graph.cloudPcFrontLineServicePlan': '#/components/schemas/microsoft.graph.cloudPcFrontLineServicePlan'
'#microsoft.graph.cloudPcGalleryImage': '#/components/schemas/microsoft.graph.cloudPcGalleryImage'
'#microsoft.graph.cloudPcManagedLicense': '#/components/schemas/microsoft.graph.cloudPcManagedLicense'
'#microsoft.graph.cloudPcOnPremisesConnection': '#/components/schemas/microsoft.graph.cloudPcOnPremisesConnection'
'#microsoft.graph.cloudPcOrganizationSettings': '#/components/schemas/microsoft.graph.cloudPcOrganizationSettings'
'#microsoft.graph.cloudPcPool': '#/components/schemas/microsoft.graph.cloudPcPool'
'#microsoft.graph.cloudPcAgentPool': '#/components/schemas/microsoft.graph.cloudPcAgentPool'
'#microsoft.graph.cloudPcPoolAssignment': '#/components/schemas/microsoft.graph.cloudPcPoolAssignment'
'#microsoft.graph.cloudPcAgentPoolUserAssignment': '#/components/schemas/microsoft.graph.cloudPcAgentPoolUserAssignment'
'#microsoft.graph.cloudPcProvisioningPolicy': '#/components/schemas/microsoft.graph.cloudPcProvisioningPolicy'
'#microsoft.graph.cloudPcProvisioningPolicyAssignment': '#/components/schemas/microsoft.graph.cloudPcProvisioningPolicyAssignment'
'#microsoft.graph.cloudPcReport': '#/components/schemas/microsoft.graph.cloudPcReport'
'#microsoft.graph.cloudPcReports': '#/components/schemas/microsoft.graph.cloudPcReports'
'#microsoft.graph.cloudPcServicePlan': '#/components/schemas/microsoft.graph.cloudPcServicePlan'
'#microsoft.graph.cloudPcSnapshot': '#/components/schemas/microsoft.graph.cloudPcSnapshot'
'#microsoft.graph.cloudPcSupportedRegion': '#/components/schemas/microsoft.graph.cloudPcSupportedRegion'
'#microsoft.graph.cloudPcUserSetting': '#/components/schemas/microsoft.graph.cloudPcUserSetting'
'#microsoft.graph.cloudPcUserSettingAssignment': '#/components/schemas/microsoft.graph.cloudPcUserSettingAssignment'
'#microsoft.graph.cloudPCUserSettingsPersistenceDetail': '#/components/schemas/microsoft.graph.cloudPCUserSettingsPersistenceDetail'
'#microsoft.graph.columnDefinition': '#/components/schemas/microsoft.graph.columnDefinition'
'#microsoft.graph.columnLink': '#/components/schemas/microsoft.graph.columnLink'
'#microsoft.graph.comanagementEligibleDevice': '#/components/schemas/microsoft.graph.comanagementEligibleDevice'
'#microsoft.graph.command': '#/components/schemas/microsoft.graph.command'
'#microsoft.graph.commsOperation': '#/components/schemas/microsoft.graph.commsOperation'
'#microsoft.graph.addLargeGalleryViewOperation': '#/components/schemas/microsoft.graph.addLargeGalleryViewOperation'
'#microsoft.graph.admitAllFromLobbyOperation': '#/components/schemas/microsoft.graph.admitAllFromLobbyOperation'
'#microsoft.graph.admitFromLobbyOperation': '#/components/schemas/microsoft.graph.admitFromLobbyOperation'
'#microsoft.graph.cancelMediaProcessingOperation': '#/components/schemas/microsoft.graph.cancelMediaProcessingOperation'
'#microsoft.graph.inviteParticipantsOperation': '#/components/schemas/microsoft.graph.inviteParticipantsOperation'
'#microsoft.graph.muteParticipantOperation': '#/components/schemas/microsoft.graph.muteParticipantOperation'
'#microsoft.graph.muteParticipantsOperation': '#/components/schemas/microsoft.graph.muteParticipantsOperation'
'#microsoft.graph.playPromptOperation': '#/components/schemas/microsoft.graph.playPromptOperation'
'#microsoft.graph.recordOperation': '#/components/schemas/microsoft.graph.recordOperation'
'#microsoft.graph.removeFromLobbyOperation': '#/components/schemas/microsoft.graph.removeFromLobbyOperation'
'#microsoft.graph.sendDtmfTonesOperation': '#/components/schemas/microsoft.graph.sendDtmfTonesOperation'
'#microsoft.graph.startHoldMusicOperation': '#/components/schemas/microsoft.graph.startHoldMusicOperation'
'#microsoft.graph.startRecordingOperation': '#/components/schemas/microsoft.graph.startRecordingOperation'
'#microsoft.graph.startTranscriptionOperation': '#/components/schemas/microsoft.graph.startTranscriptionOperation'
'#microsoft.graph.stopHoldMusicOperation': '#/components/schemas/microsoft.graph.stopHoldMusicOperation'
'#microsoft.graph.stopRecordingOperation': '#/components/schemas/microsoft.graph.stopRecordingOperation'
'#microsoft.graph.stopTranscriptionOperation': '#/components/schemas/microsoft.graph.stopTranscriptionOperation'
'#microsoft.graph.subscribeToToneOperation': '#/components/schemas/microsoft.graph.subscribeToToneOperation'
'#microsoft.graph.unmuteParticipantOperation': '#/components/schemas/microsoft.graph.unmuteParticipantOperation'
'#microsoft.graph.updateRecordingStatusOperation': '#/components/schemas/microsoft.graph.updateRecordingStatusOperation'
'#microsoft.graph.community': '#/components/schemas/microsoft.graph.community'
'#microsoft.graph.companySubscription': '#/components/schemas/microsoft.graph.companySubscription'
'#microsoft.graph.complianceManagementPartner': '#/components/schemas/microsoft.graph.complianceManagementPartner'
'#microsoft.graph.conditionalAccessRoot': '#/components/schemas/microsoft.graph.conditionalAccessRoot'
'#microsoft.graph.conditionalAccessTemplate': '#/components/schemas/microsoft.graph.conditionalAccessTemplate'
'#microsoft.graph.configManagerCollection': '#/components/schemas/microsoft.graph.configManagerCollection'
'#microsoft.graph.configurationBaseline': '#/components/schemas/microsoft.graph.configurationBaseline'
'#microsoft.graph.configurationDrift': '#/components/schemas/microsoft.graph.configurationDrift'
'#microsoft.graph.configurationManagement': '#/components/schemas/microsoft.graph.configurationManagement'
'#microsoft.graph.configurationMonitor': '#/components/schemas/microsoft.graph.configurationMonitor'
'#microsoft.graph.configurationMonitoringResult': '#/components/schemas/microsoft.graph.configurationMonitoringResult'
'#microsoft.graph.configurationSnapshotJob': '#/components/schemas/microsoft.graph.configurationSnapshotJob'
'#microsoft.graph.connectedOrganization': '#/components/schemas/microsoft.graph.connectedOrganization'
'#microsoft.graph.connectionOperation': '#/components/schemas/microsoft.graph.connectionOperation'
'#microsoft.graph.connector': '#/components/schemas/microsoft.graph.connector'
'#microsoft.graph.connectorGroup': '#/components/schemas/microsoft.graph.connectorGroup'
'#microsoft.graph.contactFolder': '#/components/schemas/microsoft.graph.contactFolder'
'#microsoft.graph.contactMergeSuggestions': '#/components/schemas/microsoft.graph.contactMergeSuggestions'
'#microsoft.graph.contentActivity': '#/components/schemas/microsoft.graph.contentActivity'
'#microsoft.graph.contentModel': '#/components/schemas/microsoft.graph.contentModel'
'#microsoft.graph.contentSharingSession': '#/components/schemas/microsoft.graph.contentSharingSession'
'#microsoft.graph.contentType': '#/components/schemas/microsoft.graph.contentType'
'#microsoft.graph.continuousAccessEvaluationPolicy': '#/components/schemas/microsoft.graph.continuousAccessEvaluationPolicy'
'#microsoft.graph.controlConfiguration': '#/components/schemas/microsoft.graph.controlConfiguration'
'#microsoft.graph.endUserSettings': '#/components/schemas/microsoft.graph.endUserSettings'
'#microsoft.graph.entraIdProtectionRiskyUserApproval': '#/components/schemas/microsoft.graph.entraIdProtectionRiskyUserApproval'
'#microsoft.graph.insiderRiskyUserApproval': '#/components/schemas/microsoft.graph.insiderRiskyUserApproval'
'#microsoft.graph.conversation': '#/components/schemas/microsoft.graph.conversation'
'#microsoft.graph.conversationMember': '#/components/schemas/microsoft.graph.conversationMember'
'#microsoft.graph.aadUserConversationMember': '#/components/schemas/microsoft.graph.aadUserConversationMember'
'#microsoft.graph.anonymousGuestConversationMember': '#/components/schemas/microsoft.graph.anonymousGuestConversationMember'
'#microsoft.graph.azureCommunicationServicesUserConversationMember': '#/components/schemas/microsoft.graph.azureCommunicationServicesUserConversationMember'
'#microsoft.graph.microsoftAccountUserConversationMember': '#/components/schemas/microsoft.graph.microsoftAccountUserConversationMember'
'#microsoft.graph.phoneUserConversationMember': '#/components/schemas/microsoft.graph.phoneUserConversationMember'
'#microsoft.graph.skypeForBusinessUserConversationMember': '#/components/schemas/microsoft.graph.skypeForBusinessUserConversationMember'
'#microsoft.graph.skypeUserConversationMember': '#/components/schemas/microsoft.graph.skypeUserConversationMember'
'#microsoft.graph.conversationThread': '#/components/schemas/microsoft.graph.conversationThread'
'#microsoft.graph.copilotAdmin': '#/components/schemas/microsoft.graph.copilotAdmin'
'#microsoft.graph.copilotAdminCatalog': '#/components/schemas/microsoft.graph.copilotAdminCatalog'
'#microsoft.graph.copilotAdminLimitedMode': '#/components/schemas/microsoft.graph.copilotAdminLimitedMode'
'#microsoft.graph.copilotAdminSetting': '#/components/schemas/microsoft.graph.copilotAdminSetting'
'#microsoft.graph.copilotCommunicationsRoot': '#/components/schemas/microsoft.graph.copilotCommunicationsRoot'
'#microsoft.graph.copilotConversation': '#/components/schemas/microsoft.graph.copilotConversation'
'#microsoft.graph.copilotConversationMessage': '#/components/schemas/microsoft.graph.copilotConversationMessage'
'#microsoft.graph.copilotConversationRequestMessage': '#/components/schemas/microsoft.graph.copilotConversationRequestMessage'
'#microsoft.graph.copilotConversationResponseMessage': '#/components/schemas/microsoft.graph.copilotConversationResponseMessage'
'#microsoft.graph.copilotPackage': '#/components/schemas/microsoft.graph.copilotPackage'
'#microsoft.graph.copilotPackageDetail': '#/components/schemas/microsoft.graph.copilotPackageDetail'
'#microsoft.graph.copilotPeopleAdminSetting': '#/components/schemas/microsoft.graph.copilotPeopleAdminSetting'
'#microsoft.graph.copilotPolicySetting': '#/components/schemas/microsoft.graph.copilotPolicySetting'
'#microsoft.graph.copilotReportRoot': '#/components/schemas/microsoft.graph.copilotReportRoot'
'#microsoft.graph.copilotSetting': '#/components/schemas/microsoft.graph.copilotSetting'
'#microsoft.graph.correlatedIdentity': '#/components/schemas/microsoft.graph.correlatedIdentity'
'#microsoft.graph.corsConfiguration_v2': '#/components/schemas/microsoft.graph.corsConfiguration_v2'
'#microsoft.graph.credentialUsageSummary': '#/components/schemas/microsoft.graph.credentialUsageSummary'
'#microsoft.graph.credentialUserRegistrationCount': '#/components/schemas/microsoft.graph.credentialUserRegistrationCount'
'#microsoft.graph.credentialUserRegistrationDetails': '#/components/schemas/microsoft.graph.credentialUserRegistrationDetails'
'#microsoft.graph.crossTenantAccessPolicyConfigurationDefault': '#/components/schemas/microsoft.graph.crossTenantAccessPolicyConfigurationDefault'
'#microsoft.graph.crossTenantMigrationJob': '#/components/schemas/microsoft.graph.crossTenantMigrationJob'
'#microsoft.graph.crossTenantMigrationTask': '#/components/schemas/microsoft.graph.crossTenantMigrationTask'
'#microsoft.graph.customCalloutExtension': '#/components/schemas/microsoft.graph.customCalloutExtension'
'#microsoft.graph.accessPackageAssignmentRequestWorkflowExtension': '#/components/schemas/microsoft.graph.accessPackageAssignmentRequestWorkflowExtension'
'#microsoft.graph.accessPackageAssignmentWorkflowExtension': '#/components/schemas/microsoft.graph.accessPackageAssignmentWorkflowExtension'
'#microsoft.graph.customAccessPackageWorkflowExtension': '#/components/schemas/microsoft.graph.customAccessPackageWorkflowExtension'
'#microsoft.graph.customAuthenticationExtension': '#/components/schemas/microsoft.graph.customAuthenticationExtension'
'#microsoft.graph.onAttributeCollectionStartCustomExtension': '#/components/schemas/microsoft.graph.onAttributeCollectionStartCustomExtension'
'#microsoft.graph.onAttributeCollectionSubmitCustomExtension': '#/components/schemas/microsoft.graph.onAttributeCollectionSubmitCustomExtension'
'#microsoft.graph.onOtpSendCustomExtension': '#/components/schemas/microsoft.graph.onOtpSendCustomExtension'
'#microsoft.graph.onPasswordSubmitCustomExtension': '#/components/schemas/microsoft.graph.onPasswordSubmitCustomExtension'
'#microsoft.graph.onTokenIssuanceStartCustomExtension': '#/components/schemas/microsoft.graph.onTokenIssuanceStartCustomExtension'
'#microsoft.graph.onVerifiedIdClaimValidationCustomExtension': '#/components/schemas/microsoft.graph.onVerifiedIdClaimValidationCustomExtension'
'#microsoft.graph.identityGovernance.customTaskExtension': '#/components/schemas/microsoft.graph.identityGovernance.customTaskExtension'
'#microsoft.graph.customClaimsPolicy': '#/components/schemas/microsoft.graph.customClaimsPolicy'
'#microsoft.graph.customDataProvidedResourceFile': '#/components/schemas/microsoft.graph.customDataProvidedResourceFile'
'#microsoft.graph.customDataProvidedResourceUploadSession': '#/components/schemas/microsoft.graph.customDataProvidedResourceUploadSession'
'#microsoft.graph.customDataProvidedResourceAccessReviewUploadSession': '#/components/schemas/microsoft.graph.customDataProvidedResourceAccessReviewUploadSession'
'#microsoft.graph.customExtensionHandler': '#/components/schemas/microsoft.graph.customExtensionHandler'
'#microsoft.graph.customExtensionStageSetting': '#/components/schemas/microsoft.graph.customExtensionStageSetting'
'#microsoft.graph.customSecurityAttributeAudit': '#/components/schemas/microsoft.graph.customSecurityAttributeAudit'
'#microsoft.graph.customSecurityAttributeDefinition': '#/components/schemas/microsoft.graph.customSecurityAttributeDefinition'
'#microsoft.graph.dailyUserInsightMetricsRoot': '#/components/schemas/microsoft.graph.dailyUserInsightMetricsRoot'
'#microsoft.graph.dataClassificationService': '#/components/schemas/microsoft.graph.dataClassificationService'
'#microsoft.graph.dataCollectionInfo': '#/components/schemas/microsoft.graph.dataCollectionInfo'
'#microsoft.graph.dataLossPreventionPolicy': '#/components/schemas/microsoft.graph.dataLossPreventionPolicy'
'#microsoft.graph.dataPolicyOperation': '#/components/schemas/microsoft.graph.dataPolicyOperation'
'#microsoft.graph.dataSecurityAndGovernance': '#/components/schemas/microsoft.graph.dataSecurityAndGovernance'
'#microsoft.graph.tenantDataSecurityAndGovernance': '#/components/schemas/microsoft.graph.tenantDataSecurityAndGovernance'
'#microsoft.graph.userDataSecurityAndGovernance': '#/components/schemas/microsoft.graph.userDataSecurityAndGovernance'
'#microsoft.graph.dataSharingConsent': '#/components/schemas/microsoft.graph.dataSharingConsent'
'#microsoft.graph.defaultUserRoleOverride': '#/components/schemas/microsoft.graph.defaultUserRoleOverride'
'#microsoft.graph.delegatedAdminAccessAssignment': '#/components/schemas/microsoft.graph.delegatedAdminAccessAssignment'
'#microsoft.graph.delegatedAdminCustomer': '#/components/schemas/microsoft.graph.delegatedAdminCustomer'
'#microsoft.graph.delegatedAdminRelationship': '#/components/schemas/microsoft.graph.delegatedAdminRelationship'
'#microsoft.graph.resellerDelegatedAdminRelationship': '#/components/schemas/microsoft.graph.resellerDelegatedAdminRelationship'
'#microsoft.graph.delegatedAdminRelationshipOperation': '#/components/schemas/microsoft.graph.delegatedAdminRelationshipOperation'
'#microsoft.graph.delegatedAdminRelationshipRequest': '#/components/schemas/microsoft.graph.delegatedAdminRelationshipRequest'
'#microsoft.graph.delegatedAdminServiceManagementDetail': '#/components/schemas/microsoft.graph.delegatedAdminServiceManagementDetail'
'#microsoft.graph.delegatedPermissionClassification': '#/components/schemas/microsoft.graph.delegatedPermissionClassification'
'#microsoft.graph.delegationSettings': '#/components/schemas/microsoft.graph.delegationSettings'
'#microsoft.graph.deletedChat': '#/components/schemas/microsoft.graph.deletedChat'
'#microsoft.graph.deletedItemContainer': '#/components/schemas/microsoft.graph.deletedItemContainer'
'#microsoft.graph.deletedTeam': '#/components/schemas/microsoft.graph.deletedTeam'
'#microsoft.graph.deltaParticipants': '#/components/schemas/microsoft.graph.deltaParticipants'
'#microsoft.graph.depOnboardingSetting': '#/components/schemas/microsoft.graph.depOnboardingSetting'
'#microsoft.graph.detectedApp': '#/components/schemas/microsoft.graph.detectedApp'
'#microsoft.graph.deviceAndAppManagementAssignmentFilter': '#/components/schemas/microsoft.graph.deviceAndAppManagementAssignmentFilter'
'#microsoft.graph.payloadCompatibleAssignmentFilter': '#/components/schemas/microsoft.graph.payloadCompatibleAssignmentFilter'
'#microsoft.graph.deviceAppManagement': '#/components/schemas/microsoft.graph.deviceAppManagement'
'#microsoft.graph.deviceAppManagementTask': '#/components/schemas/microsoft.graph.deviceAppManagementTask'
'#microsoft.graph.appVulnerabilityTask': '#/components/schemas/microsoft.graph.appVulnerabilityTask'
'#microsoft.graph.securityConfigurationTask': '#/components/schemas/microsoft.graph.securityConfigurationTask'
'#microsoft.graph.unmanagedDeviceDiscoveryTask': '#/components/schemas/microsoft.graph.unmanagedDeviceDiscoveryTask'
'#microsoft.graph.deviceCategory': '#/components/schemas/microsoft.graph.deviceCategory'
'#microsoft.graph.deviceComplianceActionItem': '#/components/schemas/microsoft.graph.deviceComplianceActionItem'
'#microsoft.graph.deviceComplianceDeviceOverview': '#/components/schemas/microsoft.graph.deviceComplianceDeviceOverview'
'#microsoft.graph.deviceComplianceDeviceStatus': '#/components/schemas/microsoft.graph.deviceComplianceDeviceStatus'
'#microsoft.graph.deviceCompliancePolicy': '#/components/schemas/microsoft.graph.deviceCompliancePolicy'
'#microsoft.graph.androidCompliancePolicy': '#/components/schemas/microsoft.graph.androidCompliancePolicy'
'#microsoft.graph.androidDeviceOwnerCompliancePolicy': '#/components/schemas/microsoft.graph.androidDeviceOwnerCompliancePolicy'
'#microsoft.graph.androidForWorkCompliancePolicy': '#/components/schemas/microsoft.graph.androidForWorkCompliancePolicy'
'#microsoft.graph.androidWorkProfileCompliancePolicy': '#/components/schemas/microsoft.graph.androidWorkProfileCompliancePolicy'
'#microsoft.graph.aospDeviceOwnerCompliancePolicy': '#/components/schemas/microsoft.graph.aospDeviceOwnerCompliancePolicy'
'#microsoft.graph.defaultDeviceCompliancePolicy': '#/components/schemas/microsoft.graph.defaultDeviceCompliancePolicy'
'#microsoft.graph.iosCompliancePolicy': '#/components/schemas/microsoft.graph.iosCompliancePolicy'
'#microsoft.graph.macOSCompliancePolicy': '#/components/schemas/microsoft.graph.macOSCompliancePolicy'
'#microsoft.graph.windows10CompliancePolicy': '#/components/schemas/microsoft.graph.windows10CompliancePolicy'
'#microsoft.graph.windows10MobileCompliancePolicy': '#/components/schemas/microsoft.graph.windows10MobileCompliancePolicy'
'#microsoft.graph.windows81CompliancePolicy': '#/components/schemas/microsoft.graph.windows81CompliancePolicy'
'#microsoft.graph.windowsPhone81CompliancePolicy': '#/components/schemas/microsoft.graph.windowsPhone81CompliancePolicy'
'#microsoft.graph.deviceCompliancePolicyAssignment': '#/components/schemas/microsoft.graph.deviceCompliancePolicyAssignment'
'#microsoft.graph.deviceCompliancePolicyDeviceStateSummary': '#/components/schemas/microsoft.graph.deviceCompliancePolicyDeviceStateSummary'
'#microsoft.graph.deviceCompliancePolicyGroupAssignment': '#/components/schemas/microsoft.graph.deviceCompliancePolicyGroupAssignment'
'#microsoft.graph.deviceCompliancePolicySettingStateSummary': '#/components/schemas/microsoft.graph.deviceCompliancePolicySettingStateSummary'
'#microsoft.graph.deviceCompliancePolicyState': '#/components/schemas/microsoft.graph.deviceCompliancePolicyState'
'#microsoft.graph.deviceComplianceScheduledActionForRule': '#/components/schemas/microsoft.graph.deviceComplianceScheduledActionForRule'
'#microsoft.graph.deviceComplianceScript': '#/components/schemas/microsoft.graph.deviceComplianceScript'
'#microsoft.graph.deviceComplianceScriptDeviceState': '#/components/schemas/microsoft.graph.deviceComplianceScriptDeviceState'
'#microsoft.graph.deviceComplianceScriptRunSummary': '#/components/schemas/microsoft.graph.deviceComplianceScriptRunSummary'
'#microsoft.graph.deviceComplianceSettingState': '#/components/schemas/microsoft.graph.deviceComplianceSettingState'
'#microsoft.graph.deviceComplianceUserOverview': '#/components/schemas/microsoft.graph.deviceComplianceUserOverview'
'#microsoft.graph.deviceComplianceUserStatus': '#/components/schemas/microsoft.graph.deviceComplianceUserStatus'
'#microsoft.graph.deviceConfiguration': '#/components/schemas/microsoft.graph.deviceConfiguration'
'#microsoft.graph.androidCertificateProfileBase': '#/components/schemas/microsoft.graph.androidCertificateProfileBase'
'#microsoft.graph.androidForWorkImportedPFXCertificateProfile': '#/components/schemas/microsoft.graph.androidForWorkImportedPFXCertificateProfile'
'#microsoft.graph.androidImportedPFXCertificateProfile': '#/components/schemas/microsoft.graph.androidImportedPFXCertificateProfile'
'#microsoft.graph.androidPkcsCertificateProfile': '#/components/schemas/microsoft.graph.androidPkcsCertificateProfile'
'#microsoft.graph.androidScepCertificateProfile': '#/components/schemas/microsoft.graph.androidScepCertificateProfile'
'#microsoft.graph.androidCustomConfiguration': '#/components/schemas/microsoft.graph.androidCustomConfiguration'
'#microsoft.graph.androidDeviceOwnerCertificateProfileBase': '#/components/schemas/microsoft.graph.androidDeviceOwnerCertificateProfileBase'
'#microsoft.graph.androidDeviceOwnerImportedPFXCertificateProfile': '#/components/schemas/microsoft.graph.androidDeviceOwnerImportedPFXCertificateProfile'
'#microsoft.graph.androidDeviceOwnerPkcsCertificateProfile': '#/components/schemas/microsoft.graph.androidDeviceOwnerPkcsCertificateProfile'
'#microsoft.graph.androidDeviceOwnerScepCertificateProfile': '#/components/schemas/microsoft.graph.androidDeviceOwnerScepCertificateProfile'
'#microsoft.graph.androidDeviceOwnerDerivedCredentialAuthenticationConfiguration': '#/components/schemas/microsoft.graph.androidDeviceOwnerDerivedCredentialAuthenticationConfiguration'
'#microsoft.graph.androidDeviceOwnerGeneralDeviceConfiguration': '#/components/schemas/microsoft.graph.androidDeviceOwnerGeneralDeviceConfiguration'
'#microsoft.graph.androidDeviceOwnerTrustedRootCertificate': '#/components/schemas/microsoft.graph.androidDeviceOwnerTrustedRootCertificate'
'#microsoft.graph.androidDeviceOwnerWiFiConfiguration': '#/components/schemas/microsoft.graph.androidDeviceOwnerWiFiConfiguration'
'#microsoft.graph.androidDeviceOwnerEnterpriseWiFiConfiguration': '#/components/schemas/microsoft.graph.androidDeviceOwnerEnterpriseWiFiConfiguration'
'#microsoft.graph.androidEasEmailProfileConfiguration': '#/components/schemas/microsoft.graph.androidEasEmailProfileConfiguration'
'#microsoft.graph.androidForWorkCertificateProfileBase': '#/components/schemas/microsoft.graph.androidForWorkCertificateProfileBase'
'#microsoft.graph.androidForWorkPkcsCertificateProfile': '#/components/schemas/microsoft.graph.androidForWorkPkcsCertificateProfile'
'#microsoft.graph.androidForWorkScepCertificateProfile': '#/components/schemas/microsoft.graph.androidForWorkScepCertificateProfile'
'#microsoft.graph.androidForWorkCustomConfiguration': '#/components/schemas/microsoft.graph.androidForWorkCustomConfiguration'
'#microsoft.graph.androidForWorkEasEmailProfileBase': '#/components/schemas/microsoft.graph.androidForWorkEasEmailProfileBase'
'#microsoft.graph.androidForWorkGmailEasConfiguration': '#/components/schemas/microsoft.graph.androidForWorkGmailEasConfiguration'
'#microsoft.graph.androidForWorkNineWorkEasConfiguration': '#/components/schemas/microsoft.graph.androidForWorkNineWorkEasConfiguration'
'#microsoft.graph.androidForWorkGeneralDeviceConfiguration': '#/components/schemas/microsoft.graph.androidForWorkGeneralDeviceConfiguration'
'#microsoft.graph.androidForWorkTrustedRootCertificate': '#/components/schemas/microsoft.graph.androidForWorkTrustedRootCertificate'
'#microsoft.graph.androidForWorkVpnConfiguration': '#/components/schemas/microsoft.graph.androidForWorkVpnConfiguration'
'#microsoft.graph.androidForWorkWiFiConfiguration': '#/components/schemas/microsoft.graph.androidForWorkWiFiConfiguration'
'#microsoft.graph.androidForWorkEnterpriseWiFiConfiguration': '#/components/schemas/microsoft.graph.androidForWorkEnterpriseWiFiConfiguration'
'#microsoft.graph.androidGeneralDeviceConfiguration': '#/components/schemas/microsoft.graph.androidGeneralDeviceConfiguration'
'#microsoft.graph.androidOmaCpConfiguration': '#/components/schemas/microsoft.graph.androidOmaCpConfiguration'
'#microsoft.graph.androidTrustedRootCertificate': '#/components/schemas/microsoft.graph.androidTrustedRootCertificate'
'#microsoft.graph.androidVpnConfiguration': '#/components/schemas/microsoft.graph.androidVpnConfiguration'
'#microsoft.graph.androidWiFiConfiguration': '#/components/schemas/microsoft.graph.androidWiFiConfiguration'
'#microsoft.graph.androidEnterpriseWiFiConfiguration': '#/components/schemas/microsoft.graph.androidEnterpriseWiFiConfiguration'
'#microsoft.graph.androidWorkProfileCertificateProfileBase': '#/components/schemas/microsoft.graph.androidWorkProfileCertificateProfileBase'
'#microsoft.graph.androidWorkProfilePkcsCertificateProfile': '#/components/schemas/microsoft.graph.androidWorkProfilePkcsCertificateProfile'
'#microsoft.graph.androidWorkProfileScepCertificateProfile': '#/components/schemas/microsoft.graph.androidWorkProfileScepCertificateProfile'
'#microsoft.graph.androidWorkProfileCustomConfiguration': '#/components/schemas/microsoft.graph.androidWorkProfileCustomConfiguration'
'#microsoft.graph.androidWorkProfileEasEmailProfileBase': '#/components/schemas/microsoft.graph.androidWorkProfileEasEmailProfileBase'
'#microsoft.graph.androidWorkProfileGmailEasConfiguration': '#/components/schemas/microsoft.graph.androidWorkProfileGmailEasConfiguration'
'#microsoft.graph.androidWorkProfileNineWorkEasConfiguration': '#/components/schemas/microsoft.graph.androidWorkProfileNineWorkEasConfiguration'
'#microsoft.graph.androidWorkProfileGeneralDeviceConfiguration': '#/components/schemas/microsoft.graph.androidWorkProfileGeneralDeviceConfiguration'
'#microsoft.graph.androidWorkProfileTrustedRootCertificate': '#/components/schemas/microsoft.graph.androidWorkProfileTrustedRootCertificate'
'#microsoft.graph.androidWorkProfileVpnConfiguration': '#/components/schemas/microsoft.graph.androidWorkProfileVpnConfiguration'
'#microsoft.graph.androidWorkProfileWiFiConfiguration': '#/components/schemas/microsoft.graph.androidWorkProfileWiFiConfiguration'
'#microsoft.graph.androidWorkProfileEnterpriseWiFiConfiguration': '#/components/schemas/microsoft.graph.androidWorkProfileEnterpriseWiFiConfiguration'
'#microsoft.graph.aospDeviceOwnerCertificateProfileBase': '#/components/schemas/microsoft.graph.aospDeviceOwnerCertificateProfileBase'
'#microsoft.graph.aospDeviceOwnerPkcsCertificateProfile': '#/components/schemas/microsoft.graph.aospDeviceOwnerPkcsCertificateProfile'
'#microsoft.graph.aospDeviceOwnerScepCertificateProfile': '#/components/schemas/microsoft.graph.aospDeviceOwnerScepCertificateProfile'
'#microsoft.graph.aospDeviceOwnerDeviceConfiguration': '#/components/schemas/microsoft.graph.aospDeviceOwnerDeviceConfiguration'
'#microsoft.graph.aospDeviceOwnerTrustedRootCertificate': '#/components/schemas/microsoft.graph.aospDeviceOwnerTrustedRootCertificate'
'#microsoft.graph.aospDeviceOwnerWiFiConfiguration': '#/components/schemas/microsoft.graph.aospDeviceOwnerWiFiConfiguration'
'#microsoft.graph.aospDeviceOwnerEnterpriseWiFiConfiguration': '#/components/schemas/microsoft.graph.aospDeviceOwnerEnterpriseWiFiConfiguration'
'#microsoft.graph.appleDeviceFeaturesConfigurationBase': '#/components/schemas/microsoft.graph.appleDeviceFeaturesConfigurationBase'
'#microsoft.graph.iosDeviceFeaturesConfiguration': '#/components/schemas/microsoft.graph.iosDeviceFeaturesConfiguration'
'#microsoft.graph.macOSDeviceFeaturesConfiguration': '#/components/schemas/microsoft.graph.macOSDeviceFeaturesConfiguration'
'#microsoft.graph.appleExpeditedCheckinConfigurationBase': '#/components/schemas/microsoft.graph.appleExpeditedCheckinConfigurationBase'
'#microsoft.graph.iosExpeditedCheckinConfiguration': '#/components/schemas/microsoft.graph.iosExpeditedCheckinConfiguration'
'#microsoft.graph.appleVpnConfiguration': '#/components/schemas/microsoft.graph.appleVpnConfiguration'
'#microsoft.graph.iosVpnConfiguration': '#/components/schemas/microsoft.graph.iosVpnConfiguration'
'#microsoft.graph.iosikEv2VpnConfiguration': '#/components/schemas/microsoft.graph.iosikEv2VpnConfiguration'
'#microsoft.graph.macOSVpnConfiguration': '#/components/schemas/microsoft.graph.macOSVpnConfiguration'
'#microsoft.graph.easEmailProfileConfigurationBase': '#/components/schemas/microsoft.graph.easEmailProfileConfigurationBase'
'#microsoft.graph.iosEasEmailProfileConfiguration': '#/components/schemas/microsoft.graph.iosEasEmailProfileConfiguration'
'#microsoft.graph.windows10EasEmailProfileConfiguration': '#/components/schemas/microsoft.graph.windows10EasEmailProfileConfiguration'
'#microsoft.graph.windowsPhoneEASEmailProfileConfiguration': '#/components/schemas/microsoft.graph.windowsPhoneEASEmailProfileConfiguration'
'#microsoft.graph.editionUpgradeConfiguration': '#/components/schemas/microsoft.graph.editionUpgradeConfiguration'
'#microsoft.graph.iosCertificateProfile': '#/components/schemas/microsoft.graph.iosCertificateProfile'
'#microsoft.graph.iosCertificateProfileBase': '#/components/schemas/microsoft.graph.iosCertificateProfileBase'
'#microsoft.graph.iosPkcsCertificateProfile': '#/components/schemas/microsoft.graph.iosPkcsCertificateProfile'
'#microsoft.graph.iosScepCertificateProfile': '#/components/schemas/microsoft.graph.iosScepCertificateProfile'
'#microsoft.graph.iosImportedPFXCertificateProfile': '#/components/schemas/microsoft.graph.iosImportedPFXCertificateProfile'
'#microsoft.graph.iosCustomConfiguration': '#/components/schemas/microsoft.graph.iosCustomConfiguration'
'#microsoft.graph.iosDerivedCredentialAuthenticationConfiguration': '#/components/schemas/microsoft.graph.iosDerivedCredentialAuthenticationConfiguration'
'#microsoft.graph.iosEducationDeviceConfiguration': '#/components/schemas/microsoft.graph.iosEducationDeviceConfiguration'
'#microsoft.graph.iosEduDeviceConfiguration': '#/components/schemas/microsoft.graph.iosEduDeviceConfiguration'
'#microsoft.graph.iosGeneralDeviceConfiguration': '#/components/schemas/microsoft.graph.iosGeneralDeviceConfiguration'
'#microsoft.graph.iosTrustedRootCertificate': '#/components/schemas/microsoft.graph.iosTrustedRootCertificate'
'#microsoft.graph.iosUpdateConfiguration': '#/components/schemas/microsoft.graph.iosUpdateConfiguration'
'#microsoft.graph.iosWiFiConfiguration': '#/components/schemas/microsoft.graph.iosWiFiConfiguration'
'#microsoft.graph.iosEnterpriseWiFiConfiguration': '#/components/schemas/microsoft.graph.iosEnterpriseWiFiConfiguration'
'#microsoft.graph.iosWiredNetworkConfiguration': '#/components/schemas/microsoft.graph.iosWiredNetworkConfiguration'
'#microsoft.graph.macOSCertificateProfileBase': '#/components/schemas/microsoft.graph.macOSCertificateProfileBase'
'#microsoft.graph.macOSImportedPFXCertificateProfile': '#/components/schemas/microsoft.graph.macOSImportedPFXCertificateProfile'
'#microsoft.graph.macOSPkcsCertificateProfile': '#/components/schemas/microsoft.graph.macOSPkcsCertificateProfile'
'#microsoft.graph.macOSScepCertificateProfile': '#/components/schemas/microsoft.graph.macOSScepCertificateProfile'
'#microsoft.graph.macOSCustomAppConfiguration': '#/components/schemas/microsoft.graph.macOSCustomAppConfiguration'
'#microsoft.graph.macOSCustomConfiguration': '#/components/schemas/microsoft.graph.macOSCustomConfiguration'
'#microsoft.graph.macOSEndpointProtectionConfiguration': '#/components/schemas/microsoft.graph.macOSEndpointProtectionConfiguration'
'#microsoft.graph.macOSExtensionsConfiguration': '#/components/schemas/microsoft.graph.macOSExtensionsConfiguration'
'#microsoft.graph.macOSGeneralDeviceConfiguration': '#/components/schemas/microsoft.graph.macOSGeneralDeviceConfiguration'
'#microsoft.graph.macOSSoftwareUpdateConfiguration': '#/components/schemas/microsoft.graph.macOSSoftwareUpdateConfiguration'
'#microsoft.graph.macOSTrustedRootCertificate': '#/components/schemas/microsoft.graph.macOSTrustedRootCertificate'
'#microsoft.graph.macOSWiFiConfiguration': '#/components/schemas/microsoft.graph.macOSWiFiConfiguration'
'#microsoft.graph.macOSEnterpriseWiFiConfiguration': '#/components/schemas/microsoft.graph.macOSEnterpriseWiFiConfiguration'
'#microsoft.graph.macOSWiredNetworkConfiguration': '#/components/schemas/microsoft.graph.macOSWiredNetworkConfiguration'
'#microsoft.graph.sharedPCConfiguration': '#/components/schemas/microsoft.graph.sharedPCConfiguration'
'#microsoft.graph.unsupportedDeviceConfiguration': '#/components/schemas/microsoft.graph.unsupportedDeviceConfiguration'
'#microsoft.graph.vpnConfiguration': '#/components/schemas/microsoft.graph.vpnConfiguration'
'#microsoft.graph.androidDeviceOwnerVpnConfiguration': '#/components/schemas/microsoft.graph.androidDeviceOwnerVpnConfiguration'
'#microsoft.graph.windows10CustomConfiguration': '#/components/schemas/microsoft.graph.windows10CustomConfiguration'
'#microsoft.graph.windows10DeviceFirmwareConfigurationInterface': '#/components/schemas/microsoft.graph.windows10DeviceFirmwareConfigurationInterface'
'#microsoft.graph.windows10EndpointProtectionConfiguration': '#/components/schemas/microsoft.graph.windows10EndpointProtectionConfiguration'
'#microsoft.graph.windows10EnterpriseModernAppManagementConfiguration': '#/components/schemas/microsoft.graph.windows10EnterpriseModernAppManagementConfiguration'
'#microsoft.graph.windows10GeneralConfiguration': '#/components/schemas/microsoft.graph.windows10GeneralConfiguration'
'#microsoft.graph.windows10NetworkBoundaryConfiguration': '#/components/schemas/microsoft.graph.windows10NetworkBoundaryConfiguration'
'#microsoft.graph.windows10PFXImportCertificateProfile': '#/components/schemas/microsoft.graph.windows10PFXImportCertificateProfile'
'#microsoft.graph.windows10SecureAssessmentConfiguration': '#/components/schemas/microsoft.graph.windows10SecureAssessmentConfiguration'
'#microsoft.graph.windows10TeamGeneralConfiguration': '#/components/schemas/microsoft.graph.windows10TeamGeneralConfiguration'
'#microsoft.graph.windows81GeneralConfiguration': '#/components/schemas/microsoft.graph.windows81GeneralConfiguration'
'#microsoft.graph.windows81TrustedRootCertificate': '#/components/schemas/microsoft.graph.windows81TrustedRootCertificate'
'#microsoft.graph.windows81WifiImportConfiguration': '#/components/schemas/microsoft.graph.windows81WifiImportConfiguration'
'#microsoft.graph.windowsCertificateProfileBase': '#/components/schemas/microsoft.graph.windowsCertificateProfileBase'
'#microsoft.graph.windows10CertificateProfileBase': '#/components/schemas/microsoft.graph.windows10CertificateProfileBase'
'#microsoft.graph.windows10PkcsCertificateProfile': '#/components/schemas/microsoft.graph.windows10PkcsCertificateProfile'
'#microsoft.graph.windows10ImportedPFXCertificateProfile': '#/components/schemas/microsoft.graph.windows10ImportedPFXCertificateProfile'
'#microsoft.graph.windows81CertificateProfileBase': '#/components/schemas/microsoft.graph.windows81CertificateProfileBase'
'#microsoft.graph.windows81SCEPCertificateProfile': '#/components/schemas/microsoft.graph.windows81SCEPCertificateProfile'
'#microsoft.graph.windowsPhone81ImportedPFXCertificateProfile': '#/components/schemas/microsoft.graph.windowsPhone81ImportedPFXCertificateProfile'
'#microsoft.graph.windowsDefenderAdvancedThreatProtectionConfiguration': '#/components/schemas/microsoft.graph.windowsDefenderAdvancedThreatProtectionConfiguration'
'#microsoft.graph.windowsDeliveryOptimizationConfiguration': '#/components/schemas/microsoft.graph.windowsDeliveryOptimizationConfiguration'
'#microsoft.graph.windowsDomainJoinConfiguration': '#/components/schemas/microsoft.graph.windowsDomainJoinConfiguration'
'#microsoft.graph.windowsHealthMonitoringConfiguration': '#/components/schemas/microsoft.graph.windowsHealthMonitoringConfiguration'
'#microsoft.graph.windowsIdentityProtectionConfiguration': '#/components/schemas/microsoft.graph.windowsIdentityProtectionConfiguration'
'#microsoft.graph.windowsKioskConfiguration': '#/components/schemas/microsoft.graph.windowsKioskConfiguration'
'#microsoft.graph.windowsPhone81CertificateProfileBase': '#/components/schemas/microsoft.graph.windowsPhone81CertificateProfileBase'
'#microsoft.graph.windowsPhone81SCEPCertificateProfile': '#/components/schemas/microsoft.graph.windowsPhone81SCEPCertificateProfile'
'#microsoft.graph.windowsPhone81CustomConfiguration': '#/components/schemas/microsoft.graph.windowsPhone81CustomConfiguration'
'#microsoft.graph.windowsPhone81GeneralConfiguration': '#/components/schemas/microsoft.graph.windowsPhone81GeneralConfiguration'
'#microsoft.graph.windowsPhone81TrustedRootCertificate': '#/components/schemas/microsoft.graph.windowsPhone81TrustedRootCertificate'
'#microsoft.graph.windowsUpdateForBusinessConfiguration': '#/components/schemas/microsoft.graph.windowsUpdateForBusinessConfiguration'
'#microsoft.graph.windowsVpnConfiguration': '#/components/schemas/microsoft.graph.windowsVpnConfiguration'
'#microsoft.graph.windows10VpnConfiguration': '#/components/schemas/microsoft.graph.windows10VpnConfiguration'
'#microsoft.graph.windows81VpnConfiguration': '#/components/schemas/microsoft.graph.windows81VpnConfiguration'
'#microsoft.graph.windowsPhone81VpnConfiguration': '#/components/schemas/microsoft.graph.windowsPhone81VpnConfiguration'
'#microsoft.graph.windowsWifiConfiguration': '#/components/schemas/microsoft.graph.windowsWifiConfiguration'
'#microsoft.graph.windowsWifiEnterpriseEAPConfiguration': '#/components/schemas/microsoft.graph.windowsWifiEnterpriseEAPConfiguration'
'#microsoft.graph.windowsWiredNetworkConfiguration': '#/components/schemas/microsoft.graph.windowsWiredNetworkConfiguration'
'#microsoft.graph.windowsZtdnsConfiguration': '#/components/schemas/microsoft.graph.windowsZtdnsConfiguration'
'#microsoft.graph.deviceConfigurationAssignment': '#/components/schemas/microsoft.graph.deviceConfigurationAssignment'
'#microsoft.graph.deviceConfigurationConflictSummary': '#/components/schemas/microsoft.graph.deviceConfigurationConflictSummary'
'#microsoft.graph.deviceConfigurationDeviceOverview': '#/components/schemas/microsoft.graph.deviceConfigurationDeviceOverview'
'#microsoft.graph.deviceConfigurationDeviceStateSummary': '#/components/schemas/microsoft.graph.deviceConfigurationDeviceStateSummary'
'#microsoft.graph.deviceConfigurationDeviceStatus': '#/components/schemas/microsoft.graph.deviceConfigurationDeviceStatus'
'#microsoft.graph.deviceConfigurationGroupAssignment': '#/components/schemas/microsoft.graph.deviceConfigurationGroupAssignment'
'#microsoft.graph.deviceConfigurationState': '#/components/schemas/microsoft.graph.deviceConfigurationState'
'#microsoft.graph.deviceConfigurationUserOverview': '#/components/schemas/microsoft.graph.deviceConfigurationUserOverview'
'#microsoft.graph.deviceConfigurationUserStateSummary': '#/components/schemas/microsoft.graph.deviceConfigurationUserStateSummary'
'#microsoft.graph.deviceConfigurationUserStatus': '#/components/schemas/microsoft.graph.deviceConfigurationUserStatus'
'#microsoft.graph.deviceCustomAttributeShellScript': '#/components/schemas/microsoft.graph.deviceCustomAttributeShellScript'
'#microsoft.graph.deviceEnrollmentConfiguration': '#/components/schemas/microsoft.graph.deviceEnrollmentConfiguration'
'#microsoft.graph.deviceComanagementAuthorityConfiguration': '#/components/schemas/microsoft.graph.deviceComanagementAuthorityConfiguration'
'#microsoft.graph.deviceEnrollmentLimitConfiguration': '#/components/schemas/microsoft.graph.deviceEnrollmentLimitConfiguration'
'#microsoft.graph.deviceEnrollmentNotificationConfiguration': '#/components/schemas/microsoft.graph.deviceEnrollmentNotificationConfiguration'
'#microsoft.graph.deviceEnrollmentPlatformRestrictionConfiguration': '#/components/schemas/microsoft.graph.deviceEnrollmentPlatformRestrictionConfiguration'
'#microsoft.graph.deviceEnrollmentPlatformRestrictionsConfiguration': '#/components/schemas/microsoft.graph.deviceEnrollmentPlatformRestrictionsConfiguration'
'#microsoft.graph.deviceEnrollmentWindowsHelloForBusinessConfiguration': '#/components/schemas/microsoft.graph.deviceEnrollmentWindowsHelloForBusinessConfiguration'
'#microsoft.graph.windows10EnrollmentCompletionPageConfiguration': '#/components/schemas/microsoft.graph.windows10EnrollmentCompletionPageConfiguration'
'#microsoft.graph.windowsRestoreDeviceEnrollmentConfiguration': '#/components/schemas/microsoft.graph.windowsRestoreDeviceEnrollmentConfiguration'
'#microsoft.graph.deviceHealthScript': '#/components/schemas/microsoft.graph.deviceHealthScript'
'#microsoft.graph.deviceHealthScriptAssignment': '#/components/schemas/microsoft.graph.deviceHealthScriptAssignment'
'#microsoft.graph.deviceHealthScriptDeviceState': '#/components/schemas/microsoft.graph.deviceHealthScriptDeviceState'
'#microsoft.graph.deviceHealthScriptRunSummary': '#/components/schemas/microsoft.graph.deviceHealthScriptRunSummary'
'#microsoft.graph.deviceInstallState': '#/components/schemas/microsoft.graph.deviceInstallState'
'#microsoft.graph.deviceLocalCredentialInfo': '#/components/schemas/microsoft.graph.deviceLocalCredentialInfo'
'#microsoft.graph.deviceLogCollectionResponse': '#/components/schemas/microsoft.graph.deviceLogCollectionResponse'
'#microsoft.graph.deviceManagement': '#/components/schemas/microsoft.graph.deviceManagement'
'#microsoft.graph.deviceManagementAutopilotEvent': '#/components/schemas/microsoft.graph.deviceManagementAutopilotEvent'
'#microsoft.graph.deviceManagementAutopilotPolicyStatusDetail': '#/components/schemas/microsoft.graph.deviceManagementAutopilotPolicyStatusDetail'
'#microsoft.graph.deviceManagementCachedReportConfiguration': '#/components/schemas/microsoft.graph.deviceManagementCachedReportConfiguration'
'#microsoft.graph.deviceManagementComplianceActionItem': '#/components/schemas/microsoft.graph.deviceManagementComplianceActionItem'
'#microsoft.graph.deviceManagementCompliancePolicy': '#/components/schemas/microsoft.graph.deviceManagementCompliancePolicy'
'#microsoft.graph.deviceManagementComplianceScheduledActionForRule': '#/components/schemas/microsoft.graph.deviceManagementComplianceScheduledActionForRule'
'#microsoft.graph.deviceManagementConfigurationCategory': '#/components/schemas/microsoft.graph.deviceManagementConfigurationCategory'
'#microsoft.graph.deviceManagementConfigurationPolicy': '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicy'
'#microsoft.graph.deviceManagementConfigurationPolicyAssignment': '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicyAssignment'
'#microsoft.graph.deviceManagementConfigurationPolicyTemplate': '#/components/schemas/microsoft.graph.deviceManagementConfigurationPolicyTemplate'
'#microsoft.graph.deviceManagementConfigurationSetting': '#/components/schemas/microsoft.graph.deviceManagementConfigurationSetting'
'#microsoft.graph.deviceManagementConfigurationSettingDefinition': '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingDefinition'
'#microsoft.graph.deviceManagementConfigurationChoiceSettingDefinition': '#/components/schemas/microsoft.graph.deviceManagementConfigurationChoiceSettingDefinition'
'#microsoft.graph.deviceManagementConfigurationChoiceSettingCollectionDefinition': '#/components/schemas/microsoft.graph.deviceManagementConfigurationChoiceSettingCollectionDefinition'
'#microsoft.graph.deviceManagementConfigurationRedirectSettingDefinition': '#/components/schemas/microsoft.graph.deviceManagementConfigurationRedirectSettingDefinition'
'#microsoft.graph.deviceManagementConfigurationSettingGroupDefinition': '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingGroupDefinition'
'#microsoft.graph.deviceManagementConfigurationSettingGroupCollectionDefinition': '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingGroupCollectionDefinition'
'#microsoft.graph.deviceManagementConfigurationSimpleSettingDefinition': '#/components/schemas/microsoft.graph.deviceManagementConfigurationSimpleSettingDefinition'
'#microsoft.graph.deviceManagementConfigurationSimpleSettingCollectionDefinition': '#/components/schemas/microsoft.graph.deviceManagementConfigurationSimpleSettingCollectionDefinition'
'#microsoft.graph.deviceManagementConfigurationSettingTemplate': '#/components/schemas/microsoft.graph.deviceManagementConfigurationSettingTemplate'
'#microsoft.graph.deviceManagementDerivedCredentialSettings': '#/components/schemas/microsoft.graph.deviceManagementDerivedCredentialSettings'
'#microsoft.graph.deviceManagementDomainJoinConnector': '#/components/schemas/microsoft.graph.deviceManagementDomainJoinConnector'
'#microsoft.graph.deviceManagementExchangeConnector': '#/components/schemas/microsoft.graph.deviceManagementExchangeConnector'
'#microsoft.graph.deviceManagementExchangeOnPremisesPolicy': '#/components/schemas/microsoft.graph.deviceManagementExchangeOnPremisesPolicy'
'#microsoft.graph.deviceManagementExportJob': '#/components/schemas/microsoft.graph.deviceManagementExportJob'
'#microsoft.graph.deviceManagementIntent': '#/components/schemas/microsoft.graph.deviceManagementIntent'
'#microsoft.graph.deviceManagementIntentAssignment': '#/components/schemas/microsoft.graph.deviceManagementIntentAssignment'
'#microsoft.graph.deviceManagementIntentDeviceSettingStateSummary': '#/components/schemas/microsoft.graph.deviceManagementIntentDeviceSettingStateSummary'
'#microsoft.graph.deviceManagementIntentDeviceState': '#/components/schemas/microsoft.graph.deviceManagementIntentDeviceState'
'#microsoft.graph.deviceManagementIntentDeviceStateSummary': '#/components/schemas/microsoft.graph.deviceManagementIntentDeviceStateSummary'
'#microsoft.graph.deviceManagementIntentUserState': '#/components/schemas/microsoft.graph.deviceManagementIntentUserState'
'#microsoft.graph.deviceManagementIntentUserStateSummary': '#/components/schemas/microsoft.graph.deviceManagementIntentUserStateSummary'
'#microsoft.graph.deviceManagementPartner': '#/components/schemas/microsoft.graph.deviceManagementPartner'
'#microsoft.graph.deviceManagementReports': '#/components/schemas/microsoft.graph.deviceManagementReports'
'#microsoft.graph.deviceManagementResourceAccessProfileAssignment': '#/components/schemas/microsoft.graph.deviceManagementResourceAccessProfileAssignment'
'#microsoft.graph.deviceManagementResourceAccessProfileBase': '#/components/schemas/microsoft.graph.deviceManagementResourceAccessProfileBase'
'#microsoft.graph.windows10XCertificateProfile': '#/components/schemas/microsoft.graph.windows10XCertificateProfile'
'#microsoft.graph.windows10XSCEPCertificateProfile': '#/components/schemas/microsoft.graph.windows10XSCEPCertificateProfile'
'#microsoft.graph.windows10XTrustedRootCertificate': '#/components/schemas/microsoft.graph.windows10XTrustedRootCertificate'
'#microsoft.graph.windows10XVpnConfiguration': '#/components/schemas/microsoft.graph.windows10XVpnConfiguration'
'#microsoft.graph.windows10XWifiConfiguration': '#/components/schemas/microsoft.graph.windows10XWifiConfiguration'
'#microsoft.graph.deviceManagementReusablePolicySetting': '#/components/schemas/microsoft.graph.deviceManagementReusablePolicySetting'
'#microsoft.graph.deviceManagementScript': '#/components/schemas/microsoft.graph.deviceManagementScript'
'#microsoft.graph.deviceManagementScriptAssignment': '#/components/schemas/microsoft.graph.deviceManagementScriptAssignment'
'#microsoft.graph.deviceManagementScriptDeviceState': '#/components/schemas/microsoft.graph.deviceManagementScriptDeviceState'
'#microsoft.graph.deviceManagementScriptGroupAssignment': '#/components/schemas/microsoft.graph.deviceManagementScriptGroupAssignment'
'#microsoft.graph.deviceManagementScriptRunSummary': '#/components/schemas/microsoft.graph.deviceManagementScriptRunSummary'
'#microsoft.graph.deviceManagementScriptUserState': '#/components/schemas/microsoft.graph.deviceManagementScriptUserState'