1{
2    "$id": "http://redfish.dmtf.org/schemas/v1/ComputerSystem.v1_22_1.json",
3    "$ref": "#/definitions/ComputerSystem",
4    "$schema": "http://redfish.dmtf.org/schemas/v1/redfish-schema-v1.json",
5    "copyright": "Copyright 2014-2024 DMTF. For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright",
6    "definitions": {
7        "Actions": {
8            "additionalProperties": false,
9            "description": "The available actions for this resource.",
10            "longDescription": "This type shall contain the available actions for this resource.",
11            "patternProperties": {
12                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
13                    "description": "This property shall specify a valid odata or Redfish property.",
14                    "type": [
15                        "array",
16                        "boolean",
17                        "integer",
18                        "number",
19                        "null",
20                        "object",
21                        "string"
22                    ]
23                }
24            },
25            "properties": {
26                "#ComputerSystem.AddResourceBlock": {
27                    "$ref": "#/definitions/AddResourceBlock"
28                },
29                "#ComputerSystem.Decommission": {
30                    "$ref": "#/definitions/Decommission"
31                },
32                "#ComputerSystem.RemoveResourceBlock": {
33                    "$ref": "#/definitions/RemoveResourceBlock"
34                },
35                "#ComputerSystem.Reset": {
36                    "$ref": "#/definitions/Reset"
37                },
38                "#ComputerSystem.SetDefaultBootOrder": {
39                    "$ref": "#/definitions/SetDefaultBootOrder"
40                },
41                "Oem": {
42                    "$ref": "#/definitions/OemActions",
43                    "description": "The available OEM-specific actions for this resource.",
44                    "longDescription": "This property shall contain the available OEM-specific actions for this resource."
45                }
46            },
47            "type": "object"
48        },
49        "AddResourceBlock": {
50            "additionalProperties": false,
51            "description": "This action adds a resource block to a system.",
52            "longDescription": "This action shall add a resource block to a system.",
53            "parameters": {
54                "ComputerSystemETag": {
55                    "description": "The current ETag of the system.",
56                    "longDescription": "This parameter shall contain the current ETag of the system.  If the client-provided ETag does not match the current ETag of the system, the service shall return the HTTP `428 Precondition Required` status code to reject the request.",
57                    "type": "string"
58                },
59                "ResourceBlock": {
60                    "$ref": "http://redfish.dmtf.org/schemas/v1/ResourceBlock.json#/definitions/ResourceBlock",
61                    "description": "The resource block to add to the system.",
62                    "longDescription": "This parameter shall contain a link to the specified resource block to add to the system.",
63                    "requiredParameter": true
64                },
65                "ResourceBlockETag": {
66                    "description": "The current ETag of the resource block to add to the system.",
67                    "longDescription": "This parameter shall contain the current ETag of the resource block to add to the system.  If the client-provided ETag does not match the current ETag of the resource block that the `ResourceBlock` parameter specifies, the service shall return the HTTP `428 Precondition Required` status code to reject the request.",
68                    "type": "string"
69                }
70            },
71            "patternProperties": {
72                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
73                    "description": "This property shall specify a valid odata or Redfish property.",
74                    "type": [
75                        "array",
76                        "boolean",
77                        "integer",
78                        "number",
79                        "null",
80                        "object",
81                        "string"
82                    ]
83                }
84            },
85            "properties": {
86                "target": {
87                    "description": "Link to invoke action",
88                    "format": "uri-reference",
89                    "type": "string"
90                },
91                "title": {
92                    "description": "Friendly action name",
93                    "type": "string"
94                }
95            },
96            "type": "object",
97            "versionAdded": "v1_6_0"
98        },
99        "AutomaticRetryConfig": {
100            "enum": [
101                "Disabled",
102                "RetryAttempts",
103                "RetryAlways"
104            ],
105            "enumDescriptions": {
106                "Disabled": "Disable automatic retrying of booting.",
107                "RetryAlways": "Always automatically retry booting.",
108                "RetryAttempts": "Automatic retrying of booting is based on a specified retry count."
109            },
110            "enumLongDescriptions": {
111                "Disabled": "This value shall indicate that automatic retrying of booting is disabled.",
112                "RetryAlways": "This value shall indicate that the system will always automatically retry booting.",
113                "RetryAttempts": "This value shall indicate that the number of retries of booting is based on the `AutomaticRetryAttempts` property, and the `RemainingAutomaticRetryAttempts` property indicates the number of remaining attempts."
114            },
115            "type": "string"
116        },
117        "Boot": {
118            "additionalProperties": false,
119            "description": "The boot information for this resource.",
120            "longDescription": "This type shall contain properties that describe boot information for a system.",
121            "patternProperties": {
122                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
123                    "description": "This property shall specify a valid odata or Redfish property.",
124                    "type": [
125                        "array",
126                        "boolean",
127                        "integer",
128                        "number",
129                        "null",
130                        "object",
131                        "string"
132                    ]
133                }
134            },
135            "properties": {
136                "AliasBootOrder": {
137                    "description": "Ordered array of boot source aliases representing the persistent boot order associated with this computer system.",
138                    "items": {
139                        "anyOf": [
140                            {
141                                "$ref": "http://redfish.dmtf.org/schemas/v1/ComputerSystem.json#/definitions/BootSource"
142                            },
143                            {
144                                "type": "null"
145                            }
146                        ]
147                    },
148                    "longDescription": "This property shall contain an ordered array of boot source aliases of the `BootSource` type that represents the persistent boot order of this computer system.  This array shall not contain duplicate values.  Virtual devices for an alias should take precedence over a physical device.  Systems may attempt to boot from multiple devices that share an alias.",
149                    "readonly": false,
150                    "type": "array",
151                    "versionAdded": "v1_6_0"
152                },
153                "AutomaticRetryAttempts": {
154                    "description": "The number of attempts the system will automatically retry booting.",
155                    "longDescription": "This property shall contain the number of attempts the system will automatically retry booting in the event the system enters an error state on boot.",
156                    "minimum": 0,
157                    "readonly": false,
158                    "type": [
159                        "integer",
160                        "null"
161                    ],
162                    "versionAdded": "v1_11_0"
163                },
164                "AutomaticRetryConfig": {
165                    "anyOf": [
166                        {
167                            "$ref": "#/definitions/AutomaticRetryConfig"
168                        },
169                        {
170                            "type": "null"
171                        }
172                    ],
173                    "description": "The configuration of how the system retries booting automatically.",
174                    "longDescription": "This property shall contain the configuration of how the system retries booting automatically.",
175                    "readonly": false,
176                    "versionAdded": "v1_11_0"
177                },
178                "BootNext": {
179                    "description": "The `BootOptionReference` of the Boot Option to perform a one-time boot from when `BootSourceOverrideTarget` is `UefiBootNext`.",
180                    "longDescription": "This property shall contain the `BootOptionReference` of the UEFI boot option for one time boot, as defined by the UEFI Specification.  The valid values for this property are specified in the values of the BootOrder array.  `BootSourceOverrideEnabled` set to `Continuous` is not supported for `BootSourceOverrideTarget` set to `UefiBootNext` because this setting is defined in UEFI as a one-time boot setting.",
181                    "readonly": false,
182                    "type": [
183                        "string",
184                        "null"
185                    ],
186                    "versionAdded": "v1_5_0"
187                },
188                "BootOptions": {
189                    "$ref": "http://redfish.dmtf.org/schemas/v1/BootOptionCollection.json#/definitions/BootOptionCollection",
190                    "description": "The link to the collection of the UEFI boot options associated with this computer system.",
191                    "longDescription": "This property shall contain a link to a resource collection of type `BootOptionCollection`.",
192                    "readonly": true,
193                    "versionAdded": "v1_5_0"
194                },
195                "BootOrder": {
196                    "description": "An array of `BootOptionReference` strings that represent the persistent boot order for with this computer system.  Changes to the boot order typically require a system reset before they take effect.  It is likely that a client finds the `@Redfish.Settings` term in this resource, and if it is found, the client makes requests to change boot order settings by modifying the resource identified by the `@Redfish.Settings` term.",
197                    "items": {
198                        "type": [
199                            "string",
200                            "null"
201                        ]
202                    },
203                    "longDescription": "This property shall contain an array of `BootOptionReference` strings that represent the persistent boot order for this computer system.  For UEFI systems, this is the UEFI Specification-defined UEFI BootOrder.",
204                    "readonly": false,
205                    "type": "array",
206                    "versionAdded": "v1_5_0"
207                },
208                "BootOrderPropertySelection": {
209                    "anyOf": [
210                        {
211                            "$ref": "#/definitions/BootOrderTypes"
212                        },
213                        {
214                            "type": "null"
215                        }
216                    ],
217                    "description": "The name of the boot order property that the system uses for the persistent boot order.",
218                    "longDescription": "This property shall indicate which boot order property the system uses for the persistent boot order.",
219                    "readonly": false,
220                    "versionAdded": "v1_6_0"
221                },
222                "BootSourceOverrideEnabled": {
223                    "anyOf": [
224                        {
225                            "$ref": "#/definitions/BootSourceOverrideEnabled"
226                        },
227                        {
228                            "type": "null"
229                        }
230                    ],
231                    "description": "The state of the boot source override feature.",
232                    "longDescription": "This property shall contain `Once` for a one-time boot override, and `Continuous` for a remain-active-until-cancelled override.  If set to `Once`, the value is reset to `Disabled` after the `BootSourceOverrideTarget` actions have completed successfully.  Changes to this property do not alter the BIOS persistent boot order configuration.",
233                    "readonly": false
234                },
235                "BootSourceOverrideMode": {
236                    "anyOf": [
237                        {
238                            "$ref": "#/definitions/BootSourceOverrideMode"
239                        },
240                        {
241                            "type": "null"
242                        }
243                    ],
244                    "description": "The BIOS boot mode to use when the system boots from the `BootSourceOverrideTarget` boot source.",
245                    "longDescription": "This property shall contain the BIOS boot mode to use when the system boots from the `BootSourceOverrideTarget` boot source.",
246                    "readonly": false,
247                    "versionAdded": "v1_1_0"
248                },
249                "BootSourceOverrideTarget": {
250                    "anyOf": [
251                        {
252                            "$ref": "http://redfish.dmtf.org/schemas/v1/ComputerSystem.json#/definitions/BootSource"
253                        },
254                        {
255                            "type": "null"
256                        }
257                    ],
258                    "description": "The current boot source to use at the next boot instead of the normal boot device, if `BootSourceOverrideEnabled` does not contain `Disabled`.",
259                    "longDescription": "This property shall contain the source to boot the system from, overriding the normal boot order.  The `@Redfish.AllowableValues` annotation specifies the valid values for this property.  `UefiTarget` indicates to boot from the UEFI device path found in `UefiTargetBootSourceOverride`.  `UefiBootNext` indicates to boot from the UEFI `BootOptionReference` found in `BootNext`.  Virtual devices for a target should take precedence over a physical device.  Systems may attempt to boot from multiple devices that share a target identifier.  Changes to this property do not alter the BIOS persistent boot order configuration.",
260                    "readonly": false
261                },
262                "Certificates": {
263                    "$ref": "http://redfish.dmtf.org/schemas/v1/CertificateCollection.json#/definitions/CertificateCollection",
264                    "description": "The link to a collection of certificates used for booting through HTTPS by this computer system.",
265                    "longDescription": "This property shall contain a link to a resource collection of type `CertificateCollection`.",
266                    "readonly": true,
267                    "versionAdded": "v1_7_0"
268                },
269                "HttpBootUri": {
270                    "description": "The URI to boot from when `BootSourceOverrideTarget` is set to `UefiHttp`.",
271                    "format": "uri-reference",
272                    "longDescription": "This property shall contain the URI to perform an HTTP or HTTPS boot when `BootSourceOverrideTarget` is set to `UefiHttp`.  If this property is not configured or supported, the URI shall be provided by a DHCP server as specified by the UEFI Specification.",
273                    "readonly": false,
274                    "type": [
275                        "string",
276                        "null"
277                    ],
278                    "versionAdded": "v1_9_0"
279                },
280                "RemainingAutomaticRetryAttempts": {
281                    "description": "The number of remaining automatic retry boots.",
282                    "longDescription": "This property shall contain the number of attempts remaining the system will retry booting in the event the system enters an error state on boot.  If `0`, the system has no remaining automatic boot retry attempts and shall not automatically retry booting if the system enters an error state.  This property shall be reset to the value of `AutomaticRetryAttempts` upon a successful boot attempt.",
283                    "minimum": 0,
284                    "readonly": true,
285                    "type": [
286                        "integer",
287                        "null"
288                    ],
289                    "versionAdded": "v1_11_0"
290                },
291                "StopBootOnFault": {
292                    "anyOf": [
293                        {
294                            "$ref": "#/definitions/StopBootOnFault"
295                        },
296                        {
297                            "type": "null"
298                        }
299                    ],
300                    "description": "If the boot should stop on a fault.",
301                    "longDescription": "This property shall contain the setting if the boot should stop on a fault.",
302                    "readonly": false,
303                    "versionAdded": "v1_15_0"
304                },
305                "TrustedModuleRequiredToBoot": {
306                    "anyOf": [
307                        {
308                            "$ref": "#/definitions/TrustedModuleRequiredToBoot"
309                        },
310                        {
311                            "type": "null"
312                        }
313                    ],
314                    "description": "The Trusted Module boot requirement.",
315                    "longDescription": "This property shall contain the Trusted Module boot requirement.",
316                    "readonly": false,
317                    "versionAdded": "v1_14_0"
318                },
319                "UefiTargetBootSourceOverride": {
320                    "description": "The UEFI device path of the device from which to boot when `BootSourceOverrideTarget` is `UefiTarget`.",
321                    "longDescription": "This property shall contain the UEFI device path of the override boot target.  Changes to this property do not alter the BIOS persistent boot order configuration.",
322                    "readonly": false,
323                    "type": [
324                        "string",
325                        "null"
326                    ]
327                }
328            },
329            "type": "object"
330        },
331        "BootOrderTypes": {
332            "description": "The enumerations of `BootOrderTypes` specify the choice of boot order property to use when controller the persistent boot order for this computer system.",
333            "enum": [
334                "BootOrder",
335                "AliasBootOrder"
336            ],
337            "enumDescriptions": {
338                "AliasBootOrder": "The system uses the `AliasBootOrder` property to specify the persistent boot order.",
339                "BootOrder": "The system uses the `BootOrder` property to specify the persistent boot order."
340            },
341            "type": "string"
342        },
343        "BootProgress": {
344            "additionalProperties": false,
345            "description": "This object describes the last boot progress state.",
346            "longDescription": "This object shall contain the last boot progress state and time.",
347            "patternProperties": {
348                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
349                    "description": "This property shall specify a valid odata or Redfish property.",
350                    "type": [
351                        "array",
352                        "boolean",
353                        "integer",
354                        "number",
355                        "null",
356                        "object",
357                        "string"
358                    ]
359                }
360            },
361            "properties": {
362                "LastBootTimeSeconds": {
363                    "description": "The number of seconds the system spent booting to the operating system during the last boot.",
364                    "longDescription": "This property shall contain the number of seconds that elapsed between system reset or power on and LastState transitioning to `OSRunning`.  If `LastState` contains `OSRunning`, this property shall contain the most recent boot time.  For other values of `LastState`, this property shall contain the boot time for the previous boot.",
365                    "readonly": true,
366                    "type": [
367                        "number",
368                        "null"
369                    ],
370                    "versionAdded": "v1_18_0"
371                },
372                "LastState": {
373                    "anyOf": [
374                        {
375                            "$ref": "#/definitions/BootProgressTypes"
376                        },
377                        {
378                            "type": "null"
379                        }
380                    ],
381                    "description": "The last boot progress state.",
382                    "longDescription": "This property shall contain the last boot progress state.",
383                    "readonly": true,
384                    "versionAdded": "v1_13_0"
385                },
386                "LastStateTime": {
387                    "description": "The date and time when the last boot state was updated.",
388                    "format": "date-time",
389                    "longDescription": "This property shall contain the date and time when the last boot state was updated.",
390                    "readonly": true,
391                    "type": [
392                        "string",
393                        "null"
394                    ],
395                    "versionAdded": "v1_13_0"
396                },
397                "Oem": {
398                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
399                    "description": "The OEM extension property.",
400                    "longDescription": "This property shall contain the OEM extensions.  All values for properties contained in this object shall conform to the Redfish Specification-described requirements.",
401                    "versionAdded": "v1_13_0"
402                },
403                "OemLastState": {
404                    "description": "The OEM-specific last state, if the LastState type is `OEM`.",
405                    "longDescription": "This property shall represent the OEM-specific `LastState` of the `BootProgress`.  This property shall only be present if `LastState` is `OEM`.",
406                    "readonly": true,
407                    "type": [
408                        "string",
409                        "null"
410                    ],
411                    "versionAdded": "v1_13_0"
412                }
413            },
414            "type": "object"
415        },
416        "BootProgressTypes": {
417            "enum": [
418                "None",
419                "PrimaryProcessorInitializationStarted",
420                "BusInitializationStarted",
421                "MemoryInitializationStarted",
422                "SecondaryProcessorInitializationStarted",
423                "PCIResourceConfigStarted",
424                "SystemHardwareInitializationComplete",
425                "SetupEntered",
426                "OSBootStarted",
427                "OSRunning",
428                "OEM"
429            ],
430            "enumDescriptions": {
431                "BusInitializationStarted": "The system has started initializing the buses.",
432                "MemoryInitializationStarted": "The system has started initializing the memory.",
433                "None": "The system is not booting.",
434                "OEM": "A boot progress state in an OEM-defined format.",
435                "OSBootStarted": "The operating system has started booting.",
436                "OSRunning": "The operating system is running.",
437                "PCIResourceConfigStarted": "The system has started initializing the PCI resources.",
438                "PrimaryProcessorInitializationStarted": "The system has started initializing the primary processor.",
439                "SecondaryProcessorInitializationStarted": "The system has started initializing the remaining processors.",
440                "SetupEntered": "The system has entered the setup utility.",
441                "SystemHardwareInitializationComplete": "The system has completed initializing all hardware."
442            },
443            "enumLongDescriptions": {
444                "BusInitializationStarted": "This value shall indicate that the system has started to initialize the buses.",
445                "MemoryInitializationStarted": "This value shall indicate that the system has started to initialize the memory.",
446                "None": "This value shall indicate that the system is not booting or running, such as the system is powered off.",
447                "OEM": "This value shall indicate an OEM-defined boot progress state.",
448                "OSBootStarted": "This value shall indicate that the operating system has started to boot.",
449                "OSRunning": "This value shall indicate that the operating system is running and shall indicate the final boot progress state.",
450                "PCIResourceConfigStarted": "This value shall indicate that the system has started to initialize the PCI resources.",
451                "PrimaryProcessorInitializationStarted": "This value shall indicate that the system has started to initialize the primary processor.",
452                "SecondaryProcessorInitializationStarted": "This value shall indicate that the system has started to initialize the secondary processors.",
453                "SetupEntered": "This value shall indicate that the system has entered the setup utility.",
454                "SystemHardwareInitializationComplete": "This value shall indicate that the system has completed initializing all hardware."
455            },
456            "enumVersionAdded": {
457                "SetupEntered": "v1_15_0"
458            },
459            "type": "string"
460        },
461        "BootSourceOverrideEnabled": {
462            "enum": [
463                "Disabled",
464                "Once",
465                "Continuous"
466            ],
467            "enumDescriptions": {
468                "Continuous": "The system boots to the target specified in the `BootSourceOverrideTarget` property until this property is `Disabled`.",
469                "Disabled": "The system boots normally.",
470                "Once": "On its next boot cycle, the system boots one time to the boot source override target.  Then, the `BootSourceOverrideEnabled` value is reset to `Disabled`."
471            },
472            "type": "string"
473        },
474        "BootSourceOverrideMode": {
475            "enum": [
476                "Legacy",
477                "UEFI"
478            ],
479            "enumDescriptions": {
480                "Legacy": "The system boots in non-UEFI boot mode to the boot source override target.",
481                "UEFI": "The system boots in UEFI boot mode to the boot source override target."
482            },
483            "type": "string"
484        },
485        "Composition": {
486            "additionalProperties": false,
487            "description": "Information about the composition capabilities and state of a computer system.",
488            "longDescription": "This type shall contain information about the composition capabilities and state of a computer system.",
489            "patternProperties": {
490                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
491                    "description": "This property shall specify a valid odata or Redfish property.",
492                    "type": [
493                        "array",
494                        "boolean",
495                        "integer",
496                        "number",
497                        "null",
498                        "object",
499                        "string"
500                    ]
501                }
502            },
503            "properties": {
504                "UseCases": {
505                    "description": "The composition use cases in which this computer system can participate.",
506                    "items": {
507                        "anyOf": [
508                            {
509                                "$ref": "#/definitions/CompositionUseCase"
510                            },
511                            {
512                                "type": "null"
513                            }
514                        ]
515                    },
516                    "longDescription": "This property shall contain the composition use cases in which this computer system can participate.",
517                    "readonly": true,
518                    "type": "array",
519                    "versionAdded": "v1_18_0"
520                }
521            },
522            "type": "object"
523        },
524        "CompositionUseCase": {
525            "enum": [
526                "ResourceBlockCapable",
527                "ExpandableSystem"
528            ],
529            "enumDescriptions": {
530                "ExpandableSystem": "This computer system supports expandable system composition and is associated with a resource block.",
531                "ResourceBlockCapable": "This computer system supports being registered as a resource block in order for it to participate in composition requests."
532            },
533            "enumLongDescriptions": {
534                "ExpandableSystem": "This value shall indicate the computer system supports expandable system composition and is associated with a resource block.",
535                "ResourceBlockCapable": "This value shall indicate the computer system supports being registered as a resource block in order for it to participate in composition requests."
536            },
537            "type": "string"
538        },
539        "ComputerSystem": {
540            "additionalProperties": false,
541            "description": "The `ComputerSystem` schema represents a computer or system instance and the software-visible resources, or items within the data plane, such as memory, CPU, and other devices that it can access.  Details of those resources or subsystems are also linked through this resource.",
542            "longDescription": "This resource shall represent a computing system in the Redfish Specification.",
543            "patternProperties": {
544                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
545                    "description": "This property shall specify a valid odata or Redfish property.",
546                    "type": [
547                        "array",
548                        "boolean",
549                        "integer",
550                        "number",
551                        "null",
552                        "object",
553                        "string"
554                    ]
555                }
556            },
557            "properties": {
558                "@odata.context": {
559                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/context"
560                },
561                "@odata.etag": {
562                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/etag"
563                },
564                "@odata.id": {
565                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/id"
566                },
567                "@odata.type": {
568                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/type"
569                },
570                "Actions": {
571                    "$ref": "#/definitions/Actions",
572                    "description": "The available actions for this resource.",
573                    "longDescription": "This property shall contain the available actions for this resource."
574                },
575                "AssetTag": {
576                    "description": "The user-definable tag that can track this computer system for inventory or other client purposes.",
577                    "longDescription": "This property shall contain the system asset tag value.  Modifying this property may modify the `AssetTag` in the containing `Chassis` resource.",
578                    "readonly": false,
579                    "type": [
580                        "string",
581                        "null"
582                    ]
583                },
584                "Bios": {
585                    "$ref": "http://redfish.dmtf.org/schemas/v1/Bios.json#/definitions/Bios",
586                    "description": "The link to the BIOS settings associated with this system.",
587                    "longDescription": "This property shall contain a link to a resource of type `Bios` that lists the BIOS settings for this system.",
588                    "readonly": true,
589                    "versionAdded": "v1_1_0"
590                },
591                "BiosVersion": {
592                    "description": "The version of the system BIOS or primary system firmware.",
593                    "longDescription": "This property shall contain the version string of the currently installed and running BIOS for x86 systems.  For other systems, the property may contain a version string that represents the primary system firmware.",
594                    "readonly": true,
595                    "type": [
596                        "string",
597                        "null"
598                    ]
599                },
600                "Boot": {
601                    "$ref": "#/definitions/Boot",
602                    "description": "The boot settings for this system.",
603                    "longDescription": "This property shall contain the boot settings for this system."
604                },
605                "BootProgress": {
606                    "anyOf": [
607                        {
608                            "$ref": "#/definitions/BootProgress"
609                        },
610                        {
611                            "type": "null"
612                        }
613                    ],
614                    "description": "This object describes the last boot progress state.",
615                    "longDescription": "This object shall contain the last boot progress state and time.",
616                    "versionAdded": "v1_13_0"
617                },
618                "Certificates": {
619                    "$ref": "http://redfish.dmtf.org/schemas/v1/CertificateCollection.json#/definitions/CertificateCollection",
620                    "description": "The link to a collection of certificates for device identity and attestation.",
621                    "longDescription": "This property shall contain a link to a resource collection of type `CertificateCollection` that contains certificates for device identity and attestation.",
622                    "readonly": true,
623                    "versionAdded": "v1_14_0"
624                },
625                "Composition": {
626                    "anyOf": [
627                        {
628                            "$ref": "#/definitions/Composition"
629                        },
630                        {
631                            "type": "null"
632                        }
633                    ],
634                    "description": "Information about the composition capabilities and state of the computer system.",
635                    "longDescription": "This property shall contain information about the composition capabilities and state of the computer system.",
636                    "versionAdded": "v1_18_0"
637                },
638                "Description": {
639                    "anyOf": [
640                        {
641                            "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Description"
642                        },
643                        {
644                            "type": "null"
645                        }
646                    ],
647                    "readonly": true
648                },
649                "EthernetInterfaces": {
650                    "$ref": "http://redfish.dmtf.org/schemas/v1/EthernetInterfaceCollection.json#/definitions/EthernetInterfaceCollection",
651                    "description": "The link to the collection of Ethernet interfaces associated with this system.",
652                    "longDescription": "This property shall contain a link to a resource collection of type `EthernetInterfaceCollection`.",
653                    "readonly": true
654                },
655                "FabricAdapters": {
656                    "$ref": "http://redfish.dmtf.org/schemas/v1/FabricAdapterCollection.json#/definitions/FabricAdapterCollection",
657                    "description": "The link to the collection of fabric adapters associated with this system.",
658                    "longDescription": "This property shall contain a link to a resource collection of type `FabricAdapterCollection`.",
659                    "readonly": true,
660                    "versionAdded": "v1_10_0"
661                },
662                "GraphicalConsole": {
663                    "$ref": "#/definitions/HostGraphicalConsole",
664                    "description": "The information about the graphical console (KVM-IP) service of this system.",
665                    "longDescription": "This property shall contain the information about the graphical console (KVM-IP) service of this system.",
666                    "versionAdded": "v1_13_0"
667                },
668                "GraphicsControllers": {
669                    "$ref": "http://redfish.dmtf.org/schemas/v1/GraphicsControllerCollection.json#/definitions/GraphicsControllerCollection",
670                    "description": "The link to a collection of graphics controllers that can output video for this system.",
671                    "longDescription": "This property shall contain a link to a resource collection of type `GraphicsControllerCollection` that contains graphics controllers that can output video for this system.",
672                    "readonly": true,
673                    "versionAdded": "v1_15_0"
674                },
675                "HostName": {
676                    "description": "The DNS host name, without any domain information.",
677                    "longDescription": "This property shall contain the host name for this system, as reported by the operating system or hypervisor.  A service running in the host operating system typically reports this value to the manager.  Modifying this property may modify the `HostName` in one or more `EthernetInterface` resources contained in this system.",
678                    "readonly": false,
679                    "type": [
680                        "string",
681                        "null"
682                    ]
683                },
684                "HostWatchdogTimer": {
685                    "$ref": "#/definitions/WatchdogTimer",
686                    "description": "The host watchdog timer functionality for this system.",
687                    "longDescription": "This object shall contain properties that describe the host watchdog timer functionality for this system.",
688                    "versionAdded": "v1_5_0"
689                },
690                "HostedServices": {
691                    "$ref": "#/definitions/HostedServices",
692                    "description": "The services that this computer system supports.",
693                    "longDescription": "This property shall describe services that this computer system supports.",
694                    "versionAdded": "v1_2_0"
695                },
696                "HostingRoles": {
697                    "description": "The hosting roles that this computer system supports.",
698                    "items": {
699                        "$ref": "#/definitions/HostingRole"
700                    },
701                    "longDescription": "This property shall contain the hosting roles that this computer system supports.",
702                    "readonly": true,
703                    "type": "array",
704                    "versionAdded": "v1_2_0"
705                },
706                "Id": {
707                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Id",
708                    "readonly": true
709                },
710                "IdlePowerSaver": {
711                    "anyOf": [
712                        {
713                            "$ref": "#/definitions/IdlePowerSaver"
714                        },
715                        {
716                            "type": "null"
717                        }
718                    ],
719                    "description": "The idle power saver settings of the computer system.",
720                    "longDescription": "This property shall contain the idle power saver settings of the computer system.",
721                    "versionAdded": "v1_16_0"
722                },
723                "IndicatorLED": {
724                    "anyOf": [
725                        {
726                            "$ref": "#/definitions/IndicatorLED"
727                        },
728                        {
729                            "type": "null"
730                        }
731                    ],
732                    "deprecated": "This property has been deprecated in favor of the `LocationIndicatorActive` property.",
733                    "description": "The state of the indicator LED, which identifies the system.",
734                    "longDescription": "This property shall contain the state of the indicator light, which identifies this system.",
735                    "readonly": false,
736                    "versionDeprecated": "v1_13_0"
737                },
738                "KeyManagement": {
739                    "anyOf": [
740                        {
741                            "$ref": "#/definitions/KeyManagement"
742                        },
743                        {
744                            "type": "null"
745                        }
746                    ],
747                    "description": "The key management settings of the computer system.",
748                    "longDescription": "This property shall contain the key management settings of the computer system.",
749                    "versionAdded": "v1_16_0"
750                },
751                "LastResetTime": {
752                    "description": "The date and time when the system was last reset or rebooted.",
753                    "format": "date-time",
754                    "longDescription": "This property shall contain the date and time when the system last came out of a reset or was rebooted.",
755                    "readonly": true,
756                    "type": "string",
757                    "versionAdded": "v1_12_0"
758                },
759                "Links": {
760                    "$ref": "#/definitions/Links",
761                    "description": "The links to other resources that are related to this resource.",
762                    "longDescription": "This property shall contain links to resources that are related to but are not contained by, or subordinate to, this resource."
763                },
764                "LocationIndicatorActive": {
765                    "description": "An indicator allowing an operator to physically locate this resource.",
766                    "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.  Modifying this property may modify the `LocationIndicatorActive` in the containing `Chassis` resource.",
767                    "readonly": false,
768                    "type": [
769                        "boolean",
770                        "null"
771                    ],
772                    "versionAdded": "v1_13_0"
773                },
774                "LogServices": {
775                    "$ref": "http://redfish.dmtf.org/schemas/v1/LogServiceCollection.json#/definitions/LogServiceCollection",
776                    "description": "The link to the collection of log services associated with this system.",
777                    "longDescription": "This property shall contain a link to a resource collection of type `LogServiceCollection`.",
778                    "readonly": true
779                },
780                "Manufacturer": {
781                    "description": "The manufacturer or OEM of this system.",
782                    "longDescription": "This property shall contain a value that represents the manufacturer of the system.",
783                    "readonly": true,
784                    "type": [
785                        "string",
786                        "null"
787                    ]
788                },
789                "ManufacturingMode": {
790                    "description": "An indication of whether the system is in manufacturing mode.  Manufacturing mode is a special boot mode, not normally available to end users, that modifies features and settings for use while the system is being manufactured and tested.",
791                    "longDescription": "This property shall indicate whether the system is in manufacturing mode.  If the system supports SMBIOS, the value shall match the 'Manufacturing mode is enabled' setting from the 'BIOS Characteristics' entry.",
792                    "readonly": true,
793                    "type": [
794                        "boolean",
795                        "null"
796                    ],
797                    "versionAdded": "v1_18_0"
798                },
799                "Measurements": {
800                    "deprecated": "This property has been deprecated in favor of the `ComponentIntegrity` resource.",
801                    "description": "An array of DSP0274-defined measurement blocks.",
802                    "items": {
803                        "$ref": "http://redfish.dmtf.org/schemas/v1/SoftwareInventory.json#/definitions/MeasurementBlock"
804                    },
805                    "longDescription": "This property shall contain an array of DSP0274-defined measurement blocks.",
806                    "type": "array",
807                    "versionAdded": "v1_14_0",
808                    "versionDeprecated": "v1_17_0"
809                },
810                "Memory": {
811                    "$ref": "http://redfish.dmtf.org/schemas/v1/MemoryCollection.json#/definitions/MemoryCollection",
812                    "description": "The link to the collection of memory associated with this system.",
813                    "longDescription": "This property shall contain a link to a resource collection of type `MemoryCollection`.",
814                    "readonly": true,
815                    "versionAdded": "v1_1_0"
816                },
817                "MemoryDomains": {
818                    "$ref": "http://redfish.dmtf.org/schemas/v1/MemoryDomainCollection.json#/definitions/MemoryDomainCollection",
819                    "description": "The link to the collection of memory domains associated with this system.",
820                    "longDescription": "This property shall contain a link to a resource collection of type `MemoryDomainCollection`.",
821                    "readonly": true,
822                    "versionAdded": "v1_2_0"
823                },
824                "MemorySummary": {
825                    "$ref": "#/definitions/MemorySummary",
826                    "description": "The central memory of the system in general detail.",
827                    "longDescription": "This property shall describe the central memory for this resource."
828                },
829                "Model": {
830                    "description": "The product name for this system, without the manufacturer name.",
831                    "longDescription": "This property shall describe how the manufacturer refers to this system.  Typically, this value is the product name for this system without the manufacturer name.",
832                    "readonly": true,
833                    "type": [
834                        "string",
835                        "null"
836                    ]
837                },
838                "Name": {
839                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Name",
840                    "readonly": true
841                },
842                "NetworkInterfaces": {
843                    "$ref": "http://redfish.dmtf.org/schemas/v1/NetworkInterfaceCollection.json#/definitions/NetworkInterfaceCollection",
844                    "description": "The link to the collection of Network Interfaces associated with this system.",
845                    "longDescription": "This property shall contain a link to a resource collection of type `NetworkInterfaceCollection`.",
846                    "readonly": true,
847                    "versionAdded": "v1_3_0"
848                },
849                "Oem": {
850                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
851                    "description": "The OEM extension property.",
852                    "longDescription": "This property shall contain the OEM extensions.  All values for properties that this object contains shall conform to the Redfish Specification-described requirements."
853                },
854                "OperatingSystem": {
855                    "$ref": "http://redfish.dmtf.org/schemas/v1/OperatingSystem.json#/definitions/OperatingSystem",
856                    "description": "The link to the operating system information associated with this system.",
857                    "longDescription": "This property shall contain a link to a resource of type `OperatingSystem` that contains operating system information for this system.",
858                    "readonly": true,
859                    "versionAdded": "v1_21_0"
860                },
861                "PCIeDevices": {
862                    "description": "The link to a collection of PCIe devices that this computer system uses.",
863                    "items": {
864                        "$ref": "http://redfish.dmtf.org/schemas/v1/PCIeDevice.json#/definitions/PCIeDevice"
865                    },
866                    "longDescription": "This property shall contain an array of links to resources of type `PCIeDevice`.",
867                    "readonly": true,
868                    "type": "array",
869                    "versionAdded": "v1_2_0"
870                },
871                "PCIeDevices@odata.count": {
872                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
873                },
874                "PCIeFunctions": {
875                    "description": "The link to a collection of PCIe functions that this computer system uses.",
876                    "items": {
877                        "$ref": "http://redfish.dmtf.org/schemas/v1/PCIeFunction.json#/definitions/PCIeFunction"
878                    },
879                    "longDescription": "This property shall contain an array of links to resources of type `PCIeFunction`.",
880                    "readonly": true,
881                    "type": "array",
882                    "versionAdded": "v1_2_0"
883                },
884                "PCIeFunctions@odata.count": {
885                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
886                },
887                "PartNumber": {
888                    "description": "The part number for this system.",
889                    "longDescription": "This property shall contain the manufacturer-defined part number for the system.",
890                    "readonly": true,
891                    "type": [
892                        "string",
893                        "null"
894                    ]
895                },
896                "PowerCycleDelaySeconds": {
897                    "description": "The number of seconds to delay power on after a `Reset` action requesting `PowerCycle`.  Zero seconds indicates no delay.",
898                    "longDescription": "This property shall contain the number of seconds to delay power on after a `Reset` action requesting `PowerCycle`.  The value `0` shall indicate no delay to power on.",
899                    "readonly": false,
900                    "type": [
901                        "number",
902                        "null"
903                    ],
904                    "versionAdded": "v1_13_0"
905                },
906                "PowerMode": {
907                    "anyOf": [
908                        {
909                            "$ref": "#/definitions/PowerMode"
910                        },
911                        {
912                            "type": "null"
913                        }
914                    ],
915                    "description": "The power mode setting of the computer system.",
916                    "longDescription": "This property shall contain the computer system power mode setting.",
917                    "readonly": false,
918                    "versionAdded": "v1_15_0"
919                },
920                "PowerOffDelaySeconds": {
921                    "description": "The number of seconds to delay power off during a reset.  Zero seconds indicates no delay to power off.",
922                    "longDescription": "This property shall contain the number of seconds to delay power off during a reset.  The value `0` shall indicate no delay to power off.",
923                    "readonly": false,
924                    "type": [
925                        "number",
926                        "null"
927                    ],
928                    "versionAdded": "v1_13_0"
929                },
930                "PowerOnDelaySeconds": {
931                    "description": "The number of seconds to delay power on after a power cycle or during a reset.  Zero seconds indicates no delay to power up.",
932                    "longDescription": "This property shall contain the number of seconds to delay power on after a power cycle or during a reset.  The value `0` shall indicate no delay to power on.",
933                    "readonly": false,
934                    "type": [
935                        "number",
936                        "null"
937                    ],
938                    "versionAdded": "v1_13_0"
939                },
940                "PowerRestorePolicy": {
941                    "$ref": "#/definitions/PowerRestorePolicyTypes",
942                    "description": "The desired power state of the system when power is restored after a power loss.",
943                    "longDescription": "This property shall indicate the desired power state of the system when power is applied to the system.  The `LastState` value shall return the system to the `PowerState` property value it was in when power was lost.",
944                    "readonly": false,
945                    "versionAdded": "v1_6_0"
946                },
947                "PowerState": {
948                    "anyOf": [
949                        {
950                            "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/PowerState"
951                        },
952                        {
953                            "type": "null"
954                        }
955                    ],
956                    "description": "The current power state of the system.",
957                    "longDescription": "This property shall contain the power state of the system.",
958                    "readonly": true
959                },
960                "ProcessorSummary": {
961                    "$ref": "#/definitions/ProcessorSummary",
962                    "description": "The central processors of the system in general detail.",
963                    "longDescription": "This property shall describe the central processors for this resource.  Processors described by this property shall be limited to the processors that execute system code, and shall not include processors used for offload functionality."
964                },
965                "Processors": {
966                    "$ref": "http://redfish.dmtf.org/schemas/v1/ProcessorCollection.json#/definitions/ProcessorCollection",
967                    "description": "The link to the collection of processors associated with this system.",
968                    "longDescription": "This property shall contain a link to a resource collection of type `ProcessorCollection`.",
969                    "readonly": true
970                },
971                "Redundancy": {
972                    "autoExpand": true,
973                    "description": "The link to a collection of redundancy entities.  Each entity specifies a kind and level of redundancy and a collection, or redundancy set, of other computer systems that provide the specified redundancy to this computer system.",
974                    "items": {
975                        "$ref": "http://redfish.dmtf.org/schemas/v1/Redundancy.json#/definitions/Redundancy"
976                    },
977                    "longDescription": "This property shall contain a set of redundancy entities.  Each entity specifies a kind and level of redundancy and a collection, or redundancy set, of other computer systems that provide the specified redundancy to this computer system.",
978                    "readonly": true,
979                    "type": "array",
980                    "versionAdded": "v1_5_0"
981                },
982                "Redundancy@odata.count": {
983                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
984                },
985                "SKU": {
986                    "description": "The manufacturer SKU for this system.",
987                    "longDescription": "This property shall contain the SKU for the system.",
988                    "readonly": true,
989                    "type": [
990                        "string",
991                        "null"
992                    ]
993                },
994                "SecureBoot": {
995                    "$ref": "http://redfish.dmtf.org/schemas/v1/SecureBoot.json#/definitions/SecureBoot",
996                    "description": "The link to the UEFI Secure Boot associated with this system.",
997                    "longDescription": "This property shall contain a link to a resource of type `SecureBoot`.",
998                    "readonly": true,
999                    "versionAdded": "v1_1_0"
1000                },
1001                "SerialConsole": {
1002                    "$ref": "#/definitions/HostSerialConsole",
1003                    "description": "The serial console services that this system provides.",
1004                    "longDescription": "This property shall contain information about the serial console services of this system.",
1005                    "versionAdded": "v1_13_0"
1006                },
1007                "SerialNumber": {
1008                    "description": "The serial number for this system.",
1009                    "longDescription": "This property shall contain the serial number for the system.",
1010                    "readonly": true,
1011                    "type": [
1012                        "string",
1013                        "null"
1014                    ]
1015                },
1016                "SimpleStorage": {
1017                    "$ref": "http://redfish.dmtf.org/schemas/v1/SimpleStorageCollection.json#/definitions/SimpleStorageCollection",
1018                    "description": "The link to the collection of storage devices associated with this system.",
1019                    "longDescription": "This property shall contain a link to a resource collection of type `SimpleStorageCollection`.",
1020                    "readonly": true
1021                },
1022                "Status": {
1023                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Status",
1024                    "description": "The status and health of the resource and its subordinate or dependent resources.",
1025                    "longDescription": "This property shall contain any status or health properties of the resource."
1026                },
1027                "Storage": {
1028                    "$ref": "http://redfish.dmtf.org/schemas/v1/StorageCollection.json#/definitions/StorageCollection",
1029                    "description": "The link to the collection of storage devices associated with this system.",
1030                    "longDescription": "This property shall contain a link to a resource collection of type `StorageCollection`.",
1031                    "readonly": true,
1032                    "versionAdded": "v1_1_0"
1033                },
1034                "SubModel": {
1035                    "description": "The sub-model for this system.",
1036                    "longDescription": "This property shall contain the information about the sub-model (or configuration) of the system.  This shall not include the model/product name or the manufacturer name.",
1037                    "readonly": true,
1038                    "type": [
1039                        "string",
1040                        "null"
1041                    ],
1042                    "versionAdded": "v1_5_0"
1043                },
1044                "SystemType": {
1045                    "$ref": "#/definitions/SystemType",
1046                    "description": "The type of computer system that this resource represents.",
1047                    "longDescription": "An enumeration that indicates the kind of system that this resource represents.",
1048                    "readonly": true
1049                },
1050                "TrustedModules": {
1051                    "deprecated": "This property has been deprecated in favor of the `TrustedComponents` property in `Links`.",
1052                    "description": "An array of trusted modules in the system.",
1053                    "items": {
1054                        "$ref": "#/definitions/TrustedModules"
1055                    },
1056                    "longDescription": "This object shall contain an array of objects with properties that describe the trusted modules for this resource.",
1057                    "type": "array",
1058                    "versionAdded": "v1_1_0",
1059                    "versionDeprecated": "v1_19_0"
1060                },
1061                "USBControllers": {
1062                    "$ref": "http://redfish.dmtf.org/schemas/v1/USBControllerCollection.json#/definitions/USBControllerCollection",
1063                    "description": "The link to a collection of USB controllers for this system.",
1064                    "longDescription": "This property shall contain a link to a resource collection of type `USBControllerCollection` that contains USB controllers for this system.",
1065                    "readonly": true,
1066                    "versionAdded": "v1_15_0"
1067                },
1068                "UUID": {
1069                    "anyOf": [
1070                        {
1071                            "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/UUID"
1072                        },
1073                        {
1074                            "type": "null"
1075                        }
1076                    ],
1077                    "description": "The UUID for this system.",
1078                    "longDescription": "This property shall contain the universally unique identifier number for this system.  RFC4122 describes methods to create this value.  The value should be considered to be opaque.  Client software should only treat the overall value as a UUID and should not interpret any subfields within the UUID.  If the system supports SMBIOS, the property value should follow the SMBIOS 2.6 and later recommendation for converting the SMBIOS 16-byte UUID structure into the Redfish canonical `xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx` string format, so that the property value matches the byte order presented by current OS APIs, such as WMI and dmidecode.",
1079                    "readonly": true
1080                },
1081                "VirtualMedia": {
1082                    "$ref": "http://redfish.dmtf.org/schemas/v1/VirtualMediaCollection.json#/definitions/VirtualMediaCollection",
1083                    "description": "The link to the virtual media services for this system.",
1084                    "longDescription": "This property shall contain a link to a resource collection of type `VirtualMediaCollection` that this system uses.",
1085                    "readonly": true,
1086                    "versionAdded": "v1_13_0"
1087                },
1088                "VirtualMediaConfig": {
1089                    "$ref": "#/definitions/VirtualMediaConfig",
1090                    "description": "The information about the virtual media service of this system.",
1091                    "longDescription": "This property shall contain the information about the virtual media service of this system.",
1092                    "versionAdded": "v1_13_0"
1093                }
1094            },
1095            "required": [
1096                "@odata.id",
1097                "@odata.type",
1098                "Id",
1099                "Name"
1100            ],
1101            "type": "object"
1102        },
1103        "Decommission": {
1104            "additionalProperties": false,
1105            "description": "This action decommissions a system.",
1106            "longDescription": "This action shall remove all specified data from a system in preparation to decommission the system.",
1107            "parameters": {
1108                "ComputerSystemETag": {
1109                    "description": "The current ETag of the system.",
1110                    "longDescription": "This parameter shall contain the current ETag of the system.  If the client-provided ETag does not match the current ETag of the system, the service shall return the HTTP `428 Precondition Required` status code to reject the request.",
1111                    "type": "string"
1112                },
1113                "DecommissionTypes": {
1114                    "description": "The types of data to remove from the system.",
1115                    "items": {
1116                        "$ref": "#/definitions/DecommissionType"
1117                    },
1118                    "longDescription": "This parameter shall contain a list of the types of data to remove from the system.",
1119                    "requiredParameter": true,
1120                    "type": "array"
1121                },
1122                "OEMDecommissionTypes": {
1123                    "description": "The OEM-specific types of data to remove from the system.",
1124                    "items": {
1125                        "type": "string"
1126                    },
1127                    "longDescription": "This parameter shall contain any OEM-specific types of data to remove from the system.",
1128                    "type": "array"
1129                },
1130                "RequireSecureErase": {
1131                    "description": "Ensure secure erasure of all devices and fail the request if not possible.",
1132                    "longDescription": "This parameter shall indicate if a secure erase is required.  If the parameter contains `true` and a secure erase to the level of NIST 800-88 Clear or Purge for all specified components cannot be performed the service shall return the HTTP `501 Not Implemented` status code.  This failure may occur after the process has already started.  If not provided by the client, the value shall be assumed to be `false`.",
1133                    "type": "boolean"
1134                }
1135            },
1136            "patternProperties": {
1137                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
1138                    "description": "This property shall specify a valid odata or Redfish property.",
1139                    "type": [
1140                        "array",
1141                        "boolean",
1142                        "integer",
1143                        "number",
1144                        "null",
1145                        "object",
1146                        "string"
1147                    ]
1148                }
1149            },
1150            "properties": {
1151                "target": {
1152                    "description": "Link to invoke action",
1153                    "format": "uri-reference",
1154                    "type": "string"
1155                },
1156                "title": {
1157                    "description": "Friendly action name",
1158                    "type": "string"
1159                }
1160            },
1161            "type": "object",
1162            "versionAdded": "v1_21_0"
1163        },
1164        "DecommissionType": {
1165            "enum": [
1166                "All",
1167                "UserData",
1168                "ManagerConfig",
1169                "BIOSConfig",
1170                "NetworkConfig",
1171                "StorageConfig",
1172                "Logs"
1173            ],
1174            "enumDescriptions": {
1175                "All": "Remove all possible data from the server.",
1176                "BIOSConfig": "Reset all BIOS settings to factory defaults.",
1177                "Logs": "Clear all logs.",
1178                "ManagerConfig": "Reset all manager settings to factory defaults.",
1179                "NetworkConfig": "Reset all network settings to factory defaults.",
1180                "StorageConfig": "Reset all storage controller settings to factory defaults.  This will leave the user data intact unless that is also specified.",
1181                "UserData": "Remove all possible data from block devices and other user or operating system accessible storage attached to the system."
1182            },
1183            "enumLongDescriptions": {
1184                "All": "This value shall indicate the service removes all the data that it can from the system.  This shall include all possible OEM data as well.",
1185                "BIOSConfig": "This value shall indicate the service resets all BIOS settings to factory defaults.  This shall be equivalent to performing the `ResetBios` action on each `Bios` resource.",
1186                "Logs": "This value shall indicate the service clears all logs.  This shall be equivalent to performing the `ClearLog` action on each `LogService` resource.",
1187                "ManagerConfig": "This value shall indicate the service resets all associated managers to factory defaults.  This shall be equivalent to performing the `ResetToDefaults` action on each `Manager` resource with the `ResetType` parameter of `ResetAll`.",
1188                "NetworkConfig": "This value shall indicate the service resets all network settings on all network devices to factory defaults.",
1189                "StorageConfig": "This value shall indicate the service resets all storage controller settings to factory defaults.  This shall be equivalent to performing the `ResetToDefaults` action on each `Storage` resource with the `ResetType` parameter of `PreserveVolumes`.",
1190                "UserData": "This value shall indicate the service removes all the data from block devices or other operating system accessible storage.  If the `RequireSecureErase` parameter contains `true`, this shall be equivalent to performing the SecureErase action on each drive."
1191            },
1192            "type": "string"
1193        },
1194        "GraphicalConnectTypesSupported": {
1195            "enum": [
1196                "KVMIP",
1197                "OEM"
1198            ],
1199            "enumDescriptions": {
1200                "KVMIP": "The controller supports a graphical console connection through a KVM-IP (redirection of Keyboard, Video, Mouse over IP) protocol.",
1201                "OEM": "The controller supports a graphical console connection through an OEM-specific protocol."
1202            },
1203            "type": "string"
1204        },
1205        "HostGraphicalConsole": {
1206            "additionalProperties": false,
1207            "description": "The information about a graphical console service for this system.",
1208            "longDescription": "This type shall describe a graphical console service for a computer system.",
1209            "patternProperties": {
1210                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
1211                    "description": "This property shall specify a valid odata or Redfish property.",
1212                    "type": [
1213                        "array",
1214                        "boolean",
1215                        "integer",
1216                        "number",
1217                        "null",
1218                        "object",
1219                        "string"
1220                    ]
1221                }
1222            },
1223            "properties": {
1224                "ConnectTypesSupported": {
1225                    "description": "This property enumerates the graphical console connection types that the implementation allows.",
1226                    "items": {
1227                        "$ref": "#/definitions/GraphicalConnectTypesSupported"
1228                    },
1229                    "longDescription": "This property shall contain an array of the enumerations.  `KVMIP` shall be included if a vendor-defined KVM-IP protocol is supported.",
1230                    "readonly": true,
1231                    "type": "array",
1232                    "versionAdded": "v1_13_0"
1233                },
1234                "MaxConcurrentSessions": {
1235                    "description": "The maximum number of service sessions, regardless of protocol, that this system can support.",
1236                    "longDescription": "This property shall contain the maximum number of concurrent service sessions that this implementation supports.",
1237                    "minimum": 0,
1238                    "readonly": true,
1239                    "type": "integer",
1240                    "versionAdded": "v1_13_0"
1241                },
1242                "Port": {
1243                    "description": "The protocol port.",
1244                    "longDescription": "This property shall contain the port assigned to the service.",
1245                    "minimum": 0,
1246                    "readonly": false,
1247                    "type": [
1248                        "integer",
1249                        "null"
1250                    ],
1251                    "versionAdded": "v1_13_0"
1252                },
1253                "ServiceEnabled": {
1254                    "description": "An indication of whether the service is enabled for this system.",
1255                    "longDescription": "This property shall indicate whether the protocol for the service is enabled.",
1256                    "readonly": false,
1257                    "type": "boolean",
1258                    "versionAdded": "v1_13_0"
1259                }
1260            },
1261            "type": "object"
1262        },
1263        "HostSerialConsole": {
1264            "additionalProperties": false,
1265            "description": "The information about the serial console services that this system provides.",
1266            "longDescription": "This type shall describe the serial console services for a computer system.",
1267            "patternProperties": {
1268                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
1269                    "description": "This property shall specify a valid odata or Redfish property.",
1270                    "type": [
1271                        "array",
1272                        "boolean",
1273                        "integer",
1274                        "number",
1275                        "null",
1276                        "object",
1277                        "string"
1278                    ]
1279                }
1280            },
1281            "properties": {
1282                "IPMI": {
1283                    "$ref": "#/definitions/SerialConsoleProtocol",
1284                    "description": "The connection details for an IPMI Serial-over-LAN service.",
1285                    "longDescription": "This property shall contain connection details for a serial console service that uses the IPMI Serial-over-LAN (SOL) protocol.",
1286                    "versionAdded": "v1_13_0"
1287                },
1288                "MaxConcurrentSessions": {
1289                    "description": "The maximum number of service sessions, regardless of protocol, that this system can support.",
1290                    "longDescription": "This property shall contain the maximum number of concurrent service sessions that this implementation supports.",
1291                    "minimum": 0,
1292                    "readonly": true,
1293                    "type": "integer",
1294                    "versionAdded": "v1_13_0"
1295                },
1296                "SSH": {
1297                    "$ref": "#/definitions/SerialConsoleProtocol",
1298                    "description": "The connection details for an SSH serial console service.",
1299                    "longDescription": "This property shall contain connection details for a serial console service that uses the Secure Shell (SSH) protocol.",
1300                    "versionAdded": "v1_13_0"
1301                },
1302                "Telnet": {
1303                    "$ref": "#/definitions/SerialConsoleProtocol",
1304                    "description": "The connection details for a Telnet serial console service.",
1305                    "longDescription": "This property shall contain connection details for a serial console service that uses the Telnet protocol.",
1306                    "versionAdded": "v1_13_0"
1307                }
1308            },
1309            "type": "object"
1310        },
1311        "HostedServices": {
1312            "additionalProperties": false,
1313            "description": "The services that might be running or installed on the system.",
1314            "longDescription": "This type shall describe services that a computer system supports.",
1315            "patternProperties": {
1316                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
1317                    "description": "This property shall specify a valid odata or Redfish property.",
1318                    "type": [
1319                        "array",
1320                        "boolean",
1321                        "integer",
1322                        "number",
1323                        "null",
1324                        "object",
1325                        "string"
1326                    ]
1327                }
1328            },
1329            "properties": {
1330                "Oem": {
1331                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
1332                    "description": "The OEM extension property.",
1333                    "longDescription": "This property shall contain the OEM extensions.  All values for properties contained in this object shall conform to the Redfish Specification-described requirements.",
1334                    "versionAdded": "v1_2_0"
1335                },
1336                "StorageServices": {
1337                    "$ref": "http://redfish.dmtf.org/schemas/swordfish/v1/HostedStorageServices.json#/definitions/HostedStorageServices",
1338                    "description": "The link to a collection of storage services that this computer system supports.",
1339                    "longDescription": "This property shall contain a link to a resource collection of type `HostedStorageServices`.",
1340                    "readonly": true,
1341                    "versionAdded": "v1_2_0"
1342                }
1343            },
1344            "type": "object"
1345        },
1346        "HostingRole": {
1347            "description": "The enumerations of `HostingRole` specify different features that the hosting computer system supports.",
1348            "enum": [
1349                "ApplicationServer",
1350                "StorageServer",
1351                "Switch",
1352                "Appliance",
1353                "BareMetalServer",
1354                "VirtualMachineServer",
1355                "ContainerServer"
1356            ],
1357            "enumDescriptions": {
1358                "Appliance": "The system hosts functionality that supports the system acting as an appliance.",
1359                "ApplicationServer": "The system hosts functionality that supports general purpose applications.",
1360                "BareMetalServer": "The system hosts functionality that supports the system acting as a bare-metal server.",
1361                "ContainerServer": "The system hosts functionality that supports the system acting as a container server.",
1362                "StorageServer": "The system hosts functionality that supports the system acting as a storage server.",
1363                "Switch": "The system hosts functionality that supports the system acting as a switch.",
1364                "VirtualMachineServer": "The system hosts functionality that supports the system acting as a virtual machine server."
1365            },
1366            "enumVersionAdded": {
1367                "Appliance": "v1_10_0",
1368                "BareMetalServer": "v1_10_0",
1369                "ContainerServer": "v1_10_0",
1370                "VirtualMachineServer": "v1_10_0"
1371            },
1372            "type": "string"
1373        },
1374        "IdlePowerSaver": {
1375            "additionalProperties": false,
1376            "description": "The idle power saver settings of a computer system.",
1377            "longDescription": "This object shall contain the idle power saver settings of a computer system.",
1378            "patternProperties": {
1379                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
1380                    "description": "This property shall specify a valid odata or Redfish property.",
1381                    "type": [
1382                        "array",
1383                        "boolean",
1384                        "integer",
1385                        "number",
1386                        "null",
1387                        "object",
1388                        "string"
1389                    ]
1390                }
1391            },
1392            "properties": {
1393                "Enabled": {
1394                    "description": "An indication of whether idle power saver is enabled.",
1395                    "longDescription": "The value of this property shall indicate if idle power saver is enabled.",
1396                    "readonly": false,
1397                    "type": "boolean",
1398                    "versionAdded": "v1_16_0"
1399                },
1400                "EnterDwellTimeSeconds": {
1401                    "description": "The duration in seconds the computer system is below the `EnterUtilizationPercent` value before the idle power save is activated.",
1402                    "longDescription": "This property shall contain the duration in seconds the computer system is below the `EnterUtilizationPercent` value before the idle power save is activated.",
1403                    "minimum": 0,
1404                    "readonly": false,
1405                    "type": [
1406                        "integer",
1407                        "null"
1408                    ],
1409                    "units": "s",
1410                    "versionAdded": "v1_16_0"
1411                },
1412                "EnterUtilizationPercent": {
1413                    "description": "The percentage of utilization when the computer system enters idle power save.  If the computer system's utilization goes below this value, it enters idle power save.",
1414                    "longDescription": "This property shall contain the percentage of utilization, typically `0` to `100`, when the computer system enters idle power save.  If the computer system's utilization goes below this value for the duration specified by `EnterDwellTimeSeconds`, it shall enter idle power save.",
1415                    "minimum": 0,
1416                    "readonly": false,
1417                    "type": [
1418                        "number",
1419                        "null"
1420                    ],
1421                    "units": "%",
1422                    "versionAdded": "v1_16_0"
1423                },
1424                "ExitDwellTimeSeconds": {
1425                    "description": "The duration in seconds the computer system is above the `ExitUtilizationPercent` value before the idle power save is stopped.",
1426                    "longDescription": "This property shall contain the duration in seconds the computer system is above the `ExitUtilizationPercent` value before the idle power save is stopped.",
1427                    "minimum": 0,
1428                    "readonly": false,
1429                    "type": [
1430                        "integer",
1431                        "null"
1432                    ],
1433                    "units": "s",
1434                    "versionAdded": "v1_16_0"
1435                },
1436                "ExitUtilizationPercent": {
1437                    "description": "The percentage of utilization when the computer system exits idle power save.  If the computer system's utilization goes above this value, it exits idle power save.",
1438                    "longDescription": "This property shall contain the percentage of utilization, typically `0` to `100`, when the computer system exits idle power save.  If the computer system's utilization goes above this value for the duration specified by `ExitDwellTimeSeconds`, it shall exit idle power save.",
1439                    "minimum": 0,
1440                    "readonly": false,
1441                    "type": [
1442                        "number",
1443                        "null"
1444                    ],
1445                    "units": "%",
1446                    "versionAdded": "v1_16_0"
1447                }
1448            },
1449            "type": "object"
1450        },
1451        "IndicatorLED": {
1452            "enum": [
1453                "Unknown",
1454                "Lit",
1455                "Blinking",
1456                "Off"
1457            ],
1458            "enumDeprecated": {
1459                "Unknown": "This value has been deprecated in favor of returning `null` if the state is unknown."
1460            },
1461            "enumDescriptions": {
1462                "Blinking": "The indicator LED is blinking.",
1463                "Lit": "The indicator LED is lit.",
1464                "Off": "The indicator LED is off.",
1465                "Unknown": "The state of the indicator LED cannot be determined."
1466            },
1467            "enumLongDescriptions": {
1468                "Blinking": "This value shall represent that the indicator LED is in a blinking state where the LED is being turned on and off in repetition.  If the service does not support this value, it shall reject `PATCH` or `PUT` requests containing this value by returning the HTTP `400 Bad Request` status code.",
1469                "Lit": "This value shall represent that the indicator LED is in a solid on state.  If the service does not support this value, it shall reject `PATCH` or `PUT` requests containing this value by returning the HTTP `400 Bad Request` status code.",
1470                "Off": "This value shall represent that the indicator LED is in a solid off state.  If the service does not support this value, it shall reject `PATCH` or `PUT` requests containing this value by returning the HTTP `400 Bad Request` status code.",
1471                "Unknown": "This value shall represent that the indicator LED is in an unknown state.  The service shall reject `PATCH` or `PUT` requests containing this value by returning the HTTP `400 Bad Request` status code."
1472            },
1473            "enumVersionDeprecated": {
1474                "Unknown": "v1_1_0"
1475            },
1476            "type": "string"
1477        },
1478        "InterfaceType": {
1479            "enum": [
1480                "TPM1_2",
1481                "TPM2_0",
1482                "TCM1_0"
1483            ],
1484            "enumDescriptions": {
1485                "TCM1_0": "Trusted Cryptography Module (TCM) 1.0.",
1486                "TPM1_2": "Trusted Platform Module (TPM) 1.2.",
1487                "TPM2_0": "Trusted Platform Module (TPM) 2.0."
1488            },
1489            "type": "string"
1490        },
1491        "InterfaceTypeSelection": {
1492            "description": "The enumerations of `InterfaceTypeSelection` specify the method for switching the TrustedModule InterfaceType, for instance between TPM1_2 and TPM2_0, if supported.",
1493            "enum": [
1494                "None",
1495                "FirmwareUpdate",
1496                "BiosSetting",
1497                "OemMethod"
1498            ],
1499            "enumDescriptions": {
1500                "BiosSetting": "The TrustedModule supports switching InterfaceType through platform software, such as a BIOS configuration attribute.",
1501                "FirmwareUpdate": "The TrustedModule supports switching InterfaceType through a firmware update.",
1502                "None": "The TrustedModule does not support switching the InterfaceType.",
1503                "OemMethod": "The TrustedModule supports switching InterfaceType through an OEM proprietary mechanism."
1504            },
1505            "type": "string"
1506        },
1507        "KMIPCachePolicy": {
1508            "enum": [
1509                "None",
1510                "AfterFirstUse"
1511            ],
1512            "enumDescriptions": {
1513                "AfterFirstUse": "The system caches KMIP data after first use for the duration specified by the `CacheDuration` property.",
1514                "None": "The system does not cache KMIP data."
1515            },
1516            "type": "string"
1517        },
1518        "KMIPServer": {
1519            "additionalProperties": false,
1520            "description": "The KMIP server settings for a computer system.",
1521            "longDescription": "This object shall contain the KMIP server settings for a computer system.",
1522            "patternProperties": {
1523                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
1524                    "description": "This property shall specify a valid odata or Redfish property.",
1525                    "type": [
1526                        "array",
1527                        "boolean",
1528                        "integer",
1529                        "number",
1530                        "null",
1531                        "object",
1532                        "string"
1533                    ]
1534                }
1535            },
1536            "properties": {
1537                "Address": {
1538                    "description": "The KMIP server address.",
1539                    "longDescription": "This property shall contain the KMIP server address.",
1540                    "readonly": false,
1541                    "type": [
1542                        "string",
1543                        "null"
1544                    ],
1545                    "versionAdded": "v1_16_0"
1546                },
1547                "CacheDuration": {
1548                    "description": "The duration the system caches KMIP data.",
1549                    "longDescription": "This property shall contain the duration that the system caches KMIP data.",
1550                    "pattern": "^P(\\d+D)?(T(\\d+H)?(\\d+M)?(\\d+(.\\d+)?S)?)?$",
1551                    "readonly": false,
1552                    "type": [
1553                        "string",
1554                        "null"
1555                    ],
1556                    "versionAdded": "v1_20_0"
1557                },
1558                "CachePolicy": {
1559                    "anyOf": [
1560                        {
1561                            "$ref": "#/definitions/KMIPCachePolicy"
1562                        },
1563                        {
1564                            "type": "null"
1565                        }
1566                    ],
1567                    "description": "The cache policy to control how KMIP data is cached.",
1568                    "longDescription": "This property shall contain the cache policy to control how KMIP data is cached.",
1569                    "readonly": false,
1570                    "versionAdded": "v1_20_0"
1571                },
1572                "Password": {
1573                    "description": "The password to access the KMIP server.  The value is `null` in responses.",
1574                    "longDescription": "This property shall contain the password to access the KMIP server.  The value shall be `null` in responses.",
1575                    "readonly": false,
1576                    "type": [
1577                        "string",
1578                        "null"
1579                    ],
1580                    "versionAdded": "v1_16_0",
1581                    "writeOnly": true
1582                },
1583                "Port": {
1584                    "description": "The KMIP server port.",
1585                    "longDescription": "This property shall contain the KMIP server port.",
1586                    "readonly": false,
1587                    "type": [
1588                        "integer",
1589                        "null"
1590                    ],
1591                    "versionAdded": "v1_16_0"
1592                },
1593                "Username": {
1594                    "description": "The username to access the KMIP server.",
1595                    "longDescription": "This property shall contain the username to access the KMIP server.",
1596                    "readonly": false,
1597                    "type": [
1598                        "string",
1599                        "null"
1600                    ],
1601                    "versionAdded": "v1_16_0"
1602                }
1603            },
1604            "type": "object"
1605        },
1606        "KeyManagement": {
1607            "additionalProperties": false,
1608            "description": "The key management settings of a computer system.",
1609            "longDescription": "This object shall contain the key management settings of a computer system.",
1610            "patternProperties": {
1611                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
1612                    "description": "This property shall specify a valid odata or Redfish property.",
1613                    "type": [
1614                        "array",
1615                        "boolean",
1616                        "integer",
1617                        "number",
1618                        "null",
1619                        "object",
1620                        "string"
1621                    ]
1622                }
1623            },
1624            "properties": {
1625                "KMIPCertificates": {
1626                    "$ref": "http://redfish.dmtf.org/schemas/v1/CertificateCollection.json#/definitions/CertificateCollection",
1627                    "description": "The link to a collection of server certificates for the servers referenced by the `KMIPServers` property.",
1628                    "longDescription": "This property shall contain a link to a resource collection of type `CertificateCollection` that represents the server certificates for the servers referenced by the `KMIPServers` property.",
1629                    "readonly": true,
1630                    "versionAdded": "v1_16_0"
1631                },
1632                "KMIPServers": {
1633                    "description": "The KMIP servers to which this computer system is subscribed.",
1634                    "items": {
1635                        "anyOf": [
1636                            {
1637                                "$ref": "#/definitions/KMIPServer"
1638                            },
1639                            {
1640                                "type": "null"
1641                            }
1642                        ]
1643                    },
1644                    "longDescription": "This property shall contain the KMIP servers to which this computer system is subscribed for key management.",
1645                    "type": "array",
1646                    "versionAdded": "v1_16_0"
1647                }
1648            },
1649            "type": "object"
1650        },
1651        "Links": {
1652            "additionalProperties": false,
1653            "description": "The links to other resources that are related to this resource.",
1654            "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.",
1655            "patternProperties": {
1656                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
1657                    "description": "This property shall specify a valid odata or Redfish property.",
1658                    "type": [
1659                        "array",
1660                        "boolean",
1661                        "integer",
1662                        "number",
1663                        "null",
1664                        "object",
1665                        "string"
1666                    ]
1667                }
1668            },
1669            "properties": {
1670                "Chassis": {
1671                    "description": "An array of links to the chassis that contains this system.",
1672                    "items": {
1673                        "$ref": "http://redfish.dmtf.org/schemas/v1/Chassis.json#/definitions/Chassis"
1674                    },
1675                    "longDescription": "This property shall contain an array of links to resources of type `Chassis` that represent the physical containers associated with this resource.",
1676                    "readonly": true,
1677                    "type": "array"
1678                },
1679                "Chassis@odata.count": {
1680                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
1681                },
1682                "ConsumingComputerSystems": {
1683                    "description": "An array of links to computer systems that are realized, in whole or in part, from this computer system.",
1684                    "items": {
1685                        "$ref": "http://redfish.dmtf.org/schemas/v1/ComputerSystem.json#/definitions/ComputerSystem"
1686                    },
1687                    "longDescription": "The value shall be an array of links to computer systems that are realized, in whole or in part, from this computer system.",
1688                    "readonly": true,
1689                    "type": "array",
1690                    "versionAdded": "v1_5_0"
1691                },
1692                "ConsumingComputerSystems@odata.count": {
1693                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
1694                },
1695                "CooledBy": {
1696                    "description": "An array of links to resources or objects that cool this computer system.  Normally, the link is for either a chassis or a specific set of fans.",
1697                    "items": {
1698                        "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/idRef"
1699                    },
1700                    "longDescription": "This property shall contain an array of links to resources or objects that cool this computer system.",
1701                    "readonly": true,
1702                    "type": "array"
1703                },
1704                "CooledBy@odata.count": {
1705                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
1706                },
1707                "Endpoints": {
1708                    "description": "An array of links to the endpoints that connect to this system.",
1709                    "items": {
1710                        "$ref": "http://redfish.dmtf.org/schemas/v1/Endpoint.json#/definitions/Endpoint"
1711                    },
1712                    "longDescription": "This property shall contain an array of links to resources of type `Endpoint` with which this system is associated.",
1713                    "readonly": true,
1714                    "type": "array",
1715                    "versionAdded": "v1_2_0"
1716                },
1717                "Endpoints@odata.count": {
1718                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
1719                },
1720                "HostingComputerSystem": {
1721                    "anyOf": [
1722                        {
1723                            "$ref": "http://redfish.dmtf.org/schemas/v1/ComputerSystem.json#/definitions/ComputerSystem"
1724                        },
1725                        {
1726                            "type": "null"
1727                        }
1728                    ],
1729                    "description": "The link to the system that is hosting this virtual machine.",
1730                    "longDescription": "This property shall contain a link to a resource of type `ComputerSystem` that represents the system that is hosting this virtual machine.  This property shall only be present if `SystemType` contains `Virtual`.",
1731                    "readonly": true,
1732                    "versionAdded": "v1_21_0"
1733                },
1734                "ManagedBy": {
1735                    "description": "An array of links to the managers responsible for this system.",
1736                    "items": {
1737                        "$ref": "http://redfish.dmtf.org/schemas/v1/Manager.json#/definitions/Manager"
1738                    },
1739                    "longDescription": "This property shall contain an array of links to resources of type `Manager` that represent the resources with management responsibility for this resource.",
1740                    "readonly": true,
1741                    "type": "array"
1742                },
1743                "ManagedBy@odata.count": {
1744                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
1745                },
1746                "Oem": {
1747                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
1748                    "description": "The OEM extension property.",
1749                    "longDescription": "This property shall contain the OEM extensions.  All values for properties contained in this object shall conform to the Redfish Specification-described requirements."
1750                },
1751                "OffloadedNetworkDeviceFunctions": {
1752                    "description": "The network device functions to which this system performs offload computation, such as with a SmartNIC.",
1753                    "items": {
1754                        "$ref": "http://redfish.dmtf.org/schemas/v1/NetworkDeviceFunction.json#/definitions/NetworkDeviceFunction"
1755                    },
1756                    "longDescription": "This property shall contain an array of links to resources of type `NetworkDeviceFunction` that represent the network device functions to which this system performs offload computation, such as with a SmartNIC.  This property shall not be present if the `SystemType` property does not contain `DPU`.",
1757                    "readonly": true,
1758                    "type": "array",
1759                    "versionAdded": "v1_17_0"
1760                },
1761                "OffloadedNetworkDeviceFunctions@odata.count": {
1762                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
1763                },
1764                "PoweredBy": {
1765                    "description": "An array of links to resources or objects that power this computer system.  Normally, the link is for either a chassis or a specific set of power supplies.",
1766                    "items": {
1767                        "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/idRef"
1768                    },
1769                    "longDescription": "This property shall contain an array of links to resources or objects that power this computer system.",
1770                    "readonly": true,
1771                    "type": "array"
1772                },
1773                "PoweredBy@odata.count": {
1774                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
1775                },
1776                "ResourceBlocks": {
1777                    "description": "An array of links to the resource blocks that are used in this computer system.",
1778                    "items": {
1779                        "$ref": "http://redfish.dmtf.org/schemas/v1/ResourceBlock.json#/definitions/ResourceBlock"
1780                    },
1781                    "longDescription": "This property shall contain an array of links to resources of type `ResourceBlock` that show the resource blocks that are used in this computer system.",
1782                    "readonly": false,
1783                    "type": "array",
1784                    "versionAdded": "v1_4_0"
1785                },
1786                "ResourceBlocks@odata.count": {
1787                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
1788                },
1789                "SupplyingComputerSystems": {
1790                    "description": "An array of links to computer systems that contribute, in whole or in part, to the implementation of this computer system.",
1791                    "items": {
1792                        "$ref": "http://redfish.dmtf.org/schemas/v1/ComputerSystem.json#/definitions/ComputerSystem"
1793                    },
1794                    "longDescription": "The value shall be an array of links to computer systems that contribute, in whole or in part, to the implementation of this computer system.",
1795                    "readonly": true,
1796                    "type": "array",
1797                    "versionAdded": "v1_5_0"
1798                },
1799                "SupplyingComputerSystems@odata.count": {
1800                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
1801                },
1802                "TrustedComponents": {
1803                    "description": "An array of links to the trusted components for this system.",
1804                    "items": {
1805                        "$ref": "http://redfish.dmtf.org/schemas/v1/TrustedComponent.json#/definitions/TrustedComponent"
1806                    },
1807                    "longDescription": "This property shall contain an array of links to resources of type `TrustedComponent`.",
1808                    "readonly": true,
1809                    "type": "array",
1810                    "versionAdded": "v1_19_0"
1811                },
1812                "TrustedComponents@odata.count": {
1813                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
1814                },
1815                "VirtualMachines": {
1816                    "description": "An array of links to the virtual machines this system is hosting.",
1817                    "items": {
1818                        "$ref": "http://redfish.dmtf.org/schemas/v1/ComputerSystem.json#/definitions/ComputerSystem"
1819                    },
1820                    "longDescription": "This property shall contain an array of links to resources of type `ComputerSystem` that represent the virtual machines this system is hosting.",
1821                    "readonly": true,
1822                    "type": "array",
1823                    "versionAdded": "v1_21_0"
1824                },
1825                "VirtualMachines@odata.count": {
1826                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
1827                }
1828            },
1829            "type": "object"
1830        },
1831        "MemoryMirroring": {
1832            "enum": [
1833                "System",
1834                "DIMM",
1835                "Hybrid",
1836                "None"
1837            ],
1838            "enumDescriptions": {
1839                "DIMM": "The system supports DIMM mirroring at the DIMM level.  Individual DIMMs can be mirrored.",
1840                "Hybrid": "The system supports a hybrid mirroring at the system and DIMM levels.  Individual DIMMs can be mirrored.",
1841                "None": "The system does not support DIMM mirroring.",
1842                "System": "The system supports DIMM mirroring at the system level.  Individual DIMMs are not paired for mirroring in this mode."
1843            },
1844            "type": "string"
1845        },
1846        "MemorySummary": {
1847            "additionalProperties": false,
1848            "description": "The memory of the system in general detail.",
1849            "longDescription": "This type shall contain properties that describe the central memory for a system.",
1850            "patternProperties": {
1851                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
1852                    "description": "This property shall specify a valid odata or Redfish property.",
1853                    "type": [
1854                        "array",
1855                        "boolean",
1856                        "integer",
1857                        "number",
1858                        "null",
1859                        "object",
1860                        "string"
1861                    ]
1862                }
1863            },
1864            "properties": {
1865                "MemoryMirroring": {
1866                    "anyOf": [
1867                        {
1868                            "$ref": "#/definitions/MemoryMirroring"
1869                        },
1870                        {
1871                            "type": "null"
1872                        }
1873                    ],
1874                    "description": "The ability and type of memory mirroring that this computer system supports.",
1875                    "longDescription": "This property shall contain the ability and type of memory mirroring that this computer system supports.",
1876                    "readonly": true,
1877                    "versionAdded": "v1_1_0"
1878                },
1879                "Metrics": {
1880                    "$ref": "http://redfish.dmtf.org/schemas/v1/MemoryMetrics.json#/definitions/MemoryMetrics",
1881                    "description": "The link to the metrics associated with all memory in this system.",
1882                    "longDescription": "This property shall contain a link to the metrics associated with all memory in this system.",
1883                    "readonly": true,
1884                    "versionAdded": "v1_8_0"
1885                },
1886                "Status": {
1887                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Status",
1888                    "deprecated": "This property has been deprecated in favor of the `Conditions` property within `Status` in the root of this resource.",
1889                    "description": "The status and health of the resource and its subordinate or dependent resources.",
1890                    "longDescription": "This property shall contain any status or health properties of the resource.",
1891                    "versionDeprecated": "v1_16_0"
1892                },
1893                "TotalSystemMemoryGiB": {
1894                    "description": "The total configured operating system-accessible memory (RAM), measured in GiB.",
1895                    "longDescription": "This property shall contain the amount of configured system general purpose volatile (RAM) memory as measured in gibibytes.",
1896                    "minimum": 0,
1897                    "readonly": true,
1898                    "type": [
1899                        "number",
1900                        "null"
1901                    ],
1902                    "units": "GiBy"
1903                },
1904                "TotalSystemPersistentMemoryGiB": {
1905                    "description": "The total configured, system-accessible persistent memory, measured in GiB.",
1906                    "longDescription": "This property shall contain the total amount of configured persistent memory available to the system as measured in gibibytes.",
1907                    "minimum": 0,
1908                    "readonly": true,
1909                    "type": [
1910                        "number",
1911                        "null"
1912                    ],
1913                    "units": "GiBy",
1914                    "versionAdded": "v1_4_0"
1915                }
1916            },
1917            "type": "object"
1918        },
1919        "OemActions": {
1920            "additionalProperties": true,
1921            "description": "The available OEM-specific actions for this resource.",
1922            "longDescription": "This type shall contain the available OEM-specific actions for this resource.",
1923            "patternProperties": {
1924                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
1925                    "description": "This property shall specify a valid odata or Redfish property.",
1926                    "type": [
1927                        "array",
1928                        "boolean",
1929                        "integer",
1930                        "number",
1931                        "null",
1932                        "object",
1933                        "string"
1934                    ]
1935                }
1936            },
1937            "properties": {},
1938            "type": "object"
1939        },
1940        "PowerMode": {
1941            "enum": [
1942                "MaximumPerformance",
1943                "BalancedPerformance",
1944                "PowerSaving",
1945                "Static",
1946                "OSControlled",
1947                "OEM",
1948                "EfficiencyFavorPower",
1949                "EfficiencyFavorPerformance"
1950            ],
1951            "enumDescriptions": {
1952                "BalancedPerformance": "The system performs at the highest speeds while utilization is high and performs at reduced speeds when the utilization is low.",
1953                "EfficiencyFavorPerformance": "The system performs at reduced speeds at all utilizations to save power while attempting to maintain performance.  This mode differs from `EfficiencyFavorPower` in that more performance is retained but less power is saved.",
1954                "EfficiencyFavorPower": "The system performs at reduced speeds at all utilizations to save power at the cost of performance.  This mode differs from `PowerSaving` in that more performance is retained and less power is saved.  This mode differs from `EfficiencyFavorPerformance` in that less performance is retained but more power is saved.",
1955                "MaximumPerformance": "The system performs at the highest speeds possible.",
1956                "OEM": "The system power mode is OEM-defined.",
1957                "OSControlled": "The system power mode is controlled by the operating system.",
1958                "PowerSaving": "The system performs at reduced speeds to save power.",
1959                "Static": "The system power mode is static."
1960            },
1961            "enumLongDescriptions": {
1962                "BalancedPerformance": "This value shall indicate the system performs at the highest speeds possible when the utilization is high and performs at reduced speeds when the utilization is low to save power.  This mode is a compromise between `MaximumPerformance` and `PowerSaving`.",
1963                "EfficiencyFavorPerformance": "This value shall indicate the system performs at reduced speeds at all utilizations to save power while attempting to maintain performance.  This mode differs from `EfficiencyFavorPower` in that more performance is retained but less power is saved. This mode differs from 'MaximumPerformance' in that power is saved at the cost of some performance.  This mode differs from 'BalancedPerformance' in that power saving occurs at all utilizations.",
1964                "EfficiencyFavorPower": "This value shall indicate the system performs at reduced speeds at all utilizations to save power at the cost of performance.  This mode differs from `PowerSaving` in that more performance is retained and less power is saved.  This mode differs from `EfficiencyFavorPerformance` in that less performance is retained but more power is saved. This mode differs from 'BalancedPerformance' in that power saving occurs at all utilizations.",
1965                "MaximumPerformance": "This value shall indicate the system performs at the highest speeds possible.  This mode should be used when performance is the top priority.",
1966                "OEM": "This value shall indicate the system performs at an OEM-defined power mode.",
1967                "OSControlled": "This value shall indicate the system performs at an operating system-controlled power mode.",
1968                "PowerSaving": "This value shall indicate the system performs at reduced speeds to save power.  This mode should be used when power saving is the top priority.",
1969                "Static": "This value shall indicate the system performs at a static base speed."
1970            },
1971            "enumVersionAdded": {
1972                "EfficiencyFavorPerformance": "v1_22_0",
1973                "EfficiencyFavorPower": "v1_22_0"
1974            },
1975            "type": "string"
1976        },
1977        "PowerRestorePolicyTypes": {
1978            "description": "The enumerations of `PowerRestorePolicyTypes` specify the choice of power state for the system when power is applied.",
1979            "enum": [
1980                "AlwaysOn",
1981                "AlwaysOff",
1982                "LastState"
1983            ],
1984            "enumDescriptions": {
1985                "AlwaysOff": "The system always remains powered off when power is applied.",
1986                "AlwaysOn": "The system always powers on when power is applied.",
1987                "LastState": "The system returns to its last on or off power state when power is applied."
1988            },
1989            "type": "string"
1990        },
1991        "ProcessorSummary": {
1992            "additionalProperties": false,
1993            "description": "The central processors of the system in general detail.",
1994            "longDescription": "This type shall contain properties that describe the central processors for a system.  Processors described by this type shall be limited to the processors that execute system code, and shall not include processors used for offload functionality.",
1995            "patternProperties": {
1996                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
1997                    "description": "This property shall specify a valid odata or Redfish property.",
1998                    "type": [
1999                        "array",
2000                        "boolean",
2001                        "integer",
2002                        "number",
2003                        "null",
2004                        "object",
2005                        "string"
2006                    ]
2007                }
2008            },
2009            "properties": {
2010                "CoreCount": {
2011                    "description": "The number of processor cores in the system.",
2012                    "longDescription": "This property shall contain the total number of central processor cores in the system.",
2013                    "minimum": 0,
2014                    "readonly": true,
2015                    "type": [
2016                        "integer",
2017                        "null"
2018                    ],
2019                    "versionAdded": "v1_14_0"
2020                },
2021                "Count": {
2022                    "description": "The number of physical processors in the system.",
2023                    "longDescription": "This property shall contain the total number of physical central processors in the system.",
2024                    "minimum": 0,
2025                    "readonly": true,
2026                    "type": [
2027                        "integer",
2028                        "null"
2029                    ]
2030                },
2031                "LogicalProcessorCount": {
2032                    "description": "The number of logical processors in the system.",
2033                    "longDescription": "This property shall contain the total number of logical central processors in the system.",
2034                    "minimum": 0,
2035                    "readonly": true,
2036                    "type": [
2037                        "integer",
2038                        "null"
2039                    ],
2040                    "versionAdded": "v1_5_0"
2041                },
2042                "Metrics": {
2043                    "$ref": "http://redfish.dmtf.org/schemas/v1/ProcessorMetrics.json#/definitions/ProcessorMetrics",
2044                    "description": "The link to the metrics associated with all processors in this system.",
2045                    "longDescription": "This property shall contain a link to the metrics associated with all processors in this system.",
2046                    "readonly": true,
2047                    "versionAdded": "v1_7_0"
2048                },
2049                "Model": {
2050                    "description": "The processor model for the primary or majority of processors in this system.",
2051                    "longDescription": "This property shall contain the processor model for the central processors in the system, per the description in the Processor Information - Processor Family section of the SMBIOS Specification DSP0134 2.8 or later.",
2052                    "readonly": true,
2053                    "type": [
2054                        "string",
2055                        "null"
2056                    ]
2057                },
2058                "Status": {
2059                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Status",
2060                    "deprecated": "This property has been deprecated in favor of the `Conditions` property within `Status` in the root of this resource.",
2061                    "description": "The status and health of the resource and its subordinate or dependent resources.",
2062                    "longDescription": "This property shall contain any status or health properties of the resource.",
2063                    "versionDeprecated": "v1_16_0"
2064                },
2065                "ThreadingEnabled": {
2066                    "description": "An indication of whether threading is enabled on all processors in this system.",
2067                    "longDescription": "The value of this property shall indicate that all `Processor` resources in this system where the `ProcessorType` property contains `CPU` have multiple threading support enabled.",
2068                    "readonly": false,
2069                    "type": "boolean",
2070                    "versionAdded": "v1_15_0"
2071                }
2072            },
2073            "type": "object"
2074        },
2075        "RemoveResourceBlock": {
2076            "additionalProperties": false,
2077            "description": "This action removes a resource block from a system.",
2078            "longDescription": "This action shall remove a resource block from a system.",
2079            "parameters": {
2080                "ComputerSystemETag": {
2081                    "description": "The current ETag of the system.",
2082                    "longDescription": "This parameter shall contain the current ETag of the system.  If the client-provided ETag does not match the current ETag of the system, the service shall return the HTTP `428 Precondition Required` status code to reject the request.",
2083                    "type": "string"
2084                },
2085                "ResourceBlock": {
2086                    "$ref": "http://redfish.dmtf.org/schemas/v1/ResourceBlock.json#/definitions/ResourceBlock",
2087                    "description": "The resource block to remove from the system.",
2088                    "longDescription": "This parameter shall contain a link to the specified resource block to remove from the system.",
2089                    "requiredParameter": true
2090                },
2091                "ResourceBlockETag": {
2092                    "description": "The current ETag of the resource block to remove from the system.",
2093                    "longDescription": "This parameter shall contain the current ETag of the resource block to remove from the system.  If the client-provided ETag does not match the current ETag of the resource block that the `ResourceBlock` parameter specifies, the service shall return the HTTP `428 Precondition Required` status code to reject the request.",
2094                    "type": "string"
2095                }
2096            },
2097            "patternProperties": {
2098                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
2099                    "description": "This property shall specify a valid odata or Redfish property.",
2100                    "type": [
2101                        "array",
2102                        "boolean",
2103                        "integer",
2104                        "number",
2105                        "null",
2106                        "object",
2107                        "string"
2108                    ]
2109                }
2110            },
2111            "properties": {
2112                "target": {
2113                    "description": "Link to invoke action",
2114                    "format": "uri-reference",
2115                    "type": "string"
2116                },
2117                "title": {
2118                    "description": "Friendly action name",
2119                    "type": "string"
2120                }
2121            },
2122            "type": "object",
2123            "versionAdded": "v1_6_0"
2124        },
2125        "Reset": {
2126            "additionalProperties": false,
2127            "description": "This action resets the system.",
2128            "longDescription": "This action shall reset the system represented by the resource.  For systems that implement ACPI Power Button functionality, the `PushPowerButton` value shall perform or emulate an ACPI Power Button Push, and the `ForceOff` value shall perform an ACPI Power Button Override, commonly known as a four-second hold of the power button.",
2129            "parameters": {
2130                "ResetType": {
2131                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/ResetType",
2132                    "description": "The type of reset.",
2133                    "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."
2134                }
2135            },
2136            "patternProperties": {
2137                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
2138                    "description": "This property shall specify a valid odata or Redfish property.",
2139                    "type": [
2140                        "array",
2141                        "boolean",
2142                        "integer",
2143                        "number",
2144                        "null",
2145                        "object",
2146                        "string"
2147                    ]
2148                }
2149            },
2150            "properties": {
2151                "target": {
2152                    "description": "Link to invoke action",
2153                    "format": "uri-reference",
2154                    "type": "string"
2155                },
2156                "title": {
2157                    "description": "Friendly action name",
2158                    "type": "string"
2159                }
2160            },
2161            "type": "object"
2162        },
2163        "SerialConsoleProtocol": {
2164            "additionalProperties": false,
2165            "description": "The information about a serial console service that this system provides.",
2166            "longDescription": "This type shall describe a serial console service for a computer system.",
2167            "patternProperties": {
2168                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
2169                    "description": "This property shall specify a valid odata or Redfish property.",
2170                    "type": [
2171                        "array",
2172                        "boolean",
2173                        "integer",
2174                        "number",
2175                        "null",
2176                        "object",
2177                        "string"
2178                    ]
2179                }
2180            },
2181            "properties": {
2182                "ConsoleEntryCommand": {
2183                    "description": "The command string passed to the service to select or enter the system's serial console.",
2184                    "longDescription": "This property shall contain a command string that can be provided by a client to select or enter the system's serial console, when the console is shared among several systems or a manager CLI.",
2185                    "readonly": true,
2186                    "type": [
2187                        "string",
2188                        "null"
2189                    ],
2190                    "versionAdded": "v1_13_0"
2191                },
2192                "HotKeySequenceDisplay": {
2193                    "description": "The hotkey sequence available for the user to exit the serial console session.",
2194                    "longDescription": "This property shall contain a string that can be provided to a user to describe the hotkey sequence used to exit the serial console session, or, if shared with a manager CLI, to return to the CLI.",
2195                    "readonly": true,
2196                    "type": [
2197                        "string",
2198                        "null"
2199                    ],
2200                    "versionAdded": "v1_13_0"
2201                },
2202                "Port": {
2203                    "description": "The protocol port.",
2204                    "longDescription": "This property shall contain the port assigned to the protocol.",
2205                    "minimum": 0,
2206                    "readonly": false,
2207                    "type": [
2208                        "integer",
2209                        "null"
2210                    ],
2211                    "versionAdded": "v1_13_0"
2212                },
2213                "ServiceEnabled": {
2214                    "description": "An indication of whether the service is enabled for this system.",
2215                    "longDescription": "This property shall indicate whether the protocol for the service is enabled.",
2216                    "readonly": false,
2217                    "type": "boolean",
2218                    "versionAdded": "v1_13_0"
2219                },
2220                "SharedWithManagerCLI": {
2221                    "description": "Indicates whether the serial console service is shared with access to the manager's command-line interface (CLI).",
2222                    "longDescription": "This property shall indicate whether the serial console service is shared with access to the manager's command-line interface (CLI).",
2223                    "readonly": true,
2224                    "type": "boolean",
2225                    "versionAdded": "v1_13_0"
2226                }
2227            },
2228            "type": "object"
2229        },
2230        "SetDefaultBootOrder": {
2231            "additionalProperties": false,
2232            "description": "This action sets the `BootOrder` property to the default settings.",
2233            "longDescription": "This action shall set the `BootOrder` array to the default settings.",
2234            "parameters": {},
2235            "patternProperties": {
2236                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
2237                    "description": "This property shall specify a valid odata or Redfish property.",
2238                    "type": [
2239                        "array",
2240                        "boolean",
2241                        "integer",
2242                        "number",
2243                        "null",
2244                        "object",
2245                        "string"
2246                    ]
2247                }
2248            },
2249            "properties": {
2250                "target": {
2251                    "description": "Link to invoke action",
2252                    "format": "uri-reference",
2253                    "type": "string"
2254                },
2255                "title": {
2256                    "description": "Friendly action name",
2257                    "type": "string"
2258                }
2259            },
2260            "type": "object",
2261            "versionAdded": "v1_5_0"
2262        },
2263        "StopBootOnFault": {
2264            "enum": [
2265                "Never",
2266                "AnyFault"
2267            ],
2268            "enumDescriptions": {
2269                "AnyFault": "The system should stop the boot on any fault.",
2270                "Never": "The system performs any normal recovery actions during boot if a fault occurs."
2271            },
2272            "enumLongDescriptions": {
2273                "AnyFault": "This value shall indicate the system will stop the boot if a fault occurs.  This includes, but is not limited to, faults that affect performance, fault tolerance, or capacity.",
2274                "Never": "This value shall indicate the system will continue to attempt to boot if a fault occurs."
2275            },
2276            "type": "string"
2277        },
2278        "SystemType": {
2279            "enum": [
2280                "Physical",
2281                "Virtual",
2282                "OS",
2283                "PhysicallyPartitioned",
2284                "VirtuallyPartitioned",
2285                "Composed",
2286                "DPU"
2287            ],
2288            "enumDeprecated": {
2289                "OS": "This value has been deprecated in favor of representing operating systems with the `OperatingSystem` resource."
2290            },
2291            "enumDescriptions": {
2292                "Composed": "A computer system constructed by binding resource blocks together.",
2293                "DPU": "A computer system that performs the functions of a data processing unit, such as a SmartNIC.",
2294                "OS": "An operating system instance.",
2295                "Physical": "A computer system.",
2296                "PhysicallyPartitioned": "A hardware-based partition of a computer system.",
2297                "Virtual": "A virtual machine instance running on this system.",
2298                "VirtuallyPartitioned": "A virtual or software-based partition of a computer system."
2299            },
2300            "enumLongDescriptions": {
2301                "Composed": "A `SystemType` of `Composed` typically represents a single system constructed from disaggregated resources through the Redfish composition service.",
2302                "DPU": "A `SystemType` of `DPU` typically represents a single system that performs offload computation as a data processing unit, such as a SmartNIC.",
2303                "OS": "A `SystemType` of `OS` typically represents an OS or hypervisor view of the system.",
2304                "Physical": "A `SystemType` of `Physical` typically represents the hardware aspects of a system, such as a management controller.",
2305                "PhysicallyPartitioned": "A `SystemType` of `PhysicallyPartitioned` typically represents a single system constructed from one or more physical systems through a firmware or hardware-based service.",
2306                "Virtual": "A `SystemType` of `Virtual` typically represents a system that is actually a virtual machine instance.  Responses should contain the `ProcessorSummary` and `MemorySummary` properties to show the processor and memory resources allocated to the virtual machine.",
2307                "VirtuallyPartitioned": "A `SystemType` of `VirtuallyPartitioned` typically represents a single system constructed from one or more virtual systems through a software-based service."
2308            },
2309            "enumVersionAdded": {
2310                "Composed": "v1_4_0",
2311                "DPU": "v1_16_0"
2312            },
2313            "enumVersionDeprecated": {
2314                "OS": "v1_21_0"
2315            },
2316            "type": "string"
2317        },
2318        "TrustedModuleRequiredToBoot": {
2319            "enum": [
2320                "Disabled",
2321                "Required"
2322            ],
2323            "enumDescriptions": {
2324                "Disabled": "No Trusted Module requirement to boot.",
2325                "Required": "A functional Trusted Module is required to boot."
2326            },
2327            "enumLongDescriptions": {
2328                "Disabled": "This value shall indicate a Trusted Module is not required to boot.",
2329                "Required": "This value shall indicate a functioning Trusted Module is required to boot."
2330            },
2331            "type": "string"
2332        },
2333        "TrustedModules": {
2334            "additionalProperties": false,
2335            "description": "The Trusted Module installed in the system.",
2336            "longDescription": "This type shall describe a Trusted Module for a system.",
2337            "patternProperties": {
2338                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
2339                    "description": "This property shall specify a valid odata or Redfish property.",
2340                    "type": [
2341                        "array",
2342                        "boolean",
2343                        "integer",
2344                        "number",
2345                        "null",
2346                        "object",
2347                        "string"
2348                    ]
2349                }
2350            },
2351            "properties": {
2352                "FirmwareVersion": {
2353                    "description": "The firmware version of this Trusted Module.",
2354                    "longDescription": "This property shall contain the firmware version as defined by the manufacturer for the Trusted Module.",
2355                    "readonly": true,
2356                    "type": [
2357                        "string",
2358                        "null"
2359                    ],
2360                    "versionAdded": "v1_1_0"
2361                },
2362                "FirmwareVersion2": {
2363                    "description": "The second firmware version of this Trusted Module, if applicable.",
2364                    "longDescription": "This property shall contain the 2nd firmware version, if applicable, as defined by the manufacturer for the Trusted Module.",
2365                    "readonly": true,
2366                    "type": [
2367                        "string",
2368                        "null"
2369                    ],
2370                    "versionAdded": "v1_3_0"
2371                },
2372                "InterfaceType": {
2373                    "anyOf": [
2374                        {
2375                            "$ref": "#/definitions/InterfaceType"
2376                        },
2377                        {
2378                            "type": "null"
2379                        }
2380                    ],
2381                    "description": "The interface type of the Trusted Module.",
2382                    "longDescription": "This property shall contain the interface type of the installed Trusted Module.",
2383                    "readonly": true,
2384                    "versionAdded": "v1_1_0"
2385                },
2386                "InterfaceTypeSelection": {
2387                    "anyOf": [
2388                        {
2389                            "$ref": "#/definitions/InterfaceTypeSelection"
2390                        },
2391                        {
2392                            "type": "null"
2393                        }
2394                    ],
2395                    "description": "The interface type selection supported by this Trusted Module.",
2396                    "longDescription": "This property shall contain the interface type `Selection` method (for example to switch between TPM1_2 and TPM2_0) that is supported by this Trusted Module.",
2397                    "readonly": true,
2398                    "versionAdded": "v1_3_0"
2399                },
2400                "Oem": {
2401                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
2402                    "description": "The OEM extension property.",
2403                    "longDescription": "This property shall contain the OEM extensions.  All values for properties contained in this object shall conform to the Redfish Specification-described requirements.",
2404                    "versionAdded": "v1_1_0"
2405                },
2406                "Status": {
2407                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Status",
2408                    "description": "The status and health of the resource and its subordinate or dependent resources.",
2409                    "longDescription": "This property shall contain any status or health properties of the resource.",
2410                    "versionAdded": "v1_1_0"
2411                }
2412            },
2413            "type": "object"
2414        },
2415        "VirtualMediaConfig": {
2416            "additionalProperties": false,
2417            "description": "The information about virtual media service for this system.",
2418            "longDescription": "This type shall describe a virtual media service for a computer system.",
2419            "patternProperties": {
2420                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
2421                    "description": "This property shall specify a valid odata or Redfish property.",
2422                    "type": [
2423                        "array",
2424                        "boolean",
2425                        "integer",
2426                        "number",
2427                        "null",
2428                        "object",
2429                        "string"
2430                    ]
2431                }
2432            },
2433            "properties": {
2434                "Port": {
2435                    "description": "The protocol port.",
2436                    "longDescription": "This property shall contain the port assigned to the service.",
2437                    "minimum": 0,
2438                    "readonly": false,
2439                    "type": [
2440                        "integer",
2441                        "null"
2442                    ],
2443                    "versionAdded": "v1_13_0"
2444                },
2445                "ServiceEnabled": {
2446                    "description": "An indication of whether the service is enabled for this system.",
2447                    "longDescription": "This property shall indicate whether the protocol for the service is enabled.",
2448                    "readonly": false,
2449                    "type": "boolean",
2450                    "versionAdded": "v1_13_0"
2451                }
2452            },
2453            "type": "object"
2454        },
2455        "WatchdogTimeoutActions": {
2456            "description": "The enumerations of `WatchdogTimeoutActions` specify the choice of action to take when the host watchdog timer reaches its timeout value.",
2457            "enum": [
2458                "None",
2459                "ResetSystem",
2460                "PowerCycle",
2461                "PowerDown",
2462                "OEM"
2463            ],
2464            "enumDescriptions": {
2465                "None": "No action taken.",
2466                "OEM": "Perform an OEM-defined action.",
2467                "PowerCycle": "Power cycle the system.",
2468                "PowerDown": "Power down the system.",
2469                "ResetSystem": "Reset the system."
2470            },
2471            "type": "string"
2472        },
2473        "WatchdogTimer": {
2474            "additionalProperties": false,
2475            "description": "This type describes the host watchdog timer functionality for this system.",
2476            "longDescription": "This type shall contain properties that describe the host watchdog timer functionality for this system.",
2477            "patternProperties": {
2478                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
2479                    "description": "This property shall specify a valid odata or Redfish property.",
2480                    "type": [
2481                        "array",
2482                        "boolean",
2483                        "integer",
2484                        "number",
2485                        "null",
2486                        "object",
2487                        "string"
2488                    ]
2489                }
2490            },
2491            "properties": {
2492                "FunctionEnabled": {
2493                    "description": "An indication of whether a user has enabled the host watchdog timer functionality.  This property indicates only that a user has enabled the timer.  To activate the timer, installation of additional host-based software is necessary; an update to this property does not initiate the timer.",
2494                    "longDescription": "This property shall indicate whether a user has enabled the host watchdog timer functionality.  This property indicates only that a user has enabled the timer.  To activate the timer, installation of additional host-based software is necessary; an update to this property does not initiate the timer.",
2495                    "readonly": false,
2496                    "type": [
2497                        "boolean",
2498                        "null"
2499                    ],
2500                    "versionAdded": "v1_5_0"
2501                },
2502                "Oem": {
2503                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
2504                    "description": "The OEM extension property.",
2505                    "longDescription": "This property shall contain the OEM extensions.  All values for properties contained in this object shall conform to the Redfish Specification-described requirements.",
2506                    "versionAdded": "v1_5_0"
2507                },
2508                "Status": {
2509                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Status",
2510                    "description": "The status and health of the resource and its subordinate or dependent resources.",
2511                    "longDescription": "This property shall contain any status or health properties of the resource.",
2512                    "versionAdded": "v1_5_0"
2513                },
2514                "TimeoutAction": {
2515                    "anyOf": [
2516                        {
2517                            "$ref": "#/definitions/WatchdogTimeoutActions"
2518                        },
2519                        {
2520                            "type": "null"
2521                        }
2522                    ],
2523                    "description": "The action to perform when the watchdog timer reaches its timeout value.",
2524                    "longDescription": "This property shall contain the action to perform when the watchdog timer reaches its timeout value.",
2525                    "readonly": false,
2526                    "versionAdded": "v1_5_0"
2527                },
2528                "WarningAction": {
2529                    "anyOf": [
2530                        {
2531                            "$ref": "#/definitions/WatchdogWarningActions"
2532                        },
2533                        {
2534                            "type": "null"
2535                        }
2536                    ],
2537                    "description": "The action to perform when the watchdog timer is close to reaching its timeout value.  This action typically occurs from three to ten seconds before to the timeout value, but the exact timing is dependent on the implementation.",
2538                    "longDescription": "This property shall contain the action to perform before the watchdog timer expires.  This action typically occurs from three to ten seconds before to the timeout value, but the exact timing is dependent on the implementation.",
2539                    "readonly": false,
2540                    "versionAdded": "v1_5_0"
2541                }
2542            },
2543            "required": [
2544                "FunctionEnabled",
2545                "TimeoutAction"
2546            ],
2547            "type": "object"
2548        },
2549        "WatchdogWarningActions": {
2550            "description": "The enumerations of `WatchdogWarningActions` specify the choice of action to take when the host watchdog timer is close (typically 3-10 seconds) to reaching its timeout value.",
2551            "enum": [
2552                "None",
2553                "DiagnosticInterrupt",
2554                "SMI",
2555                "MessagingInterrupt",
2556                "SCI",
2557                "OEM"
2558            ],
2559            "enumDescriptions": {
2560                "DiagnosticInterrupt": "Raise a (typically non-maskable) Diagnostic Interrupt.",
2561                "MessagingInterrupt": "Raise a legacy IPMI messaging interrupt.",
2562                "None": "No action taken.",
2563                "OEM": "Perform an OEM-defined action.",
2564                "SCI": "Raise an interrupt using the ACPI System Control Interrupt (SCI).",
2565                "SMI": "Raise a Systems Management Interrupt (SMI)."
2566            },
2567            "type": "string"
2568        }
2569    },
2570    "language": "en",
2571    "owningEntity": "DMTF",
2572    "release": "2023.3",
2573    "title": "#ComputerSystem.v1_22_1.ComputerSystem"
2574}