summaryrefslogtreecommitdiff
path: root/static/redfish/v1/JsonSchemas/Manager/Manager.json
blob: b3f3047fc13e29b39d7ec9e58f2532a7e5b16b1c (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
{
    "$id": "http://redfish.dmtf.org/schemas/v1/Manager.v1_19_0.json",
    "$ref": "#/definitions/Manager",
    "$schema": "http://redfish.dmtf.org/schemas/v1/redfish-schema-v1.json",
    "copyright": "Copyright 2014-2023 DMTF. For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright",
    "definitions": {
        "Actions": {
            "additionalProperties": false,
            "description": "The available actions for this resource.",
            "longDescription": "This type shall contain the available actions for this resource.",
            "patternProperties": {
                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
                    "description": "This property shall specify a valid odata or Redfish property.",
                    "type": [
                        "array",
                        "boolean",
                        "integer",
                        "number",
                        "null",
                        "object",
                        "string"
                    ]
                }
            },
            "properties": {
                "#Manager.ForceFailover": {
                    "$ref": "#/definitions/ForceFailover"
                },
                "#Manager.ModifyRedundancySet": {
                    "$ref": "#/definitions/ModifyRedundancySet"
                },
                "#Manager.Reset": {
                    "$ref": "#/definitions/Reset"
                },
                "#Manager.ResetToDefaults": {
                    "$ref": "#/definitions/ResetToDefaults"
                },
                "Oem": {
                    "$ref": "#/definitions/OemActions",
                    "description": "The available OEM-specific actions for this resource.",
                    "longDescription": "This property shall contain the available OEM-specific actions for this resource."
                }
            },
            "type": "object"
        },
        "CommandConnectTypesSupported": {
            "enum": [
                "SSH",
                "Telnet",
                "IPMI",
                "Oem"
            ],
            "enumDescriptions": {
                "IPMI": "The controller supports a command shell connection through the IPMI Serial Over LAN (SOL) protocol.",
                "Oem": "The controller supports a command shell connection through an OEM-specific protocol.",
                "SSH": "The controller supports a command shell connection through the SSH protocol.",
                "Telnet": "The controller supports a command shell connection through the Telnet protocol."
            },
            "type": "string"
        },
        "CommandShell": {
            "additionalProperties": false,
            "description": "The information about a command shell service that this manager provides.",
            "longDescription": "This type shall describe a command shell service for a manager.",
            "patternProperties": {
                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
                    "description": "This property shall specify a valid odata or Redfish property.",
                    "type": [
                        "array",
                        "boolean",
                        "integer",
                        "number",
                        "null",
                        "object",
                        "string"
                    ]
                }
            },
            "properties": {
                "ConnectTypesSupported": {
                    "description": "This property enumerates the command shell connection types that the implementation allows.",
                    "items": {
                        "$ref": "#/definitions/CommandConnectTypesSupported"
                    },
                    "longDescription": "This property shall contain an array of the enumerations.  SSH shall be included if the Secure Shell (SSH) protocol is supported.  Telnet shall be included if the Telnet protocol is supported.  IPMI shall be included if the IPMI Serial Over LAN (SOL) protocol is supported.",
                    "readonly": true,
                    "type": "array"
                },
                "MaxConcurrentSessions": {
                    "description": "The maximum number of service sessions, regardless of protocol, that this manager can support.",
                    "longDescription": "This property shall contain the maximum number of concurrent service sessions that this implementation supports.",
                    "minimum": 0,
                    "readonly": true,
                    "type": "integer"
                },
                "ServiceEnabled": {
                    "description": "An indication of whether the service is enabled for this manager.",
                    "longDescription": "This property shall indicate whether the protocol for the service is enabled.",
                    "readonly": false,
                    "type": "boolean"
                }
            },
            "type": "object"
        },
        "DaylightSavingTime": {
            "additionalProperties": false,
            "description": "The daylight saving time settings for a manager.",
            "longDescription": "This type shall contain the daylight saving time settings for a manager.",
            "patternProperties": {
                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
                    "description": "This property shall specify a valid odata or Redfish property.",
                    "type": [
                        "array",
                        "boolean",
                        "integer",
                        "number",
                        "null",
                        "object",
                        "string"
                    ]
                }
            },
            "properties": {
                "EndDateTime": {
                    "description": "The end date and time with UTC offset of daylight saving time.",
                    "format": "date-time",
                    "longDescription": "This property shall contain the end date and time with UTC offset of daylight saving time for this manager.  If daylight saving time is permanent, specify a sufficiently distant end date and time.  Services shall update the UTC offset based on changes made to DateTimeLocalOffset.  This property shall be read-only if the service contains time zone databases.",
                    "readonly": false,
                    "type": "string",
                    "versionAdded": "v1_19_0"
                },
                "OffsetMinutes": {
                    "description": "The daylight saving time offset in minutes.",
                    "longDescription": "This property shall contain the number of minutes added to the DateTime value when the DateTime value is between the values of StartDateTime and EndDateTime.  This offset shall be applied only if AutoDSTEnabled is `true`.  This property shall be read-only if the service contains time zone databases.",
                    "readonly": false,
                    "type": "integer",
                    "versionAdded": "v1_19_0"
                },
                "StartDateTime": {
                    "description": "The start date and time with UTC offset of daylight saving time.",
                    "format": "date-time",
                    "longDescription": "This property shall contain the start date and time with UTC offset of daylight saving time for this manager.  Services shall update the UTC offset based on changes made to DateTimeLocalOffset.  This property shall be read-only if the service contains time zone databases.",
                    "readonly": false,
                    "type": "string",
                    "versionAdded": "v1_19_0"
                },
                "TimeZoneName": {
                    "description": "The time zone of the manager when daylight saving time is in effect.",
                    "longDescription": "This property shall contain the time zone of the manager when daylight saving time is in effect.  When daylight saving time is in effect, the service shall update the TimeZoneName property in the root of the resource.  When daylight saving time is no longer in effect, the service shall restore the original value of the TimeZoneName property in the root of the resource.  The time zone shall be either the 'Name' or the 'Format' for the zone as defined in the IANA Time Zone Database.  The value of this property is used for display purposes, especially to enhance the display of time.  This property shall be read-only if the service contains time zone databases.",
                    "readonly": false,
                    "type": "string",
                    "versionAdded": "v1_19_0"
                }
            },
            "type": "object"
        },
        "ForceFailover": {
            "additionalProperties": false,
            "description": "The ForceFailover action forces a failover of this manager to the manager used in the parameter.",
            "longDescription": "This action shall perform a forced failover of the manager's redundancy to the manager supplied as a parameter.",
            "parameters": {
                "NewManager": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/Manager.json#/definitions/Manager",
                    "description": "The manager to which to fail over.",
                    "longDescription": "This parameter shall contain the manager to which to fail over.",
                    "requiredParameter": true
                }
            },
            "patternProperties": {
                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
                    "description": "This property shall specify a valid odata or Redfish property.",
                    "type": [
                        "array",
                        "boolean",
                        "integer",
                        "number",
                        "null",
                        "object",
                        "string"
                    ]
                }
            },
            "properties": {
                "target": {
                    "description": "Link to invoke action",
                    "format": "uri-reference",
                    "type": "string"
                },
                "title": {
                    "description": "Friendly action name",
                    "type": "string"
                }
            },
            "type": "object"
        },
        "GraphicalConnectTypesSupported": {
            "enum": [
                "KVMIP",
                "Oem"
            ],
            "enumDescriptions": {
                "KVMIP": "The controller supports a graphical console connection through a KVM-IP (redirection of Keyboard, Video, Mouse over IP) protocol.",
                "Oem": "The controller supports a graphical console connection through an OEM-specific protocol."
            },
            "type": "string"
        },
        "GraphicalConsole": {
            "additionalProperties": false,
            "description": "The information about a graphical console service that this manager provides.",
            "longDescription": "This type shall describe a graphical console service for a manager.",
            "patternProperties": {
                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
                    "description": "This property shall specify a valid odata or Redfish property.",
                    "type": [
                        "array",
                        "boolean",
                        "integer",
                        "number",
                        "null",
                        "object",
                        "string"
                    ]
                }
            },
            "properties": {
                "ConnectTypesSupported": {
                    "description": "This property enumerates the graphical console connection types that the implementation allows.",
                    "items": {
                        "$ref": "#/definitions/GraphicalConnectTypesSupported"
                    },
                    "longDescription": "This property shall contain an array of the enumerations.  RDP shall be included if the Remote Desktop (RDP) protocol is supported.  KVMIP shall be included if a vendor-defined KVM-IP protocol is supported.",
                    "readonly": true,
                    "type": "array"
                },
                "MaxConcurrentSessions": {
                    "description": "The maximum number of service sessions, regardless of protocol, that this manager can support.",
                    "longDescription": "This property shall contain the maximum number of concurrent service sessions that this implementation supports.",
                    "minimum": 0,
                    "readonly": true,
                    "type": "integer"
                },
                "ServiceEnabled": {
                    "description": "An indication of whether the service is enabled for this manager.",
                    "longDescription": "This property shall indicate whether the protocol for the service is enabled.",
                    "readonly": false,
                    "type": "boolean"
                }
            },
            "type": "object"
        },
        "Links": {
            "additionalProperties": false,
            "description": "The links to other resources that are related to this resource.",
            "longDescription": "This Redfish Specification-described type shall contain links to resources that are related to but are not contained by, or subordinate to, this resource.",
            "patternProperties": {
                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
                    "description": "This property shall specify a valid odata or Redfish property.",
                    "type": [
                        "array",
                        "boolean",
                        "integer",
                        "number",
                        "null",
                        "object",
                        "string"
                    ]
                }
            },
            "properties": {
                "ActiveSoftwareImage": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/SoftwareInventory.json#/definitions/SoftwareInventory",
                    "description": "The link to the software inventory resource that represents the active firmware image for this manager.",
                    "longDescription": "This property shall contain a link to a resource of type SoftwareInventory that represents the active firmware image for this manager.",
                    "readonly": false,
                    "versionAdded": "v1_6_0"
                },
                "ManagedBy": {
                    "description": "The array of links to the managers responsible for managing this manager.",
                    "items": {
                        "$ref": "http://redfish.dmtf.org/schemas/v1/Manager.json#/definitions/Manager"
                    },
                    "longDescription": "This property shall contain an array of links to resources of type Manager that represent the managers for this manager.",
                    "readonly": true,
                    "type": "array",
                    "versionAdded": "v1_9_0"
                },
                "ManagedBy@odata.count": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
                },
                "ManagerForChassis": {
                    "description": "An array of links to the chassis this manager controls.",
                    "items": {
                        "$ref": "http://redfish.dmtf.org/schemas/v1/Chassis.json#/definitions/Chassis"
                    },
                    "longDescription": "This property shall contain an array of links to chassis over which this manager instance has control.",
                    "readonly": true,
                    "type": "array"
                },
                "ManagerForChassis@odata.count": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
                },
                "ManagerForManagers": {
                    "description": "An array of links to the managers that are managed by this manager.",
                    "items": {
                        "$ref": "http://redfish.dmtf.org/schemas/v1/Manager.json#/definitions/Manager"
                    },
                    "longDescription": "This property shall contain an array of links to resources of type Manager that represent the managers being managed by this manager.",
                    "readonly": true,
                    "type": "array",
                    "versionAdded": "v1_9_0"
                },
                "ManagerForManagers@odata.count": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
                },
                "ManagerForServers": {
                    "description": "An array of links to the systems that this manager controls.",
                    "items": {
                        "$ref": "http://redfish.dmtf.org/schemas/v1/ComputerSystem.json#/definitions/ComputerSystem"
                    },
                    "longDescription": "This property shall contain an array of links to computer systems over which this manager instance has control.",
                    "readonly": true,
                    "type": "array"
                },
                "ManagerForServers@odata.count": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
                },
                "ManagerForSwitches": {
                    "description": "An array of links to the switches that this manager controls.",
                    "items": {
                        "$ref": "http://redfish.dmtf.org/schemas/v1/Switch.json#/definitions/Switch"
                    },
                    "longDescription": "This property shall contain an array of links to switches that this manager instance controls.",
                    "readonly": true,
                    "type": "array",
                    "versionAdded": "v1_4_0"
                },
                "ManagerForSwitches@odata.count": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
                },
                "ManagerInChassis": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/Chassis.json#/definitions/Chassis",
                    "description": "The link to the chassis where this manager is located.",
                    "longDescription": "This property shall contain a link to the chassis where this manager is located.",
                    "readonly": true,
                    "versionAdded": "v1_1_0"
                },
                "Oem": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
                    "description": "The OEM extension property.",
                    "longDescription": "This property shall contain the OEM extensions.  All values for properties contained in this object shall conform to the Redfish Specification-described requirements."
                },
                "SelectedNetworkPort": {
                    "anyOf": [
                        {
                            "$ref": "http://redfish.dmtf.org/schemas/v1/Port.json#/definitions/Port"
                        },
                        {
                            "type": "null"
                        }
                    ],
                    "description": "The network port currently used by this manager.  This allows selection of shared or dedicated ports for managers that support one or the other.  For managers that always have their dedicated port enabled, this allows the selection of which shared port to use.",
                    "longDescription": "This property shall contain a link to a resource of type Port that represents the current network port used by this manager.",
                    "readonly": false,
                    "versionAdded": "v1_18_0"
                },
                "SoftwareImages": {
                    "description": "The images that are associated with this manager.",
                    "items": {
                        "$ref": "http://redfish.dmtf.org/schemas/v1/SoftwareInventory.json#/definitions/SoftwareInventory"
                    },
                    "longDescription": "This property shall contain an array of links to resources of type SoftwareInventory that represent the firmware images that apply to this manager.",
                    "readonly": true,
                    "type": "array",
                    "versionAdded": "v1_6_0"
                },
                "SoftwareImages@odata.count": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
                }
            },
            "type": "object"
        },
        "Manager": {
            "additionalProperties": false,
            "description": "In Redfish, a manager is a systems management entity that can implement or provide access to a Redfish service.  Examples of managers are BMCs (baseboard management controllers), enclosure managers, management controllers, and other subsystems that are assigned manageability functions.  An implementation can have multiple managers, which might be directly accessible through a Redfish-defined interface.",
            "longDescription": "This resource shall represent a management subsystem for a Redfish implementation.",
            "patternProperties": {
                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
                    "description": "This property shall specify a valid odata or Redfish property.",
                    "type": [
                        "array",
                        "boolean",
                        "integer",
                        "number",
                        "null",
                        "object",
                        "string"
                    ]
                }
            },
            "properties": {
                "@odata.context": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/context"
                },
                "@odata.etag": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/etag"
                },
                "@odata.id": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/id"
                },
                "@odata.type": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/type"
                },
                "Actions": {
                    "$ref": "#/definitions/Actions",
                    "description": "The available actions for this resource.",
                    "longDescription": "This property shall contain the available actions for this resource."
                },
                "AdditionalFirmwareVersions": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/SoftwareInventory.json#/definitions/AdditionalVersions",
                    "description": "The additional firmware versions of the manager.",
                    "longDescription": "This property shall contain the additional firmware versions of the manager.",
                    "versionAdded": "v1_15_0"
                },
                "AutoDSTEnabled": {
                    "description": "An indication of whether the manager is configured for automatic Daylight Saving Time (DST) adjustment.",
                    "longDescription": "This property shall indicate whether the manager is configured for automatic Daylight Saving Time (DST) adjustment.",
                    "readonly": false,
                    "type": "boolean",
                    "versionAdded": "v1_4_0"
                },
                "Certificates": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/CertificateCollection.json#/definitions/CertificateCollection",
                    "description": "The link to a collection of certificates for device identity and attestation.",
                    "longDescription": "This property shall contain a link to a resource collection of type CertificateCollection that contains certificates for device identity and attestation.",
                    "readonly": true,
                    "versionAdded": "v1_13_0"
                },
                "CommandShell": {
                    "$ref": "#/definitions/CommandShell",
                    "description": "The command shell service that this manager provides.",
                    "longDescription": "This property shall contain information about the command shell service of this manager."
                },
                "DateTime": {
                    "description": "The current date and time with UTC offset of the manager.",
                    "format": "date-time",
                    "longDescription": "This property shall contain the current date and time with UTC offset of the manager.",
                    "readonly": false,
                    "type": [
                        "string",
                        "null"
                    ]
                },
                "DateTimeLocalOffset": {
                    "description": "The time offset from UTC that the DateTime property is in `+HH:MM` format.",
                    "longDescription": "This property shall contain the offset from UTC time that the DateTime property contains.  If both DateTime and DateTimeLocalOffset are provided in modification requests, services shall apply DateTimeLocalOffset after DateTime is applied.",
                    "pattern": "^([-+][0-1][0-9]:[0-5][0-9])$",
                    "readonly": false,
                    "type": [
                        "string",
                        "null"
                    ]
                },
                "DaylightSavingTime": {
                    "$ref": "#/definitions/DaylightSavingTime",
                    "description": "The daylight saving time settings for this manager.",
                    "longDescription": "This property shall contain the daylight saving time settings for this manager.",
                    "versionAdded": "v1_19_0"
                },
                "DedicatedNetworkPorts": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/PortCollection.json#/definitions/PortCollection",
                    "description": "The dedicated network ports of the manager.",
                    "longDescription": "This property shall contain a link to a resource collection of type PortCollection that represent the dedicated network ports of the manager.",
                    "versionAdded": "v1_16_0"
                },
                "Description": {
                    "anyOf": [
                        {
                            "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Description"
                        },
                        {
                            "type": "null"
                        }
                    ],
                    "readonly": true
                },
                "EthernetInterfaces": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/EthernetInterfaceCollection.json#/definitions/EthernetInterfaceCollection",
                    "description": "The link to a collection of NICs that this manager uses for network communication.",
                    "longDescription": "This property shall contain a link to a resource collection of type EthernetInterfaceCollection.",
                    "readonly": true
                },
                "FirmwareVersion": {
                    "description": "The firmware version of this manager.",
                    "longDescription": "This property shall contain the firmware version as defined by the manufacturer for the associated manager.",
                    "readonly": true,
                    "type": [
                        "string",
                        "null"
                    ]
                },
                "GraphicalConsole": {
                    "$ref": "#/definitions/GraphicalConsole",
                    "description": "The information about the graphical console service of this manager.",
                    "longDescription": "This property shall contain the information about the graphical console (KVM-IP) service of this manager.  This property should be used to describe a service for the manager's console or operating system, not a service provided on behalf of a host operating system.  Implementations representing host OS consoles, known generally as a KVM-IP feature, should use the GraphicalConsole property in ComputerSystem."
                },
                "HostInterfaces": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/HostInterfaceCollection.json#/definitions/HostInterfaceCollection",
                    "description": "The link to a collection of host interfaces that this manager uses for local host communication.  Clients can find host interface configuration options and settings in this navigation property.",
                    "longDescription": "This property shall contain a link to a resource collection of type HostInterfaceCollection.",
                    "readonly": true,
                    "versionAdded": "v1_3_0"
                },
                "Id": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Id",
                    "readonly": true
                },
                "LastResetTime": {
                    "description": "The date and time when the manager was last reset or rebooted.",
                    "format": "date-time",
                    "longDescription": "This property shall contain the date and time when the manager last came out of a reset or was rebooted.",
                    "readonly": true,
                    "type": "string",
                    "versionAdded": "v1_9_0"
                },
                "Links": {
                    "$ref": "#/definitions/Links",
                    "description": "The links to other resources that are related to this resource.",
                    "longDescription": "This property shall contain links to resources that are related to but are not contained by, or subordinate to, this resource."
                },
                "Location": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Location",
                    "description": "The location of the manager.",
                    "longDescription": "This property shall contain the location information of the associated manager.",
                    "versionAdded": "v1_11_0"
                },
                "LocationIndicatorActive": {
                    "description": "An indicator allowing an operator to physically locate this resource.",
                    "longDescription": "This property shall contain the state of the indicator used to physically identify or locate this resource.  A write to this property shall update the value of IndicatorLED in this resource, if supported, to reflect the implementation of the locating function.",
                    "readonly": false,
                    "type": [
                        "boolean",
                        "null"
                    ],
                    "versionAdded": "v1_11_0"
                },
                "LogServices": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/LogServiceCollection.json#/definitions/LogServiceCollection",
                    "description": "The link to a collection of logs that the manager uses.",
                    "longDescription": "This property shall contain a link to a resource collection of type LogServiceCollection that this manager uses.",
                    "readonly": true
                },
                "ManagerDiagnosticData": {
                    "anyOf": [
                        {
                            "$ref": "http://redfish.dmtf.org/schemas/v1/ManagerDiagnosticData.json#/definitions/ManagerDiagnosticData"
                        },
                        {
                            "type": "null"
                        }
                    ],
                    "description": "The diagnostic data for this manager.",
                    "longDescription": "This property shall contain a link to a resource of type ManagerDiagnosticData that represents the diagnostic data for this manager.",
                    "readonly": true,
                    "versionAdded": "v1_14_0"
                },
                "ManagerType": {
                    "$ref": "#/definitions/ManagerType",
                    "description": "The type of manager that this resource represents.",
                    "longDescription": "This property shall describe the function of this manager.  The `ManagementController` value shall be used if none of the other enumerations apply.",
                    "readonly": true
                },
                "Manufacturer": {
                    "description": "The manufacturer of this manager.",
                    "longDescription": "This property shall contain the name of the organization responsible for producing the manager.  This organization may be the entity from whom the manager is purchased, but this is not necessarily true.",
                    "readonly": true,
                    "type": [
                        "string",
                        "null"
                    ],
                    "versionAdded": "v1_7_0"
                },
                "Measurements": {
                    "deprecated": "This property has been deprecated in favor of the ComponentIntegrity resource.",
                    "description": "An array of DSP0274-defined measurement blocks.",
                    "items": {
                        "$ref": "http://redfish.dmtf.org/schemas/v1/SoftwareInventory.json#/definitions/MeasurementBlock"
                    },
                    "longDescription": "This property shall contain an array of DSP0274-defined measurement blocks.",
                    "type": "array",
                    "versionAdded": "v1_13_0",
                    "versionDeprecated": "v1_14_0"
                },
                "Model": {
                    "description": "The model information of this manager, as defined by the manufacturer.",
                    "longDescription": "This property shall contain the information about how the manufacturer refers to this manager.",
                    "readonly": true,
                    "type": [
                        "string",
                        "null"
                    ]
                },
                "Name": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Name",
                    "readonly": true
                },
                "NetworkProtocol": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/ManagerNetworkProtocol.json#/definitions/ManagerNetworkProtocol",
                    "description": "The link to the network services and their settings that the manager controls.",
                    "longDescription": "This property shall contain a link to a resource of type ManagerNetworkProtocol, which represents the network services for this manager.",
                    "readonly": true
                },
                "Oem": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
                    "description": "The OEM extension property.",
                    "longDescription": "This property shall contain the OEM extensions.  All values for properties that this object contains shall conform to the Redfish Specification-described requirements."
                },
                "PartNumber": {
                    "description": "The part number of the manager.",
                    "longDescription": "This property shall contain a part number assigned by the organization that is responsible for producing or manufacturing the manager.",
                    "readonly": true,
                    "type": [
                        "string",
                        "null"
                    ],
                    "versionAdded": "v1_7_0"
                },
                "PowerState": {
                    "anyOf": [
                        {
                            "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/PowerState"
                        },
                        {
                            "type": "null"
                        }
                    ],
                    "description": "The current power state of the manager.",
                    "longDescription": "This property shall contain the power state of the manager.",
                    "readonly": true,
                    "versionAdded": "v1_2_0"
                },
                "Redundancy": {
                    "autoExpand": true,
                    "description": "The redundancy information for the managers of this system.",
                    "items": {
                        "$ref": "http://redfish.dmtf.org/schemas/v1/Redundancy.json#/definitions/Redundancy"
                    },
                    "longDescription": "The properties in this array shall show how this manager is grouped with other managers for form redundancy sets.",
                    "type": "array"
                },
                "Redundancy@odata.count": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
                },
                "RemoteAccountService": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/AccountService.json#/definitions/AccountService",
                    "description": "The link to the account service resource for the remote manager that this resource represents.",
                    "longDescription": "This property shall contain a link to the account service resource for the remote manager that this resource represents.  This property shall only be present when providing aggregation of a remote manager.",
                    "readonly": true,
                    "versionAdded": "v1_5_0"
                },
                "RemoteRedfishServiceUri": {
                    "description": "The URI of the Redfish service root for the remote manager that this resource represents.",
                    "format": "uri-reference",
                    "longDescription": "This property shall contain the URI of the Redfish service root for the remote manager that this resource represents.  This property shall only be present when providing aggregation of Redfish services.",
                    "readonly": true,
                    "type": [
                        "string",
                        "null"
                    ],
                    "versionAdded": "v1_5_0"
                },
                "SecurityPolicy": {
                    "anyOf": [
                        {
                            "$ref": "http://redfish.dmtf.org/schemas/v1/SecurityPolicy.json#/definitions/SecurityPolicy"
                        },
                        {
                            "type": "null"
                        }
                    ],
                    "description": "The security policy settings for this manager.",
                    "longDescription": "This property shall contain a link to a resource of type SecurityPolicy that contains the security policy settings for this manager.",
                    "readonly": true,
                    "versionAdded": "v1_16_0"
                },
                "SerialConsole": {
                    "$ref": "#/definitions/SerialConsole",
                    "deprecated": "This property has been deprecated in favor of the SerialConsole property in the ComputerSystem resource.",
                    "description": "The serial console service that this manager provides.",
                    "longDescription": "This property shall contain information about the serial console service of this manager.",
                    "versionDeprecated": "v1_10_0"
                },
                "SerialInterfaces": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/SerialInterfaceCollection.json#/definitions/SerialInterfaceCollection",
                    "description": "The link to a collection of serial interfaces that this manager uses for serial and console communication.",
                    "longDescription": "This property shall contain a link to a resource collection of type SerialInterfaceCollection, which this manager uses.",
                    "readonly": true
                },
                "SerialNumber": {
                    "description": "The serial number of the manager.",
                    "longDescription": "This property shall contain a manufacturer-allocated number that identifies the manager.",
                    "readonly": true,
                    "type": [
                        "string",
                        "null"
                    ],
                    "versionAdded": "v1_7_0"
                },
                "ServiceEntryPointUUID": {
                    "anyOf": [
                        {
                            "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/UUID"
                        },
                        {
                            "type": "null"
                        }
                    ],
                    "description": "The UUID of the Redfish service that is hosted by this manager.",
                    "longDescription": "This property shall contain the UUID of the Redfish service that is hosted by this manager.  Each manager providing an entry point to the same Redfish service shall report the same UUID value, even though the name of the property may imply otherwise.  This property shall not be present if this manager does not provide a Redfish service entry point.",
                    "readonly": true
                },
                "ServiceIdentification": {
                    "description": "A product instance identifier displayed in the Redfish service root.",
                    "longDescription": "This property shall contain a vendor-provided or user-provided value that identifies and associates a discovered Redfish service with a particular product instance.  If this manager provides the Redfish service, the ServiceIdentification property in the ServiceRoot resource shall contain the value of this property.  This property shall only be present if the manager provides the Redfish service.  The value of this property is used in conjunction with the Product and Vendor properties in ServiceRoot to match user credentials or other a priori product instance information necessary for initial deployment to the correct, matching Redfish service.",
                    "readonly": false,
                    "type": [
                        "string",
                        "null"
                    ],
                    "versionAdded": "v1_15_0"
                },
                "SharedNetworkPorts": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/PortCollection.json#/definitions/PortCollection",
                    "description": "The shared network ports of the manager.",
                    "longDescription": "This property shall contain a link to a resource collection of type PortCollection that represent the shared network ports of the manager.  The members of this collection shall reference Port resources subordinate to NetworkAdapter resources.",
                    "versionAdded": "v1_16_0"
                },
                "SparePartNumber": {
                    "description": "The spare part number of the manager.",
                    "longDescription": "This property shall contain the spare part number of the manager.",
                    "readonly": true,
                    "type": [
                        "string",
                        "null"
                    ],
                    "versionAdded": "v1_11_0"
                },
                "Status": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Status",
                    "description": "The status and health of the resource and its subordinate or dependent resources.",
                    "longDescription": "This property shall contain any status or health properties of the resource."
                },
                "TimeZoneName": {
                    "description": "The time zone of the manager.",
                    "longDescription": "This property shall contain the time zone of the manager.  The time zone shall be either the 'Name' or the 'Format' for the zone as defined in the IANA Time Zone Database.  The value of this property is used for display purposes, especially to enhance the display of time.  A Redfish service may not be able to ensure accuracy and consistency between the DateTimeOffset property and this property.  Therefore, to specify the correct time zone offset, see the DateTimeOffset property.",
                    "readonly": false,
                    "type": "string",
                    "versionAdded": "v1_10_0"
                },
                "USBPorts": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/PortCollection.json#/definitions/PortCollection",
                    "description": "The USB ports of the manager.",
                    "longDescription": "This property shall contain a link to a resource collection of type PortCollection that represent the USB ports of the manager.",
                    "versionAdded": "v1_12_0"
                },
                "UUID": {
                    "anyOf": [
                        {
                            "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/UUID"
                        },
                        {
                            "type": "null"
                        }
                    ],
                    "description": "The UUID for this manager.",
                    "longDescription": "This property shall contain the UUID for the manager.",
                    "readonly": true
                },
                "Version": {
                    "description": "The hardware version of this manager.",
                    "longDescription": "This property shall contain the hardware version of this manager as determined by the vendor or supplier.",
                    "readonly": true,
                    "type": [
                        "string",
                        "null"
                    ],
                    "versionAdded": "v1_17_0"
                },
                "VirtualMedia": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/VirtualMediaCollection.json#/definitions/VirtualMediaCollection",
                    "deprecated": "This property has been deprecated in favor of the VirtualMedia property in the ComputerSystem resource.",
                    "description": "The link to the Virtual Media services for this particular manager.",
                    "longDescription": "This property shall contain a link to a resource collection of type VirtualMediaCollection, which this manager uses.",
                    "readonly": true,
                    "versionDeprecated": "v1_10_0"
                }
            },
            "required": [
                "@odata.id",
                "@odata.type",
                "Id",
                "Name"
            ],
            "type": "object"
        },
        "ManagerService": {
            "additionalProperties": false,
            "description": "The manager services, such as serial console, command shell, or graphical console service.",
            "patternProperties": {
                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
                    "description": "This property shall specify a valid odata or Redfish property.",
                    "type": [
                        "array",
                        "boolean",
                        "integer",
                        "number",
                        "null",
                        "object",
                        "string"
                    ]
                }
            },
            "properties": {
                "MaxConcurrentSessions": {
                    "description": "The maximum number of service sessions, regardless of protocol, that this manager can support.",
                    "longDescription": "This property shall contain the maximum number of concurrent service sessions that this implementation supports.",
                    "minimum": 0,
                    "readonly": true,
                    "type": "integer"
                },
                "ServiceEnabled": {
                    "description": "An indication of whether the service is enabled for this manager.",
                    "longDescription": "This property shall indicate whether the protocol for the service is enabled.",
                    "readonly": false,
                    "type": "boolean"
                }
            },
            "type": "object"
        },
        "ManagerType": {
            "enum": [
                "ManagementController",
                "EnclosureManager",
                "BMC",
                "RackManager",
                "AuxiliaryController",
                "Service"
            ],
            "enumDescriptions": {
                "AuxiliaryController": "A controller that provides management functions for a particular subsystem or group of devices as part of a larger system.",
                "BMC": "A controller that provides management functions for one or more computer systems.  Commonly known as a BMC (baseboard management controller).  Examples of this include a BMC dedicated to one system or a multi-host manager providing BMC capabilities to multiple systems.",
                "EnclosureManager": "A controller that provides management functions for a chassis, group of devices, or group of systems with their own BMCs (baseboard management controllers).  An example of this is a manager that aggregates and orchestrates management functions across multiple BMCs in an enclosure.",
                "ManagementController": "A controller that primarily monitors or manages the operation of a device or system.",
                "RackManager": "A controller that provides management functions for a whole or part of a rack.  An example of this is a manager that aggregates and orchestrates management functions across multiple managers, such as enclosure managers and BMCs (baseboard management controllers), in a rack.",
                "Service": "A software-based service that provides management functions."
            },
            "enumVersionAdded": {
                "Service": "v1_4_0"
            },
            "type": "string"
        },
        "ModifyRedundancySet": {
            "additionalProperties": false,
            "description": "The ModifyRedundancySet operation adds members to or removes members from a redundant group of managers.",
            "longDescription": "The ModifyRedundancySet operation shall add members to or remove members from a redundant group of managers.",
            "parameters": {
                "Add": {
                    "description": "An array of managers to add to the redundancy set.",
                    "items": {
                        "$ref": "http://redfish.dmtf.org/schemas/v1/Manager.json#/definitions/Manager"
                    },
                    "longDescription": "This parameter shall contain an array of managers to add to the redundancy set.",
                    "type": "array"
                },
                "Remove": {
                    "description": "An array of managers to remove from the redundancy set.",
                    "items": {
                        "$ref": "http://redfish.dmtf.org/schemas/v1/Manager.json#/definitions/Manager"
                    },
                    "longDescription": "This parameter shall contain an array of managers to remove from the redundancy set.",
                    "type": "array"
                }
            },
            "patternProperties": {
                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
                    "description": "This property shall specify a valid odata or Redfish property.",
                    "type": [
                        "array",
                        "boolean",
                        "integer",
                        "number",
                        "null",
                        "object",
                        "string"
                    ]
                }
            },
            "properties": {
                "target": {
                    "description": "Link to invoke action",
                    "format": "uri-reference",
                    "type": "string"
                },
                "title": {
                    "description": "Friendly action name",
                    "type": "string"
                }
            },
            "type": "object"
        },
        "OemActions": {
            "additionalProperties": true,
            "description": "The available OEM-specific actions for this resource.",
            "longDescription": "This type shall contain the available OEM-specific actions for this resource.",
            "patternProperties": {
                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
                    "description": "This property shall specify a valid odata or Redfish property.",
                    "type": [
                        "array",
                        "boolean",
                        "integer",
                        "number",
                        "null",
                        "object",
                        "string"
                    ]
                }
            },
            "properties": {},
            "type": "object"
        },
        "Reset": {
            "additionalProperties": false,
            "description": "The reset action resets/reboots the manager.",
            "longDescription": "This action shall reset the manager.",
            "parameters": {
                "ResetType": {
                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/ResetType",
                    "description": "The type of reset.",
                    "longDescription": "This parameter shall contain the type of reset.  The service can accept a request without the parameter and perform an implementation-specific default reset.  Services should include the @Redfish.AllowableValues annotation for this parameter to ensure compatibility with clients, even when ActionInfo has been implemented."
                }
            },
            "patternProperties": {
                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
                    "description": "This property shall specify a valid odata or Redfish property.",
                    "type": [
                        "array",
                        "boolean",
                        "integer",
                        "number",
                        "null",
                        "object",
                        "string"
                    ]
                }
            },
            "properties": {
                "target": {
                    "description": "Link to invoke action",
                    "format": "uri-reference",
                    "type": "string"
                },
                "title": {
                    "description": "Friendly action name",
                    "type": "string"
                }
            },
            "type": "object"
        },
        "ResetToDefaults": {
            "additionalProperties": false,
            "description": "The reset action resets the manager settings to factory defaults.  This can cause the manager to reset.",
            "longDescription": "This action shall reset the manager settings.  This action can impact other resources.",
            "parameters": {
                "ResetType": {
                    "$ref": "#/definitions/ResetToDefaultsType",
                    "description": "The type of reset to defaults.",
                    "longDescription": "This parameter shall contain the type of reset to defaults.",
                    "requiredParameter": true
                }
            },
            "patternProperties": {
                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
                    "description": "This property shall specify a valid odata or Redfish property.",
                    "type": [
                        "array",
                        "boolean",
                        "integer",
                        "number",
                        "null",
                        "object",
                        "string"
                    ]
                }
            },
            "properties": {
                "target": {
                    "description": "Link to invoke action",
                    "format": "uri-reference",
                    "type": "string"
                },
                "title": {
                    "description": "Friendly action name",
                    "type": "string"
                }
            },
            "type": "object",
            "versionAdded": "v1_8_0"
        },
        "ResetToDefaultsType": {
            "enum": [
                "ResetAll",
                "PreserveNetworkAndUsers",
                "PreserveNetwork"
            ],
            "enumDescriptions": {
                "PreserveNetwork": "Reset all settings except network settings to factory defaults.",
                "PreserveNetworkAndUsers": "Reset all settings except network and local user names/passwords to factory defaults.",
                "ResetAll": "Reset all settings to factory defaults."
            },
            "type": "string"
        },
        "SerialConnectTypesSupported": {
            "enum": [
                "SSH",
                "Telnet",
                "IPMI",
                "Oem"
            ],
            "enumDescriptions": {
                "IPMI": "The controller supports a serial console connection through the IPMI Serial Over LAN (SOL) protocol.",
                "Oem": "The controller supports a serial console connection through an OEM-specific protocol.",
                "SSH": "The controller supports a serial console connection through the SSH protocol.",
                "Telnet": "The controller supports a serial console connection through the Telnet protocol."
            },
            "type": "string"
        },
        "SerialConsole": {
            "additionalProperties": false,
            "description": "The information about a serial console service that this manager provides.",
            "longDescription": "This type shall describe a serial console service for a manager.",
            "patternProperties": {
                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
                    "description": "This property shall specify a valid odata or Redfish property.",
                    "type": [
                        "array",
                        "boolean",
                        "integer",
                        "number",
                        "null",
                        "object",
                        "string"
                    ]
                }
            },
            "properties": {
                "ConnectTypesSupported": {
                    "description": "This property enumerates the serial console connection types that the implementation allows.",
                    "items": {
                        "$ref": "#/definitions/SerialConnectTypesSupported"
                    },
                    "longDescription": "This property shall contain an array of the enumerations.  SSH shall be included if the Secure Shell (SSH) protocol is supported.  Telnet shall be included if the Telnet protocol is supported.  IPMI shall be included if the IPMI Serial Over LAN (SOL) protocol is supported.",
                    "readonly": true,
                    "type": "array"
                },
                "MaxConcurrentSessions": {
                    "description": "The maximum number of service sessions, regardless of protocol, that this manager can support.",
                    "longDescription": "This property shall contain the maximum number of concurrent service sessions that this implementation supports.",
                    "minimum": 0,
                    "readonly": true,
                    "type": "integer"
                },
                "ServiceEnabled": {
                    "description": "An indication of whether the service is enabled for this manager.",
                    "longDescription": "This property shall indicate whether the protocol for the service is enabled.",
                    "readonly": false,
                    "type": "boolean"
                }
            },
            "type": "object"
        }
    },
    "owningEntity": "DMTF",
    "release": "2023.3",
    "title": "#Manager.v1_19_0.Manager"
}