1{
2    "$id": "http://redfish.dmtf.org/schemas/v1/Power.v1_7_3.json",
3    "$ref": "#/definitions/Power",
4    "$schema": "http://redfish.dmtf.org/schemas/v1/redfish-schema-v1.json",
5    "copyright": "Copyright 2014-2024 DMTF. For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright",
6    "definitions": {
7        "Actions": {
8            "additionalProperties": false,
9            "description": "The available actions for this resource.",
10            "longDescription": "This type shall contain the available actions for this resource.",
11            "patternProperties": {
12                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
13                    "description": "This property shall specify a valid odata or Redfish property.",
14                    "type": [
15                        "array",
16                        "boolean",
17                        "integer",
18                        "number",
19                        "null",
20                        "object",
21                        "string"
22                    ]
23                }
24            },
25            "properties": {
26                "#Power.PowerSupplyReset": {
27                    "$ref": "#/definitions/PowerSupplyReset"
28                },
29                "Oem": {
30                    "$ref": "#/definitions/OemActions",
31                    "description": "The available OEM-specific actions for this resource.",
32                    "longDescription": "This property shall contain the available OEM-specific actions for this resource.",
33                    "versionAdded": "v1_3_0"
34                }
35            },
36            "type": "object"
37        },
38        "InputRange": {
39            "additionalProperties": false,
40            "description": "This type describes an input range for a power supply.",
41            "longDescription": "This type shall describe an input range that the associated power supply can utilize.",
42            "patternProperties": {
43                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
44                    "description": "This property shall specify a valid odata or Redfish property.",
45                    "type": [
46                        "array",
47                        "boolean",
48                        "integer",
49                        "number",
50                        "null",
51                        "object",
52                        "string"
53                    ]
54                }
55            },
56            "properties": {
57                "InputType": {
58                    "anyOf": [
59                        {
60                            "$ref": "#/definitions/InputType"
61                        },
62                        {
63                            "type": "null"
64                        }
65                    ],
66                    "description": "The Input type (AC or DC).",
67                    "longDescription": "This property shall contain the input type (AC or DC) of the associated range.",
68                    "readonly": true,
69                    "versionAdded": "v1_1_0"
70                },
71                "MaximumFrequencyHz": {
72                    "description": "The maximum line input frequency at which this power supply input range is effective.",
73                    "longDescription": "This property shall contain the value, in hertz units, of the maximum line input frequency that the power supply is capable of consuming for this range.",
74                    "minimum": 0,
75                    "readonly": true,
76                    "type": [
77                        "number",
78                        "null"
79                    ],
80                    "units": "Hz",
81                    "versionAdded": "v1_1_0"
82                },
83                "MaximumVoltage": {
84                    "description": "The maximum line input voltage at which this power supply input range is effective.",
85                    "longDescription": "This property shall contain the value, in volt units, of the maximum line input voltage that the power supply is capable of consuming for this range.",
86                    "readonly": true,
87                    "type": [
88                        "number",
89                        "null"
90                    ],
91                    "units": "V",
92                    "versionAdded": "v1_1_0"
93                },
94                "MinimumFrequencyHz": {
95                    "description": "The minimum line input frequency at which this power supply input range is effective.",
96                    "longDescription": "This property shall contain the value, in hertz units, of the minimum line input frequency that the power supply is capable of consuming for this range.",
97                    "minimum": 0,
98                    "readonly": true,
99                    "type": [
100                        "number",
101                        "null"
102                    ],
103                    "units": "Hz",
104                    "versionAdded": "v1_1_0"
105                },
106                "MinimumVoltage": {
107                    "description": "The minimum line input voltage at which this power supply input range is effective.",
108                    "longDescription": "This property shall contain the value, in volt units, of the minimum line input voltage that the power supply is capable of consuming for this range.",
109                    "readonly": true,
110                    "type": [
111                        "number",
112                        "null"
113                    ],
114                    "units": "V",
115                    "versionAdded": "v1_1_0"
116                },
117                "Oem": {
118                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
119                    "description": "The OEM extension property.",
120                    "longDescription": "This property shall contain the OEM extensions.  All values for properties contained in this object shall conform to the Redfish Specification-described requirements.",
121                    "versionAdded": "v1_1_0"
122                },
123                "OutputWattage": {
124                    "description": "The maximum capacity of this power supply when operating in this input range.",
125                    "longDescription": "This property shall contain the maximum amount of power, in watt units, that the associated power supply is rated to deliver while operating in this input range.",
126                    "minimum": 0,
127                    "readonly": true,
128                    "type": [
129                        "number",
130                        "null"
131                    ],
132                    "units": "W",
133                    "versionAdded": "v1_1_0"
134                }
135            },
136            "type": "object"
137        },
138        "InputType": {
139            "enum": [
140                "AC",
141                "DC"
142            ],
143            "enumDescriptions": {
144                "AC": "Alternating Current (AC) input range.",
145                "DC": "Direct Current (DC) input range."
146            },
147            "type": "string"
148        },
149        "LineInputVoltageType": {
150            "enum": [
151                "Unknown",
152                "ACLowLine",
153                "ACMidLine",
154                "ACHighLine",
155                "DCNeg48V",
156                "DC380V",
157                "AC120V",
158                "AC240V",
159                "AC277V",
160                "ACandDCWideRange",
161                "ACWideRange",
162                "DC240V"
163            ],
164            "enumDeprecated": {
165                "ACHighLine": "This value has been deprecated in favor of AC277V.",
166                "ACLowLine": "This value has been deprecated in favor of AC120V.",
167                "ACMidLine": "This value has been deprecated in favor of AC240V."
168            },
169            "enumDescriptions": {
170                "AC120V": "AC 120V nominal input.",
171                "AC240V": "AC 240V nominal input.",
172                "AC277V": "AC 277V nominal input.",
173                "ACHighLine": "277V AC input.",
174                "ACLowLine": "100-127V AC input.",
175                "ACMidLine": "200-240V AC input.",
176                "ACWideRange": "Wide range AC input.",
177                "ACandDCWideRange": "Wide range AC or DC input.",
178                "DC240V": "DC 240V nominal input.",
179                "DC380V": "High-voltage DC input (380V).",
180                "DCNeg48V": "-48V DC input.",
181                "Unknown": "The power supply line input voltage type cannot be determined."
182            },
183            "enumVersionAdded": {
184                "AC120V": "v1_1_0",
185                "AC240V": "v1_1_0",
186                "AC277V": "v1_1_0",
187                "ACWideRange": "v1_1_0",
188                "ACandDCWideRange": "v1_1_0",
189                "DC240V": "v1_1_0"
190            },
191            "enumVersionDeprecated": {
192                "ACHighLine": "v1_1_0",
193                "ACLowLine": "v1_1_0",
194                "ACMidLine": "v1_1_0"
195            },
196            "type": "string"
197        },
198        "OemActions": {
199            "additionalProperties": true,
200            "description": "The available OEM-specific actions for this resource.",
201            "longDescription": "This type shall contain the available OEM-specific actions for this resource.",
202            "patternProperties": {
203                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
204                    "description": "This property shall specify a valid odata or Redfish property.",
205                    "type": [
206                        "array",
207                        "boolean",
208                        "integer",
209                        "number",
210                        "null",
211                        "object",
212                        "string"
213                    ]
214                }
215            },
216            "properties": {},
217            "type": "object"
218        },
219        "Power": {
220            "additionalProperties": false,
221            "deprecated": "This schema has been deprecated in favor of the `PowerSubsystem` schema.",
222            "description": "The `Power` schema describes power metrics and represents the properties for power consumption and power limiting.",
223            "longDescription": "This resource shall contain the power metrics for a Redfish implementation.",
224            "patternProperties": {
225                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
226                    "description": "This property shall specify a valid odata or Redfish property.",
227                    "type": [
228                        "array",
229                        "boolean",
230                        "integer",
231                        "number",
232                        "null",
233                        "object",
234                        "string"
235                    ]
236                }
237            },
238            "properties": {
239                "@odata.context": {
240                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/context"
241                },
242                "@odata.etag": {
243                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/etag"
244                },
245                "@odata.id": {
246                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/id"
247                },
248                "@odata.type": {
249                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/type"
250                },
251                "Actions": {
252                    "$ref": "#/definitions/Actions",
253                    "description": "The available actions for this resource.",
254                    "longDescription": "This property shall contain the available actions for this resource.",
255                    "versionAdded": "v1_3_0"
256                },
257                "Description": {
258                    "anyOf": [
259                        {
260                            "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Description"
261                        },
262                        {
263                            "type": "null"
264                        }
265                    ],
266                    "readonly": true
267                },
268                "Id": {
269                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Id",
270                    "readonly": true
271                },
272                "Name": {
273                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Name",
274                    "readonly": true
275                },
276                "Oem": {
277                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
278                    "description": "The OEM extension property.",
279                    "longDescription": "This property shall contain the OEM extensions.  All values for properties that this object contains shall conform to the Redfish Specification-described requirements."
280                },
281                "PowerControl": {
282                    "autoExpand": true,
283                    "description": "The set of power control functions, including power reading and limiting.",
284                    "items": {
285                        "$ref": "#/definitions/PowerControl"
286                    },
287                    "longDescription": "This property shall contain the set of power control readings and settings.",
288                    "type": "array"
289                },
290                "PowerControl@odata.count": {
291                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
292                },
293                "PowerSupplies": {
294                    "autoExpand": true,
295                    "description": "The set of power supplies associated with this system or device.",
296                    "items": {
297                        "$ref": "#/definitions/PowerSupply"
298                    },
299                    "longDescription": "This property shall contain the set of power supplies associated with this system or device.",
300                    "type": "array"
301                },
302                "PowerSupplies@odata.count": {
303                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
304                },
305                "Redundancy": {
306                    "autoExpand": true,
307                    "description": "The redundancy information for the set of power supplies in this chassis.",
308                    "items": {
309                        "$ref": "http://redfish.dmtf.org/schemas/v1/Redundancy.json#/definitions/Redundancy"
310                    },
311                    "longDescription": "This property shall contain redundancy information for the set of power supplies in this system or device.",
312                    "type": "array"
313                },
314                "Redundancy@odata.count": {
315                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
316                },
317                "Voltages": {
318                    "autoExpand": true,
319                    "description": "The set of voltage sensors for this chassis.",
320                    "items": {
321                        "$ref": "#/definitions/Voltage"
322                    },
323                    "longDescription": "This property shall contain the set of voltage sensors for this chassis.",
324                    "type": "array"
325                },
326                "Voltages@odata.count": {
327                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
328                }
329            },
330            "required": [
331                "@odata.id",
332                "@odata.type",
333                "Id",
334                "Name"
335            ],
336            "type": "object",
337            "versionDeprecated": "v1_7_0"
338        },
339        "PowerControl": {
340            "additionalProperties": false,
341            "patternProperties": {
342                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
343                    "description": "This property shall specify a valid odata or Redfish property.",
344                    "type": [
345                        "array",
346                        "boolean",
347                        "integer",
348                        "number",
349                        "null",
350                        "object",
351                        "string"
352                    ]
353                }
354            },
355            "properties": {
356                "@odata.id": {
357                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/id"
358                },
359                "Actions": {
360                    "$ref": "#/definitions/PowerControlActions",
361                    "description": "The available actions for this resource.",
362                    "longDescription": "This property shall contain the available actions for this resource.",
363                    "versionAdded": "v1_3_0"
364                },
365                "MemberId": {
366                    "description": "The unique identifier for the member within an array.",
367                    "longDescription": "This property shall contain the unique identifier for this member within an array.  For services supporting Redfish v1.6 or higher, this value shall contain the zero-based array index.",
368                    "readonly": true,
369                    "type": "string"
370                },
371                "Name": {
372                    "description": "The power control function name.",
373                    "longDescription": "This property shall contain the name of the power control function name.",
374                    "readonly": true,
375                    "type": [
376                        "string",
377                        "null"
378                    ]
379                },
380                "Oem": {
381                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
382                    "description": "The OEM extension property.",
383                    "longDescription": "This property shall contain the OEM extensions.  All values for properties that this object contains shall conform to the Redfish Specification-described requirements."
384                },
385                "PhysicalContext": {
386                    "$ref": "http://redfish.dmtf.org/schemas/v1/PhysicalContext.json#/definitions/PhysicalContext",
387                    "description": "The area, device, or set of devices to which this power control applies.",
388                    "longDescription": "This property shall contain a description of the affected device(s) or region within the chassis to which this power control applies.",
389                    "readonly": true,
390                    "versionAdded": "v1_4_0"
391                },
392                "PowerAllocatedWatts": {
393                    "description": "The total amount of power that has been allocated or budgeted to chassis.",
394                    "longDescription": "This property shall represent the total power currently allocated or budgeted to the chassis.",
395                    "minimum": 0,
396                    "readonly": true,
397                    "type": [
398                        "number",
399                        "null"
400                    ],
401                    "units": "W"
402                },
403                "PowerAvailableWatts": {
404                    "description": "The amount of reserve power capacity, in watt units, that remains.  This value is the PowerCapacityWatts value minus the `PowerAllocatedWatts` value.",
405                    "longDescription": "This property shall represent the amount of reserve power capacity, in watt units, that remains.  This value is the PowerCapacityWatts value minus the `PowerAllocatedWatts` value.",
406                    "minimum": 0,
407                    "readonly": true,
408                    "type": [
409                        "number",
410                        "null"
411                    ],
412                    "units": "W"
413                },
414                "PowerCapacityWatts": {
415                    "description": "The total amount of power that can be allocated to the chassis.  This value can be either the power supply capacity or the power budget that an upstream chassis assigns to this chassis.",
416                    "longDescription": "This property shall represent the total power capacity that can be allocated to the chassis.",
417                    "minimum": 0,
418                    "readonly": true,
419                    "type": [
420                        "number",
421                        "null"
422                    ],
423                    "units": "W"
424                },
425                "PowerConsumedWatts": {
426                    "description": "The actual power that the chassis consumes, in watt units.",
427                    "longDescription": "This property shall represent the actual power that the chassis consumes, in watt units.",
428                    "minimum": 0,
429                    "readonly": true,
430                    "type": [
431                        "number",
432                        "null"
433                    ],
434                    "units": "W"
435                },
436                "PowerLimit": {
437                    "$ref": "#/definitions/PowerLimit",
438                    "description": "The power limit status and configuration information for this chassis.",
439                    "longDescription": "This property shall contain power limit status and configuration information for this chassis."
440                },
441                "PowerMetrics": {
442                    "$ref": "#/definitions/PowerMetric",
443                    "description": "The power readings for this chassis.",
444                    "longDescription": "This property shall contain power metrics for power readings, such as interval, minimum, maximum, and average power consumption, for the chassis."
445                },
446                "PowerRequestedWatts": {
447                    "description": "The potential power, in watt units, that the chassis requests, which might be higher than the current level being consumed because the requested power includes a budget that the chassis wants for future use.",
448                    "longDescription": "This property shall represent the amount of power, in watt units, that the chassis currently requests to be budgeted for future use.",
449                    "minimum": 0,
450                    "readonly": true,
451                    "type": [
452                        "number",
453                        "null"
454                    ],
455                    "units": "W"
456                },
457                "RelatedItem": {
458                    "description": "An array of links to resources or objects associated with this power limit.",
459                    "items": {
460                        "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/idRef"
461                    },
462                    "longDescription": "This property shall contain an array of links to resources or objects associated with this power limit.",
463                    "readonly": true,
464                    "type": "array"
465                },
466                "RelatedItem@odata.count": {
467                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
468                },
469                "Status": {
470                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Status",
471                    "description": "The status and health of the resource and its subordinate or dependent resources.",
472                    "longDescription": "This property shall contain any status or health properties of the resource."
473                }
474            },
475            "required": [
476                "@odata.id",
477                "MemberId"
478            ],
479            "type": "object"
480        },
481        "PowerControlActions": {
482            "additionalProperties": false,
483            "description": "The available actions for this resource.",
484            "longDescription": "This type shall contain the available actions for this resource.",
485            "patternProperties": {
486                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
487                    "description": "This property shall specify a valid odata or Redfish property.",
488                    "type": [
489                        "array",
490                        "boolean",
491                        "integer",
492                        "number",
493                        "null",
494                        "object",
495                        "string"
496                    ]
497                }
498            },
499            "properties": {
500                "Oem": {
501                    "$ref": "#/definitions/PowerControlOemActions",
502                    "description": "The available OEM-specific actions for this resource.",
503                    "longDescription": "This property shall contain the available OEM-specific actions for this resource.",
504                    "versionAdded": "v1_3_0"
505                }
506            },
507            "type": "object"
508        },
509        "PowerControlOemActions": {
510            "additionalProperties": true,
511            "description": "The available OEM-specific actions for this resource.",
512            "longDescription": "This type shall contain the available OEM-specific actions for this resource.",
513            "patternProperties": {
514                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
515                    "description": "This property shall specify a valid odata or Redfish property.",
516                    "type": [
517                        "array",
518                        "boolean",
519                        "integer",
520                        "number",
521                        "null",
522                        "object",
523                        "string"
524                    ]
525                }
526            },
527            "properties": {},
528            "type": "object"
529        },
530        "PowerLimit": {
531            "additionalProperties": false,
532            "description": "The power limit status and configuration information for the chassis.",
533            "longDescription": "This type shall contain power limit status and configuration information for this chassis.",
534            "patternProperties": {
535                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
536                    "description": "This property shall specify a valid odata or Redfish property.",
537                    "type": [
538                        "array",
539                        "boolean",
540                        "integer",
541                        "number",
542                        "null",
543                        "object",
544                        "string"
545                    ]
546                }
547            },
548            "properties": {
549                "CorrectionInMs": {
550                    "description": "The time required for the limiting process to reduce power consumption to below the limit.",
551                    "longDescription": "This property shall represent the time interval in ms required for the limiting process to react and reduce the power consumption below the limit.",
552                    "readonly": false,
553                    "type": [
554                        "integer",
555                        "null"
556                    ],
557                    "units": "ms"
558                },
559                "LimitException": {
560                    "anyOf": [
561                        {
562                            "$ref": "#/definitions/PowerLimitException"
563                        },
564                        {
565                            "type": "null"
566                        }
567                    ],
568                    "description": "The action that is taken if the power cannot be maintained below the `LimitInWatts`.",
569                    "longDescription": "This property shall represent the action to be taken if the resource power consumption cannot be limited below the specified limit after several correction time periods.",
570                    "readonly": false
571                },
572                "LimitInWatts": {
573                    "description": "The power limit, in watt units.  If `null`, power capping is disabled.",
574                    "longDescription": "This property shall represent the power capping limit, in watt units, for the resource.  If `null`, power capping shall be disabled.",
575                    "minimum": 0,
576                    "readonly": false,
577                    "type": [
578                        "number",
579                        "null"
580                    ],
581                    "units": "W"
582                }
583            },
584            "type": "object"
585        },
586        "PowerLimitException": {
587            "enum": [
588                "NoAction",
589                "HardPowerOff",
590                "LogEventOnly",
591                "Oem"
592            ],
593            "enumDescriptions": {
594                "HardPowerOff": "Turn the power off immediately when the limit is exceeded.",
595                "LogEventOnly": "Log an event when the limit is exceeded, but take no further action.",
596                "NoAction": "Take no action when the limit is exceeded.",
597                "Oem": "Take an OEM-defined action."
598            },
599            "type": "string"
600        },
601        "PowerMetric": {
602            "additionalProperties": false,
603            "description": "The power metrics for a resource.",
604            "longDescription": "This type shall contain power metrics for power readings, such as interval, minimum, maximum, and average power consumption, for a resource.",
605            "patternProperties": {
606                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
607                    "description": "This property shall specify a valid odata or Redfish property.",
608                    "type": [
609                        "array",
610                        "boolean",
611                        "integer",
612                        "number",
613                        "null",
614                        "object",
615                        "string"
616                    ]
617                }
618            },
619            "properties": {
620                "AverageConsumedWatts": {
621                    "description": "The average power level over the measurement window over the last `IntervalInMin` minutes.",
622                    "longDescription": "This property shall represent the average power level that occurred over the last `IntervalInMin` minutes.",
623                    "minimum": 0,
624                    "readonly": true,
625                    "type": [
626                        "number",
627                        "null"
628                    ],
629                    "units": "W"
630                },
631                "IntervalInMin": {
632                    "description": "The time interval, or window, over which the power metrics are measured.",
633                    "longDescription": "This property shall represent the time interval or window, in minutes, over which the power metrics are measured.",
634                    "minimum": 0,
635                    "readonly": true,
636                    "type": [
637                        "integer",
638                        "null"
639                    ],
640                    "units": "min"
641                },
642                "MaxConsumedWatts": {
643                    "description": "The highest power consumption level, in watt units, that has occurred over the measurement window within the last `IntervalInMin` minutes.",
644                    "longDescription": "This property shall represent the maximum power level, in watt units, that occurred within the last `IntervalInMin` minutes.",
645                    "minimum": 0,
646                    "readonly": true,
647                    "type": [
648                        "number",
649                        "null"
650                    ],
651                    "units": "W"
652                },
653                "MinConsumedWatts": {
654                    "description": "The lowest power consumption level, in watt units, over the measurement window that occurred within the last `IntervalInMin` minutes.",
655                    "longDescription": "This property shall represent the minimum power level, in watt units, that occurred within the last `IntervalInMin` minutes.",
656                    "minimum": 0,
657                    "readonly": true,
658                    "type": [
659                        "number",
660                        "null"
661                    ],
662                    "units": "W"
663                }
664            },
665            "type": "object"
666        },
667        "PowerSupply": {
668            "additionalProperties": false,
669            "description": "Details of a power supplies associated with this system or device.",
670            "patternProperties": {
671                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
672                    "description": "This property shall specify a valid odata or Redfish property.",
673                    "type": [
674                        "array",
675                        "boolean",
676                        "integer",
677                        "number",
678                        "null",
679                        "object",
680                        "string"
681                    ]
682                }
683            },
684            "properties": {
685                "@odata.id": {
686                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/id"
687                },
688                "Actions": {
689                    "$ref": "#/definitions/PowerSupplyActions",
690                    "description": "The available actions for this resource.",
691                    "longDescription": "This property shall contain the available actions for this resource.",
692                    "versionAdded": "v1_3_0"
693                },
694                "Assembly": {
695                    "$ref": "http://redfish.dmtf.org/schemas/v1/Assembly.json#/definitions/Assembly",
696                    "description": "The link to the assembly resource associated with this power supply.",
697                    "longDescription": "This property shall contain a link to a resource of type `Assembly`.",
698                    "readonly": true,
699                    "versionAdded": "v1_5_0"
700                },
701                "EfficiencyPercent": {
702                    "description": "The measured efficiency of this power supply as a percentage.",
703                    "longDescription": "This property shall contain the measured power efficiency, as a percentage, of the associated power supply.",
704                    "maximum": 100,
705                    "minimum": 0,
706                    "readonly": true,
707                    "type": [
708                        "number",
709                        "null"
710                    ],
711                    "units": "%",
712                    "versionAdded": "v1_5_0"
713                },
714                "FirmwareVersion": {
715                    "description": "The firmware version for this power supply.",
716                    "longDescription": "This property shall contain the firmware version as defined by the manufacturer for the associated power supply.",
717                    "readonly": true,
718                    "type": [
719                        "string",
720                        "null"
721                    ]
722                },
723                "HotPluggable": {
724                    "description": "An indication of whether this device can be inserted or removed while the equipment is in operation.",
725                    "longDescription": "This property shall indicate whether the device can be inserted or removed while the underlying equipment otherwise remains in its current operational state.  Devices indicated as hot-pluggable shall allow the device to become operable without altering the operational state of the underlying equipment.  Devices that cannot be inserted or removed from equipment in operation, or devices that cannot become operable without affecting the operational state of that equipment, shall be indicated as not hot-pluggable.",
726                    "readonly": true,
727                    "type": [
728                        "boolean",
729                        "null"
730                    ],
731                    "versionAdded": "v1_5_0"
732                },
733                "IndicatorLED": {
734                    "anyOf": [
735                        {
736                            "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/IndicatorLED"
737                        },
738                        {
739                            "type": "null"
740                        }
741                    ],
742                    "description": "The state of the indicator LED, which identifies the power supply.",
743                    "longDescription": "This property shall contain the indicator light state for the indicator light associated with this power supply.",
744                    "readonly": false,
745                    "versionAdded": "v1_2_0"
746                },
747                "InputRanges": {
748                    "description": "The input ranges that the power supply can use.",
749                    "items": {
750                        "$ref": "#/definitions/InputRange"
751                    },
752                    "longDescription": "This property shall contain a collection of ranges usable by the power supply unit.",
753                    "type": "array",
754                    "versionAdded": "v1_1_0"
755                },
756                "LastPowerOutputWatts": {
757                    "description": "The average power output of this power supply.",
758                    "longDescription": "This property shall contain the average power output, measured in watt units, of the associated power supply.",
759                    "minimum": 0,
760                    "readonly": true,
761                    "type": [
762                        "number",
763                        "null"
764                    ],
765                    "units": "W"
766                },
767                "LineInputVoltage": {
768                    "description": "The line input voltage at which the power supply is operating.",
769                    "longDescription": "This property shall contain the value in volt units of the line input voltage (measured or configured for) that the power supply has been configured to operate with or is currently receiving.",
770                    "readonly": true,
771                    "type": [
772                        "number",
773                        "null"
774                    ],
775                    "units": "V"
776                },
777                "LineInputVoltageType": {
778                    "anyOf": [
779                        {
780                            "$ref": "#/definitions/LineInputVoltageType"
781                        },
782                        {
783                            "type": "null"
784                        }
785                    ],
786                    "description": "The line voltage type supported as an input to this power supply.",
787                    "longDescription": "This property shall contain the type of input line voltage supported by the associated power supply.",
788                    "readonly": true
789                },
790                "Location": {
791                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Location",
792                    "description": "The location of the power supply.",
793                    "longDescription": "This property shall contain the location information of the associated power supply.",
794                    "versionAdded": "v1_5_0"
795                },
796                "Manufacturer": {
797                    "description": "The manufacturer of this power supply.",
798                    "longDescription": "This property shall contain the name of the organization responsible for producing the power supply.  This organization may be the entity from whom the power supply is purchased, but this is not necessarily true.",
799                    "readonly": true,
800                    "type": [
801                        "string",
802                        "null"
803                    ],
804                    "versionAdded": "v1_1_0"
805                },
806                "MemberId": {
807                    "description": "The unique identifier for the member within an array.",
808                    "longDescription": "This property shall contain the unique identifier for this member within an array.  For services supporting Redfish v1.6 or higher, this value shall contain the zero-based array index.",
809                    "readonly": true,
810                    "type": "string"
811                },
812                "Model": {
813                    "description": "The model number for this power supply.",
814                    "longDescription": "This property shall contain the model information as defined by the manufacturer for the associated power supply.",
815                    "readonly": true,
816                    "type": [
817                        "string",
818                        "null"
819                    ]
820                },
821                "Name": {
822                    "description": "The name of the power supply.",
823                    "longDescription": "This property shall contain a descriptive name for the associated power supply.",
824                    "readonly": true,
825                    "type": [
826                        "string",
827                        "null"
828                    ]
829                },
830                "Oem": {
831                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
832                    "description": "The OEM extension property.",
833                    "longDescription": "This property shall contain the OEM extensions.  All values for properties that this object contains shall conform to the Redfish Specification-described requirements."
834                },
835                "PartNumber": {
836                    "description": "The part number for this power supply.",
837                    "longDescription": "This property shall contain the part number as defined by the manufacturer for the associated power supply.",
838                    "readonly": true,
839                    "type": [
840                        "string",
841                        "null"
842                    ]
843                },
844                "PowerCapacityWatts": {
845                    "description": "The maximum capacity of this power supply.",
846                    "longDescription": "This property shall contain the maximum amount of power, in watt units, that the associated power supply is rated to deliver.",
847                    "minimum": 0,
848                    "readonly": true,
849                    "type": [
850                        "number",
851                        "null"
852                    ],
853                    "units": "W"
854                },
855                "PowerInputWatts": {
856                    "description": "The measured input power of this power supply.",
857                    "longDescription": "This property shall contain the measured input power, in watt units, of the associated power supply.",
858                    "minimum": 0,
859                    "readonly": true,
860                    "type": [
861                        "number",
862                        "null"
863                    ],
864                    "units": "W",
865                    "versionAdded": "v1_5_0"
866                },
867                "PowerOutputWatts": {
868                    "description": "The measured output power of this power supply.",
869                    "longDescription": "This property shall contain the measured output power, in watt units, of the associated power supply.",
870                    "minimum": 0,
871                    "readonly": true,
872                    "type": [
873                        "number",
874                        "null"
875                    ],
876                    "units": "W",
877                    "versionAdded": "v1_5_0"
878                },
879                "PowerSupplyType": {
880                    "anyOf": [
881                        {
882                            "$ref": "#/definitions/PowerSupplyType"
883                        },
884                        {
885                            "type": "null"
886                        }
887                    ],
888                    "description": "The power supply type (AC or DC).",
889                    "longDescription": "This property shall contain the input power type (AC or DC) of the associated power supply.",
890                    "readonly": true
891                },
892                "Redundancy": {
893                    "description": "The set of redundancy groups for this power supply.",
894                    "items": {
895                        "$ref": "http://redfish.dmtf.org/schemas/v1/Redundancy.json#/definitions/Redundancy"
896                    },
897                    "longDescription": "This property shall contain an array of links to the redundancy groups to which this power supply belongs.",
898                    "type": "array"
899                },
900                "Redundancy@odata.count": {
901                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
902                },
903                "RelatedItem": {
904                    "description": "An array of links to resources or objects associated with this power supply.",
905                    "items": {
906                        "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/idRef"
907                    },
908                    "longDescription": "This property shall contain an array of links to resources or objects associated with this power supply.",
909                    "type": "array"
910                },
911                "RelatedItem@odata.count": {
912                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
913                },
914                "SerialNumber": {
915                    "description": "The serial number for this power supply.",
916                    "longDescription": "This property shall contain the serial number as defined by the manufacturer for the associated power supply.",
917                    "readonly": true,
918                    "type": [
919                        "string",
920                        "null"
921                    ]
922                },
923                "SparePartNumber": {
924                    "description": "The spare part number for this power supply.",
925                    "longDescription": "This property shall contain the spare or replacement part number as defined by the manufacturer for the associated power supply.",
926                    "readonly": true,
927                    "type": [
928                        "string",
929                        "null"
930                    ]
931                },
932                "Status": {
933                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Status",
934                    "description": "The status and health of the resource and its subordinate or dependent resources.",
935                    "longDescription": "This property shall contain any status or health properties of the resource."
936                }
937            },
938            "required": [
939                "@odata.id",
940                "MemberId"
941            ],
942            "type": "object"
943        },
944        "PowerSupplyActions": {
945            "additionalProperties": false,
946            "description": "The available actions for this resource.",
947            "longDescription": "This type shall contain the available actions for this resource.",
948            "patternProperties": {
949                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
950                    "description": "This property shall specify a valid odata or Redfish property.",
951                    "type": [
952                        "array",
953                        "boolean",
954                        "integer",
955                        "number",
956                        "null",
957                        "object",
958                        "string"
959                    ]
960                }
961            },
962            "properties": {
963                "Oem": {
964                    "$ref": "#/definitions/PowerSupplyOemActions",
965                    "description": "The available OEM-specific actions for this resource.",
966                    "longDescription": "This property shall contain the available OEM-specific actions for this resource.",
967                    "versionAdded": "v1_3_0"
968                }
969            },
970            "type": "object"
971        },
972        "PowerSupplyOemActions": {
973            "additionalProperties": true,
974            "description": "The available OEM-specific actions for this resource.",
975            "longDescription": "This type shall contain the available OEM-specific actions for this resource.",
976            "patternProperties": {
977                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
978                    "description": "This property shall specify a valid odata or Redfish property.",
979                    "type": [
980                        "array",
981                        "boolean",
982                        "integer",
983                        "number",
984                        "null",
985                        "object",
986                        "string"
987                    ]
988                }
989            },
990            "properties": {},
991            "type": "object"
992        },
993        "PowerSupplyReset": {
994            "additionalProperties": false,
995            "description": "This action resets the targeted power supply.",
996            "longDescription": "This action shall reset a power supply specified by the `MemberId` from the `PowerSupplies` array.  A `GracefulRestart` `ResetType` shall reset the power supply but shall not affect the power output.  A `ForceRestart` `ResetType` can affect the power supply output.",
997            "parameters": {
998                "MemberId": {
999                    "description": "The `MemberId` of the power supply within the `PowerSupplies` array on which to perform the reset.",
1000                    "longDescription": "This parameter shall contain the identifier of the member within the `PowerSupplies` array on which to perform the reset.",
1001                    "requiredParameter": true,
1002                    "type": "string"
1003                },
1004                "ResetType": {
1005                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/ResetType",
1006                    "description": "The type of reset.",
1007                    "longDescription": "This parameter shall contain the type of reset.  The service can accept a request without the parameter and shall perform a `GracefulRestart`."
1008                }
1009            },
1010            "patternProperties": {
1011                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
1012                    "description": "This property shall specify a valid odata or Redfish property.",
1013                    "type": [
1014                        "array",
1015                        "boolean",
1016                        "integer",
1017                        "number",
1018                        "null",
1019                        "object",
1020                        "string"
1021                    ]
1022                }
1023            },
1024            "properties": {
1025                "target": {
1026                    "description": "Link to invoke action",
1027                    "format": "uri-reference",
1028                    "type": "string"
1029                },
1030                "title": {
1031                    "description": "Friendly action name",
1032                    "type": "string"
1033                }
1034            },
1035            "type": "object",
1036            "versionAdded": "v1_6_0"
1037        },
1038        "PowerSupplyType": {
1039            "enum": [
1040                "Unknown",
1041                "AC",
1042                "DC",
1043                "ACorDC"
1044            ],
1045            "enumDescriptions": {
1046                "AC": "Alternating Current (AC) power supply.",
1047                "ACorDC": "The power supply supports both DC and AC.",
1048                "DC": "Direct Current (DC) power supply.",
1049                "Unknown": "The power supply type cannot be determined."
1050            },
1051            "type": "string"
1052        },
1053        "Voltage": {
1054            "additionalProperties": false,
1055            "patternProperties": {
1056                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
1057                    "description": "This property shall specify a valid odata or Redfish property.",
1058                    "type": [
1059                        "array",
1060                        "boolean",
1061                        "integer",
1062                        "number",
1063                        "null",
1064                        "object",
1065                        "string"
1066                    ]
1067                }
1068            },
1069            "properties": {
1070                "@odata.id": {
1071                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/id"
1072                },
1073                "Actions": {
1074                    "$ref": "#/definitions/VoltageActions",
1075                    "description": "The available actions for this resource.",
1076                    "longDescription": "This property shall contain the available actions for this resource.",
1077                    "versionAdded": "v1_3_0"
1078                },
1079                "LowerThresholdCritical": {
1080                    "description": "The value at which the reading is below normal range but not yet fatal.",
1081                    "longDescription": "This property shall contain the value at which the `ReadingVolts` property is below the normal range but is not yet fatal.  The value of the property shall use the same units as the `ReadingVolts` property.",
1082                    "readonly": true,
1083                    "type": [
1084                        "number",
1085                        "null"
1086                    ],
1087                    "units": "V"
1088                },
1089                "LowerThresholdFatal": {
1090                    "description": "The value at which the reading is below normal range and fatal.",
1091                    "longDescription": "This property shall contain the value at which the `ReadingVolts` property is below the normal range and is fatal.  The value of the property shall use the same units as the `ReadingVolts` property.",
1092                    "readonly": true,
1093                    "type": [
1094                        "number",
1095                        "null"
1096                    ],
1097                    "units": "V"
1098                },
1099                "LowerThresholdNonCritical": {
1100                    "description": "The value at which the reading is below normal range.",
1101                    "longDescription": "This property shall contain the value at which the `ReadingVolts` property is below normal range.  The value of the property shall use the same units as the `ReadingVolts` property.",
1102                    "readonly": true,
1103                    "type": [
1104                        "number",
1105                        "null"
1106                    ],
1107                    "units": "V"
1108                },
1109                "MaxReadingRange": {
1110                    "description": "Maximum value for this sensor.",
1111                    "longDescription": "This property shall indicate the highest possible value for the `ReadingVolts` property.  The value of the property shall use the same units as the `ReadingVolts` property.",
1112                    "readonly": true,
1113                    "type": [
1114                        "number",
1115                        "null"
1116                    ],
1117                    "units": "V"
1118                },
1119                "MemberId": {
1120                    "description": "The unique identifier for the member within an array.",
1121                    "longDescription": "This property shall contain the unique identifier for this member within an array.  For services supporting Redfish v1.6 or higher, this value shall contain the zero-based array index.",
1122                    "readonly": true,
1123                    "type": "string"
1124                },
1125                "MinReadingRange": {
1126                    "description": "Minimum value for this sensor.",
1127                    "longDescription": "This property shall indicate the lowest possible value for the `ReadingVolts` property.  The value of the property shall use the same units as the `ReadingVolts` property.",
1128                    "readonly": true,
1129                    "type": [
1130                        "number",
1131                        "null"
1132                    ],
1133                    "units": "V"
1134                },
1135                "Name": {
1136                    "description": "Voltage sensor name.",
1137                    "longDescription": "This property shall contain the name of the voltage sensor.",
1138                    "readonly": true,
1139                    "type": [
1140                        "string",
1141                        "null"
1142                    ]
1143                },
1144                "Oem": {
1145                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem",
1146                    "description": "The OEM extension property.",
1147                    "longDescription": "This property shall contain the OEM extensions.  All values for properties that this object contains shall conform to the Redfish Specification-described requirements."
1148                },
1149                "PhysicalContext": {
1150                    "$ref": "http://redfish.dmtf.org/schemas/v1/PhysicalContext.json#/definitions/PhysicalContext",
1151                    "description": "The area or device to which this voltage measurement applies.",
1152                    "longDescription": "This property shall contain a description of the affected device or region within the chassis to which this voltage measurement applies.",
1153                    "readonly": true
1154                },
1155                "ReadingVolts": {
1156                    "description": "The reading of the voltage sensor.",
1157                    "longDescription": "This property shall contain the voltage sensor's reading.",
1158                    "readonly": true,
1159                    "type": [
1160                        "number",
1161                        "null"
1162                    ],
1163                    "units": "V"
1164                },
1165                "RelatedItem": {
1166                    "description": "An array of links to resources or objects to which this voltage measurement applies.",
1167                    "items": {
1168                        "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/idRef"
1169                    },
1170                    "longDescription": "This property shall contain an array of links to resources or objects to which this voltage measurement applies.",
1171                    "readonly": true,
1172                    "type": "array"
1173                },
1174                "RelatedItem@odata.count": {
1175                    "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count"
1176                },
1177                "SensorNumber": {
1178                    "description": "A numerical identifier to represent the voltage sensor.",
1179                    "longDescription": "This property shall contain a numerical identifier for this voltage sensor that is unique within this resource.",
1180                    "readonly": true,
1181                    "type": [
1182                        "integer",
1183                        "null"
1184                    ]
1185                },
1186                "Status": {
1187                    "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Status",
1188                    "description": "The status and health of the resource and its subordinate or dependent resources.",
1189                    "longDescription": "This property shall contain any status or health properties of the resource."
1190                },
1191                "UpperThresholdCritical": {
1192                    "description": "The value at which the reading is above normal range but not yet fatal.",
1193                    "longDescription": "This property shall contain the value at which the `ReadingVolts` property is above the normal range but is not yet fatal.  The value of the property shall use the same units as the `ReadingVolts` property.",
1194                    "readonly": true,
1195                    "type": [
1196                        "number",
1197                        "null"
1198                    ],
1199                    "units": "V"
1200                },
1201                "UpperThresholdFatal": {
1202                    "description": "The value at which the reading is above normal range and fatal.",
1203                    "longDescription": "This property shall contain the value at which the `ReadingVolts` property is above the normal range and is fatal.  The value of the property shall use the same units as the `ReadingVolts` property.",
1204                    "readonly": true,
1205                    "type": [
1206                        "number",
1207                        "null"
1208                    ],
1209                    "units": "V"
1210                },
1211                "UpperThresholdNonCritical": {
1212                    "description": "The value at which the reading is above normal range.",
1213                    "longDescription": "This property shall contain the value at which the `ReadingVolts` property is above the normal range.  The value of the property shall use the same units as the `ReadingVolts` property.",
1214                    "readonly": true,
1215                    "type": [
1216                        "number",
1217                        "null"
1218                    ],
1219                    "units": "V"
1220                }
1221            },
1222            "required": [
1223                "@odata.id",
1224                "MemberId"
1225            ],
1226            "type": "object"
1227        },
1228        "VoltageActions": {
1229            "additionalProperties": false,
1230            "description": "The available actions for this resource.",
1231            "longDescription": "This type shall contain the available actions for this resource.",
1232            "patternProperties": {
1233                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
1234                    "description": "This property shall specify a valid odata or Redfish property.",
1235                    "type": [
1236                        "array",
1237                        "boolean",
1238                        "integer",
1239                        "number",
1240                        "null",
1241                        "object",
1242                        "string"
1243                    ]
1244                }
1245            },
1246            "properties": {
1247                "Oem": {
1248                    "$ref": "#/definitions/VoltageOemActions",
1249                    "description": "The available OEM-specific actions for this resource.",
1250                    "longDescription": "This property shall contain the available OEM-specific actions for this resource.",
1251                    "versionAdded": "v1_3_0"
1252                }
1253            },
1254            "type": "object"
1255        },
1256        "VoltageOemActions": {
1257            "additionalProperties": true,
1258            "description": "The available OEM-specific actions for this resource.",
1259            "longDescription": "This type shall contain the available OEM-specific actions for this resource.",
1260            "patternProperties": {
1261                "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": {
1262                    "description": "This property shall specify a valid odata or Redfish property.",
1263                    "type": [
1264                        "array",
1265                        "boolean",
1266                        "integer",
1267                        "number",
1268                        "null",
1269                        "object",
1270                        "string"
1271                    ]
1272                }
1273            },
1274            "properties": {},
1275            "type": "object"
1276        }
1277    },
1278    "language": "en",
1279    "owningEntity": "DMTF",
1280    "release": "2020.4",
1281    "title": "#Power.v1_7_3.Power"
1282}