blob: dfa6282553399fbc61e1eae17e63167c015bc715 [file] [log] [blame]
Jason M. Billsea4aa752018-06-05 13:29:11 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################ -->
Gunnar Mills6f44b752020-02-06 16:50:51 -06004<!--# Redfish Schema: Power v1.6.0 -->
Jason M. Billsea4aa752018-06-05 13:29:11 -07005<!--# -->
6<!--# For a detailed change log, see the README file contained in the DSP8010 bundle, -->
7<!--# available at http://www.dmtf.org/standards/redfish -->
Ed Tanouscb103132019-10-08 11:34:22 -07008<!--# Copyright 2014-2019 DMTF. -->
Jason M. Billsea4aa752018-06-05 13:29:11 -07009<!--# For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright -->
10<!--################################################################################ -->
11<!---->
12<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0">
13
14 <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Core.V1.xml">
15 <edmx:Include Namespace="Org.OData.Core.V1" Alias="OData"/>
16 </edmx:Reference>
17 <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Capabilities.V1.xml">
18 <edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="Capabilities"/>
19 </edmx:Reference>
20 <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Measures.V1.xml">
21 <edmx:Include Namespace="Org.OData.Measures.V1" Alias="Measures"/>
22 </edmx:Reference>
23 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
24 <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
25 <edmx:Include Namespace="Validation.v1_0_0" Alias="Validation"/>
26 </edmx:Reference>
27 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
28 <edmx:Include Namespace="Resource"/>
29 <edmx:Include Namespace="Resource.v1_0_0"/>
30 </edmx:Reference>
31 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/PhysicalContext_v1.xml">
32 <edmx:Include Namespace="PhysicalContext"/>
33 </edmx:Reference>
34 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Redundancy_v1.xml">
35 <edmx:Include Namespace="Redundancy"/>
36 </edmx:Reference>
37 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Assembly_v1.xml">
38 <edmx:Include Namespace="Assembly"/>
39 </edmx:Reference>
40
41 <edmx:DataServices>
42
43 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power">
44 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
45
46 <EntityType Name="Power" BaseType="Resource.v1_0_0.Resource" Abstract="true">
Ed Tanouscb103132019-10-08 11:34:22 -070047 <Annotation Term="OData.Description" String="The Power schema describes power metrics and represents the properties for power consumption and power limiting."/>
48 <Annotation Term="OData.LongDescription" String="This Resource contains a Power Metrics Resource for a Redfish implementation."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070049 <Annotation Term="Capabilities.InsertRestrictions">
50 <Record>
51 <PropertyValue Property="Insertable" Bool="false"/>
52 </Record>
53 </Annotation>
54 <Annotation Term="Capabilities.UpdateRestrictions">
55 <Record>
56 <PropertyValue Property="Updatable" Bool="true"/>
Ed Tanouscb103132019-10-08 11:34:22 -070057 <Annotation Term="OData.Description" String="Any writable properties, such as limits and exceptions, can be updated for power metrics."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070058 </Record>
59 </Annotation>
60 <Annotation Term="Capabilities.DeleteRestrictions">
61 <Record>
62 <PropertyValue Property="Deletable" Bool="false"/>
63 </Record>
64 </Annotation>
Ed Tanous530520e2019-01-02 13:41:37 -080065 <Annotation Term="Redfish.Uris">
66 <Collection>
67 <String>/redfish/v1/Chassis/{ChassisId}/Power</String>
68 </Collection>
69 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -070070 </EntityType>
71
Gunnar Mills6f44b752020-02-06 16:50:51 -060072 <Action Name="PowerSupplyReset" IsBound="true">
73 <Parameter Name="Power" Type="Power.v1_3_0.Actions"/>
74 <Parameter Name="ResetType" Type="Resource.ResetType">
75 <Annotation Term="OData.Description" String="The type of reset."/>
76 <Annotation Term="OData.LongDescription" String="This parameter shall contain the type of reset. The Service may accept a request without the parameter and shall perform a `GracefulRestart`."/>
77 </Parameter>
78 <Parameter Name="MemberId" Type="Edm.String" Nullable="false">
79 <Annotation Term="OData.Description" String="The MemberId of the power supply within the PowerSupplies array on which to perform the reset."/>
80 <Annotation Term="OData.LongDescription" String="This parameter shall contain the identifier of the member within the PowerSupplies array on which to perform the reset."/>
81 </Parameter>
82 <Annotation Term="OData.Description" String="This action resets the targeted power supply."/>
83 <Annotation Term="OData.LongDescription" String="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 may affect the power supply output."/>
84 <Annotation Term="Redfish.Revisions">
85 <Collection>
86 <Record>
87 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
88 <PropertyValue Property="Version" String="v1_6_0"/>
89 </Record>
90 </Collection>
91 </Annotation>
92 </Action>
Jason M. Billsea4aa752018-06-05 13:29:11 -070093 </Schema>
94
95 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_0_0">
96 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060097 <Annotation Term="Redfish.Release" String="1.0"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070098
99 <EntityType Name="Power" BaseType="Power.Power">
100 <NavigationProperty Name="PowerControl" Type="Collection(Power.v1_0_0.PowerControl)" ContainsTarget="true">
Ed Tanouscb103132019-10-08 11:34:22 -0700101 <Annotation Term="OData.Description" String="The set of power control functions, including power reading and limiting."/>
102 <Annotation Term="OData.LongDescription" String="This property shall contain the set of power control readings and settings."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700103 <Annotation Term="OData.AutoExpand"/>
104 </NavigationProperty>
105 <NavigationProperty Name="Voltages" Type="Collection(Power.v1_0_0.Voltage)" ContainsTarget="true">
Ed Tanouscb103132019-10-08 11:34:22 -0700106 <Annotation Term="OData.Description" String="The set of voltage sensors for this chassis."/>
107 <Annotation Term="OData.LongDescription" String="This property shall contain the set of voltage sensors for this chassis."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700108 <Annotation Term="OData.AutoExpand"/>
109 </NavigationProperty>
110 <NavigationProperty Name="PowerSupplies" Type="Collection(Power.v1_0_0.PowerSupply)" ContainsTarget="true">
Ed Tanouscb103132019-10-08 11:34:22 -0700111 <Annotation Term="OData.Description" String="The set of power supplies associated with this system or device."/>
112 <Annotation Term="OData.LongDescription" String="This property shall contain the set of power supplies associated with this system or device."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700113 <Annotation Term="OData.AutoExpand"/>
114 </NavigationProperty>
115 <NavigationProperty Name="Redundancy" Type="Collection(Redundancy.Redundancy)" ContainsTarget="true">
Ed Tanouscb103132019-10-08 11:34:22 -0700116 <Annotation Term="OData.Description" String="The redundancy information for the set of power supplies in this chassis."/>
117 <Annotation Term="OData.LongDescription" String="This property shall contain redundancy information for the set of power supplies in this system or device."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700118 <Annotation Term="OData.AutoExpand"/>
119 </NavigationProperty>
120 </EntityType>
121
122 <EntityType Name="PowerControl" BaseType="Resource.v1_0_0.ReferenceableMember">
123 <Property Name="Name" Type="Edm.String">
124 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700125 <Annotation Term="OData.Description" String="The power control function name."/>
126 <Annotation Term="OData.LongDescription" String="This property shall contain the name of the power control function name."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700127 </Property>
128 <Property Name="PowerConsumedWatts" Type="Edm.Decimal">
129 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700130 <Annotation Term="OData.Description" String="The actual power that the chassis consumes, in watts."/>
131 <Annotation Term="OData.LongDescription" String="This property shall represent the actual power that the chassis consumes, in watts."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700132 <Annotation Term="Validation.Minimum" Int="0"/>
133 <Annotation Term="Measures.Unit" String="W"/>
134 </Property>
135 <Property Name="PowerRequestedWatts" Type="Edm.Decimal">
136 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700137 <Annotation Term="OData.Description" String="The potential power, in watts, that the chassis requests, which may be higher than the current level being consumed because the requested power includes a budget that the chassis wants for future use."/>
138 <Annotation Term="OData.LongDescription" String="This property shall represent the amount of power, in watts, that the chassis currently requests to be budgeted for future use."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700139 <Annotation Term="Validation.Minimum" Int="0"/>
140 <Annotation Term="Measures.Unit" String="W"/>
141 </Property>
142 <Property Name="PowerAvailableWatts" Type="Edm.Decimal">
143 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700144 <Annotation Term="OData.Description" String="The amount of reserve power capacity, in watts, that remains. This value is the PowerCapacity value minus the PowerAllocated value."/>
145 <Annotation Term="OData.LongDescription" String="This property shall represent the amount of reserve power capacity, in watts, that remains. This value is the PowerCapacity value minus the PowerAllocated value."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700146 <Annotation Term="Validation.Minimum" Int="0"/>
147 <Annotation Term="Measures.Unit" String="W"/>
148 </Property>
149 <Property Name="PowerCapacityWatts" Type="Edm.Decimal">
150 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700151 <Annotation Term="OData.Description" String="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."/>
152 <Annotation Term="OData.LongDescription" String="This property shall represent the total power capacity that can be allocated to the chassis."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700153 <Annotation Term="Validation.Minimum" Int="0"/>
154 <Annotation Term="Measures.Unit" String="W"/>
155 </Property>
156 <Property Name="PowerAllocatedWatts" Type="Edm.Decimal">
157 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700158 <Annotation Term="OData.Description" String="The total amount of power that has been allocated or budgeted to chassis."/>
159 <Annotation Term="OData.LongDescription" String="This property shall represent the total power currently allocated or budgeted to the chassis."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700160 <Annotation Term="Validation.Minimum" Int="0"/>
161 <Annotation Term="Measures.Unit" String="W"/>
162 </Property>
163 <Property Name="PowerMetrics" Type="Power.v1_0_0.PowerMetric" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700164 <Annotation Term="OData.Description" String="The power readings for this chassis."/>
165 <Annotation Term="OData.LongDescription" String="This property shall contain power metrics for power readings, such as interval, minimum, maximum, and average power consumption, for the chassis."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700166 </Property>
167 <Property Name="PowerLimit" Type="Power.v1_0_0.PowerLimit" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700168 <Annotation Term="OData.Description" String="The power limit status and configuration information for this chassis."/>
169 <Annotation Term="OData.LongDescription" String="This property shall contain power limit status and configuration information for this chassis."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700170 </Property>
Ed Tanous530520e2019-01-02 13:41:37 -0800171 <Property Name="Status" Type="Resource.Status" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700172 <Annotation Term="OData.Description" String="The status and health of the Resource and its subordinate or dependent Resources."/>
173 <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800174 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700175 <NavigationProperty Name="RelatedItem" Type="Collection(Resource.Item)">
176 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700177 <Annotation Term="OData.Description" String="An array of one or more IDs of the Resources associated with this power limit."/>
178 <Annotation Term="OData.LongDescription" String="This property shall contain an array of IDs for pointers consistent with JSON Pointer syntax to the Resource that is being limited."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700179 <Annotation Term="OData.AutoExpandReferences"/>
180 </NavigationProperty>
181 </EntityType>
182
183 <ComplexType Name="PowerMetric">
Ed Tanouscb103132019-10-08 11:34:22 -0700184 <Annotation Term="OData.Description" String="The power metrics for a Resource."/>
185 <Annotation Term="OData.LongDescription" String="This type shall contain power metrics for power readings, such as interval, minimum, maximum, and average power consumption, for a Resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700186 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
187 <Property Name="IntervalInMin" Type="Edm.Int64">
188 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700189 <Annotation Term="OData.Description" String="The time interval, or window, over which the power metrics are measured."/>
190 <Annotation Term="OData.LongDescription" String="This property shall represent the time interval or window, in minutes, over which the power metrics are measured."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700191 <Annotation Term="Measures.Unit" String="min"/>
192 <Annotation Term="Validation.Minimum" Int="0"/>
193 </Property>
194 <Property Name="MinConsumedWatts" Type="Edm.Decimal">
195 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700196 <Annotation Term="OData.Description" String="The lowest power consumption level, in watts, over the measurement window that occurred within the last IntervalInMin minutes."/>
197 <Annotation Term="OData.LongDescription" String="This property shall represent the minimum power level, in watts, that occurred within the last IntervalInMin minutes."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700198 <Annotation Term="Measures.Unit" String="W"/>
199 <Annotation Term="Validation.Minimum" Int="0"/>
200 </Property>
201 <Property Name="MaxConsumedWatts" Type="Edm.Decimal">
202 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700203 <Annotation Term="OData.Description" String="The highest power consumption level, in watts, that has occurred over the measurement window within the last IntervalInMin minutes."/>
204 <Annotation Term="OData.LongDescription" String="This property shall represent the maximum power level, in watts, that occurred within the last IntervalInMin minutes."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700205 <Annotation Term="Measures.Unit" String="W"/>
206 <Annotation Term="Validation.Minimum" Int="0"/>
207 </Property>
208 <Property Name="AverageConsumedWatts" Type="Edm.Decimal">
209 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700210 <Annotation Term="OData.Description" String="The average power level over the measurement window over the last IntervalInMin minutes."/>
211 <Annotation Term="OData.LongDescription" String="This property shall represent the average power level that occurred over the last IntervalInMin minutes."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700212 <Annotation Term="Measures.Unit" String="W"/>
213 <Annotation Term="Validation.Minimum" Int="0"/>
214 </Property>
215 </ComplexType>
216
217 <ComplexType Name="PowerLimit">
Ed Tanouscb103132019-10-08 11:34:22 -0700218 <Annotation Term="OData.Description" String="The power limit status and configuration information for the chassis."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700219 <Annotation Term="OData.LongDescription" String="This type shall contain power limit status and configuration information for this chassis."/>
220 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
221 <Property Name="LimitInWatts" Type="Edm.Decimal">
222 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700223 <Annotation Term="OData.Description" String="The power limit, in watts. If `null`, power capping is disabled."/>
224 <Annotation Term="OData.LongDescription" String="This property shall represent the power capping limit, in watts, for the Resource. If `null`, power capping shall be disabled."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700225 <Annotation Term="Measures.Unit" String="W"/>
226 <Annotation Term="Validation.Minimum" Int="0"/>
227 </Property>
228 <Property Name="LimitException" Type="Power.v1_0_0.PowerLimitException">
229 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
230 <Annotation Term="OData.Description" String="The action that is taken if the power cannot be maintained below the LimitInWatts."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700231 <Annotation Term="OData.LongDescription" String="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."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700232 </Property>
233 <Property Name="CorrectionInMs" Type="Edm.Int64">
234 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
235 <Annotation Term="OData.Description" String="The time required for the limiting process to reduce power consumption to below the limit."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700236 <Annotation Term="OData.LongDescription" String="This property shall represent the time interval in ms required for the limiting process to react and reduce the power consumption below the limit."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700237 <Annotation Term="Measures.Unit" String="ms"/>
238 </Property>
239 </ComplexType>
240
241 <EnumType Name="PowerLimitException">
242 <Member Name="NoAction">
243 <Annotation Term="OData.Description" String="Take no action when the limit is exceeded."/>
244 </Member>
245 <Member Name="HardPowerOff">
246 <Annotation Term="OData.Description" String="Turn the power off immediately when the limit is exceeded."/>
247 </Member>
248 <Member Name="LogEventOnly">
249 <Annotation Term="OData.Description" String="Log an event when the limit is exceeded, but take no further action."/>
250 </Member>
251 <Member Name="Oem">
252 <Annotation Term="OData.Description" String="Take an OEM-defined action."/>
253 </Member>
254 </EnumType>
255
256 <EntityType Name="Voltage" BaseType="Resource.v1_0_0.ReferenceableMember">
257 <Property Name="Name" Type="Edm.String">
258 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
259 <Annotation Term="OData.Description" String="Voltage sensor name."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700260 <Annotation Term="OData.LongDescription" String="This property shall contain the name of the Voltage sensor."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700261 </Property>
262 <Property Name="SensorNumber" Type="Edm.Int64">
263 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
264 <Annotation Term="OData.Description" String="A numerical identifier to represent the voltage sensor."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700265 <Annotation Term="OData.LongDescription" String="This property shall contain a numerical identifier for this voltage sensor that is unique within this Resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700266 </Property>
Ed Tanous530520e2019-01-02 13:41:37 -0800267 <Property Name="Status" Type="Resource.Status" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700268 <Annotation Term="OData.Description" String="The status and health of the Resource and its subordinate or dependent Resources."/>
269 <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800270 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700271 <Property Name="ReadingVolts" Type="Edm.Decimal">
272 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700273 <Annotation Term="OData.Description" String="The reading of the voltage sensor."/>
274 <Annotation Term="OData.LongDescription" String="This property shall contain the voltage sensor's reading."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700275 <Annotation Term="Measures.Unit" String="V"/>
276 </Property>
277 <Property Name="UpperThresholdNonCritical" Type="Edm.Decimal">
278 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700279 <Annotation Term="OData.Description" String="The value at which the reading is above normal range."/>
280 <Annotation Term="OData.LongDescription" String="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."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700281 <Annotation Term="Measures.Unit" String="V"/>
282 </Property>
283 <Property Name="UpperThresholdCritical" Type="Edm.Decimal">
284 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700285 <Annotation Term="OData.Description" String="The value at which the reading is above normal range but not yet fatal."/>
286 <Annotation Term="OData.LongDescription" String="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."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700287 <Annotation Term="Measures.Unit" String="V"/>
288 </Property>
289 <Property Name="UpperThresholdFatal" Type="Edm.Decimal">
290 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700291 <Annotation Term="OData.Description" String="The value at which the reading is above normal range and fatal."/>
292 <Annotation Term="OData.LongDescription" String="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."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700293 <Annotation Term="Measures.Unit" String="V"/>
294 </Property>
295 <Property Name="LowerThresholdNonCritical" Type="Edm.Decimal">
296 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700297 <Annotation Term="OData.Description" String="The value at which the reading is below normal range."/>
298 <Annotation Term="OData.LongDescription" String="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."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700299 <Annotation Term="Measures.Unit" String="V"/>
300 </Property>
301 <Property Name="LowerThresholdCritical" Type="Edm.Decimal">
302 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700303 <Annotation Term="OData.Description" String="The value at which the reading is below normal range but not yet fatal."/>
304 <Annotation Term="OData.LongDescription" String="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."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700305 <Annotation Term="Measures.Unit" String="V"/>
306 </Property>
307 <Property Name="LowerThresholdFatal" Type="Edm.Decimal">
308 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700309 <Annotation Term="OData.Description" String="The value at which the reading is below normal range and fatal."/>
310 <Annotation Term="OData.LongDescription" String="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."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700311 <Annotation Term="Measures.Unit" String="V"/>
312 </Property>
313 <Property Name="MinReadingRange" Type="Edm.Decimal">
314 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700315 <Annotation Term="OData.Description" String="Minimum value for this sensor."/>
316 <Annotation Term="OData.LongDescription" String="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."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700317 <Annotation Term="Measures.Unit" String="V"/>
318 </Property>
319 <Property Name="MaxReadingRange" Type="Edm.Decimal">
320 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700321 <Annotation Term="OData.Description" String="Maximum value for this sensor."/>
322 <Annotation Term="OData.LongDescription" String="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."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700323 <Annotation Term="Measures.Unit" String="V"/>
324 </Property>
325 <Property Name="PhysicalContext" Type="PhysicalContext.PhysicalContext" Nullable="false">
326 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700327 <Annotation Term="OData.Description" String="The area or device to which this voltage measurement applies."/>
328 <Annotation Term="OData.LongDescription" String="This property shall contain a description of the affected device or region within the chassis to which this voltage measurement applies."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700329 </Property>
330 <NavigationProperty Name="RelatedItem" Type="Collection(Resource.Item)">
331 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700332 <Annotation Term="OData.Description" String="The areas or devices to which this voltage measurement applies."/>
333 <Annotation Term="OData.LongDescription" String="This property shall contain an array of IDs for pointers consistent with JSON Pointer syntax to the areas or devices to which this voltage measurement applies."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700334 <Annotation Term="OData.AutoExpandReferences"/>
335 </NavigationProperty>
336 </EntityType>
337
338 <EntityType Name="PowerSupply" BaseType="Resource.v1_0_0.ReferenceableMember">
339 <Annotation Term="OData.Description" String="Details of a power supplies associated with this system or device."/>
340 <Property Name="Name" Type="Edm.String">
341 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700342 <Annotation Term="OData.Description" String="The name of the power supply."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700343 <Annotation Term="OData.LongDescription" String="This property shall contain a descriptive name for the associated power supply."/>
344 </Property>
345 <Property Name="PowerSupplyType" Type="Power.v1_0_0.PowerSupplyType">
346 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700347 <Annotation Term="OData.Description" String="The power supply type (AC or DC)."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700348 <Annotation Term="OData.LongDescription" String="This property shall contain the input power type (AC or DC) of the associated power supply."/>
349 </Property>
350 <Property Name="LineInputVoltageType" Type="Power.v1_0_0.LineInputVoltageType">
351 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700352 <Annotation Term="OData.Description" String="The line voltage type supported as an input to this power supply."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700353 <Annotation Term="OData.LongDescription" String="This property shall contain the type of input line voltage supported by the associated power supply."/>
354 </Property>
355 <Property Name="LineInputVoltage" Type="Edm.Decimal">
356 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700357 <Annotation Term="OData.Description" String="The line input voltage at which the power supply is operating."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700358 <Annotation Term="OData.LongDescription" String="This property shall contain the value in Volts of the line input voltage (measured or configured for) that the power supply has been configured to operate with or is currently receiving."/>
359 <Annotation Term="Measures.Unit" String="V"/>
360 </Property>
361 <Property Name="PowerCapacityWatts" Type="Edm.Decimal">
362 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700363 <Annotation Term="OData.Description" String="The maximum capacity of this power supply."/>
364 <Annotation Term="OData.LongDescription" String="This property shall contain the maximum amount of power, in watts, that the associated power supply is rated to deliver."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700365 <Annotation Term="Measures.Unit" String="W"/>
366 <Annotation Term="Validation.Minimum" Int="0"/>
367 </Property>
368 <Property Name="LastPowerOutputWatts" Type="Edm.Decimal">
369 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700370 <Annotation Term="OData.Description" String="The average power output of this power supply."/>
371 <Annotation Term="OData.LongDescription" String="This property shall contain the average power output, measured in watts, of the associated power supply."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700372 <Annotation Term="Measures.Unit" String="W"/>
373 <Annotation Term="Validation.Minimum" Int="0"/>
374 </Property>
375 <Property Name="Model" Type="Edm.String">
376 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700377 <Annotation Term="OData.Description" String="The model number for this power supply."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700378 <Annotation Term="OData.LongDescription" String="This property shall contain the model information as defined by the manufacturer for the associated power supply."/>
379 </Property>
380 <Property Name="FirmwareVersion" Type="Edm.String">
381 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700382 <Annotation Term="OData.Description" String="The firmware version for this power supply."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700383 <Annotation Term="OData.LongDescription" String="This property shall contain the firwmare version as defined by the manufacturer for the associated power supply."/>
384 </Property>
385 <Property Name="SerialNumber" Type="Edm.String">
386 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700387 <Annotation Term="OData.Description" String="The serial number for this power supply."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700388 <Annotation Term="OData.LongDescription" String="This property shall contain the serial number as defined by the manufacturer for the associated power supply."/>
389 </Property>
390 <Property Name="PartNumber" Type="Edm.String">
391 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700392 <Annotation Term="OData.Description" String="The part number for this power supply."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700393 <Annotation Term="OData.LongDescription" String="This property shall contain the part number as defined by the manufacturer for the associated power supply."/>
394 </Property>
395 <Property Name="SparePartNumber" Type="Edm.String">
396 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700397 <Annotation Term="OData.Description" String="The spare part number for this power supply."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700398 <Annotation Term="OData.LongDescription" String="This property shall contain the spare or replacement part number as defined by the manufacturer for the associated power supply."/>
399 </Property>
Ed Tanous530520e2019-01-02 13:41:37 -0800400 <Property Name="Status" Type="Resource.Status" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700401 <Annotation Term="OData.Description" String="The status and health of the Resource and its subordinate or dependent Resources."/>
402 <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800403 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700404 <NavigationProperty Name="RelatedItem" Type="Collection(Resource.Item)">
Ed Tanouscb103132019-10-08 11:34:22 -0700405 <Annotation Term="OData.Description" String="The ID(s) of the Resources associated with this power limit."/>
406 <Annotation Term="OData.LongDescription" String="This property shall contain an array of IDs for pointers consistent with JSON Pointer syntax to the Resource that is being limited."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700407 <Annotation Term="OData.AutoExpandReferences"/>
408 </NavigationProperty>
409 <NavigationProperty Name="Redundancy" Type="Collection(Redundancy.Redundancy)">
Ed Tanouscb103132019-10-08 11:34:22 -0700410 <Annotation Term="OData.Description" String="The set of redundancy groups for this power supply."/>
411 <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to the redundancy groups to which this power supply belongs."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700412 <Annotation Term="OData.AutoExpandReferences"/>
413 </NavigationProperty>
414 </EntityType>
415
416 <EnumType Name="PowerSupplyType">
417 <Member Name="Unknown">
418 <Annotation Term="OData.Description" String="The power supply type cannot be determined."/>
419 </Member>
420 <Member Name="AC">
421 <Annotation Term="OData.Description" String="Alternating Current (AC) power supply."/>
422 </Member>
423 <Member Name="DC">
424 <Annotation Term="OData.Description" String="Direct Current (DC) power supply."/>
425 </Member>
426 <Member Name="ACorDC">
Ed Tanouscb103132019-10-08 11:34:22 -0700427 <Annotation Term="OData.Description" String="The power supply supports both DC or AC."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700428 </Member>
429 </EnumType>
430
431 <EnumType Name="LineInputVoltageType">
432 <Member Name="Unknown">
433 <Annotation Term="OData.Description" String="The power supply line input voltage type cannot be determined."/>
434 </Member>
435 <Member Name="ACLowLine">
436 <Annotation Term="OData.Description" String="100-127V AC input."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600437 <Annotation Term="Redfish.Revisions">
438 <Collection>
439 <Record>
440 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
441 <PropertyValue Property="Version" String="v1_1_0"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700442 <PropertyValue Property="Description" String="This value has been deprecated in favor of AC120V."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600443 </Record>
444 </Collection>
445 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700446 </Member>
447 <Member Name="ACMidLine">
448 <Annotation Term="OData.Description" String="200-240V AC input."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600449 <Annotation Term="Redfish.Revisions">
450 <Collection>
451 <Record>
452 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
453 <PropertyValue Property="Version" String="v1_1_0"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700454 <PropertyValue Property="Description" String="This value has been deprecated in favor of AC240V."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600455 </Record>
456 </Collection>
457 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700458 </Member>
459 <Member Name="ACHighLine">
460 <Annotation Term="OData.Description" String="277V AC input."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600461 <Annotation Term="Redfish.Revisions">
462 <Collection>
463 <Record>
464 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
465 <PropertyValue Property="Version" String="v1_1_0"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700466 <PropertyValue Property="Description" String="This value has been deprecated in favor of AC277V."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600467 </Record>
468 </Collection>
469 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700470 </Member>
471 <Member Name="DCNeg48V">
472 <Annotation Term="OData.Description" String="-48V DC input."/>
473 </Member>
474 <Member Name="DC380V">
475 <Annotation Term="OData.Description" String="High Voltage DC input (380V)."/>
476 </Member>
477 <Member Name="AC120V">
478 <Annotation Term="OData.Description" String="AC 120V nominal input."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600479 <Annotation Term="Redfish.Revisions">
480 <Collection>
481 <Record>
482 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
483 <PropertyValue Property="Version" String="v1_1_0"/>
484 </Record>
485 </Collection>
486 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700487 </Member>
488 <Member Name="AC240V">
489 <Annotation Term="OData.Description" String="AC 240V nominal input."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600490 <Annotation Term="Redfish.Revisions">
491 <Collection>
492 <Record>
493 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
494 <PropertyValue Property="Version" String="v1_1_0"/>
495 </Record>
496 </Collection>
497 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700498 </Member>
499 <Member Name="AC277V">
500 <Annotation Term="OData.Description" String="AC 277V nominal input."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600501 <Annotation Term="Redfish.Revisions">
502 <Collection>
503 <Record>
504 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
505 <PropertyValue Property="Version" String="v1_1_0"/>
506 </Record>
507 </Collection>
508 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700509 </Member>
510 <Member Name="ACandDCWideRange">
511 <Annotation Term="OData.Description" String="Wide range AC or DC input."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600512 <Annotation Term="Redfish.Revisions">
513 <Collection>
514 <Record>
515 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
516 <PropertyValue Property="Version" String="v1_1_0"/>
517 </Record>
518 </Collection>
519 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700520 </Member>
521 <Member Name="ACWideRange">
522 <Annotation Term="OData.Description" String="Wide range AC input."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600523 <Annotation Term="Redfish.Revisions">
524 <Collection>
525 <Record>
526 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
527 <PropertyValue Property="Version" String="v1_1_0"/>
528 </Record>
529 </Collection>
530 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700531 </Member>
532 <Member Name="DC240V">
533 <Annotation Term="OData.Description" String="DC 240V nominal input."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600534 <Annotation Term="Redfish.Revisions">
535 <Collection>
536 <Record>
537 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
538 <PropertyValue Property="Version" String="v1_1_0"/>
539 </Record>
540 </Collection>
541 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700542 </Member>
543 </EnumType>
544
545 </Schema>
546
547 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_0_1">
548 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700549 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700550 <EntityType Name="Power" BaseType="Power.v1_0_0.Power"/>
551 </Schema>
552
553 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_0_2">
554 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700555 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700556 <EntityType Name="Power" BaseType="Power.v1_0_1.Power"/>
557 </Schema>
558
559 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_0_3">
560 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
561 <Annotation Term="OData.Description" String="This version was created to add explicit Permissions annotations to all properties for clarity."/>
562 <EntityType Name="Power" BaseType="Power.v1_0_2.Power"/>
563 </Schema>
564
565 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_0_4">
566 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700567 <Annotation Term="OData.Description" String="This version was created to remove the Nullable facet on NavigationProperties of the Collection type and to use Redfish.Deprecated on certain enumerated values."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700568 <EntityType Name="Power" BaseType="Power.v1_0_3.Power"/>
569 </Schema>
570
571 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_0_5">
572 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
573 <Annotation Term="OData.Description" String="This version was created to remove the AutoExpand annotation for the Redundancy property inside PowerSupply."/>
574 <EntityType Name="Power" BaseType="Power.v1_0_4.Power"/>
575 </Schema>
576
577 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_0_6">
578 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700579 <Annotation Term="OData.Description" String="This version was created to change PhysicalContext to use the unversioned definition."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700580 <EntityType Name="Power" BaseType="Power.v1_0_5.Power"/>
581 </Schema>
582
Ed Tanous530520e2019-01-02 13:41:37 -0800583 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_0_7">
584 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
585 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/>
586 <EntityType Name="Power" BaseType="Power.v1_0_6.Power"/>
587 </Schema>
588
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600589 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_0_8">
590 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700591 <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation. It was also created to fix PowerMetrics/PowerMetric description, not to use abbreviated terms."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600592 <EntityType Name="Power" BaseType="Power.v1_0_7.Power"/>
593 </Schema>
594
Ed Tanouscb103132019-10-08 11:34:22 -0700595 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_0_9">
596 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
597 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/>
598 <EntityType Name="Power" BaseType="Power.v1_0_8.Power"/>
599 </Schema>
600
601 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_0_10">
602 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
603 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
604 <EntityType Name="Power" BaseType="Power.v1_0_9.Power"/>
605 </Schema>
606
Jason M. Billsea4aa752018-06-05 13:29:11 -0700607 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_1_0">
608 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600609 <Annotation Term="Redfish.Release" String="2016.1"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700610
611 <EntityType Name="Power" BaseType="Power.v1_0_2.Power"/>
612 <EntityType Name="PowerSupply" BaseType="Power.v1_0_0.PowerSupply">
613 <Property Name="Manufacturer" Type="Edm.String">
614 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700615 <Annotation Term="OData.Description" String="The manufacturer of this power supply."/>
616 <Annotation Term="OData.LongDescription" String="This property shall contain the name of the organization responsible for producing the power supply. This organization might be the entity from whom the power supply is purchased, but this is not necessarily true."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700617 </Property>
618 <Property Name="InputRanges" Type="Collection(Power.v1_1_0.InputRange)" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700619 <Annotation Term="OData.Description" String="The input ranges that the power supply can use."/>
620 <Annotation Term="OData.LongDescription" String="This property shall contain a collection of ranges usable by the power supply unit."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700621 </Property>
622 </EntityType>
623
624 <ComplexType Name="InputRange">
625 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
626 <Annotation Term="OData.Description" String="This type describes an input range for a power supply."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700627 <Annotation Term="OData.LongDescription" String="This type shall describe an input range that the associated power supply can utilize."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700628 <Property Name="InputType" Type="Power.v1_1_0.InputType">
629 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
630 <Annotation Term="OData.Description" String="The Input type (AC or DC)."/>
631 <Annotation Term="OData.LongDescription" String="This property shall contain the input type (AC or DC) of the associated range."/>
632 </Property>
633 <Property Name="MinimumVoltage" Type="Edm.Decimal">
634 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
635 <Annotation Term="OData.Description" String="The minimum line input voltage at which this power supply input range is effective."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700636 <Annotation Term="OData.LongDescription" String="This property shall contain the value, in volts, of the minimum line input voltage that the power supply is capable of consuming for this range."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700637 <Annotation Term="Measures.Unit" String="V"/>
638 </Property>
639 <Property Name="MaximumVoltage" Type="Edm.Decimal">
640 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
641 <Annotation Term="OData.Description" String="The maximum line input voltage at which this power supply input range is effective."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700642 <Annotation Term="OData.LongDescription" String="This property shall contain the value, in volts, of the maximum line input voltage that the power supply is capable of consuming for this range."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700643 <Annotation Term="Measures.Unit" String="V"/>
644 </Property>
645 <Property Name="MinimumFrequencyHz" Type="Edm.Decimal">
646 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
647 <Annotation Term="OData.Description" String="The minimum line input frequency at which this power supply input range is effective."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700648 <Annotation Term="OData.LongDescription" String="This property shall contain the value, in Hertz, of the minimum line input frequency that the power supply is capable of consuming for this range."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700649 <Annotation Term="Measures.Unit" String="Hz"/>
650 <Annotation Term="Validation.Minimum" Int="0"/>
651 </Property>
652 <Property Name="MaximumFrequencyHz" Type="Edm.Decimal">
653 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
654 <Annotation Term="OData.Description" String="The maximum line input frequency at which this power supply input range is effective."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700655 <Annotation Term="OData.LongDescription" String="This property shall contain the value, in Hertz, of the maximum line input frequency that the power supply is capable of consuming for this range."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700656 <Annotation Term="Measures.Unit" String="Hz"/>
657 <Annotation Term="Validation.Minimum" Int="0"/>
658 </Property>
659 <Property Name="OutputWattage" Type="Edm.Decimal">
660 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700661 <Annotation Term="OData.Description" String="The maximum capacity of this power supply when operating in this input range."/>
662 <Annotation Term="OData.LongDescription" String="This property shall contain the maximum amount of power, in watts, that the associated power supply is rated to deliver while operating in this input range."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700663 <Annotation Term="Measures.Unit" String="W"/>
664 <Annotation Term="Validation.Minimum" Int="0"/>
665 </Property>
Ed Tanous530520e2019-01-02 13:41:37 -0800666 <Property Name="Oem" Type="Resource.Oem" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700667 <Annotation Term="OData.Description" String="The OEM extension property."/>
668 <Annotation Term="OData.LongDescription" String="This property shall contain the OEM extensions. All values for properties contained in this object shall conform to the Redfish Specification-described requirements."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800669 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700670 </ComplexType>
671
672 <EnumType Name="InputType">
673 <Member Name="AC">
674 <Annotation Term="OData.Description" String="Alternating Current (AC) input range."/>
675 </Member>
676 <Member Name="DC">
677 <Annotation Term="OData.Description" String="Direct Current (DC) input range."/>
678 </Member>
679 </EnumType>
680
681 </Schema>
682
683 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_1_1">
684 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
685 <Annotation Term="OData.Description" String="This version was created to add explicit Permissions annotations to all properties for clarity."/>
686 <EntityType Name="Power" BaseType="Power.v1_1_0.Power"/>
687 </Schema>
688
689 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_1_2">
690 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700691 <Annotation Term="OData.Description" String="This version was created to remove the Nullable facet on NavigationProperties of the Collection type and to use Redfish.Deprecated on certain enumerated values."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700692 <EntityType Name="Power" BaseType="Power.v1_1_1.Power"/>
693 </Schema>
694
695 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_1_3">
696 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
697 <Annotation Term="OData.Description" String="This version was created to remove the AutoExpand annotation for the Redundancy property inside PowerSupply."/>
698 <EntityType Name="Power" BaseType="Power.v1_1_2.Power"/>
699 </Schema>
700
701 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_1_4">
702 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700703 <Annotation Term="OData.Description" String="This version was created to change PhysicalContext to use the unversioned definition."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700704 <EntityType Name="Power" BaseType="Power.v1_1_3.Power"/>
705 </Schema>
706
Ed Tanous530520e2019-01-02 13:41:37 -0800707 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_1_5">
708 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
709 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/>
710 <EntityType Name="Power" BaseType="Power.v1_1_4.Power"/>
711 </Schema>
712
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600713 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_1_6">
714 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700715 <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation. It was also created to fix PowerMetrics/PowerMetric description, not to use abbreviated terms."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600716 <EntityType Name="Power" BaseType="Power.v1_1_5.Power"/>
717 </Schema>
718
Ed Tanouscb103132019-10-08 11:34:22 -0700719 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_1_7">
720 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
721 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/>
722 <EntityType Name="Power" BaseType="Power.v1_1_6.Power"/>
723 </Schema>
724
725 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_1_8">
726 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
727 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
728 <EntityType Name="Power" BaseType="Power.v1_1_7.Power"/>
729 </Schema>
730
Jason M. Billsea4aa752018-06-05 13:29:11 -0700731 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_2_0">
732 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600733 <Annotation Term="Redfish.Release" String="2016.2"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700734 <EntityType Name="Power" BaseType="Power.v1_1_0.Power"/>
735
736 <EntityType Name="PowerSupply" BaseType="Power.v1_1_0.PowerSupply">
737 <Property Name="IndicatorLED" Type="Resource.IndicatorLED">
738 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700739 <Annotation Term="OData.Description" String="The state of The indicator LED, which identifies the power supply."/>
740 <Annotation Term="OData.LongDescription" String="This property shall contain the indicator light state for the indicator light associated with this power supply."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700741 </Property>
742 </EntityType>
743
744 </Schema>
745
746 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_2_1">
747 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
748 <Annotation Term="OData.Description" String="This version was created to add explicit Permissions annotations to all properties for clarity."/>
749 <EntityType Name="Power" BaseType="Power.v1_2_0.Power"/>
750 </Schema>
751
752 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_2_2">
753 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700754 <Annotation Term="OData.Description" String="This version was created to remove the Nullable facet on NavigationProperties of the Collection type and to use Redfish.Deprecated on certain enumerated values."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700755 <EntityType Name="Power" BaseType="Power.v1_2_1.Power"/>
756 </Schema>
757
758 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_2_3">
759 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
760 <Annotation Term="OData.Description" String="This version was created to remove the AutoExpand annotation for the Redundancy property inside PowerSupply."/>
761 <EntityType Name="Power" BaseType="Power.v1_2_2.Power"/>
762 </Schema>
763
764 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_2_4">
765 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700766 <Annotation Term="OData.Description" String="This version was created to change PhysicalContext and IndicatorLED to use the unversioned definition."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700767 <EntityType Name="Power" BaseType="Power.v1_2_3.Power"/>
768 </Schema>
769
Ed Tanous530520e2019-01-02 13:41:37 -0800770 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_2_5">
771 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
772 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/>
773 <EntityType Name="Power" BaseType="Power.v1_2_4.Power"/>
774 </Schema>
775
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600776 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_2_6">
777 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700778 <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation. It was also created to fix PowerMetrics/PowerMetric description, not to use abbreviated terms."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600779 <EntityType Name="Power" BaseType="Power.v1_2_5.Power"/>
780 </Schema>
781
Ed Tanouscb103132019-10-08 11:34:22 -0700782 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_2_7">
783 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
784 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/>
785 <EntityType Name="Power" BaseType="Power.v1_2_6.Power"/>
786 </Schema>
787
788 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_2_8">
789 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
790 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
791 <EntityType Name="Power" BaseType="Power.v1_2_7.Power"/>
792 </Schema>
793
Jason M. Billsea4aa752018-06-05 13:29:11 -0700794 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_3_0">
795 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600796 <Annotation Term="Redfish.Release" String="2017.1"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700797 <EntityType Name="Power" BaseType="Power.v1_2_2.Power">
798 <Property Name="Actions" Type="Power.v1_3_0.Actions" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700799 <Annotation Term="OData.Description" String="The available actions for this Resource."/>
800 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this Resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700801 </Property>
802 </EntityType>
803
804 <EntityType Name="PowerControl" BaseType="Power.v1_0_0.PowerControl">
805 <Property Name="Actions" Type="Power.v1_3_0.PowerControlActions" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700806 <Annotation Term="OData.Description" String="The available actions for this Resource."/>
807 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this Resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700808 </Property>
809 </EntityType>
810
811 <EntityType Name="Voltage" BaseType="Power.v1_0_0.Voltage">
812 <Property Name="Actions" Type="Power.v1_3_0.VoltageActions" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700813 <Annotation Term="OData.Description" String="The available actions for this Resource."/>
814 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this Resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700815 </Property>
816 </EntityType>
817
818 <EntityType Name="PowerSupply" BaseType="Power.v1_2_0.PowerSupply">
819 <Property Name="Actions" Type="Power.v1_3_0.PowerSupplyActions" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700820 <Annotation Term="OData.Description" String="The available actions for this Resource."/>
821 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this Resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700822 </Property>
823 </EntityType>
824
825 <ComplexType Name="Actions">
826 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700827 <Annotation Term="OData.Description" String="The available actions for this Resource."/>
828 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800829 <Property Name="Oem" Type="Power.v1_3_0.OemActions" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700830 <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
831 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800832 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700833 </ComplexType>
834
835 <ComplexType Name="OemActions">
836 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700837 <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
838 <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this Resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700839 </ComplexType>
840
841 <ComplexType Name="PowerControlActions">
842 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700843 <Annotation Term="OData.Description" String="The available actions for this Resource."/>
844 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800845 <Property Name="Oem" Type="Power.v1_3_0.PowerControlOemActions" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700846 <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
847 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800848 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700849 </ComplexType>
850
851 <ComplexType Name="PowerControlOemActions">
852 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700853 <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
854 <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this Resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700855 </ComplexType>
856
857 <ComplexType Name="VoltageActions">
858 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700859 <Annotation Term="OData.Description" String="The available actions for this Resource."/>
860 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800861 <Property Name="Oem" Type="Power.v1_3_0.VoltageOemActions" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700862 <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
863 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800864 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700865 </ComplexType>
866
867 <ComplexType Name="VoltageOemActions">
868 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700869 <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
870 <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this Resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700871 </ComplexType>
872
873 <ComplexType Name="PowerSupplyActions">
874 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700875 <Annotation Term="OData.Description" String="The available actions for this Resource."/>
876 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800877 <Property Name="Oem" Type="Power.v1_3_0.PowerSupplyOemActions" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700878 <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
879 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this Resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800880 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700881 </ComplexType>
882
883 <ComplexType Name="PowerSupplyOemActions">
884 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700885 <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
886 <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this Resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700887 </ComplexType>
888 </Schema>
889
890 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_3_1">
891 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
892 <Annotation Term="OData.Description" String="This version was created to remove the AutoExpand annotation for the Redundancy property inside PowerSupply."/>
893 <EntityType Name="Power" BaseType="Power.v1_3_0.Power"/>
894 </Schema>
895
896 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_3_2">
897 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700898 <Annotation Term="OData.Description" String="This version was created to change PhysicalContext and IndicatorLED to use the unversioned definition."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700899 <EntityType Name="Power" BaseType="Power.v1_3_1.Power"/>
900 </Schema>
901
Ed Tanous530520e2019-01-02 13:41:37 -0800902 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_3_3">
903 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
904 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/>
905 <EntityType Name="Power" BaseType="Power.v1_3_2.Power"/>
906 </Schema>
907
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600908 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_3_4">
909 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700910 <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation. It was also created to fix PowerMetrics/PowerMetric description, not to use abbreviated terms."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600911 <EntityType Name="Power" BaseType="Power.v1_3_3.Power"/>
912 </Schema>
913
Ed Tanouscb103132019-10-08 11:34:22 -0700914 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_3_5">
915 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
916 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/>
917 <EntityType Name="Power" BaseType="Power.v1_3_4.Power"/>
918 </Schema>
919
920 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_3_6">
921 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
922 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
923 <EntityType Name="Power" BaseType="Power.v1_3_5.Power"/>
924 </Schema>
925
Jason M. Billsea4aa752018-06-05 13:29:11 -0700926 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_4_0">
927 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600928 <Annotation Term="Redfish.Release" String="2017.2"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700929 <EntityType Name="Power" BaseType="Power.v1_3_1.Power"/>
930
931 <EntityType Name="PowerControl" BaseType="Power.v1_3_0.PowerControl">
932 <Property Name="PhysicalContext" Type="PhysicalContext.PhysicalContext" Nullable="false">
933 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700934 <Annotation Term="OData.Description" String="The area, device, or set of devices to which this power control applies."/>
935 <Annotation Term="OData.LongDescription" String="This property shall contain a description of the affected device(s) or region within the chassis to which this power control applies."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700936 </Property>
937 </EntityType>
938 </Schema>
939
940 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_4_1">
941 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700942 <Annotation Term="OData.Description" String="This version was created to change PhysicalContext and IndicatorLED to use the unversioned definition."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700943 <EntityType Name="Power" BaseType="Power.v1_4_0.Power"/>
944 </Schema>
945
Ed Tanous530520e2019-01-02 13:41:37 -0800946 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_4_2">
947 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
948 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/>
949 <EntityType Name="Power" BaseType="Power.v1_4_1.Power"/>
950 </Schema>
951
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600952 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_4_3">
953 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700954 <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation. It was also created to fix PowerMetrics/PowerMetric description, not to use abbreviated terms."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600955 <EntityType Name="Power" BaseType="Power.v1_4_2.Power"/>
956 </Schema>
957
Ed Tanouscb103132019-10-08 11:34:22 -0700958 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_4_4">
959 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
960 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/>
961 <EntityType Name="Power" BaseType="Power.v1_4_3.Power"/>
962 </Schema>
963
964 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_4_5">
965 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
966 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
967 <EntityType Name="Power" BaseType="Power.v1_4_4.Power"/>
968 </Schema>
969
Jason M. Billsea4aa752018-06-05 13:29:11 -0700970 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_5_0">
971 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600972 <Annotation Term="Redfish.Release" String="2017.3"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700973 <EntityType Name="Power" BaseType="Power.v1_4_1.Power"/>
974
975 <EntityType Name="PowerSupply" BaseType="Power.v1_3_0.PowerSupply">
Ed Tanous530520e2019-01-02 13:41:37 -0800976 <Property Name="Location" Type="Resource.Location" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700977 <Annotation Term="OData.Description" String="The location of the power supply."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800978 <Annotation Term="OData.LongDescription" String="This property shall contain location information of the associated power supply."/>
979 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700980 <NavigationProperty Name="Assembly" Type="Assembly.Assembly" ContainsTarget="true" Nullable="false">
981 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700982 <Annotation Term="OData.Description" String="The link to the assembly Resource associated with this power supply."/>
983 <Annotation Term="OData.LongDescription" String="This property shall contain a link to a Resource of type assembly."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700984 <Annotation Term="OData.AutoExpandReferences"/>
985 </NavigationProperty>
986 <Property Name="PowerInputWatts" Type="Edm.Decimal">
987 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700988 <Annotation Term="OData.Description" String="The measured input power of this power supply."/>
989 <Annotation Term="OData.LongDescription" String="This property shall contain the measured input power, in watts, of the associated power supply."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700990 <Annotation Term="Measures.Unit" String="W"/>
991 <Annotation Term="Validation.Minimum" Int="0"/>
992 </Property>
993 <Property Name="PowerOutputWatts" Type="Edm.Decimal">
994 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700995 <Annotation Term="OData.Description" String="The measured output power of this power supply."/>
996 <Annotation Term="OData.LongDescription" String="This property shall contain the measured output power, in watts, of the associated power supply."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700997 <Annotation Term="Measures.Unit" String="W"/>
998 <Annotation Term="Validation.Minimum" Int="0"/>
999 </Property>
1000 <Property Name="EfficiencyPercent" Type="Edm.Decimal">
1001 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -07001002 <Annotation Term="OData.Description" String="The measured efficiency of this power supply as a percentage."/>
1003 <Annotation Term="OData.LongDescription" String="This property shall contain the measured power efficiency, as a percentage, of the associated power supply."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001004 <Annotation Term="Measures.Unit" String="%"/>
1005 <Annotation Term="Validation.Minimum" Int="0"/>
1006 <Annotation Term="Validation.Maximum" Int="100"/>
1007 </Property>
1008 <Property Name="HotPluggable" Type="Edm.Boolean">
1009 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -07001010 <Annotation Term="OData.Description" String="An indication of whether this device can be inserted or removed while the equipment is in operation."/>
1011 <Annotation Term="OData.LongDescription" String="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."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -07001012 </Property>
1013 </EntityType>
1014 </Schema>
1015
Ed Tanous530520e2019-01-02 13:41:37 -08001016 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_5_1">
1017 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1018 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/>
1019 <EntityType Name="Power" BaseType="Power.v1_5_0.Power"/>
1020 </Schema>
1021
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001022 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_5_2">
1023 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -07001024 <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation. It was also created to fix PowerMetrics/PowerMetric description, not to use abbreviated terms."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -06001025 <EntityType Name="Power" BaseType="Power.v1_5_1.Power"/>
1026 </Schema>
1027
Ed Tanouscb103132019-10-08 11:34:22 -07001028 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_5_3">
1029 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1030 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/>
1031 <EntityType Name="Power" BaseType="Power.v1_5_2.Power"/>
1032 </Schema>
1033
1034 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_5_4">
1035 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1036 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
1037 <EntityType Name="Power" BaseType="Power.v1_5_3.Power"/>
1038 </Schema>
1039
Gunnar Mills6f44b752020-02-06 16:50:51 -06001040 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Power.v1_6_0">
1041 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1042 <Annotation Term="Redfish.Release" String="2019.3"/>
1043 <EntityType Name="Power" BaseType="Power.v1_5_4.Power"/>
1044 <Annotation Term="OData.Description" String="This version was created to add a reset action for individual power supplies."/>
1045 </Schema>
1046
Jason M. Billsea4aa752018-06-05 13:29:11 -07001047 </edmx:DataServices>
1048</edmx:Edmx>