1<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################       -->
4<!--# Redfish Schema:  Circuit v1.7.1                                                      -->
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-2023 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/Sensor_v1.xml">
32    <edmx:Include Namespace="Sensor"/>
33  </edmx:Reference>
34  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Outlet_v1.xml">
35    <edmx:Include Namespace="Outlet"/>
36  </edmx:Reference>
37
38  <edmx:DataServices>
39
40    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Circuit">
41      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
42
43      <EntityType Name="Circuit" BaseType="Resource.v1_0_0.Resource" Abstract="true">
44        <Annotation Term="OData.Description" String="This is the schema definition for an electrical circuit."/>
45        <Annotation Term="OData.LongDescription" String="This resource shall be used to represent an electrical circuit for a Redfish implementation."/>
46        <Annotation Term="Capabilities.InsertRestrictions">
47          <Record>
48            <PropertyValue Property="Insertable" Bool="false"/>
49          </Record>
50        </Annotation>
51        <Annotation Term="Capabilities.UpdateRestrictions">
52          <Record>
53            <PropertyValue Property="Updatable" Bool="true"/>
54            <Annotation Term="OData.Description" String="Any writable properties can be updated."/>
55          </Record>
56        </Annotation>
57        <Annotation Term="Capabilities.DeleteRestrictions">
58          <Record>
59            <PropertyValue Property="Deletable" Bool="false"/>
60          </Record>
61        </Annotation>
62        <Annotation Term="Redfish.Uris">
63          <Collection>
64            <String>/redfish/v1/PowerEquipment/RackPDUs/{PowerDistributionId}/Mains/{CircuitId}</String>
65            <String>/redfish/v1/PowerEquipment/RackPDUs/{PowerDistributionId}/Branches/{CircuitId}</String>
66            <String>/redfish/v1/PowerEquipment/FloorPDUs/{PowerDistributionId}/Mains/{CircuitId}</String>
67            <String>/redfish/v1/PowerEquipment/FloorPDUs/{PowerDistributionId}/Branches/{CircuitId}</String>
68            <String>/redfish/v1/PowerEquipment/FloorPDUs/{PowerDistributionId}/Subfeeds/{CircuitId}</String>
69            <String>/redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/Mains/{CircuitId}</String>
70            <String>/redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/Branches/{CircuitId}</String>
71            <String>/redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/Feeders/{CircuitId}</String>
72            <String>/redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/Mains/{CircuitId}</String>
73            <String>/redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/Branches/{CircuitId}</String>
74            <String>/redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Mains/{CircuitId}</String>
75            <String>/redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Subfeeds/{CircuitId}</String>
76            <String>/redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Feeders/{CircuitId}</String>
77            <String>/redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Branches/{CircuitId}</String>
78            <String>/redfish/v1/PowerEquipment/ElectricalBuses/{PowerDistributionId}/Mains/{CircuitId}</String>
79            <String>/redfish/v1/PowerEquipment/ElectricalBuses/{PowerDistributionId}/Branches/{CircuitId}</String>
80          </Collection>
81        </Annotation>
82      </EntityType>
83
84      <Action Name="PowerControl" IsBound="true">
85        <Annotation Term="OData.Description" String="This action turns the circuit on or off."/>
86        <Annotation Term="OData.LongDescription" String="This action shall control the power state of the circuit."/>
87        <Parameter Name="Circuit" Type="Circuit.v1_0_0.Actions"/>
88        <Parameter Name="PowerState" Type="Circuit.PowerState">
89          <Annotation Term="OData.Description" String="The desired power state of the circuit."/>
90          <Annotation Term="OData.LongDescription" String="This parameter shall contain the desired power state of the circuit."/>
91        </Parameter>
92      </Action>
93
94      <Action Name="BreakerControl" IsBound="true">
95        <Annotation Term="OData.Description" String="This action attempts to reset the circuit breaker."/>
96        <Annotation Term="OData.LongDescription" String="This action shall control the state of the circuit breaker or over-current protection device."/>
97        <Parameter Name="Circuit" Type="Circuit.v1_0_0.Actions"/>
98        <Parameter Name="PowerState" Type="Circuit.PowerState">
99          <Annotation Term="OData.Description" String="The desired power state of the circuit if the breaker is reset successfully."/>
100          <Annotation Term="OData.LongDescription" String="This parameter shall contain the desired power state of the circuit."/>
101        </Parameter>
102      </Action>
103
104      <Action Name="ResetMetrics" IsBound="true">
105        <Annotation Term="OData.Description" String="This action resets metrics related to this circuit."/>
106        <Annotation Term="OData.LongDescription" String="This action shall reset any time intervals or counted values for this circuit."/>
107        <Parameter Name="Circuit" Type="Circuit.v1_0_0.Actions"/>
108      </Action>
109
110      <EnumType Name="PowerState">
111        <Member Name="On">
112          <Annotation Term="OData.Description" String="Power on."/>
113        </Member>
114        <Member Name="Off">
115          <Annotation Term="OData.Description" String="Power off."/>
116        </Member>
117        <Member Name="PowerCycle">
118          <Annotation Term="OData.Description" String="Power cycle."/>
119          <Annotation Term="OData.LongDescription" String="This value shall indicate the resource will transition to a power off state, then transition to a power on state.  Upon successful completion, the PowerState property, if supported, shall contain the value `On`."/>
120          <Annotation Term="Redfish.Revisions">
121            <Collection>
122              <Record>
123                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
124                <PropertyValue Property="Version" String="v1_5_0"/>
125              </Record>
126            </Collection>
127          </Annotation>
128        </Member>
129      </EnumType>
130
131      <EnumType Name="BreakerStates">
132        <Member Name="Normal">
133          <Annotation Term="OData.Description" String="The breaker is powered on."/>
134        </Member>
135        <Member Name="Tripped">
136          <Annotation Term="OData.Description" String="The breaker has been tripped."/>
137        </Member>
138        <Member Name="Off">
139          <Annotation Term="OData.Description" String="The breaker is off."/>
140        </Member>
141      </EnumType>
142
143      <EnumType Name="PowerRestorePolicyTypes">
144        <Annotation Term="OData.Description" String="The enumerations of PowerRestorePolicyTypes specify the choice of power state when power is applied."/>
145        <Member Name="AlwaysOn">
146          <Annotation Term="OData.Description" String="Always power on when external power is applied."/>
147        </Member>
148        <Member Name="AlwaysOff">
149          <Annotation Term="OData.Description" String="Always remain powered off when external power is applied."/>
150        </Member>
151        <Member Name="LastState">
152          <Annotation Term="OData.Description" String="Return to the last power state (on or off) when external power is applied."/>
153        </Member>
154      </EnumType>
155
156      <EnumType Name="PhaseWiringType">
157        <Member Name="OnePhase3Wire">
158          <Annotation Term="OData.Description" String="Single-phase / 3-Wire (Line1, Neutral, Protective Earth)."/>
159          <Annotation Term="OData.LongDescription" String="This value shall represent a Single-phase / 3-Wire (Line1, Neutral, Protective Earth) wiring."/>
160        </Member>
161        <Member Name="TwoPhase3Wire">
162          <Annotation Term="OData.Description" String="Two-phase / 3-Wire (Line1, Line2, Protective Earth)."/>
163          <Annotation Term="OData.LongDescription" String="This value shall represent a Two-phase / 3-Wire (Line1, Line2, Protective Earth) wiring."/>
164        </Member>
165        <Member Name="OneOrTwoPhase3Wire">
166          <Annotation Term="OData.Description" String="Single or Two-Phase / 3-Wire (Line1, Line2 or Neutral, Protective Earth)."/>
167          <Annotation Term="OData.LongDescription" String="This value shall represent a Single or Two-Phase / 3-Wire (Line1, Line2 or Neutral, Protective Earth) wiring.  This value shall be used when both phase configurations are supported.  This is most common where detachable cordsets are used."/>
168        </Member>
169        <Member Name="TwoPhase4Wire">
170          <Annotation Term="OData.Description" String="Two-phase / 4-Wire (Line1, Line2, Neutral, Protective Earth)."/>
171          <Annotation Term="OData.LongDescription" String="This value shall represent a Two-phase / 4-Wire (Line1, Line2, Neutral, Protective Earth) wiring."/>
172        </Member>
173        <Member Name="ThreePhase4Wire">
174          <Annotation Term="OData.Description" String="Three-phase / 4-Wire (Line1, Line2, Line3, Protective Earth)."/>
175          <Annotation Term="OData.LongDescription" String="This value shall represent a Three-phase / 4-Wire (Line1, Line2, Line3, Protective Earth) wiring."/>
176        </Member>
177        <Member Name="ThreePhase5Wire">
178          <Annotation Term="OData.Description" String="Three-phase / 5-Wire (Line1, Line2, Line3, Neutral, Protective Earth)."/>
179          <Annotation Term="OData.LongDescription" String="This value shall represent a Three-phase / 5-Wire (Line1, Line2, Line3, Neutral, Protective Earth) wiring."/>
180        </Member>
181      </EnumType>
182
183      <EnumType Name="NominalVoltageType">
184        <Member Name="AC100To127V">
185          <Annotation Term="OData.Description" String="AC 100-127V nominal."/>
186          <Annotation Term="OData.LongDescription" String="This value shall indicate the device supports a nominal voltage in the complete range of 100-127VAC.  Range values are generally used to describe support on device inputs or inlets."/>
187          <Annotation Term="Redfish.Revisions">
188            <Collection>
189              <Record>
190                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
191                <PropertyValue Property="Version" String="v1_6_0"/>
192              </Record>
193            </Collection>
194          </Annotation>
195        </Member>
196        <Member Name="AC100To240V">
197          <Annotation Term="OData.Description" String="AC 100-240V nominal."/>
198          <Annotation Term="OData.LongDescription" String="This value shall indicate the device supports a nominal voltage in the complete range of 100-240VAC.  Range values are generally used to describe support on device inputs or inlets."/>
199        </Member>
200        <Member Name="AC100To277V">
201          <Annotation Term="OData.Description" String="AC 100-277V nominal."/>
202          <Annotation Term="OData.LongDescription" String="This value shall indicate the device supports a nominal voltage in the complete range of 100-277VAC.  Range values are generally used to describe support on device inputs or inlets."/>
203        </Member>
204        <Member Name="AC120V">
205          <Annotation Term="OData.Description" String="AC 120V nominal."/>
206          <Annotation Term="OData.LongDescription" String="This value shall indicate the device supports a nominal voltage of 120VAC.  Specific values are generally used to describe support on device outputs or outlets."/>
207        </Member>
208        <Member Name="AC200To240V">
209          <Annotation Term="OData.Description" String="AC 200-240V nominal."/>
210          <Annotation Term="OData.LongDescription" String="This value shall indicate the device supports a nominal voltage in the complete range of 200-240VAC.  Range values are generally used to describe support on device inputs or inlets."/>
211        </Member>
212        <Member Name="AC200To277V">
213          <Annotation Term="OData.Description" String="AC 200-277V nominal."/>
214          <Annotation Term="OData.LongDescription" String="This value shall indicate the device supports a nominal voltage in the complete range of 200-277VAC.  Range values are generally used to describe support on device inputs or inlets."/>
215        </Member>
216        <Member Name="AC208V">
217          <Annotation Term="OData.Description" String="AC 208V nominal."/>
218          <Annotation Term="OData.LongDescription" String="This value shall indicate the device supports a nominal voltage of 208VAC.  Specific AC voltage values are generally used to describe support on device outputs or outlets."/>
219        </Member>
220        <Member Name="AC230V">
221          <Annotation Term="OData.Description" String="AC 230V nominal."/>
222          <Annotation Term="OData.LongDescription" String="This value shall indicate the device supports a nominal voltage of 230AC.  Specific AC voltage values are generally used to describe support on device outputs or outlets."/>
223        </Member>
224        <Member Name="AC240V">
225          <Annotation Term="OData.Description" String="AC 240V nominal."/>
226          <Annotation Term="OData.LongDescription" String="This value shall indicate the device supports a nominal voltage of 240VAC.  Specific AC voltage values are generally used to describe support on device outputs or outlets."/>
227        </Member>
228        <Member Name="AC240AndDC380V">
229          <Annotation Term="OData.Description" String="AC 200-240V and DC 380V."/>
230          <Annotation Term="OData.LongDescription" String="This value shall indicate the device supports a nominal voltage in the complete range of 200-240VAC or a value of 380VDC.  Range values are generally used to describe support on device inputs or inlets."/>
231        </Member>
232        <Member Name="AC277V">
233          <Annotation Term="OData.Description" String="AC 277V nominal."/>
234          <Annotation Term="OData.LongDescription" String="This value shall indicate the device supports a nominal voltage of 277VAC.  Specific AC high-voltage values may be used to describe support on device inputs or outputs."/>
235        </Member>
236        <Member Name="AC277AndDC380V">
237          <Annotation Term="OData.Description" String="AC 200-277V and DC 380V."/>
238          <Annotation Term="OData.LongDescription" String="This value shall indicate the device supports a nominal voltage in the complete range of 200-277VAC or a value of 380VDC.  Range values are generally used to describe support on device inputs or inlets."/>
239        </Member>
240        <Member Name="AC400V">
241          <Annotation Term="OData.Description" String="AC 400V or 415V nominal."/>
242          <Annotation Term="OData.LongDescription" String="This value shall indicate the device supports a nominal voltage of 400VAC or 415VAC.  Specific AC high-voltage values may be used to describe support on device inputs or outputs."/>
243        </Member>
244        <Member Name="AC480V">
245          <Annotation Term="OData.Description" String="AC 480V nominal."/>
246          <Annotation Term="OData.LongDescription" String="This value shall indicate the device supports a nominal voltage of 480VAC.  Specific AC high-voltage values may be used to describe support on device inputs or outputs."/>
247        </Member>
248        <Member Name="DC48V">
249          <Annotation Term="OData.Description" String="DC 48V nominal."/>
250          <Annotation Term="OData.LongDescription" String="This value shall indicate the device supports a nominal voltage of 48VDC."/>
251          <Annotation Term="Redfish.Revisions">
252            <Collection>
253              <Record>
254                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
255                <PropertyValue Property="Version" String="v1_2_0"/>
256              </Record>
257            </Collection>
258          </Annotation>
259        </Member>
260        <Member Name="DC240V">
261          <Annotation Term="OData.Description" String="DC 240V nominal."/>
262          <Annotation Term="OData.LongDescription" String="This value shall indicate the device supports a nominal voltage of 240VDC."/>
263        </Member>
264        <Member Name="DC380V">
265          <Annotation Term="OData.Description" String="High-voltage DC (380V)."/>
266          <Annotation Term="OData.LongDescription" String="This value shall indicate the device supports a nominal voltage of 380VDC."/>
267        </Member>
268        <Member Name="DCNeg48V">
269          <Annotation Term="OData.Description" String="-48V DC."/>
270          <Annotation Term="OData.LongDescription" String="This value shall indicate the device supports a nominal voltage of -48VDC."/>
271        </Member>
272        <Member Name="DC16V">
273          <Annotation Term="OData.Description" String="DC 16V nominal."/>
274          <Annotation Term="OData.LongDescription" String="This value shall indicate the device supports a nominal voltage of 16VDC."/>
275          <Annotation Term="Redfish.Revisions">
276            <Collection>
277              <Record>
278                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
279                <PropertyValue Property="Version" String="v1_7_0"/>
280              </Record>
281            </Collection>
282          </Annotation>
283        </Member>
284        <Member Name="DC12V">
285          <Annotation Term="OData.Description" String="DC 12V nominal."/>
286          <Annotation Term="OData.LongDescription" String="This value shall indicate the device supports a nominal voltage of 12VDC."/>
287          <Annotation Term="Redfish.Revisions">
288            <Collection>
289              <Record>
290                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
291                <PropertyValue Property="Version" String="v1_7_0"/>
292              </Record>
293            </Collection>
294          </Annotation>
295        </Member>
296        <Member Name="DC9V">
297          <Annotation Term="OData.Description" String="DC 9V nominal."/>
298          <Annotation Term="OData.LongDescription" String="This value shall indicate the device supports a nominal voltage of 9VDC."/>
299          <Annotation Term="Redfish.Revisions">
300            <Collection>
301              <Record>
302                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
303                <PropertyValue Property="Version" String="v1_7_0"/>
304              </Record>
305            </Collection>
306          </Annotation>
307        </Member>
308        <Member Name="DC5V">
309          <Annotation Term="OData.Description" String="DC 5V nominal."/>
310          <Annotation Term="OData.LongDescription" String="This value shall indicate the device supports a nominal voltage of 5VDC."/>
311          <Annotation Term="Redfish.Revisions">
312            <Collection>
313              <Record>
314                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
315                <PropertyValue Property="Version" String="v1_7_0"/>
316              </Record>
317            </Collection>
318          </Annotation>
319        </Member>
320        <Member Name="DC3_3V">
321          <Annotation Term="OData.Description" String="DC 3.3V nominal."/>
322          <Annotation Term="OData.LongDescription" String="This value shall indicate the device supports a nominal voltage of 3.3VDC."/>
323          <Annotation Term="Redfish.Revisions">
324            <Collection>
325              <Record>
326                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
327                <PropertyValue Property="Version" String="v1_7_0"/>
328              </Record>
329            </Collection>
330          </Annotation>
331        </Member>
332        <Member Name="DC1_8V">
333          <Annotation Term="OData.Description" String="DC 1.8V nominal."/>
334          <Annotation Term="OData.LongDescription" String="This value shall indicate the device supports a nominal voltage of 1.8VDC."/>
335          <Annotation Term="Redfish.Revisions">
336            <Collection>
337              <Record>
338                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
339                <PropertyValue Property="Version" String="v1_7_0"/>
340              </Record>
341            </Collection>
342          </Annotation>
343        </Member>
344      </EnumType>
345
346      <EnumType Name="PlugType">
347        <Member Name="NEMA_5_15P">
348          <Annotation Term="OData.Description" String="NEMA 5-15P (Single-phase 125V; 15A; 1P3W)."/>
349          <Annotation Term="OData.LongDescription" String="This value shall represent a plug that matches the NEMA specified 5-15 straight (non-locking) plug (Single-phase 125V; 15A; 1P3W)."/>
350        </Member>
351        <Member Name="NEMA_L5_15P">
352          <Annotation Term="OData.Description" String="NEMA L5-15P (Single-phase 125V; 15A; 1P3W)."/>
353          <Annotation Term="OData.LongDescription" String="This value shall represent a plug that matches the NEMA specified locking L5-15 plug (Single-phase 125V; 15A; 1P3W)."/>
354        </Member>
355        <Member Name="NEMA_5_20P">
356          <Annotation Term="OData.Description" String="NEMA 5-20P (Single-phase 125V; 20A; 1P3W)."/>
357          <Annotation Term="OData.LongDescription" String="This value shall represent a plug that matches the NEMA specified 5-20 straight (non-locking) plug that exhibits a T-slot (Single-phase 125V; 20A; 1P3W)."/>
358        </Member>
359        <Member Name="NEMA_L5_20P">
360          <Annotation Term="OData.Description" String="NEMA L5-20P (Single-phase 125V; 20A; 1P3W)."/>
361          <Annotation Term="OData.LongDescription" String="This value shall represent a plug that matches the NEMA specified locking L5-20 plug (Single-phase 125V; 20A; 1P3W)."/>
362        </Member>
363        <Member Name="NEMA_L5_30P">
364          <Annotation Term="OData.Description" String="NEMA L5-30P (Single-phase 125V; 30A; 1P3W)."/>
365          <Annotation Term="OData.LongDescription" String="This value shall represent a plug that matches the NEMA specified locking L5-30 plug (Single-phase 125V; 30A; 1P3W)."/>
366        </Member>
367        <Member Name="NEMA_6_15P">
368          <Annotation Term="OData.Description" String="NEMA 6-15P (Single-phase 250V; 15A; 2P3W)."/>
369          <Annotation Term="OData.LongDescription" String="This value shall represent a plug that matches the NEMA specified 6-15 straight (non-locking) plug (Single-phase 250V; 15A; 2P3W)."/>
370        </Member>
371        <Member Name="NEMA_L6_15P">
372          <Annotation Term="OData.Description" String="NEMA L6-15P (Single-phase 250V; 15A; 2P3W)."/>
373          <Annotation Term="OData.LongDescription" String="This value shall represent a plug that matches the NEMA specified locking L6-15 plug (Single-phase 250V; 15A; 2P3W)."/>
374        </Member>
375        <Member Name="NEMA_6_20P">
376          <Annotation Term="OData.Description" String="NEMA 6-20P (Single-phase 250V; 20A; 2P3W)."/>
377          <Annotation Term="OData.LongDescription" String="This value shall represent a plug that matches the NEMA specified 6-20 straight (non-locking) plug (Single-phase 250V; 20A; 2P3W)."/>
378        </Member>
379        <Member Name="NEMA_L6_20P">
380          <Annotation Term="OData.Description" String="NEMA L6-20P (Single-phase 250V; 20A; 2P3W)."/>
381          <Annotation Term="OData.LongDescription" String="This value shall represent a plug that matches the NEMA specified locking L6-20 plug (Single-phase 250V; 20A; 2P3W)."/>
382        </Member>
383        <Member Name="NEMA_L6_30P">
384          <Annotation Term="OData.Description" String="NEMA L6-30P (Single-phase 250V; 30A; 2P3W)."/>
385          <Annotation Term="OData.LongDescription" String="This value shall represent a plug that matches the NEMA specified locking L6-30 plug (Single-phase 250V; 30A; 2P3W)."/>
386        </Member>
387        <Member Name="NEMA_L14_20P">
388          <Annotation Term="OData.Description" String="NEMA L14-20P (Split-phase 125/250V; 20A; 2P4W)."/>
389          <Annotation Term="OData.LongDescription" String="This value shall represent a plug that matches the NEMA specified locking L14-20 plug (Split-phase 125/250V; 20A; 2P4W)."/>
390        </Member>
391        <Member Name="NEMA_L14_30P">
392          <Annotation Term="OData.Description" String="NEMA L14-30P (Split-phase 125/250V; 30A; 2P4W)."/>
393          <Annotation Term="OData.LongDescription" String="This value shall represent a plug that matches the NEMA specified locking L14-30 plug (Split-phase 125/250V; 30A; 2P4W)."/>
394        </Member>
395        <Member Name="NEMA_L15_20P">
396          <Annotation Term="OData.Description" String="NEMA L15-20P (Three-phase 250V; 20A; 3P4W)."/>
397          <Annotation Term="OData.LongDescription" String="This value shall represent a plug that matches the NEMA specified locking L15-20 plug (Three-phase 250V; 20A; 3P4W)."/>
398        </Member>
399        <Member Name="NEMA_L15_30P">
400          <Annotation Term="OData.Description" String="NEMA L15-30P (Three-phase 250V; 30A; 3P4W)."/>
401          <Annotation Term="OData.LongDescription" String="This value shall represent a plug that matches the NEMA specified locking L15-30 plug (Three-phase 250V; 30A; 3P4W)."/>
402        </Member>
403        <Member Name="NEMA_L21_20P">
404          <Annotation Term="OData.Description" String="NEMA L21-20P (Three-phase 120/208V; 20A; 3P5W)."/>
405          <Annotation Term="OData.LongDescription" String="This value shall represent a plug that matches the NEMA specified locking L21-20 plug (Three-phase 120/208V; 20A; 3P5W)."/>
406        </Member>
407        <Member Name="NEMA_L21_30P">
408          <Annotation Term="OData.Description" String="NEMA L21-30P (Three-phase 120/208V; 30A; 3P5W)."/>
409          <Annotation Term="OData.LongDescription" String="This value shall represent a plug that matches the NEMA specified locking L21-30 plug (Three-phase 120/208V; 30A; 3P5W)."/>
410        </Member>
411        <Member Name="NEMA_L22_20P">
412          <Annotation Term="OData.Description" String="NEMA L22-20P (Three-phase 277/480V; 20A; 3P5W)."/>
413          <Annotation Term="OData.LongDescription" String="This value shall represent a plug that matches the NEMA specified locking L22-20 plug (Three-phase 277/480V; 20A; 3P5W)."/>
414        </Member>
415        <Member Name="NEMA_L22_30P">
416          <Annotation Term="OData.Description" String="NEMA L22-30P (Three-phase 277/480V; 30A; 3P5W)."/>
417          <Annotation Term="OData.LongDescription" String="This value shall represent a plug that matches the NEMA specified locking L22-30 plug (Three-phase 277/480V; 30A; 3P5W)."/>
418        </Member>
419        <Member Name="California_CS8265">
420          <Annotation Term="OData.Description" String="California Standard CS8265 (Single-phase 250V; 50A; 2P3W)."/>
421          <Annotation Term="OData.LongDescription" String="This value shall represent a plug that matches the 'California Standard' CS8265 style plug (Three-phase 250V; 50A; 3P4W)."/>
422        </Member>
423        <Member Name="California_CS8365">
424          <Annotation Term="OData.Description" String="California Standard CS8365 (Three-phase 250V; 50A; 3P4W)."/>
425          <Annotation Term="OData.LongDescription" String="This value shall represent a plug that matches the 'California Standard' CS8365 style plug (Three-phase 250V; 50A; 3P4W)."/>
426        </Member>
427        <Member Name="IEC_60320_C14">
428          <Annotation Term="OData.Description" String="IEC C14 (Single-phase 250V; 10A; 1P3W)."/>
429          <Annotation Term="OData.LongDescription" String="This value shall represent a plug that matches the IEC 60320 specified C14 input (Single-phase 250V; 10A; 1P3W)."/>
430        </Member>
431        <Member Name="IEC_60320_C20">
432          <Annotation Term="OData.Description" String="IEC C20 (Single-phase 250V; 16A; 1P3W)."/>
433          <Annotation Term="OData.LongDescription" String="This value shall represent a plug that matches the IEC 60320 specified C20 input (Single-phase 250V; 16A; 1P3W)."/>
434        </Member>
435        <Member Name="IEC_60309_316P6">
436          <Annotation Term="OData.Description" String="IEC 60309 316P6 (Single-phase 200-250V; 16A; 1P3W; Blue, 6-hour)."/>
437          <Annotation Term="OData.LongDescription" String="This value shall represent a plug that matches the IEC 60309 316P6 plug (Single-phase 200-250V; 16A; 1P3W; Blue, 6-hour)."/>
438        </Member>
439        <Member Name="IEC_60309_332P6">
440          <Annotation Term="OData.Description" String="IEC 60309 332P6 (Single-phase 200-250V; 32A; 1P3W; Blue, 6-hour)."/>
441          <Annotation Term="OData.LongDescription" String="This value shall represent a plug that matches the IEC 60309 332P6 plug (Single-phase 200-250V; 32A; 1P3W; Blue, 6-hour)."/>
442        </Member>
443        <Member Name="IEC_60309_363P6">
444          <Annotation Term="OData.Description" String="IEC 60309 363P6 (Single-phase 200-250V; 63A; 1P3W; Blue, 6-hour)."/>
445          <Annotation Term="OData.LongDescription" String="This value shall represent a plug that matches the IEC 60309 363P6 plug (Single-phase 200-250V; 63A; 1P3W; Blue, 6-hour)."/>
446        </Member>
447        <Member Name="IEC_60309_516P6">
448          <Annotation Term="OData.Description" String="IEC 60309 516P6 (Three-phase 200-240/346-415V; 16A; 3P5W; Red; 6-hour)."/>
449          <Annotation Term="OData.LongDescription" String="This value shall represent a plug that matches the IEC 60309 516P6 plug (Three-phase 200-240/346-415V; 16A; 3P5W; Red; 6-hour)."/>
450        </Member>
451        <Member Name="IEC_60309_532P6">
452          <Annotation Term="OData.Description" String="IEC 60309 532P6 (Three-phase 200-240/346-415V; 32A; 3P5W; Red; 6-hour)."/>
453          <Annotation Term="OData.LongDescription" String="This value shall represent a plug that matches the IEC 60309 plug 532P6 (Three-phase 200-240/346-415V; 32A; 3P5W; Red; 6-hour)."/>
454        </Member>
455        <Member Name="IEC_60309_563P6">
456          <Annotation Term="OData.Description" String="IEC 60309 563P6 (Three-phase 200-240/346-415V; 63A; 3P5W; Red; 6-hour)."/>
457          <Annotation Term="OData.LongDescription" String="This value shall represent a plug that matches the IEC 60309 563P6 plug (Three-phase 200-240/346-415V; 63A; 3P5W; Red; 6-hour)."/>
458        </Member>
459        <Member Name="IEC_60309_460P9">
460          <Annotation Term="OData.Description" String="IEC 60309 460P9 (Three-phase 200-250V; 60A; 3P4W; Blue; 9-hour)."/>
461          <Annotation Term="OData.LongDescription" String="This value shall represent a plug that matches the IEC 60309 460P9 plug (Three-phase 200-250V; 60A; 3P4W; Blue; 9-hour)."/>
462        </Member>
463        <Member Name="IEC_60309_560P9">
464          <Annotation Term="OData.Description" String="IEC 60309 560P9 (Three-phase 120-144/208-250V; 60A; 3P5W; Blue; 9-hour)."/>
465          <Annotation Term="OData.LongDescription" String="This value shall represent a plug that matches the IEC 60309 plug 560P9 (Three-phase 120-144/208-250V; 60A; 3P5W; Blue; 9-hour)."/>
466        </Member>
467        <Member Name="Field_208V_3P4W_60A">
468          <Annotation Term="OData.Description" String="Field-wired; Three-phase 200-250V; 60A; 3P4W."/>
469          <Annotation Term="OData.LongDescription" String="This value shall represent field-wired input that is three-phase 200-250V; 60A; 3P4W."/>
470        </Member>
471        <Member Name="Field_400V_3P5W_32A">
472          <Annotation Term="OData.Description" String="Field-wired; Three-phase 200-240/346-415V; 32A; 3P5W."/>
473          <Annotation Term="OData.LongDescription" String="This value shall represent field-wired input that is three-phase 200-240/346-415V; 32A; 3P5W."/>
474        </Member>
475      </EnumType>
476    </Schema>
477
478    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Circuit.v1_0_0">
479      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
480      <Annotation Term="Redfish.Release" String="2019.4"/>
481      <EntityType Name="Circuit" BaseType="Circuit.Circuit">
482        <Property Name="Status" Type="Resource.Status" Nullable="false">
483          <Annotation Term="OData.Description" String="The status and health of the resource and its subordinate or dependent resources."/>
484          <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
485        </Property>
486        <Property Name="CircuitType" Type="Circuit.v1_0_0.CircuitType">
487          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
488          <Annotation Term="OData.Description" String="The type of circuit."/>
489          <Annotation Term="OData.LongDescription" String="This property shall contain the type of circuit."/>
490        </Property>
491        <Property Name="CriticalCircuit" Type="Edm.Boolean">
492          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
493          <Annotation Term="OData.Description" String="Designates if this is a critical circuit."/>
494          <Annotation Term="OData.LongDescription" String="This property shall indicate whether the circuit is designated as a critical circuit, and therefore is excluded from autonomous logic that could affect the state of the circuit.  The value shall be `true` if the circuit is deemed critical, and `false` if the circuit is not critical."/>
495        </Property>
496        <Property Name="ElectricalContext" Type="Sensor.ElectricalContext">
497          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
498          <Annotation Term="OData.Description" String="The combination of current-carrying conductors."/>
499          <Annotation Term="OData.LongDescription" String="This property shall contain the combination of current-carrying conductors that distribute power."/>
500        </Property>
501        <Property Name="PhaseWiringType" Type="Circuit.PhaseWiringType">
502          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
503          <Annotation Term="OData.Description" String="The number of ungrounded current-carrying conductors (phases) and the total number of conductors (wires)."/>
504          <Annotation Term="OData.LongDescription" String="This property shall contain the number of ungrounded current-carrying conductors (phases) and the total number of conductors (wires)."/>
505        </Property>
506        <Property Name="VoltageType" Type="Circuit.v1_0_0.VoltageType">
507          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
508          <Annotation Term="OData.Description" String="The type of voltage applied to the circuit."/>
509          <Annotation Term="OData.LongDescription" String="This property shall contain the type of voltage applied to the circuit."/>
510        </Property>
511        <Property Name="PlugType" Type="Circuit.PlugType">
512          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
513          <Annotation Term="OData.Description" String="The type of plug according to NEMA, IEC, or regional standards."/>
514          <Annotation Term="OData.LongDescription" String="This property shall contain the type of physical plug used for this circuit, as defined by IEC, NEMA, or regional standards."/>
515        </Property>
516        <Property Name="NominalVoltage" Type="Circuit.NominalVoltageType">
517          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
518          <Annotation Term="OData.Description" String="The nominal voltage for this circuit."/>
519          <Annotation Term="OData.LongDescription" String="This property shall contain the nominal voltage for this circuit, in volt units."/>
520        </Property>
521        <Property Name="RatedCurrentAmps" Type="Edm.Decimal">
522          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
523          <Annotation Term="OData.Description" String="The rated maximum current allowed for this circuit."/>
524          <Annotation Term="OData.LongDescription" String="This property shall contain the rated maximum current for this circuit, in ampere units, after any required de-rating, due to safety agency or other regulatory requirements, has been applied."/>
525          <Annotation Term="Measures.Unit" String="A"/>
526          <Annotation Term="Validation.Minimum" Int="0"/>
527        </Property>
528        <Property Name="IndicatorLED" Type="Resource.IndicatorLED">
529          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
530          <Annotation Term="OData.Description" String="The state of the indicator LED, which identifies the circuit."/>
531          <Annotation Term="OData.LongDescription" String="This property shall contain the indicator light state for the indicator light associated with this circuit."/>
532          <Annotation Term="Redfish.Revisions">
533            <Collection>
534              <Record>
535                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
536                <PropertyValue Property="Version" String="v1_1_0"/>
537                <PropertyValue Property="Description" String="This property has been deprecated in favor of the LocationIndicatorActive property."/>
538              </Record>
539            </Collection>
540          </Annotation>
541        </Property>
542        <Property Name="BreakerState" Type="Circuit.BreakerStates">
543          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
544          <Annotation Term="OData.Description" String="The state of the overcurrent protection device."/>
545          <Annotation Term="OData.LongDescription" String="This property shall contain the state of the overcurrent protection device."/>
546        </Property>
547        <Property Name="PowerOnDelaySeconds" Type="Edm.Decimal">
548          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
549          <Annotation Term="OData.Description" String="The number of seconds to delay power up after a power cycle or a PowerControl action.  Zero seconds indicates no delay to power up."/>
550          <Annotation Term="OData.LongDescription" String="This property shall contain the number of seconds to delay power up after a power cycle or a PowerControl action.  The value `0` shall indicate no delay to power up."/>
551        </Property>
552        <Property Name="PowerOffDelaySeconds" Type="Edm.Decimal">
553          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
554          <Annotation Term="OData.Description" String="The number of seconds to delay power off after a PowerControl action.  Zero seconds indicates no delay to power off."/>
555          <Annotation Term="OData.LongDescription" String="This property shall contain the number of seconds to delay power off after a PowerControl action.  The value `0` shall indicate no delay to power off."/>
556        </Property>
557        <Property Name="PowerCycleDelaySeconds" Type="Edm.Decimal">
558          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
559          <Annotation Term="OData.Description" String="The number of seconds to delay power on after a PowerControl action to cycle power.  Zero seconds indicates no delay."/>
560          <Annotation Term="OData.LongDescription" String="This property shall contain the number of seconds to delay power on after a PowerControl action to cycle power.  The value `0` shall indicate no delay to power on."/>
561        </Property>
562        <Property Name="PowerRestoreDelaySeconds" Type="Edm.Decimal">
563          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
564          <Annotation Term="OData.Description" String="The number of seconds to delay power on after power has been restored.  Zero seconds indicates no delay."/>
565          <Annotation Term="OData.LongDescription" String="This property shall contain the number of seconds to delay power on after a power fault.  The value `0` shall indicate no delay to power on."/>
566        </Property>
567        <Property Name="PowerRestorePolicy" Type="Circuit.PowerRestorePolicyTypes" Nullable="false">
568          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
569          <Annotation Term="OData.Description" String="The desired power state of the circuit when power is restored after a power loss."/>
570          <Annotation Term="OData.LongDescription" String="This property shall contain the desired PowerState of the circuit when power is applied.  The value `LastState` shall return the circuit to the PowerState it was in when power was lost."/>
571        </Property>
572        <Property Name="PowerState" Type="Resource.PowerState">
573          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
574          <Annotation Term="OData.Description" String="The power state of the circuit."/>
575          <Annotation Term="OData.LongDescription" String="This property shall contain the power state of the circuit."/>
576        </Property>
577        <Property Name="PowerEnabled" Type="Edm.Boolean">
578          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
579          <Annotation Term="OData.Description" String="Indicates if the circuit can be powered."/>
580          <Annotation Term="OData.LongDescription" String="This property shall indicate the power enable state of the circuit.  The value `true` shall indicate that the circuit can be powered on, and `false` shall indicate that the circuit cannot be powered."/>
581        </Property>
582        <NavigationProperty Name="Voltage" Type="Sensor.Sensor">
583          <Annotation Term="Redfish.ExcerptCopy" String="Voltage"/>
584          <Annotation Term="OData.Description" String="The voltage (V) for this single-phase circuit."/>
585          <Annotation Term="OData.LongDescription" String="This property shall contain the voltage, in volt units, for this single-phase circuit.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `Voltage`.  This property shall not appear in resource instances representing poly-phase circuits."/>
586        </NavigationProperty>
587        <NavigationProperty Name="CurrentAmps" Type="Sensor.Sensor">
588          <Annotation Term="Redfish.ExcerptCopy" String="Current"/>
589          <Annotation Term="OData.Description" String="The current (A) for this single-phase circuit."/>
590          <Annotation Term="OData.LongDescription" String="This property shall contain the current, in ampere units, for this single-phase circuit.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `Current`.  This property shall not appear in resource instances representing poly-phase circuits."/>
591        </NavigationProperty>
592        <NavigationProperty Name="PowerWatts" Type="Sensor.Sensor">
593          <Annotation Term="Redfish.ExcerptCopy" String="Power"/>
594          <Annotation Term="OData.Description" String="The power (W) for this circuit."/>
595          <Annotation Term="OData.LongDescription" String="This property shall contain the total power, in watt units, for this circuit that represents the `Total` ElectricalContext sensor when multiple power sensors exist for this circuit.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `Power`."/>
596        </NavigationProperty>
597        <NavigationProperty Name="EnergykWh" Type="Sensor.Sensor">
598          <Annotation Term="Redfish.ExcerptCopy" String="EnergykWh"/>
599          <Annotation Term="OData.Description" String="The energy (kWh) for this circuit."/>
600          <Annotation Term="OData.LongDescription" String="This property shall contain the total energy, in kilowatt-hour units, for this circuit that represents the `Total` ElectricalContext sensor when multiple energy sensors exist for this circuit.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `EnergykWh`."/>
601        </NavigationProperty>
602        <NavigationProperty Name="FrequencyHz" Type="Sensor.Sensor">
603          <Annotation Term="Redfish.ExcerptCopy"/>
604          <Annotation Term="OData.Description" String="The frequency (Hz) for this circuit."/>
605          <Annotation Term="OData.LongDescription" String="This property shall contain the frequency, in hertz units, for this circuit.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `Frequency`."/>
606        </NavigationProperty>
607        <Property Name="PolyPhaseVoltage" Type="Circuit.v1_0_0.VoltageSensors">
608          <Annotation Term="OData.Description" String="The voltage readings for this circuit."/>
609          <Annotation Term="OData.LongDescription" String="This property shall contain the voltage sensors for this circuit.  For single-phase circuits, this property shall contain a duplicate copy of the voltage sensor referenced in the Voltage property, if present.  For poly-phase circuits, this property should contain multiple voltage sensor readings used to fully describe the circuit."/>
610        </Property>
611        <Property Name="PolyPhaseCurrentAmps" Type="Circuit.v1_0_0.CurrentSensors">
612          <Annotation Term="OData.Description" String="The current readings for this circuit."/>
613          <Annotation Term="OData.LongDescription" String="This property shall contain the current sensors for this circuit.  For single-phase circuits, this property shall contain a duplicate copy of the current sensor referenced in the CurrentAmps property, if present.  For poly-phase circuits, this property should contain multiple current sensor readings used to fully describe the circuit."/>
614        </Property>
615        <Property Name="PolyPhasePowerWatts" Type="Circuit.v1_0_0.PowerSensors">
616          <Annotation Term="OData.Description" String="The power readings for this circuit."/>
617          <Annotation Term="OData.LongDescription" String="This property shall contain the power sensors for this circuit.  For single-phase circuits, this property shall contain a duplicate copy of the power sensor referenced in the PowerWatts property, if present.  For poly-phase circuits, this property should contain multiple power sensor readings used to fully describe the circuit."/>
618        </Property>
619        <Property Name="PolyPhaseEnergykWh" Type="Circuit.v1_0_0.EnergySensors">
620          <Annotation Term="OData.Description" String="The energy readings for this circuit."/>
621          <Annotation Term="OData.LongDescription" String="This property shall contain the energy sensors for this circuit.  For single-phase circuits, this property shall contain a duplicate copy of the energy sensor referenced in the EnergykWh property, if present.  For poly-phase circuits, this property should contain multiple energy sensor readings used to fully describe the circuit."/>
622        </Property>
623        <Property Name="Links" Type="Circuit.v1_0_0.Links" Nullable="false">
624          <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
625          <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."/>
626        </Property>
627        <Property Name="Actions" Type="Circuit.v1_0_0.Actions" Nullable="false">
628          <Annotation Term="OData.Description" String="The available actions for this resource."/>
629          <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
630        </Property>
631      </EntityType>
632
633      <ComplexType Name="Links" BaseType="Resource.Links">
634        <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
635        <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."/>
636        <NavigationProperty Name="BranchCircuit" Type="Circuit.Circuit">
637          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
638          <Annotation Term="OData.Description" String="A reference to the branch circuit related to this circuit."/>
639          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource of type Circuit that represents the branch circuit associated with this circuit."/>
640          <Annotation Term="OData.AutoExpandReferences"/>
641        </NavigationProperty>
642        <NavigationProperty Name="Outlets" Type="Collection(Outlet.Outlet)">
643          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
644          <Annotation Term="OData.Description" String="An array of references to the outlets contained by this circuit."/>
645          <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to resources of type Outlet that represent the outlets associated with this circuit."/>
646          <Annotation Term="OData.AutoExpandReferences"/>
647        </NavigationProperty>
648      </ComplexType>
649
650      <ComplexType Name="Actions">
651        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
652        <Annotation Term="OData.Description" String="The available actions for this resource."/>
653        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
654        <Property Name="Oem" Type="Circuit.v1_0_0.OemActions" Nullable="false">
655          <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
656          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
657        </Property>
658      </ComplexType>
659
660      <ComplexType Name="OemActions">
661        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
662        <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
663        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
664      </ComplexType>
665
666      <ComplexType Name="VoltageSensors">
667        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
668        <Annotation Term="OData.Description" String="The voltage readings for this circuit."/>
669        <Annotation Term="OData.LongDescription" String="This type shall contain properties that describe voltage sensor readings for a circuit."/>
670        <NavigationProperty Name="Line1ToLine2" Type="Sensor.Sensor">
671          <Annotation Term="Redfish.ExcerptCopy" String="Voltage"/>
672          <Annotation Term="OData.Description" String="The Line 1 to Line 2 voltage (V) for this circuit."/>
673          <Annotation Term="OData.LongDescription" String="This property shall contain the line-to-line voltage, in volt units, between L1 and L2.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `Voltage`.  This property shall not be present if the equipment does not include an L1-L2 measurement."/>
674        </NavigationProperty>
675        <NavigationProperty Name="Line2ToLine3" Type="Sensor.Sensor">
676          <Annotation Term="Redfish.ExcerptCopy" String="Voltage"/>
677          <Annotation Term="OData.Description" String="The Line 2 to Line 3 voltage (V) for this circuit."/>
678          <Annotation Term="OData.LongDescription" String="This property shall contain the line-to-line voltage, in volt units, between L2 and L3.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `Voltage`.  This property shall not be present if the equipment does not include an L2-L3 measurement."/>
679        </NavigationProperty>
680        <NavigationProperty Name="Line3ToLine1" Type="Sensor.Sensor">
681          <Annotation Term="Redfish.ExcerptCopy" String="Voltage"/>
682          <Annotation Term="OData.Description" String="The Line 3 to Line 1 voltage (V) for this circuit."/>
683          <Annotation Term="OData.LongDescription" String="This property shall contain the line-to-line voltage, in volt units, between L3 and L1.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `Voltage`.  This property shall not be present if the equipment does not include an L3-L1 measurement."/>
684        </NavigationProperty>
685        <NavigationProperty Name="Line1ToNeutral" Type="Sensor.Sensor">
686          <Annotation Term="Redfish.ExcerptCopy" String="Voltage"/>
687          <Annotation Term="OData.Description" String="The Line 1 to Neutral voltage (V) for this circuit."/>
688          <Annotation Term="OData.LongDescription" String="This property shall contain the line-to-line voltage, in volt units, between L1 and Neutral.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `Voltage`.  This property shall not be present if the equipment does not include an L1-Neutral measurement."/>
689        </NavigationProperty>
690        <NavigationProperty Name="Line2ToNeutral" Type="Sensor.Sensor">
691          <Annotation Term="Redfish.ExcerptCopy" String="Voltage"/>
692          <Annotation Term="OData.Description" String="The Line 2 to Neutral voltage (V) for this circuit."/>
693          <Annotation Term="OData.LongDescription" String="This property shall contain the line-to-line voltage, in volt units, between L2 and Neutral.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `Voltage`.  This property shall not be present if the equipment does not include an L2-Neutral measurement."/>
694        </NavigationProperty>
695        <NavigationProperty Name="Line3ToNeutral" Type="Sensor.Sensor">
696          <Annotation Term="Redfish.ExcerptCopy" String="Voltage"/>
697          <Annotation Term="OData.Description" String="The Line 3 to Neutral voltage (V) for this circuit."/>
698          <Annotation Term="OData.LongDescription" String="This property shall contain the line-to-line voltage, in volt units, between L3 and Neutral.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `Voltage`.  This property shall not be present if the equipment does not include an L3-Neutral measurement."/>
699        </NavigationProperty>
700      </ComplexType>
701
702      <ComplexType Name="CurrentSensors">
703        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
704        <Annotation Term="OData.Description" String="The current sensors for this circuit."/>
705        <Annotation Term="OData.LongDescription" String="This type shall contain properties that describe current sensor readings for a circuit."/>
706        <NavigationProperty Name="Line1" Type="Sensor.Sensor">
707          <Annotation Term="Redfish.ExcerptCopy" String="Current"/>
708          <Annotation Term="OData.Description" String="Line 1 current (A)."/>
709          <Annotation Term="OData.LongDescription" String="This property shall contain the line current, in ampere units, for L1.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `Current`.  This property shall not be present if the equipment does not include an L1 measurement."/>
710        </NavigationProperty>
711        <NavigationProperty Name="Line2" Type="Sensor.Sensor">
712          <Annotation Term="Redfish.ExcerptCopy" String="Current"/>
713          <Annotation Term="OData.Description" String="Line 2 current (A)."/>
714          <Annotation Term="OData.LongDescription" String="This property shall contain the line current, in ampere units, for L2.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `Current`.  This property shall not be present if the equipment does not include an L2 measurement."/>
715        </NavigationProperty>
716        <NavigationProperty Name="Line3" Type="Sensor.Sensor">
717          <Annotation Term="Redfish.ExcerptCopy" String="Current"/>
718          <Annotation Term="OData.Description" String="Line 3 current (A)."/>
719          <Annotation Term="OData.LongDescription" String="This property shall contain the line current, in ampere units, for L3.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `Current`.  This property shall not be present if the equipment does not include an L3 measurement."/>
720        </NavigationProperty>
721        <NavigationProperty Name="Neutral" Type="Sensor.Sensor">
722          <Annotation Term="Redfish.ExcerptCopy" String="Current"/>
723          <Annotation Term="OData.Description" String="Neutral line current (A)."/>
724          <Annotation Term="OData.LongDescription" String="This property shall contain the line current, in ampere units, for the Neutral line.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `Current`.  This property shall not be present if the equipment does not include a Neutral line measurement."/>
725        </NavigationProperty>
726      </ComplexType>
727
728      <ComplexType Name="EnergySensors">
729        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
730        <Annotation Term="OData.Description" String="The energy readings for this circuit."/>
731        <Annotation Term="OData.LongDescription" String="This type shall contain properties that describe energy sensor readings for a circuit."/>
732        <NavigationProperty Name="Line1ToLine2" Type="Sensor.Sensor">
733          <Annotation Term="Redfish.ExcerptCopy" String="EnergykWh"/>
734          <Annotation Term="OData.Description" String="The Line 1 to Line 2 energy (kWh) for this circuit."/>
735          <Annotation Term="OData.LongDescription" String="This property shall contain the energy, in kilowatt-hour units, between L1 and L2.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `EnergykWh`.  This property shall not be present if the equipment does not include an L1-L2 measurement."/>
736        </NavigationProperty>
737        <NavigationProperty Name="Line2ToLine3" Type="Sensor.Sensor">
738          <Annotation Term="Redfish.ExcerptCopy" String="EnergykWh"/>
739          <Annotation Term="OData.Description" String="The Line 2 to Line 3 energy (kWh) for this circuit."/>
740          <Annotation Term="OData.LongDescription" String="This property shall contain the energy, in kilowatt-hour units, between L2 and L3.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `EnergykWh`.  This property shall not be present if the equipment does not include an L2-L3 measurement."/>
741        </NavigationProperty>
742        <NavigationProperty Name="Line3ToLine1" Type="Sensor.Sensor">
743          <Annotation Term="Redfish.ExcerptCopy" String="EnergykWh"/>
744          <Annotation Term="OData.Description" String="The Line 3 to Line 1 energy (kWh) for this circuit."/>
745          <Annotation Term="OData.LongDescription" String="This property shall contain the energy, in kilowatt-hour units, between L3 and L1.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `EnergykWh`.  This property shall not be present if the equipment does not include an L3-L1 measurement."/>
746        </NavigationProperty>
747        <NavigationProperty Name="Line1ToNeutral" Type="Sensor.Sensor">
748          <Annotation Term="Redfish.ExcerptCopy" String="EnergykWh"/>
749          <Annotation Term="OData.Description" String="The Line 1 to Neutral energy (kWh) for this circuit."/>
750          <Annotation Term="OData.LongDescription" String="This property shall contain the energy, in kilowatt-hour units, between L1 and Neutral.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `EnergykWh`.  This property shall not be present if the equipment does not include an L1-Neutral measurement."/>
751        </NavigationProperty>
752        <NavigationProperty Name="Line2ToNeutral" Type="Sensor.Sensor">
753          <Annotation Term="Redfish.ExcerptCopy" String="EnergykWh"/>
754          <Annotation Term="OData.Description" String="The Line 2 to Neutral energy (kWh) for this circuit."/>
755          <Annotation Term="OData.LongDescription" String="This property shall contain the energy, in kilowatt-hour units, between L2 and Neutral.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `EnergykWh`.  This property shall not be present if the equipment does not include an L2-Neutral measurement."/>
756        </NavigationProperty>
757        <NavigationProperty Name="Line3ToNeutral" Type="Sensor.Sensor">
758          <Annotation Term="Redfish.ExcerptCopy" String="EnergykWh"/>
759          <Annotation Term="OData.Description" String="The Line 3 to Neutral energy (kWh) for this circuit."/>
760          <Annotation Term="OData.LongDescription" String="This property shall contain the energy, in kilowatt-hour units, between L3 and Neutral.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `EnergykWh`.  This property shall not be present if the equipment does not include an L3-Neutral measurement."/>
761        </NavigationProperty>
762      </ComplexType>
763
764      <ComplexType Name="PowerSensors">
765        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
766        <Annotation Term="OData.Description" String="This property contains the power sensors."/>
767        <Annotation Term="OData.LongDescription" String="This type shall contain properties that describe power sensor readings for a circuit."/>
768        <NavigationProperty Name="Line1ToLine2" Type="Sensor.Sensor">
769          <Annotation Term="Redfish.ExcerptCopy" String="Power"/>
770          <Annotation Term="OData.Description" String="The Line 1 to Line 2 power (W) for this circuit."/>
771          <Annotation Term="OData.LongDescription" String="This property shall contain the power, in watt units, between L1 and L2.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `Power`.  This property shall not be present if the equipment does not include an L1-L2 measurement."/>
772        </NavigationProperty>
773        <NavigationProperty Name="Line2ToLine3" Type="Sensor.Sensor">
774          <Annotation Term="Redfish.ExcerptCopy" String="Power"/>
775          <Annotation Term="OData.Description" String="The Line 2 to Line 3 power (W) for this circuit."/>
776          <Annotation Term="OData.LongDescription" String="This property shall contain the power, in watt units, between L2 and L3.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `Power`.  This property shall not be present if the equipment does not include an L2-L3 measurement."/>
777        </NavigationProperty>
778        <NavigationProperty Name="Line3ToLine1" Type="Sensor.Sensor">
779          <Annotation Term="Redfish.ExcerptCopy" String="Power"/>
780          <Annotation Term="OData.Description" String="The Line 3 to Line 1 power (W) for this circuit."/>
781          <Annotation Term="OData.LongDescription" String="This property shall contain the power, in watt units, between L3 and L1.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `Power`.  This property shall not be present if the equipment does not include an L3-L1 measurement."/>
782        </NavigationProperty>
783        <NavigationProperty Name="Line1ToNeutral" Type="Sensor.Sensor">
784          <Annotation Term="Redfish.ExcerptCopy" String="Power"/>
785          <Annotation Term="OData.Description" String="The Line 1 to Neutral power (W) for this circuit."/>
786          <Annotation Term="OData.LongDescription" String="This property shall contain the power, in watt units, between L1 and Neutral.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `Power`.  This property shall not be present if the equipment does not include an L1-Neutral measurement."/>
787        </NavigationProperty>
788        <NavigationProperty Name="Line2ToNeutral" Type="Sensor.Sensor">
789          <Annotation Term="Redfish.ExcerptCopy" String="Power"/>
790          <Annotation Term="OData.Description" String="The Line 2 to Neutral power (W) for this circuit."/>
791          <Annotation Term="OData.LongDescription" String="This property shall contain the power, in watt units, between L2 and Neutral.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `Power`.  This property shall not be present if the equipment does not include an L2-Neutral measurement."/>
792        </NavigationProperty>
793        <NavigationProperty Name="Line3ToNeutral" Type="Sensor.Sensor">
794          <Annotation Term="Redfish.ExcerptCopy" String="Power"/>
795          <Annotation Term="OData.Description" String="The Line 3 to Neutral power (W) for this circuit."/>
796          <Annotation Term="OData.LongDescription" String="This property shall contain the power, in watt units, between L3 and Neutral.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `Power`.  This property shall not be present if the equipment does not include an L3-Neutral measurement."/>
797        </NavigationProperty>
798      </ComplexType>
799
800      <EnumType Name="CircuitType">
801        <Member Name="Mains">
802          <Annotation Term="OData.Description" String="A mains input or utility circuit."/>
803        </Member>
804        <Member Name="Branch">
805          <Annotation Term="OData.Description" String="A branch (output) circuit."/>
806        </Member>
807        <Member Name="Subfeed">
808          <Annotation Term="OData.Description" String="A subfeed (output) circuit."/>
809        </Member>
810        <Member Name="Feeder">
811          <Annotation Term="OData.Description" String="A feeder (output) circuit."/>
812        </Member>
813        <Member Name="Bus">
814          <Annotation Term="OData.Description" String="An electrical bus circuit."/>
815          <Annotation Term="Redfish.Revisions">
816            <Collection>
817              <Record>
818                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
819                <PropertyValue Property="Version" String="v1_3_0"/>
820              </Record>
821            </Collection>
822          </Annotation>
823        </Member>
824      </EnumType>
825
826      <EnumType Name="VoltageType">
827        <Member Name="AC">
828          <Annotation Term="OData.Description" String="Alternating Current (AC) circuit."/>
829        </Member>
830        <Member Name="DC">
831          <Annotation Term="OData.Description" String="Direct Current (DC) circuit."/>
832        </Member>
833      </EnumType>
834    </Schema>
835
836    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Circuit.v1_0_1">
837      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
838      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
839      <EntityType Name="Circuit" BaseType="Circuit.v1_0_0.Circuit"/>
840    </Schema>
841
842    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Circuit.v1_0_2">
843      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
844      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
845      <EntityType Name="Circuit" BaseType="Circuit.v1_0_1.Circuit"/>
846    </Schema>
847
848    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Circuit.v1_0_3">
849      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
850      <Annotation Term="OData.Description" String="This version was created to update descriptions to tie excerpt property definitions to a specific type of Sensor or Control.  It was also created to correct the type for the PowerState parameter of the PowerControl action."/>
851      <EntityType Name="Circuit" BaseType="Circuit.v1_0_2.Circuit"/>
852    </Schema>
853
854    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Circuit.v1_0_4">
855      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
856      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
857      <EntityType Name="Circuit" BaseType="Circuit.v1_0_3.Circuit"/>
858    </Schema>
859
860    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Circuit.v1_1_0">
861      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
862      <Annotation Term="Redfish.Release" String="2020.3"/>
863      <Annotation Term="OData.Description" String="This version was created to add LocationIndicatorActive and to deprecate IndicatorLED properties."/>
864
865      <EntityType Name="Circuit" BaseType="Circuit.v1_0_1.Circuit">
866        <Property Name="LocationIndicatorActive" Type="Edm.Boolean">
867          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
868          <Annotation Term="OData.Description" String="An indicator allowing an operator to physically locate this resource."/>
869          <Annotation Term="OData.LongDescription" String="This property shall contain the state of the indicator used to physically identify or locate this resource.  A write to this property shall update the value of IndicatorLED in this resource, if supported, to reflect the implementation of the locating function."/>
870        </Property>
871      </EntityType>
872    </Schema>
873
874    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Circuit.v1_1_1">
875      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
876      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
877      <EntityType Name="Circuit" BaseType="Circuit.v1_1_0.Circuit"/>
878    </Schema>
879
880    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Circuit.v1_1_2">
881      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
882      <Annotation Term="OData.Description" String="This version was created to update descriptions to tie excerpt property definitions to a specific type of Sensor or Control.  It was also created to correct the type for the PowerState parameter of the PowerControl action."/>
883      <EntityType Name="Circuit" BaseType="Circuit.v1_1_1.Circuit"/>
884    </Schema>
885
886    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Circuit.v1_1_3">
887      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
888      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
889      <EntityType Name="Circuit" BaseType="Circuit.v1_1_2.Circuit"/>
890    </Schema>
891
892    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Circuit.v1_2_0">
893      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
894      <Annotation Term="Redfish.Release" String="2020.4"/>
895      <Annotation Term="OData.Description" String="This version was created to add DC50V to NominalVoltageType."/>
896
897      <EntityType Name="Circuit" BaseType="Circuit.v1_1_1.Circuit"/>
898    </Schema>
899
900    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Circuit.v1_2_1">
901      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
902      <Annotation Term="OData.Description" String="This version was created to update descriptions to tie excerpt property definitions to a specific type of Sensor or Control.  It was also created to correct the type for the PowerState parameter of the PowerControl action."/>
903      <EntityType Name="Circuit" BaseType="Circuit.v1_2_0.Circuit"/>
904    </Schema>
905
906    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Circuit.v1_2_2">
907      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
908      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
909      <EntityType Name="Circuit" BaseType="Circuit.v1_2_1.Circuit"/>
910    </Schema>
911
912    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Circuit.v1_3_0">
913      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
914      <Annotation Term="Redfish.Release" String="2021.2"/>
915
916      <EntityType Name="Circuit" BaseType="Circuit.v1_2_0.Circuit">
917        <NavigationProperty Name="PowerLoadPercent" Type="Sensor.Sensor">
918          <Annotation Term="Redfish.ExcerptCopy"/>
919          <Annotation Term="OData.Description" String="The power load (percent) for this circuit."/>
920          <Annotation Term="OData.LongDescription" String="This property shall contain the power load, in percent units, for this circuit that represents the `Total` ElectricalContext for this circuit."/>
921        </NavigationProperty>
922      </EntityType>
923    </Schema>
924
925    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Circuit.v1_3_1">
926      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
927      <Annotation Term="OData.Description" String="This version was created to update descriptions to tie excerpt property definitions to a specific type of Sensor or Control.  It was also created to correct the type for the PowerState parameter of the PowerControl action."/>
928      <EntityType Name="Circuit" BaseType="Circuit.v1_3_0.Circuit"/>
929    </Schema>
930
931    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Circuit.v1_3_2">
932      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
933      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
934      <EntityType Name="Circuit" BaseType="Circuit.v1_3_1.Circuit"/>
935    </Schema>
936
937    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Circuit.v1_4_0">
938      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
939      <Annotation Term="Redfish.Release" String="2021.3"/>
940
941      <EntityType Name="Circuit" BaseType="Circuit.v1_3_0.Circuit">
942        <Property Name="UserLabel" Type="Edm.String" Nullable="false">
943          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
944          <Annotation Term="OData.Description" String="A user-assigned label."/>
945          <Annotation Term="OData.LongDescription" String="This property shall contain a user-assigned label used to identify this resource.  If a value has not been assigned by a user, the value of this property shall be an empty string."/>
946        </Property>
947        <Property Name="ElectricalSourceManagerURI" Type="Edm.String" Nullable="false">
948          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
949          <Annotation Term="OData.Description" String="The URI of the management interface for the upstream electrical source connection for this circuit."/>
950          <Annotation Term="OData.LongDescription" String="This property shall contain a URI to the management application or device that provides monitoring or control of the upstream electrical source that provides power to this circuit.  If a value has not been assigned by a user, the value of this property shall be an empty string."/>
951          <Annotation Term="OData.IsURL"/>
952        </Property>
953        <Property Name="ElectricalSourceName" Type="Edm.String" Nullable="false">
954          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
955          <Annotation Term="OData.Description" String="The name of the upstream electrical source, such as a circuit or outlet, connected to this circuit."/>
956          <Annotation Term="OData.LongDescription" String="This property shall contain a string that identifies the upstream electrical source, such as the name of a circuit or outlet, that provides power to this circuit.  If a value has not been assigned by a user, the value of this property shall be an empty string."/>
957        </Property>
958        <Property Name="ElectricalConsumerNames" Type="Collection(Edm.String)">
959          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
960          <Annotation Term="OData.Description" String="An array of names of downstream devices that are powered by this circuit."/>
961          <Annotation Term="OData.LongDescription" String="This property shall contain an array of user-assigned identifying strings that describe downstream devices that are powered by this circuit."/>
962        </Property>
963      </EntityType>
964
965      <ComplexType Name="Links" BaseType="Circuit.v1_0_0.Links">
966        <NavigationProperty Name="SourceCircuit" Type="Circuit.Circuit">
967          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
968          <Annotation Term="OData.Description" String="A link to the circuit that provides power to this circuit."/>
969          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource of type Circuit that represents the circuit that provides power to this circuit.  This property should be used when the power source is not represented by an Outlet resource, such as a feeder circuit."/>
970          <Annotation Term="OData.AutoExpandReferences"/>
971        </NavigationProperty>
972        <NavigationProperty Name="PowerOutlet" Type="Outlet.Outlet">
973          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
974          <Annotation Term="OData.Description" String="A link to the power outlet that provides power to this circuit."/>
975          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource of type Outlet that represents the outlet that provides power to this circuit."/>
976          <Annotation Term="OData.AutoExpandReferences"/>
977        </NavigationProperty>
978        <NavigationProperty Name="DistributionCircuits" Type="Collection(Circuit.Circuit)">
979          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
980          <Annotation Term="OData.Description" String="An array of links to the circuits powered by this circuit."/>
981          <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to resources of type Circuit that represent the circuits powered by this circuit."/>
982          <Annotation Term="OData.AutoExpandReferences"/>
983        </NavigationProperty>
984      </ComplexType>
985    </Schema>
986
987    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Circuit.v1_4_1">
988      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
989      <Annotation Term="OData.Description" String="This version was created to update descriptions to tie excerpt property definitions to a specific type of Sensor or Control.  It was also created to correct the type for the PowerState parameter of the PowerControl action."/>
990      <EntityType Name="Circuit" BaseType="Circuit.v1_4_0.Circuit"/>
991    </Schema>
992
993    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Circuit.v1_4_2">
994      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
995      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
996      <EntityType Name="Circuit" BaseType="Circuit.v1_4_1.Circuit"/>
997    </Schema>
998
999    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Circuit.v1_5_0">
1000      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1001      <Annotation Term="Redfish.Release" String="2021.4"/>
1002      <Annotation Term="OData.Description" String="This version was created to add `PowerCycle` to the PowerState parameter of the PowerControl action."/>
1003
1004      <EntityType Name="Circuit" BaseType="Circuit.v1_4_1.Circuit">
1005        <NavigationProperty Name="UnbalancedVoltagePercent" Type="Sensor.Sensor">
1006          <Annotation Term="Redfish.ExcerptCopy"/>
1007          <Annotation Term="OData.Description" String="The voltage imbalance (percent) between phases."/>
1008          <Annotation Term="OData.LongDescription" String="This property shall contain the voltage imbalance, in percent units, between phases in a poly-phase circuit.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `Percent`."/>
1009        </NavigationProperty>
1010        <NavigationProperty Name="UnbalancedCurrentPercent" Type="Sensor.Sensor">
1011          <Annotation Term="Redfish.ExcerptCopy"/>
1012          <Annotation Term="OData.Description" String="The current imbalance (percent) between phases."/>
1013          <Annotation Term="OData.LongDescription" String="This property shall contain the current imbalance, in percent units, between phases in a poly-phase circuit.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `Percent`."/>
1014        </NavigationProperty>
1015        <Property Name="PowerControlLocked" Type="Edm.Boolean" Nullable="false">
1016          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1017          <Annotation Term="OData.Description" String="Indicates whether power control requests are locked."/>
1018          <Annotation Term="OData.LongDescription" String="This property shall indicate whether requests to the PowerControl action are locked.  If `true`, services shall reject requests to the PowerControl action."/>
1019        </Property>
1020        <Property Name="ConfigurationLocked" Type="Edm.Boolean" Nullable="false">
1021          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1022          <Annotation Term="OData.Description" String="Indicates whether the configuration is locked."/>
1023          <Annotation Term="OData.LongDescription" String="This property shall indicate whether modification requests to this resource are not permitted.  If `true`, services shall reject modification requests to other properties in this resource."/>
1024        </Property>
1025        <Property Name="PowerStateInTransition" Type="Edm.Boolean" Nullable="false">
1026          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1027          <Annotation Term="OData.Description" String="Indicates whether the power state is undergoing a delayed transition."/>
1028          <Annotation Term="OData.LongDescription" String="This property shall indicate whether the PowerState property will undergo a transition between on and off states due to a configured delay.  The transition may be due to the configuration of the power on, off, or restore delay properties.  If `true`, the PowerState property will transition at the conclusion of a configured delay."/>
1029        </Property>
1030      </EntityType>
1031    </Schema>
1032
1033    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Circuit.v1_5_1">
1034      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1035      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1036      <EntityType Name="Circuit" BaseType="Circuit.v1_5_0.Circuit"/>
1037    </Schema>
1038
1039    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Circuit.v1_6_0">
1040      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1041      <Annotation Term="Redfish.Release" String="2022.1"/>
1042      <Annotation Term="OData.Description" String="This version was created to add `AC100to127V` to NominalVoltageType.  It was also created to add long descriptions for NominalVoltageType values."/>
1043
1044      <EntityType Name="Circuit" BaseType="Circuit.v1_5_0.Circuit"/>
1045    </Schema>
1046
1047    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Circuit.v1_6_1">
1048      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1049      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1050      <EntityType Name="Circuit" BaseType="Circuit.v1_6_0.Circuit"/>
1051    </Schema>
1052
1053    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Circuit.v1_7_0">
1054      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1055      <Annotation Term="Redfish.Release" String="2022.2"/>
1056      <Annotation Term="OData.Description" String="This version was created to add `DC16V`, `DC12V`, `DC9V`, `DC5V`, `DC3_3V` and `DC1_8V` to NominalVoltageType."/>
1057
1058      <EntityType Name="Circuit" BaseType="Circuit.v1_6_0.Circuit"/>
1059    </Schema>
1060
1061    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Circuit.v1_7_1">
1062      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1063      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1064      <EntityType Name="Circuit" BaseType="Circuit.v1_7_0.Circuit"/>
1065    </Schema>
1066
1067  </edmx:DataServices>
1068</edmx:Edmx>
1069