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