1<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################       -->
4<!--# Redfish Schema:  PowerSupply v1.6.0                                                  -->
5<!--#                                                                                      -->
6<!--# For a detailed change log, see the README file contained in the DSP8010 bundle,      -->
7<!--# available at http://www.dmtf.org/standards/redfish                                   -->
8<!--# Copyright 2014-2024 DMTF.                                                            -->
9<!--# 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  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Circuit_v1.xml">
41    <edmx:Include Namespace="Circuit"/>
42  </edmx:Reference>
43  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Outlet_v1.xml">
44    <edmx:Include Namespace="Outlet"/>
45  </edmx:Reference>
46  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/PowerSupplyMetrics_v1.xml">
47    <edmx:Include Namespace="PowerSupplyMetrics"/>
48  </edmx:Reference>
49  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Chassis_v1.xml">
50    <edmx:Include Namespace="Chassis"/>
51  </edmx:Reference>
52  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/CertificateCollection_v1.xml">
53    <edmx:Include Namespace="CertificateCollection"/>
54  </edmx:Reference>
55
56  <edmx:DataServices>
57
58    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerSupply">
59      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
60      <Annotation Term="Redfish.Language" String="en"/>
61
62      <EntityType Name="PowerSupply" BaseType="Resource.v1_0_0.Resource" Abstract="true">
63        <Annotation Term="OData.Description" String="The `PowerSupply` schema describes a power supply unit.  It also describes the location, such as a slot, socket, or bay, where a unit can be installed, by populating a resource instance with an absent state if a unit is not present."/>
64        <Annotation Term="OData.LongDescription" String="This resource shall represent a power supply unit for a Redfish implementation.  It may also represent a location, such as a slot, socket, or bay, where a unit may be installed, but the `State` property within the `Status` property contains `Absent`."/>
65        <Annotation Term="Capabilities.InsertRestrictions">
66          <Record>
67            <PropertyValue Property="Insertable" Bool="false"/>
68          </Record>
69        </Annotation>
70        <Annotation Term="Capabilities.UpdateRestrictions">
71          <Record>
72            <PropertyValue Property="Updatable" Bool="true"/>
73            <Annotation Term="OData.Description" String="Any writable properties can be updated."/>
74          </Record>
75        </Annotation>
76        <Annotation Term="Capabilities.DeleteRestrictions">
77          <Record>
78            <PropertyValue Property="Deletable" Bool="false"/>
79          </Record>
80        </Annotation>
81        <Annotation Term="Redfish.Uris">
82          <Collection>
83            <String>/redfish/v1/Chassis/{ChassisId}/PowerSubsystem/PowerSupplies/{PowerSupplyId}</String>
84            <String>/redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/PowerSupplies/{PowerSupplyId}</String>
85          </Collection>
86        </Annotation>
87        <Annotation Term="Redfish.DeprecatedUris">
88          <Collection>
89            <String>/redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/PowerSupplies/{PowerSupplyId}</String>
90          </Collection>
91        </Annotation>
92      </EntityType>
93
94      <Action Name="Reset" IsBound="true">
95        <Annotation Term="OData.Description" String="This action resets the power supply."/>
96        <Annotation Term="OData.LongDescription" String="This action shall reset a power supply.  A `GracefulRestart` `ResetType` shall reset the power supply but shall not affect the power output.  A `ForceRestart` `ResetType` can affect the power supply output."/>
97        <Parameter Name="PowerSupply" Type="PowerSupply.v1_0_0.Actions"/>
98        <Parameter Name="ResetType" Type="Resource.ResetType">
99          <Annotation Term="OData.Description" String="The type of reset."/>
100          <Annotation Term="OData.LongDescription" String="This parameter shall contain the type of reset.  The service can accept a request without the parameter and shall perform a `GracefulRestart`."/>
101        </Parameter>
102      </Action>
103    </Schema>
104
105    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerSupply.v1_0_0">
106      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
107      <Annotation Term="Redfish.Release" String="2020.4"/>
108
109      <EntityType Name="PowerSupply" BaseType="PowerSupply.PowerSupply">
110        <Property Name="PowerSupplyType" Type="PowerSupply.v1_0_0.PowerSupplyType">
111          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
112          <Annotation Term="OData.Description" String="The power supply type (AC or DC)."/>
113          <Annotation Term="OData.LongDescription" String="This property shall contain the input power type (AC or DC) of this power supply."/>
114        </Property>
115        <Property Name="InputNominalVoltageType" Type="Circuit.NominalVoltageType">
116          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
117          <Annotation Term="OData.Description" String="The nominal voltage type that is detected on the line input to this power supply."/>
118          <Annotation Term="OData.LongDescription" String="This property shall contain the nominal voltage type that is detected on the line input to this power supply.  This value shall be one of the values shown in the `NominalVoltageType` property in the `InputRanges` array, if present.  If the line input voltage is unknown, out of range, or there is no input provided to the power supply, the value shall be `null`."/>
119        </Property>
120        <Property Name="PowerCapacityWatts" Type="Edm.Decimal">
121          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
122          <Annotation Term="OData.Description" String="The maximum capacity of this power supply."/>
123          <Annotation Term="OData.LongDescription" String="This property shall contain the maximum amount of power, in watt units, that this power supply is rated to deliver."/>
124          <Annotation Term="Measures.Unit" String="W"/>
125          <Annotation Term="Validation.Minimum" Int="0"/>
126        </Property>
127        <Property Name="Manufacturer" Type="Edm.String">
128          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
129          <Annotation Term="OData.Description" String="The manufacturer of this power supply."/>
130          <Annotation Term="OData.LongDescription" String="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."/>
131        </Property>
132        <Property Name="Model" Type="Edm.String">
133          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
134          <Annotation Term="OData.Description" String="The model number for this power supply."/>
135          <Annotation Term="OData.LongDescription" String="This property shall contain the model information as defined by the manufacturer for this power supply."/>
136        </Property>
137        <Property Name="FirmwareVersion" Type="Edm.String">
138          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
139          <Annotation Term="OData.Description" String="The firmware version for this power supply."/>
140          <Annotation Term="OData.LongDescription" String="This property shall contain the firmware version as defined by the manufacturer for this power supply."/>
141        </Property>
142        <Property Name="SerialNumber" Type="Edm.String">
143          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
144          <Annotation Term="OData.Description" String="The serial number for this power supply."/>
145          <Annotation Term="OData.LongDescription" String="This property shall contain the serial number as defined by the manufacturer for this power supply."/>
146        </Property>
147        <Property Name="PartNumber" Type="Edm.String">
148          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
149          <Annotation Term="OData.Description" String="The part number for this power supply."/>
150          <Annotation Term="OData.LongDescription" String="This property shall contain the part number as defined by the manufacturer for this power supply."/>
151        </Property>
152        <Property Name="SparePartNumber" Type="Edm.String">
153          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
154          <Annotation Term="OData.Description" String="The spare part number for this power supply."/>
155          <Annotation Term="OData.LongDescription" String="This property shall contain the spare or replacement part number as defined by the manufacturer for this power supply."/>
156        </Property>
157        <Property Name="Status" Type="Resource.Status" Nullable="false">
158          <Annotation Term="OData.Description" String="The status and health of the resource and its subordinate or dependent resources."/>
159          <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
160        </Property>
161        <Property Name="Location" Type="Resource.Location" Nullable="false">
162          <Annotation Term="OData.Description" String="The location of the power supply."/>
163          <Annotation Term="OData.LongDescription" String="This property shall contain the location information of the power supply.  For a resource in the `Absent` state, this property describes the empty location, such as a slot, socket, or bay, to represent the available capacity."/>
164        </Property>
165        <Property Name="LocationIndicatorActive" Type="Edm.Boolean">
166          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
167          <Annotation Term="OData.Description" String="An indicator allowing an operator to physically locate this resource."/>
168          <Annotation Term="OData.LongDescription" String="This property shall contain the state of the indicator used to physically identify or locate this resource."/>
169        </Property>
170        <Property Name="InputRanges" Type="Collection(PowerSupply.v1_0_0.InputRange)" Nullable="false">
171          <Annotation Term="OData.Description" String="The input ranges that the power supply can use."/>
172          <Annotation Term="OData.LongDescription" String="This property shall contain a collection of ranges usable by this power supply."/>
173        </Property>
174        <Property Name="OutputRails" Type="Collection(PowerSupply.v1_0_0.OutputRail)" Nullable="false">
175          <Annotation Term="OData.Description" String="The output power rails provided by this power supply."/>
176          <Annotation Term="OData.LongDescription" String="This property shall contain an array of output power rails provided by this power supply.  The elements shall be ordered in ascending nominal voltage order.  This ordering is necessary for consistency with `Sensor` properties in an associated `PowerSupplyMetrics` resource."/>
177        </Property>
178        <Property Name="PhaseWiringType" Type="Circuit.PhaseWiringType">
179          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
180          <Annotation Term="OData.Description" String="The number of ungrounded current-carrying conductors (phases) and the total number of conductors (wires) provided for the power supply input connector."/>
181          <Annotation Term="OData.LongDescription" String="This property shall contain the number of ungrounded current-carrying conductors (phases) and the total number of conductors (wires) included in the input connector for the power supply."/>
182        </Property>
183        <Property Name="PlugType" Type="Circuit.PlugType">
184          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
185          <Annotation Term="OData.Description" String="The type of plug according to NEMA, IEC, or regional standards."/>
186          <Annotation Term="OData.LongDescription" String="This property shall contain the type of physical plug used for the input to this power supply, as defined by IEC, NEMA, or regional standards."/>
187        </Property>
188        <Property Name="EfficiencyRatings" Type="Collection(PowerSupply.v1_0_0.EfficiencyRating)">
189          <Annotation Term="OData.Description" String="The efficiency ratings of this power supply."/>
190          <Annotation Term="OData.LongDescription" String="This property shall contain an array of efficiency ratings for this power supply."/>
191        </Property>
192        <Property Name="HotPluggable" Type="Edm.Boolean">
193          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
194          <Annotation Term="OData.Description" String="An indication of whether this device can be inserted or removed while the equipment is in operation."/>
195          <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."/>
196        </Property>
197        <Property Name="Links" Type="PowerSupply.v1_0_0.Links" Nullable="false">
198          <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
199          <Annotation Term="OData.LongDescription" String="This property shall contain links to resources that are related to but are not contained by, or subordinate to, this resource."/>
200        </Property>
201        <NavigationProperty Name="Assembly" Type="Assembly.Assembly" ContainsTarget="true" Nullable="false">
202          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
203          <Annotation Term="OData.Description" String="The link to the assembly associated with this power supply."/>
204          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource of type `Assembly`."/>
205          <Annotation Term="OData.AutoExpandReferences"/>
206        </NavigationProperty>
207        <NavigationProperty Name="Metrics" Type="PowerSupplyMetrics.PowerSupplyMetrics" ContainsTarget="true" Nullable="false">
208          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
209          <Annotation Term="OData.Description" String="The link to the power supply metrics resource associated with this power supply."/>
210          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource of type `PowerSupplyMetrics`."/>
211          <Annotation Term="OData.AutoExpandReferences"/>
212        </NavigationProperty>
213        <Property Name="Actions" Type="PowerSupply.v1_0_0.Actions" Nullable="false">
214          <Annotation Term="OData.Description" String="The available actions for this resource."/>
215          <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
216        </Property>
217      </EntityType>
218
219      <ComplexType Name="Links" BaseType="Resource.Links">
220        <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
221        <Annotation Term="OData.LongDescription" String="This Redfish Specification-described type shall contain links to resources that are related to but are not contained by, or subordinate to, this resource."/>
222        <NavigationProperty Name="Outlet" Type="Outlet.Outlet" Nullable="false">
223          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
224          <Annotation Term="OData.Description" String="A link to the outlet connected to this power supply."/>
225          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource of type `Outlet` that represents the outlet connected to this power supply."/>
226          <Annotation Term="OData.AutoExpandReferences"/>
227          <Annotation Term="Redfish.Revisions">
228            <Collection>
229              <Record>
230                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
231                <PropertyValue Property="Version" String="v1_4_0"/>
232                <PropertyValue Property="Description" String="This property has been deprecated in favor of the `PowerOutlets` property to allow for consistent modeling of power supplies with multiple outlet support."/>
233              </Record>
234            </Collection>
235          </Annotation>
236        </NavigationProperty>
237      </ComplexType>
238
239      <ComplexType Name="InputRange">
240        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
241        <Annotation Term="OData.Description" String="This type describes an input range for a power supply."/>
242        <Annotation Term="OData.LongDescription" String="This type shall describe an input range that the associated power supply can utilize."/>
243        <Property Name="NominalVoltageType" Type="Circuit.NominalVoltageType">
244          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
245          <Annotation Term="OData.Description" String="The input voltage range."/>
246          <Annotation Term="OData.LongDescription" String="This property shall contain the input voltage type of the associated range."/>
247        </Property>
248        <Property Name="CapacityWatts" Type="Edm.Decimal">
249          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
250          <Annotation Term="OData.Description" String="The maximum capacity of this power supply when operating in this input range."/>
251          <Annotation Term="OData.LongDescription" String="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."/>
252          <Annotation Term="Measures.Unit" String="W"/>
253          <Annotation Term="Validation.Minimum" Int="0"/>
254        </Property>
255      </ComplexType>
256
257      <ComplexType Name="OutputRail">
258        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
259        <Annotation Term="OData.Description" String="This type describes an output power rail of a power supply."/>
260        <Annotation Term="OData.LongDescription" String="This type shall describe an output power rail provided by a power supply."/>
261        <Property Name="NominalVoltage" Type="Edm.Decimal">
262          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
263          <Annotation Term="OData.Description" String="The nominal voltage of this output power rail."/>
264          <Annotation Term="OData.LongDescription" String="This property shall contain the nominal voltage of the associated output power rail."/>
265        </Property>
266        <Property Name="PhysicalContext" Type="PhysicalContext.PhysicalContext" Nullable="false">
267          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
268          <Annotation Term="OData.Description" String="The area or device to which this power rail applies."/>
269          <Annotation Term="OData.LongDescription" String="This property shall contain a description of the device or region within the chassis to which this power rail applies."/>
270        </Property>
271      </ComplexType>
272
273      <ComplexType Name="EfficiencyRating">
274        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
275        <Annotation Term="OData.Description" String="This type describes an efficiency rating for a power supply."/>
276        <Annotation Term="OData.LongDescription" String="This type shall describe an efficiency rating for a power supply."/>
277        <Property Name="LoadPercent" Type="Edm.Decimal">
278          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
279          <Annotation Term="OData.Description" String="The electrical load for this rating."/>
280          <Annotation Term="OData.LongDescription" String="This property shall contain the load, as a percentage, `0` to `100`, of this power supply at which this efficiency rating is valid."/>
281          <Annotation Term="Measures.Unit" String="%"/>
282          <Annotation Term="Validation.Minimum" Int="0"/>
283          <Annotation Term="Validation.Maximum" Int="100"/>
284        </Property>
285        <Property Name="EfficiencyPercent" Type="Edm.Decimal">
286          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
287          <Annotation Term="OData.Description" String="The rated efficiency of this power supply at the specified load."/>
288          <Annotation Term="OData.LongDescription" String="This property shall contain the rated efficiency, as a percentage, `0` to `100`, of this power supply at the specified load."/>
289          <Annotation Term="Measures.Unit" String="%"/>
290          <Annotation Term="Validation.Minimum" Int="0"/>
291          <Annotation Term="Validation.Maximum" Int="100"/>
292        </Property>
293      </ComplexType>
294
295      <EnumType Name="PowerSupplyType">
296        <Member Name="AC">
297          <Annotation Term="OData.Description" String="Alternating Current (AC) power supply."/>
298        </Member>
299        <Member Name="DC">
300          <Annotation Term="OData.Description" String="Direct Current (DC) power supply."/>
301        </Member>
302        <Member Name="ACorDC">
303          <Annotation Term="OData.Description" String="The power supply supports both DC and AC."/>
304        </Member>
305        <Member Name="DCRegulator">
306          <Annotation Term="OData.Description" String="Direct Current (DC) voltage regulator."/>
307          <Annotation Term="Redfish.Revisions">
308            <Collection>
309              <Record>
310                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
311                <PropertyValue Property="Version" String="v1_5_0"/>
312              </Record>
313            </Collection>
314          </Annotation>
315        </Member>
316      </EnumType>
317
318      <ComplexType Name="Actions">
319        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
320        <Annotation Term="OData.Description" String="The available actions for this resource."/>
321        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
322        <Property Name="Oem" Type="PowerSupply.v1_0_0.OemActions" Nullable="false">
323          <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
324          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
325        </Property>
326      </ComplexType>
327
328      <ComplexType Name="OemActions">
329        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
330        <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
331        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
332      </ComplexType>
333    </Schema>
334
335
336    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerSupply.v1_0_1">
337      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
338      <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology."/>
339      <EntityType Name="PowerSupply" BaseType="PowerSupply.v1_0_0.PowerSupply"/>
340    </Schema>
341
342    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerSupply.v1_0_2">
343      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
344      <Annotation Term="OData.Description" String="This version was created to update the schema descriptions to mention its applicability to physical locations as an absent resource."/>
345      <EntityType Name="PowerSupply" BaseType="PowerSupply.v1_0_1.PowerSupply"/>
346    </Schema>
347
348    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerSupply.v1_0_3">
349      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
350      <Annotation Term="OData.Description" String="This version was created to clarify the range of possible values for properties with percent units."/>
351      <EntityType Name="PowerSupply" BaseType="PowerSupply.v1_0_2.PowerSupply"/>
352    </Schema>
353
354    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerSupply.v1_0_4">
355      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
356      <Annotation Term="OData.Description" String="This version was created to clarify the usage of `InputNominalVoltageType`.  It was also created to correct various typographical errors."/>
357      <EntityType Name="PowerSupply" BaseType="PowerSupply.v1_0_3.PowerSupply"/>
358    </Schema>
359
360    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerSupply.v1_0_5">
361      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
362      <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors."/>
363      <EntityType Name="PowerSupply" BaseType="PowerSupply.v1_0_4.PowerSupply"/>
364    </Schema>
365
366    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerSupply.v1_1_0">
367      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
368      <Annotation Term="Redfish.Release" String="2021.1"/>
369
370      <EntityType Name="PowerSupply" BaseType="PowerSupply.v1_0_0.PowerSupply">
371        <Property Name="Version" Type="Edm.String">
372          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
373          <Annotation Term="OData.Description" String="The hardware version of this power supply."/>
374          <Annotation Term="OData.LongDescription" String="This property shall contain the hardware version of this power supply as determined by the vendor or supplier."/>
375        </Property>
376        <Property Name="ProductionDate" Type="Edm.DateTimeOffset">
377          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
378          <Annotation Term="OData.Description" String="The production or manufacturing date of this power supply."/>
379          <Annotation Term="OData.LongDescription" String="This property shall contain the date of production or manufacture for this power supply."/>
380        </Property>
381      </EntityType>
382    </Schema>
383
384    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerSupply.v1_1_1">
385      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
386      <Annotation Term="OData.Description" String="This version was created to update the schema descriptions to mention its applicability to physical locations as an absent resource."/>
387      <EntityType Name="PowerSupply" BaseType="PowerSupply.v1_1_0.PowerSupply"/>
388    </Schema>
389
390    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerSupply.v1_1_2">
391      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
392      <Annotation Term="OData.Description" String="This version was created to clarify the range of possible values for properties with percent units."/>
393      <EntityType Name="PowerSupply" BaseType="PowerSupply.v1_1_1.PowerSupply"/>
394    </Schema>
395
396    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerSupply.v1_1_3">
397      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
398      <Annotation Term="OData.Description" String="This version was created to clarify the usage of `InputNominalVoltageType`.  It was also created to correct various typographical errors."/>
399      <EntityType Name="PowerSupply" BaseType="PowerSupply.v1_1_2.PowerSupply"/>
400    </Schema>
401
402    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerSupply.v1_1_4">
403      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
404      <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors."/>
405      <EntityType Name="PowerSupply" BaseType="PowerSupply.v1_1_3.PowerSupply"/>
406    </Schema>
407
408    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerSupply.v1_2_0">
409      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
410      <Annotation Term="Redfish.Release" String="2021.3"/>
411
412      <EntityType Name="PowerSupply" BaseType="PowerSupply.v1_1_0.PowerSupply">
413        <Property Name="ElectricalSourceManagerURIs" Type="Collection(Edm.String)">
414          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
415          <Annotation Term="OData.Description" String="The URIs of the management interfaces for the upstream electrical source connections for this power supply."/>
416          <Annotation Term="OData.LongDescription" String="This property shall contain an array of URIs to the management applications or devices that provide monitoring or control of the upstream electrical sources that provide power to this power supply."/>
417          <Annotation Term="OData.IsURL"/>
418        </Property>
419        <Property Name="ElectricalSourceNames" Type="Collection(Edm.String)">
420          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
421          <Annotation Term="OData.Description" String="The names of the upstream electrical sources, such as circuits or outlets, connected to this power supply."/>
422          <Annotation Term="OData.LongDescription" String="This property shall contain an array of strings that identify the upstream electrical sources, such as the names of circuits or outlets, that provide power to this power supply."/>
423        </Property>
424      </EntityType>
425
426      <ComplexType Name="Links" BaseType="PowerSupply.v1_0_0.Links">
427        <NavigationProperty Name="PowerOutlets" Type="Collection(Outlet.Outlet)">
428          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
429          <Annotation Term="OData.Description" String="An array of links to the outlets that provide power to this power supply."/>
430          <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to resources of type `Outlet` that represent the outlets that provide power to this power supply."/>
431          <Annotation Term="OData.AutoExpandReferences"/>
432        </NavigationProperty>
433      </ComplexType>
434    </Schema>
435
436    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerSupply.v1_2_1">
437      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
438      <Annotation Term="OData.Description" String="This version was created to update the schema descriptions to mention its applicability to physical locations as an absent resource."/>
439      <EntityType Name="PowerSupply" BaseType="PowerSupply.v1_2_0.PowerSupply"/>
440    </Schema>
441
442    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerSupply.v1_2_2">
443      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
444      <Annotation Term="OData.Description" String="This version was created to clarify the range of possible values for properties with percent units."/>
445      <EntityType Name="PowerSupply" BaseType="PowerSupply.v1_2_1.PowerSupply"/>
446    </Schema>
447
448    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerSupply.v1_2_3">
449      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
450      <Annotation Term="OData.Description" String="This version was created to clarify the usage of `InputNominalVoltageType`.  It was also created to correct various typographical errors."/>
451      <EntityType Name="PowerSupply" BaseType="PowerSupply.v1_2_2.PowerSupply"/>
452    </Schema>
453
454    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerSupply.v1_2_4">
455      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
456      <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors."/>
457      <EntityType Name="PowerSupply" BaseType="PowerSupply.v1_2_3.PowerSupply"/>
458    </Schema>
459
460    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerSupply.v1_3_0">
461      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
462      <Annotation Term="Redfish.Release" String="2021.4"/>
463
464      <EntityType Name="PowerSupply" BaseType="PowerSupply.v1_2_0.PowerSupply">
465        <Property Name="LineInputStatus" Type="PowerSupply.v1_3_0.LineStatus">
466          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
467          <Annotation Term="OData.Description" String="The status of the line input."/>
468          <Annotation Term="OData.LongDescription" String="This property shall contain the status of the power line input for this power supply."/>
469        </Property>
470      </EntityType>
471
472      <EnumType Name="LineStatus">
473        <Member Name="Normal">
474          <Annotation Term="OData.Description" String="Line input is within normal operating range."/>
475        </Member>
476        <Member Name="LossOfInput">
477          <Annotation Term="OData.Description" String="No power detected at line input."/>
478        </Member>
479        <Member Name="OutOfRange">
480          <Annotation Term="OData.Description" String="Line input voltage or current is outside of normal operating range."/>
481        </Member>
482      </EnumType>
483    </Schema>
484
485    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerSupply.v1_3_1">
486      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
487      <Annotation Term="OData.Description" String="This version was created to update the schema descriptions to mention its applicability to physical locations as an absent resource."/>
488      <EntityType Name="PowerSupply" BaseType="PowerSupply.v1_3_0.PowerSupply"/>
489    </Schema>
490
491    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerSupply.v1_3_2">
492      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
493      <Annotation Term="OData.Description" String="This version was created to clarify the range of possible values for properties with percent units."/>
494      <EntityType Name="PowerSupply" BaseType="PowerSupply.v1_3_1.PowerSupply"/>
495    </Schema>
496
497    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerSupply.v1_3_3">
498      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
499      <Annotation Term="OData.Description" String="This version was created to clarify the usage of `InputNominalVoltageType`.  It was also created to correct various typographical errors."/>
500      <EntityType Name="PowerSupply" BaseType="PowerSupply.v1_3_2.PowerSupply"/>
501    </Schema>
502
503    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerSupply.v1_3_4">
504      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
505      <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors."/>
506      <EntityType Name="PowerSupply" BaseType="PowerSupply.v1_3_3.PowerSupply"/>
507    </Schema>
508
509    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerSupply.v1_4_0">
510      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
511      <Annotation Term="Redfish.Release" String="2022.1"/>
512      <Annotation Term="OData.Description" String="This version was created to deprecate Outlet in favor of PowerOutlets."/>
513
514      <EntityType Name="PowerSupply" BaseType="PowerSupply.v1_3_0.PowerSupply"/>
515
516      <ComplexType Name="Links" BaseType="PowerSupply.v1_2_0.Links">
517        <NavigationProperty Name="PoweringChassis" Type="Collection(Chassis.Chassis)">
518          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
519          <Annotation Term="OData.Description" String="An array of links to the chassis that are directly powered by this power supply."/>
520          <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to resources of type `Chassis` that represent the chassis directly powered by this power supply.  This property shall not be present if the power supply is only providing power to its containing parent chassis."/>
521          <Annotation Term="OData.AutoExpandReferences"/>
522        </NavigationProperty>
523      </ComplexType>
524    </Schema>
525
526    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerSupply.v1_4_1">
527      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
528      <Annotation Term="OData.Description" String="This version was created to update the schema descriptions to mention its applicability to physical locations as an absent resource."/>
529      <EntityType Name="PowerSupply" BaseType="PowerSupply.v1_4_0.PowerSupply"/>
530    </Schema>
531
532    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerSupply.v1_4_2">
533      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
534      <Annotation Term="OData.Description" String="This version was created to clarify the range of possible values for properties with percent units."/>
535      <EntityType Name="PowerSupply" BaseType="PowerSupply.v1_4_1.PowerSupply"/>
536    </Schema>
537
538    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerSupply.v1_4_3">
539      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
540      <Annotation Term="OData.Description" String="This version was created to clarify the usage of `InputNominalVoltageType`.  It was also created to correct various typographical errors."/>
541      <EntityType Name="PowerSupply" BaseType="PowerSupply.v1_4_2.PowerSupply"/>
542    </Schema>
543
544    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerSupply.v1_4_4">
545      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
546      <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors."/>
547      <EntityType Name="PowerSupply" BaseType="PowerSupply.v1_4_3.PowerSupply"/>
548    </Schema>
549
550    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerSupply.v1_5_0">
551      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
552      <Annotation Term="Redfish.Release" String="2022.2"/>
553      <Annotation Term="OData.Description" String="This version was created to add `DCRegulator` to PowerSupplyType."/>
554
555      <EntityType Name="PowerSupply" BaseType="PowerSupply.v1_4_0.PowerSupply">
556        <Property Name="Replaceable" Type="Edm.Boolean">
557          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
558          <Annotation Term="OData.Description" String="An indication of whether this component can be independently replaced as allowed by the vendor's replacement policy."/>
559          <Annotation Term="OData.LongDescription" String="This property shall indicate whether this component can be independently replaced as allowed by the vendor's replacement policy.  A value of `false` indicates the component needs to be replaced by policy as part of another component.  If the `LocationType` property of this component contains `Embedded`, this property shall contain `false`."/>
560        </Property>
561        <Property Name="OutputNominalVoltageType" Type="Circuit.NominalVoltageType">
562          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
563          <Annotation Term="OData.Description" String="The nominal output voltage type of this power supply."/>
564          <Annotation Term="OData.LongDescription" String="This property shall contain the nominal voltage type of the single output line of this power supply.  This property is intended to describe power supply types that connect to additional power infrastructure components, such as a rectifier component in a modular power system.  This property shall not be present for power supplies not intended to connect to additional power infrastructure components."/>
565        </Property>
566      </EntityType>
567    </Schema>
568
569    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerSupply.v1_5_1">
570      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
571      <Annotation Term="OData.Description" String="This version was created to update the schema descriptions to mention its applicability to physical locations as an absent resource."/>
572      <EntityType Name="PowerSupply" BaseType="PowerSupply.v1_5_0.PowerSupply"/>
573    </Schema>
574
575    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerSupply.v1_5_2">
576      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
577      <Annotation Term="OData.Description" String="This version was created to clarify the range of possible values for properties with percent units."/>
578      <EntityType Name="PowerSupply" BaseType="PowerSupply.v1_5_1.PowerSupply"/>
579    </Schema>
580
581    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerSupply.v1_5_3">
582      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
583      <Annotation Term="OData.Description" String="This version was created to clarify the usage of `InputNominalVoltageType`.  It was also created to correct various typographical errors."/>
584      <EntityType Name="PowerSupply" BaseType="PowerSupply.v1_5_2.PowerSupply"/>
585    </Schema>
586
587    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerSupply.v1_5_4">
588      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
589      <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors."/>
590      <EntityType Name="PowerSupply" BaseType="PowerSupply.v1_5_3.PowerSupply"/>
591    </Schema>
592
593    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerSupply.v1_6_0">
594      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
595      <Annotation Term="Redfish.Release" String="2024.1"/>
596
597      <EntityType Name="PowerSupply" BaseType="PowerSupply.v1_5_4.PowerSupply">
598        <NavigationProperty Name="Certificates" Type="CertificateCollection.CertificateCollection" ContainsTarget="true" Nullable="false">
599          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
600          <Annotation Term="OData.Description" String="The link to a collection of certificates for device identity and attestation."/>
601          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource collection of type `CertificateCollection` that contains certificates for device identity and attestation."/>
602          <Annotation Term="OData.AutoExpandReferences"/>
603        </NavigationProperty>
604      </EntityType>
605    </Schema>
606
607  </edmx:DataServices>
608</edmx:Edmx>
609