-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSHIELD.json
More file actions
2733 lines (2733 loc) · 139 KB
/
SHIELD.json
File metadata and controls
2733 lines (2733 loc) · 139 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
{
"components": {
"parameters": {
"correlationId": {
"description": "The object ID of the correlation identifier for the specified record.",
"in": "path",
"name": "correlationId",
"required": true,
"schema": {
"example": "1d71e0fe-6e4a-464d-a690-80addf3bda55",
"format": "uuid",
"maxLength": 36,
"minLength": 36,
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$",
"type": "string"
}
},
"deviceId": {
"description": "The SHIELD ID (Entra ID Device ID) of the managed device to target.",
"in": "path",
"name": "deviceId",
"required": true,
"schema": {
"example": "75da7fa4-4a04-44c8-8f2c-c1b2fa29aa51",
"format": "uuid",
"maxLength": 36,
"minLength": 36,
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$",
"type": "string"
}
},
"intermediaryId": {
"description": "The Object ID of the parent group for the intermediary that you wish to target.",
"in": "path",
"name": "intermediaryId",
"required": true,
"schema": {
"example": "25d4d9da-28ea-42f8-b3df-23c3969abffa",
"format": "uuid",
"maxLength": 36,
"minLength": 36,
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$",
"type": "string"
}
},
"nextLink": {
"description": "Information to be provided to the API call in order to retrieve next set of data as part of pagination. It could be a simple number or full URL representing MS Graph API navigation. This information should not be generated by hand or changed. In case of MS Graph API, please only use tokens the server gives you and do not bring them from outside.",
"in": "query",
"name": "nextLink",
"schema": {
"minLength": 1,
"type": "string"
},
"examples": {
"number": {
"value": "3",
"summary": "Number for the next page in the navigation flow"
},
"uri": {
"value": "https://graph.microsoft.com/beta/devices?$top=20&$skiptoken=RFNwdCtEZXZpY2VfMThkNGY4OTAtMDA2YS00ZWM1LWI2OWYtY2VmNDY4ZjczNzQ4K0RldmljZV8xOGQ0Zjg5MC0wMDZhLTRlYzUtYjY5Zi1jZWY0NjhmNzM3NDg",
"summary": "Complete URL with details of the request and a skip token for MS Graph to parse and respond"
}
}
},
"offeringId": {
"description": "Unique identifier of the marketplace offering",
"in": "path",
"name": "offeringId",
"required": true,
"schema": {
"description": "Unique identifier of the marketplace offering.",
"example": "271ab834-7469-4f2d-a705-549972c4f325",
"format": "uuid",
"maxLength": 36,
"minLength": 36,
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$",
"type": "string"
}
},
"search": {
"description": "Used in object filtering.",
"in": "query",
"name": "search",
"schema": {
"example": "finance",
"type": "string"
}
},
"securityClass": {
"description": "The security class of managed object to retrieve. Unknown values, will be ignored. Please see https://learn.microsoft.com/en-us/security/compass/privileged-access-security-levels for a description of security levels.",
"in": "path",
"name": "securityClass",
"required": true,
"schema": {
"$ref": "#/components/schemas/SecurityClassList"
}
},
"updateChannelName": {
"description": "Name of the update channel that should be used when querying or downloading updates.",
"in": "path",
"name": "Update Channel Name",
"required": true,
"schema": {
"example": "stable",
"type": "string",
"enum": [
"alpha",
"beta",
"stable"
]
}
},
"userId": {
"description": "The SHIELD ID (Entra ID User's Object ID) of the managed user to target.",
"in": "path",
"name": "userId",
"required": true,
"schema": {
"example": "264a8bed-0714-48fd-8b9d-0e4c4715cee5",
"format": "uuid",
"maxLength": 36,
"minLength": 36,
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$",
"type": "string"
}
}
},
"responses": {
"201": {
"description": "The authorization was recorded successfully."
},
"202": {
"description": "The process to create a report has started."
},
"400": {
"description": "Invalid input!"
},
"401": {
"description": "Principal is not authorized to access this endpoint. Check to make sure the Bearer token is valid and present!"
},
"403": {
"description": "Principal does not contain the correct scopes (permissions) for the API call that was made, or was made from the wrong tenant. If the permissions were granted, ensure that the access token was requested with the correct scopes."
},
"404": {
"description": "The requested object was not found."
},
"409": {
"description": "A job is already in progress."
},
"525": {
"description": "Infrastructure not deployed. Please deploy the infrastructure before using this endpoint."
}
},
"schemas": {
"Core.SystemRequirements": {
"title": "Core - System Requirements",
"description": "Collection of indicators that notify the caller if the system requirements have been met for various sub components to operate.",
"properties": {
"azurePermissions": {
"description": "Flag that indicates if the required Azure RBAC assignment(s) are present or not.",
"type": "boolean",
"example": true
},
"defendEntitlement": {
"description": "Flag that indicates if the required defend licenses are present or not.",
"type": "boolean",
"example": false
},
"discoverEntitlement": {
"description": "Flag that indicates if the required discover licenses are present or not.",
"type": "boolean",
"example": true
},
"entraPermissions": {
"description": "Flag that indicates if the required Entra ID Role assignment(s) are present or not.",
"type": "boolean",
"example": true
},
"servicePlans": {
"description": "Flag that indicates if the required M365 licenses are present or not.",
"type": "boolean",
"example": false
}
},
"type": "object",
"required": [
"azurePermissions",
"defendEntitlement",
"discoverEntitlement",
"entraPermissions",
"servicePlans"
]
},
"Authenticator.RequestStatus": {
"title": "Authentication - Status",
"description": "List of credentials that are being waited for by SHIELD's internal authentication engine.",
"properties": {
"accessToken": {
"oneOf": [
{
"description": "Flag that represents if the server is not waiting for a specific access token.",
"type": "boolean",
"example": false
},
{
"$ref": "#/components/schemas/Authenticator.Status.TokenAudience"
}
]
},
"sccAuth": {
"description": "Flag that represents if the server is waiting for SCC Auth credentials.",
"type": "boolean",
"example": true
}
},
"type": "object",
"required": [
"accessToken",
"sccAuth"
]
},
"Authenticator.Status.TokenAudience": {
"title": "SHIELD - Authenticator - Status - Token Audience",
"description": "If a access token is being requested, this is the audience that the access token should have when being submitted.",
"properties": {
"audience": {
"description": "Audience ID of the access token that is being requested.",
"type": "string",
"format": "uuid",
"maxLength": 36,
"minLength": 36,
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$",
"example": "00000002-0000-0000-b000-000000000000"
}
},
"type": "object",
"required": [
"audience"
]
},
"Authenticator.Container.Credentials": {
"title": "SHIELD - Authenticator - SCC Auth",
"description": "SHIELD - Defender, and Purview portal Container Credentials",
"type": "object",
"properties": {
"authenticatedUpn": {
"description": "User principal name of the user that authenticated to the portals.",
"example": "user@example.com",
"type": "string",
"format": "email"
},
"expiration": {
"description": "Point in time at which the whole authentication structure has an expired state and is un-useable.",
"example": "2024-09-26T18:16:29.340Z",
"type": "string",
"format": "date-time"
},
"security": {
"$ref": "#/components/schemas/Authenticator.Container.Credentials.SccAuth"
},
"compliance": {
"$ref": "#/components/schemas/Authenticator.Container.Credentials.SccAuth"
},
"purview": {
"$ref": "#/components/schemas/Authenticator.Container.Credentials.SccAuth"
}
},
"required": [
"authenticatedUpn",
"security",
"compliance",
"purview"
]
},
"Authenticator.Container.Credentials.SccAuth": {
"title": "SHIELD - Authenticator - SCC Auth - Credential Container",
"description": "Container for the credentials for a single SccAuth authenticated site.",
"properties": {
"sccAuth": {
"description": "Authentication Token.",
"example": "54BKPtTL-eSMFp5cqYTMMSblm2U80cUJqQgmbe4f_sRn4ammMmU1NKNurn9HqpsUtS4FrMJRTKa3Or_pFbedM_57R0fVBfNJ-m2Pvey9OweWIDradzT0dB1WnufPTJiT2y7zSQy91Y9wJIn1_aY5q-MNh75qwjM84Dng-mYzbd9KqUfyPUolOo-j-... (Truncated)",
"type": "string"
},
"xsrf": {
"description": "Cross Site Request Forgery Prevention Token.",
"example": "PEDwTvWdm2qSTe-n8h-1praK4OcQK1ELTJ08DWYqBRzQiyA2MIuEKEMNLu4ExjDNpAOUnAxmsqOeuGzb82MJYkegOE6hW8BzpSM6k9nbTbJ4yjNGzMSQvWUnyqrBvGa8JfSRiSeaKdXGBnxGd90Spw2:... (truncated)",
"type": "string"
}
},
"required": [
"sccAuth",
"xsrf"
],
"type": "object"
},
"Discover.ExecutionStatus": {
"title": "Discover - Status",
"description": "Detailed status that indicates the current state of the Discover engine and its progress.",
"type": "object",
"properties": {
"running": {
"description": "Flag that indicates if another run is already in progress or not.",
"type": "boolean",
"example": true
}
},
"required": [
"running"
]
},
"ManagedObject.Intermediary": {
"description": "Base template for all intermediary objects to inherit from.",
"properties": {
"id": {
"description": "Read-only.",
"example": "e097a3f5-9599-44a2-8923-fd3276c83ae1",
"format": "uuid",
"maxLength": 36,
"minLength": 36,
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$",
"readOnly": true,
"type": "string"
},
"kind": {
"description": "Type of Intermediary that the properties are describing.",
"example": "AVD",
"type": "string"
},
"name": {
"description": "Human friendly name of the AVD cluster. This will be displayed to end users in the remote desktop app and web portals.",
"example": "Legacy Reach Back",
"maxLength": 42,
"minLength": 1,
"type": "string"
},
"securityClass": {
"$ref": "#/components/schemas/SecurityClassList"
}
},
"required": [
"name"
],
"title": "Intermediary - Base Type",
"type": "object"
},
"ManagedObject.AvdIntermediary": {
"properties": {
"addressRangeCIDR": {
"description": "Optional Virtual Network IP Address range, defaults to 10.0.0.0/16.",
"example": "172.16.1.0/24",
"type": "string"
},
"assignmentGroup": {
"description": "Read-only value that the server generates that is the Object ID of the user assignment security group for the current instance of the AVD intermediary.",
"example": "68873e26-3c35-465c-9422-0884a00beb36",
"format": "uuid",
"maxLength": 36,
"minLength": 36,
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$",
"readOnly": true,
"type": "string"
},
"index": {
"description": "Used to uniquely name multiple session hosts in a single host pool.",
"minimum": 0,
"nullable": false,
"type": "number"
},
"location": {
"description": "Azure Regions that are available for the configured subscription. Resources will be deployed to the region specified here.",
"example": "East US 2",
"type": "string"
},
"resourceId": {
"description": "ID of the Host Pool. This is generated by the server and can't be set, hence the read only flag.",
"example": "/subscriptions/742f0d26-daa0-4f84-8d4f-fb052f89f639/resourceGroups/SHIELD_-_PSM-Legacy_Reach_Back/providers/Microsoft.DesktopVirtualization/hostpools/SHIELD_-_PSM-Cluster-Legacy_Reach_Back",
"minLength": 122,
"readOnly": true,
"type": "string"
},
"sessionHostGroup": {
"description": "Read-only value that the server generates that is the Object ID of the session host security group for the current instance of the AVD intermediary.",
"example": "f99f0918-da9b-4c58-9a8d-9346abc5d9ec",
"format": "uuid",
"maxLength": 36,
"minLength": 36,
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$",
"readOnly": true,
"type": "string"
},
"sessionHostPrefix": {
"description": "Short name to append to the beginning of the session host VMs. The max computer name length is 15, 4 chars are reserved for indexing and 4 for prefixing.",
"example": "Reach",
"maxLength": 7,
"minLength": 1,
"type": "string"
},
"vmSku": {
"description": "SKU ID in Azure of the VM session host set that is to be deployed.",
"example": "Standard_D2s_v5",
"type": "string"
}
},
"required": [
"index",
"location",
"sessionHostPrefix",
"vmSku"
],
"title": "Intermediary - Azure Virtual Desktop",
"type": "object"
},
"LicenseReport.CorrelationRecord": {
"description": "Metadata that describes the execution session (run) that is used to tie/relate all of the license report together.",
"example": {
"auditTenantAccount": "priv-user@example.com",
"correlationId": "9d838115-0868-45d4-b8a5-98adc1af7e42",
"reportTenantAccount": "ent-user@example.com",
"tenantId": "7e536189-b2dd-4c8b-98b1-9b174777883f",
"createdAt": "2024-08-01T21:13:12.821Z",
"updatedAt": "2024-08-01T21:13:12.821Z"
},
"properties": {
"auditTenantAccount": {
"description": "The user account used to retrieve the license information in the tenant being audited.",
"example": "admin-user@example.com",
"format": "email",
"type": "string"
},
"correlationId": {
"description": "The ID of the execution session (run) that is used to tie/relate all of the data together.",
"example": "88da2253-758f-4135-9d37-64448c8b65c1",
"format": "uuid",
"type": "string",
"pattern": "^\\w+-\\w+-\\w+-\\w+-\\w+$"
},
"reportTenantAccount": {
"description": "User account used to store/report the license report to the SHI Lab cloud service.",
"example": "generic-user@example.com",
"format": "email",
"type": "string"
},
"tenantId": {
"description": "Unique ID of customer's Microsoft tenant that the license report is for.",
"example": "0e1fe83f-a33f-4250-8546-225b8d45ae01",
"format": "uuid",
"type": "string",
"pattern": "^\\w+-\\w+-\\w+-\\w+-\\w+$"
},
"createdAt": {
"description": "Timestamp of when the report was created.",
"example": "2024-08-01T21:12:22.148Z",
"format": "date-time",
"type": "string"
},
"updatedAt": {
"description": "Timestamp of when the report was last updated.",
"example": "2024-08-01T21:12:22.148Z",
"format": "date-time",
"type": "string"
}
},
"required": [
"auditTenantAccount"
],
"title": "License Report - Correlation Record",
"type": "object"
},
"LicenseReport.LicenseData": {
"type": "object",
"properties": {
"assignedLicense": {
"additionalProperties": {
"type": "integer",
"nullable": true
},
"description": "License assignment on the specified principal.",
"type": "object"
},
"assignedService": {
"additionalProperties": {
"oneOf": [
{
"$ref": "#/components/schemas/LicenseReport.FeatureBreakdown"
},
{
"type": "integer",
"format": "int32"
}
],
"nullable": true
},
"description": "Service configuration assignment. This is used to record the set of principals that are \"benefiting\" from the service, regardless of license status.",
"type": "object"
},
"consumedService": {
"additionalProperties": {
"oneOf": [
{
"$ref": "#/components/schemas/LicenseReport.FeatureBreakdown"
},
{
"type": "integer",
"format": "int32"
}
],
"nullable": true
},
"description": "Usage telemetry retrieved for the service to indicate if the specific principal is consuming the service or not, regardless of license status.",
"type": "object"
}
},
"required": [
"assignedLicense",
"assignedService",
"consumedService"
],
"description": "Collection of principals that have had their in-use licenses and assigned licenses. Where the key is the principal ID and the value is the insights.",
"example": {
"assignedLicense": {
"eec0eb4f-6444-4f95-aba0-50c24d67f998": null,
"41781fb2-bc02-4b7c-bd55-b576c07bb09d": null,
"7159f980-6f83-4b67-bf41-e172b3ae1352": null
},
"assignedService": {
"eec0eb4f-6444-4f95-aba0-50c24d67f998": {
"Conditional Access": false,
"Access Review": true,
"Entitlement Management": false,
"Identity Protection": true
},
"41781fb2-bc02-4b7c-bd55-b576c07bb09d": {
"Conditional Access": true,
"Dynamic Group": false,
"Group Naming": true,
"On-Prem SSPR": false,
"Group Expiration": true,
"Provisioning Engine": true,
"Enterprise State Roaming": false
},
"6511755b-c27d-4c66-a59e-b835e6b54e7f": null
},
"consumedService": {
"eec0eb4f-6444-4f95-aba0-50c24d67f998": {
"Conditional Access": true,
"Access Review": false,
"Entitlement Management": false,
"Identity Protection": true
},
"41781fb2-bc02-4b7c-bd55-b576c07bb09d": {
"Conditional Access": true,
"Dynamic Group": false,
"Group Naming": true,
"On-Prem SSPR": false,
"Group Expiration": true,
"Provisioning Engine": true,
"Enterprise State Roaming": false
},
"4b0d28f2-c1ce-48ae-a7d2-1caaa7825891": null,
"c90f1a25-e6cd-4163-ac6c-ca7616c585a9": null
}
},
"title": "License Report - License Data"
},
"LicenseReport.FeatureBreakdown": {
"additionalProperties": {
"type": "boolean"
},
"description": "List of features that are configured for the specific service plan's service configuration for the related principal.\nThe key is the name of the feature that is being described.\nThe value is the state of the feature configuration, `true` is in scope and `false` meaning not in scope.",
"example": {
"Conditional Access": true,
"Access Reviews": true,
"Dynamic Groups": false,
"On-Prem Password Rest": true,
"On-Prem Password Protection": false
},
"title": "License Report - Feature Breakdown",
"type": "object"
},
"LicenseReport": {
"description": "Completely calculated license report structure that is the result of a complete run.",
"example": {
"availableLicense": {
"e17b13ee-9749-488b-9289-d31a8fde045d": 123,
"2d995b6a-d4aa-4d8d-a03c-372ecb66509d": 456,
"cbf6ee7c-c3c1-44a6-9f18-020c65536470": 789
},
"correlation": {
"auditTenantAccount": "admin-user@example.com",
"correlationId": "88da2253-758f-4135-9d37-64448c8b65c1",
"reportTenantAccount": "generic-user@example.com",
"tenantId": "0e1fe83f-a33f-4250-8546-225b8d45ae01"
},
"licenseData": {
"250844e1-a7ab-4f21-8e3f-58f51b5983a3": {
"assignedLicense": {
"e17b13ee-9749-488b-9289-d31a8fde045d": null
},
"assignedService": {
"cbf6ee7c-c3c1-44a6-9f18-020c65536470": null,
"c7bcba35-199c-41e5-8c8d-6d4e4aad8964": null
},
"consumedService": {
"fe98c41a-d931-4f6f-a5bc-750ba7144a77": null,
"0474bdf1-ee76-4aff-a65c-6f82e5e1d5a6": {
"Something Here": true,
"Other Obscure feature": false
}
}
}
}
},
"type": "object",
"properties": {
"availableLicense": {
"additionalProperties": {
"example": 1234,
"type": "integer"
},
"description": "Breakdown of the purchased licenses/service plans available in the tenant being audited for this run. Where the key is the ID of the service plan and the value is how many licenses are available/purchase for it.",
"example": {
"eec0eb4f-6444-4f95-aba0-50c24d67f998": 1234,
"41781fb2-bc02-4b7c-bd55-b576c07bb09d": 123
},
"title": "License Report - Available Licenses",
"type": "object"
},
"correlation": {
"$ref": "#/components/schemas/LicenseReport.CorrelationRecord"
},
"licenseData": {
"additionalProperties": {
"$ref": "#/components/schemas/LicenseReport.LicenseData"
}
}
},
"required": [
"availableLicense",
"correlation",
"licenseData"
],
"title": "License Report - Complete Object"
},
"ManagedObject.Device": {
"title": "Managed Device",
"description": "Structure that represents a all of the states a managed device could be in.",
"type": "object",
"properties": {
"commissionedDate": {
"description": "This is the ISO 8601 string format of the time representing the commission date of the PAW.",
"example": "2023-02-04T05:06:09.601Z",
"format": "date-time",
"type": "string"
},
"displayName": {
"description": "Current computer name of the device according to Entra ID. Empty string indicates that the device has not joined Entra ID yet.",
"example": "Priv-01534962354",
"maxLength": 15,
"minLength": 0,
"type": "string"
},
"id": {
"description": "Entra ID Device ID (Not Object ID) of the specified device.",
"example": "9f237e13-9a04-4daf-b3d4-6d2beec3c2bf",
"format": "uuid",
"maxLength": 36,
"minLength": 36,
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$",
"readOnly": true,
"type": "string"
},
"parentDeviceId": {
"description": "DeviceID of the parent PAW device.",
"example": "81682cf5-0405-491d-8ab8-e07c778d7eaf",
"nullable": true,
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$",
"type": "string"
},
"securityClass": {
"$ref": "#/components/schemas/SecurityClassList"
},
"uniqueGroupId": {
"description": "The object ID of the unique security group that contains the managed Entra ID Device Identity.",
"example": "146964e0-8ca4-4af0-9c2a-894b32912463",
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$",
"readOnly": true,
"type": "string"
}
},
"required": [
"commissionedDate",
"displayName",
"id",
"securityClass",
"uniqueGroupId"
]
},
"ManagedObject.PrivilegedDevice": {
"description": "Set of properties that are available on privileged managed device objects only.",
"title": "Managed Device - Privileged",
"type": "object",
"allOf": [
{
"$ref": "#/components/schemas/ManagedObject.Device"
},
{
"type": "object",
"properties": {
"groupAssignmentId": {
"description": "This is the ID of the Custom CSP Device Configuration that configures the local admin and local hyper-v group memberships.",
"example": "830d8b6f-2f6f-41f7-8800-0c07445abd36",
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$",
"type": "string"
},
"securityClass": {
"description": "Security class that indicates this device is a privileged device.",
"example": "Privileged",
"type": "string",
"enum": [
"Privileged"
]
},
"userAssignmentId": {
"description": "The ID of the Settings Catalog that contains the user rights assignment of the specified PAW device.",
"example": "146964e0-8ca4-4af0-9c2a-894b32912463",
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$",
"readOnly": true,
"type": "string"
},
"userAssignmentList": {
"description": "List of Object IDs for the privileged user accounts that are assigned to this device.",
"example": [
"56d0d4e1-96f6-4cfb-a5e9-a4ee923169a8",
"94a9d681-a8d2-43eb-a83b-d4bfe90259ff",
"c54d4854-9254-4689-8a22-1cc80a3dae4e"
],
"type": "array",
"items": {
"type": "string",
"format": "uuid"
}
}
},
"required": [
"groupAssignmentId",
"securityClass",
"userAssignmentId",
"userAssignmentList"
]
}
]
},
"ManagedObject.User": {
"title": "Managed User",
"description": "A user object that has limited properties. The user object is generated by combining multiple pieces of metadata from Entra ID and SHIELD.",
"properties": {
"creationDate": {
"description": "A date object representing when the user managed by SHIELD.",
"example": "2023-10-21T15:24:47.970Z",
"format": "date-time",
"readOnly": true,
"type": "string"
},
"displayName": {
"description": "The name shown on UIs for the privileged user according to Entra ID.",
"example": "Example User (Priv)",
"maxLength": 256,
"nullable": true,
"type": "string"
},
"firstName": {
"description": "Given name of the privileged user according to Entra ID.",
"maxLength": 64,
"nullable": true,
"type": "string"
},
"id": {
"description": "The Entra ID Object ID of the managed user. This is the one property that is stored in the settings engine. This is the key in the storage systems to uniquely separate the managed user's data from others.",
"example": "9f237e13-9a04-4daf-b3d4-6d2beec3c2bf",
"format": "uuid",
"maxLength": 36,
"minLength": 36,
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$",
"readOnly": true,
"type": "string"
},
"intermediaryAssignmentList": {
"type": "array",
"description": "List of intermediaries that the user is assigned to.",
"items": {
"type": "string",
"format": "uuid"
},
"example": [
"0390fb3e-c58b-4d73-b02c-eae41ec5e4a5",
"593d97dc-9a43-4bc7-9d79-ecde407d7782",
"995f3b39-1e01-40d4-9368-ee956343e97c"
]
},
"lastName": {
"description": "Surname/family name of the privileged user according to Entra ID.",
"maxLength": 64,
"nullable": true,
"type": "string"
},
"upn": {
"description": "User principal name of the user object according to Azure Active Directory.",
"example": "priv-user@example.com",
"format": "email",
"maxLength": 113,
"minLength": 6,
"type": "string"
},
"securityClass": {
"$ref": "#/components/schemas/SecurityClassList"
},
"siloAssignmentList": {
"type": "array",
"description": "List of silos that the user is assigned to.",
"items": {
"type": "string",
"format": "uuid"
},
"example": [
"0390fb3e-c58b-4d73-b02c-eae41ec5e4a5",
"593d97dc-9a43-4bc7-9d79-ecde407d7782",
"995f3b39-1e01-40d4-9368-ee956343e97c"
]
},
"uiEducation": {
"description": "Indicates if user education is enabled in the UI for the specified user. True is on, false is off.",
"example": false,
"type": "boolean"
},
"uniqueGroupId": {
"description": "ObjectID of the unique user group that the managed user is a member of.",
"example": "ad402c42-1bc9-4ba5-9419-7dbfb46a9c4d",
"format": "uuid",
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$",
"readOnly": true,
"type": "string"
}
},
"required": [
"creationDate",
"securityClass",
"id",
"intermediaryAssignmentList",
"siloAssignmentList",
"uiEducation",
"uniqueGroupId",
"upn"
],
"type": "object"
},
"ManagedObject.PrivilegedUser": {
"title": "Managed User - Privileged",
"description": "Additional settings that represent a privileged user object. All data in this structure is preserved in the settings engine's permanent storage system.",
"allOf": [
{
"$ref": "#/components/schemas/ManagedObject.User"
},
{
"properties": {
"deviceAssignmentList": {
"type": "array",
"description": "List of devices that the privileged users are able to use as endpoints.",
"items": {
"type": "string",
"format": "uuid"
},
"example": [
"0390fb3e-c58b-4d73-b02c-eae41ec5e4a5",
"593d97dc-9a43-4bc7-9d79-ecde407d7782",
"995f3b39-1e01-40d4-9368-ee956343e97c"
]
},
"generatedPassword": {
"description": "The password that was created for the managed user upon managed user creation, this is not stored. This is only available once during user creation. If the password is lost, reset the PWD in Entra ID or have the user perform SSPR.",
"example": "GY_w7bZUKRgpIXctD0S2wg",
"readOnly": true,
"type": "string"
},
"parentId": {
"description": "The Entra ID Object ID of the object that the manged user is tied to. This value is only present on privileged users.",
"example": "e59a3a64-dc36-4368-80ec-c205eb176ef6",
"format": "uuid",
"maxLength": 36,
"minLength": 36,
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$",
"readOnly": true,
"type": "string"
},
"securityClass": {
"description": "Security class that indicates this user is a privileged user.",
"example": "Privileged",
"type": "string",
"enum": [
"Privileged"
]
},
"temporaryAccessPass": {
"description": "A TAP that was created for the managed user upon managed user creation, this is not stored. This is only available once during user creation. TAP expires at the configured tenant expiration time.",
"example": "BCKTSN#E2R&5",
"readOnly": true,
"type": "string"
}
},
"required": [
"deviceAssignmentList",
"parentId",
"securityClass"
],
"type": "object"
}
]
},
"ObjectPage.Intermediary.Avd": {
"properties": {
"@odata.count": {
"nullable": true,
"type": "number"
},
"@odata.nextLink": {
"nullable": true,
"type": "string"
},
"value": {
"items": {
"allOf": [
{
"$ref": "#/components/schemas/ManagedObject.Intermediary"
},
{
"properties": {
"properties": {
"$ref": "#/components/schemas/ManagedObject.AvdIntermediary"
}
},
"type": "object"
}
]
},
"minItems": 0,
"type": "array"
}
},
"required": [
"value"
],
"title": "Page of AVD Intermediary Objects",
"type": "object"
},
"ObjectPage.ManagedDevice": {
"properties": {
"@odata.count": {
"nullable": true,
"type": "number"
},
"@odata.nextLink": {
"nullable": true,
"type": "string"
},
"value": {
"items": {
"oneOf": [
{
"$ref": "#/components/schemas/ManagedObject.Device"
},
{
"$ref": "#/components/schemas/ManagedObject.PrivilegedDevice"
}
]
},
"minItems": 0,
"type": "array"
}
},
"required": [
"value"
],
"title": "Page of Managed Device Objects",
"type": "object"
},
"ObjectPage.ManagedUser": {
"properties": {
"@odata.count": {
"nullable": true,
"type": "number"
},
"@odata.nextLink": {
"nullable": true,
"type": "string"
},
"value": {
"items": {
"oneOf": [
{
"$ref": "#/components/schemas/ManagedObject.User"
},