Gunnar Mills | 09b9d45 | 2020-02-11 13:27:39 -0600 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!----> |
| 3 | <!--################################################################################ --> |
Gunnar Mills | 844b415 | 2020-06-22 12:44:09 -0500 | [diff] [blame^] | 4 | <!--# Redfish Schema: Circuit v1.0.1 --> |
Gunnar Mills | 09b9d45 | 2020-02-11 13:27:39 -0600 | [diff] [blame] | 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 --> |
Gunnar Mills | a778c02 | 2020-05-12 12:20:36 -0500 | [diff] [blame] | 8 | <!--# Copyright 2018-2020 DMTF. --> |
Gunnar Mills | 09b9d45 | 2020-02-11 13:27:39 -0600 | [diff] [blame] | 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 | </Collection> |
| 73 | </Annotation> |
| 74 | </EntityType> |
| 75 | |
| 76 | <Action Name="PowerControl" IsBound="true"> |
Gunnar Mills | 844b415 | 2020-06-22 12:44:09 -0500 | [diff] [blame^] | 77 | <Annotation Term="OData.Description" String="This action turns the circuit on or off."/> |
| 78 | <Annotation Term="OData.LongDescription" String="This action shall control the power state of the circuit."/> |
Gunnar Mills | 09b9d45 | 2020-02-11 13:27:39 -0600 | [diff] [blame] | 79 | <Parameter Name="Circuit" Type="Circuit.v1_0_0.Actions"/> |
| 80 | <Parameter Name="PowerState" Type="Resource.PowerState"> |
| 81 | <Annotation Term="OData.Description" String="The desired power state of the circuit."/> |
| 82 | <Annotation Term="OData.LongDescription" String="This parameter shall contain the desired power state of the circuit."/> |
| 83 | </Parameter> |
Gunnar Mills | 09b9d45 | 2020-02-11 13:27:39 -0600 | [diff] [blame] | 84 | </Action> |
| 85 | |
| 86 | <Action Name="BreakerControl" IsBound="true"> |
Gunnar Mills | 844b415 | 2020-06-22 12:44:09 -0500 | [diff] [blame^] | 87 | <Annotation Term="OData.Description" String="This action attempts to reset the circuit breaker."/> |
| 88 | <Annotation Term="OData.LongDescription" String="This action shall control the state of the circuit breaker or over-current protection device."/> |
Gunnar Mills | 09b9d45 | 2020-02-11 13:27:39 -0600 | [diff] [blame] | 89 | <Parameter Name="Circuit" Type="Circuit.v1_0_0.Actions"/> |
| 90 | <Parameter Name="PowerState" Type="Circuit.PowerState"> |
| 91 | <Annotation Term="OData.Description" String="The desired power state of the circuit if the breaker is reset successfully."/> |
| 92 | <Annotation Term="OData.LongDescription" String="This parameter shall contain the desired power state of the circuit."/> |
| 93 | </Parameter> |
Gunnar Mills | 09b9d45 | 2020-02-11 13:27:39 -0600 | [diff] [blame] | 94 | </Action> |
| 95 | |
| 96 | <Action Name="ResetMetrics" IsBound="true"> |
Gunnar Mills | 09b9d45 | 2020-02-11 13:27:39 -0600 | [diff] [blame] | 97 | <Annotation Term="OData.Description" String="This action resets metrics related to this circuit."/> |
| 98 | <Annotation Term="OData.LongDescription" String="This action shall reset any time intervals or counted values for this circuit."/> |
Gunnar Mills | 844b415 | 2020-06-22 12:44:09 -0500 | [diff] [blame^] | 99 | <Parameter Name="Circuit" Type="Circuit.v1_0_0.Actions"/> |
Gunnar Mills | 09b9d45 | 2020-02-11 13:27:39 -0600 | [diff] [blame] | 100 | </Action> |
| 101 | |
| 102 | <EnumType Name="PowerState"> |
| 103 | <Member Name="On"> |
| 104 | <Annotation Term="OData.Description" String="The circuit is powered on."/> |
| 105 | </Member> |
| 106 | <Member Name="Off"> |
| 107 | <Annotation Term="OData.Description" String="The circuit is powered off."/> |
| 108 | </Member> |
| 109 | </EnumType> |
| 110 | |
| 111 | <EnumType Name="BreakerStates"> |
| 112 | <Member Name="Normal"> |
| 113 | <Annotation Term="OData.Description" String="The breaker is powered on."/> |
| 114 | </Member> |
| 115 | <Member Name="Tripped"> |
| 116 | <Annotation Term="OData.Description" String="The breaker has been tripped."/> |
| 117 | </Member> |
| 118 | <Member Name="Off"> |
| 119 | <Annotation Term="OData.Description" String="The breaker is off."/> |
| 120 | </Member> |
| 121 | </EnumType> |
| 122 | |
| 123 | <EnumType Name="PowerRestorePolicyTypes"> |
| 124 | <Annotation Term="OData.Description" String="The enumerations of PowerRestorePolicyTypes specify the choice of power state when power is applied."/> |
| 125 | <Member Name="AlwaysOn"> |
| 126 | <Annotation Term="OData.Description" String="Always power on when external power is applied."/> |
| 127 | </Member> |
| 128 | <Member Name="AlwaysOff"> |
| 129 | <Annotation Term="OData.Description" String="Always remain powered off when external power is applied."/> |
| 130 | </Member> |
| 131 | <Member Name="LastState"> |
| 132 | <Annotation Term="OData.Description" String="Return to the last power state (on or off) when external power is applied."/> |
| 133 | </Member> |
| 134 | </EnumType> |
| 135 | |
| 136 | <EnumType Name="PhaseWiringType"> |
| 137 | <Member Name="OnePhase3Wire"> |
| 138 | <Annotation Term="OData.Description" String="Single-phase / 3-Wire (Line1, Neutral, Protective Earth)."/> |
| 139 | <Annotation Term="OData.LongDescription" String="This value shall represent a Single-phase / 3-Wire (Line1, Neutral, Protective Earth) wiring."/> |
| 140 | </Member> |
| 141 | <Member Name="TwoPhase3Wire"> |
| 142 | <Annotation Term="OData.Description" String="Two-phase / 3-Wire (Line1, Line2, Protective Earth)."/> |
| 143 | <Annotation Term="OData.LongDescription" String="This value shall represent a Two-phase / 3-Wire (Line1, Line2, Protective Earth) wiring."/> |
| 144 | </Member> |
| 145 | <Member Name="OneOrTwoPhase3Wire"> |
| 146 | <Annotation Term="OData.Description" String="Single or Two-Phase / 3-Wire (Line1, Line2 or Neutral, Protective Earth)."/> |
| 147 | <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."/> |
| 148 | </Member> |
| 149 | <Member Name="TwoPhase4Wire"> |
| 150 | <Annotation Term="OData.Description" String="Two-phase / 4-Wire (Line1, Line2, Neutral, Protective Earth)."/> |
| 151 | <Annotation Term="OData.LongDescription" String="This value shall represent a Two-phase / 4-Wire (Line1, Line2, Neutral, Protective Earth) wiring."/> |
| 152 | </Member> |
| 153 | <Member Name="ThreePhase4Wire"> |
| 154 | <Annotation Term="OData.Description" String="Three-phase / 4-Wire (Line1, Line2, Line3, Protective Earth)."/> |
| 155 | <Annotation Term="OData.LongDescription" String="This value shall represent a Three-phase / 4-Wire (Line1, Line2, Line3, Protective Earth) wiring."/> |
| 156 | </Member> |
| 157 | <Member Name="ThreePhase5Wire"> |
| 158 | <Annotation Term="OData.Description" String="Three-phase / 5-Wire (Line1, Line2, Line3, Neutral, Protective Earth)."/> |
| 159 | <Annotation Term="OData.LongDescription" String="This value shall represent a Three-phase / 5-Wire (Line1, Line2, Line3, Neutral, Protective Earth) wiring."/> |
| 160 | </Member> |
| 161 | </EnumType> |
| 162 | |
| 163 | <EnumType Name="NominalVoltageType"> |
| 164 | <Member Name="AC100To240V"> |
| 165 | <Annotation Term="OData.Description" String="AC 100-240V nominal."/> |
| 166 | </Member> |
| 167 | <Member Name="AC100To277V"> |
| 168 | <Annotation Term="OData.Description" String="AC 100-277V nominal."/> |
| 169 | </Member> |
| 170 | <Member Name="AC120V"> |
| 171 | <Annotation Term="OData.Description" String="AC 120V nominal."/> |
| 172 | </Member> |
| 173 | <Member Name="AC200To240V"> |
| 174 | <Annotation Term="OData.Description" String="AC 200-240V nominal."/> |
| 175 | </Member> |
| 176 | <Member Name="AC200To277V"> |
| 177 | <Annotation Term="OData.Description" String="AC 200-277V nominal."/> |
| 178 | </Member> |
| 179 | <Member Name="AC208V"> |
| 180 | <Annotation Term="OData.Description" String="AC 208V nominal."/> |
| 181 | </Member> |
| 182 | <Member Name="AC230V"> |
| 183 | <Annotation Term="OData.Description" String="AC 230V nominal."/> |
| 184 | </Member> |
| 185 | <Member Name="AC240V"> |
| 186 | <Annotation Term="OData.Description" String="AC 240V nominal."/> |
| 187 | </Member> |
| 188 | <Member Name="AC240AndDC380V"> |
| 189 | <Annotation Term="OData.Description" String="AC 200-240V and DC 380V."/> |
| 190 | </Member> |
| 191 | <Member Name="AC277V"> |
| 192 | <Annotation Term="OData.Description" String="AC 277V nominal."/> |
| 193 | </Member> |
| 194 | <Member Name="AC277AndDC380V"> |
| 195 | <Annotation Term="OData.Description" String="AC 200-277V and DC 380V."/> |
| 196 | </Member> |
| 197 | <Member Name="AC400V"> |
| 198 | <Annotation Term="OData.Description" String="AC 400V or 415V nominal."/> |
| 199 | </Member> |
| 200 | <Member Name="AC480V"> |
| 201 | <Annotation Term="OData.Description" String="AC 480V nominal."/> |
| 202 | </Member> |
| 203 | <Member Name="DC240V"> |
| 204 | <Annotation Term="OData.Description" String="DC 240V nominal."/> |
| 205 | </Member> |
| 206 | <Member Name="DC380V"> |
| 207 | <Annotation Term="OData.Description" String="High Voltage DC (380V)."/> |
| 208 | </Member> |
| 209 | <Member Name="DCNeg48V"> |
| 210 | <Annotation Term="OData.Description" String="-48V DC."/> |
| 211 | </Member> |
| 212 | </EnumType> |
| 213 | |
| 214 | <EnumType Name="PlugType"> |
| 215 | <Member Name="NEMA_5_15P"> |
| 216 | <Annotation Term="OData.Description" String="NEMA 5-15P (Single-phase 125V; 15A; 1P3W)."/> |
| 217 | <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)."/> |
| 218 | </Member> |
| 219 | <Member Name="NEMA_L5_15P"> |
| 220 | <Annotation Term="OData.Description" String="NEMA L5-15P (Single-phase 125V; 15A; 1P3W)."/> |
| 221 | <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)."/> |
| 222 | </Member> |
| 223 | <Member Name="NEMA_5_20P"> |
| 224 | <Annotation Term="OData.Description" String="NEMA 5-20P (Single-phase 125V; 20A; 1P3W)."/> |
| 225 | <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)."/> |
| 226 | </Member> |
| 227 | <Member Name="NEMA_L5_20P"> |
| 228 | <Annotation Term="OData.Description" String="NEMA L5-20P (Single-phase 125V; 20A; 1P3W)."/> |
| 229 | <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)."/> |
| 230 | </Member> |
| 231 | <Member Name="NEMA_L5_30P"> |
| 232 | <Annotation Term="OData.Description" String="NEMA L5-30P (Single-phase 125V; 30A; 1P3W)."/> |
| 233 | <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)."/> |
| 234 | </Member> |
| 235 | <Member Name="NEMA_6_15P"> |
| 236 | <Annotation Term="OData.Description" String="NEMA 6-15P (Single-phase 250V; 15A; 2P3W)."/> |
| 237 | <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)."/> |
| 238 | </Member> |
| 239 | <Member Name="NEMA_L6_15P"> |
| 240 | <Annotation Term="OData.Description" String="NEMA L6-15P (Single-phase 250V; 15A; 2P3W)."/> |
| 241 | <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)."/> |
| 242 | </Member> |
| 243 | <Member Name="NEMA_6_20P"> |
| 244 | <Annotation Term="OData.Description" String="NEMA 6-20P (Single-phase 250V; 20A; 2P3W)."/> |
| 245 | <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)."/> |
| 246 | </Member> |
| 247 | <Member Name="NEMA_L6_20P"> |
| 248 | <Annotation Term="OData.Description" String="NEMA L6-20P (Single-phase 250V; 20A; 2P3W)."/> |
| 249 | <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)."/> |
| 250 | </Member> |
| 251 | <Member Name="NEMA_L6_30P"> |
| 252 | <Annotation Term="OData.Description" String="NEMA L6-30P (Single-phase 250V; 30A; 2P3W)."/> |
| 253 | <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)."/> |
| 254 | </Member> |
| 255 | <Member Name="NEMA_L14_20P"> |
| 256 | <Annotation Term="OData.Description" String="NEMA L14-20P (Split-phase 125/250V; 20A; 2P4W)."/> |
| 257 | <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)."/> |
| 258 | </Member> |
| 259 | <Member Name="NEMA_L14_30P"> |
| 260 | <Annotation Term="OData.Description" String="NEMA L14-30P (Split-phase 125/250V; 30A; 2P4W)."/> |
| 261 | <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)."/> |
| 262 | </Member> |
| 263 | <Member Name="NEMA_L15_20P"> |
| 264 | <Annotation Term="OData.Description" String="NEMA L15-20P (Three-phase 250V; 20A; 3P4W)."/> |
| 265 | <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)."/> |
| 266 | </Member> |
| 267 | <Member Name="NEMA_L15_30P"> |
| 268 | <Annotation Term="OData.Description" String="NEMA L15-30P (Three-phase 250V; 30A; 3P4W)."/> |
| 269 | <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)."/> |
| 270 | </Member> |
| 271 | <Member Name="NEMA_L21_20P"> |
| 272 | <Annotation Term="OData.Description" String="NEMA L21-20P (Three-phase 120/208V; 20A; 3P5W)."/> |
| 273 | <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)."/> |
| 274 | </Member> |
| 275 | <Member Name="NEMA_L21_30P"> |
| 276 | <Annotation Term="OData.Description" String="NEMA L21-30P (Three-phase 120/208V; 30A; 3P5W)."/> |
| 277 | <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)."/> |
| 278 | </Member> |
| 279 | <Member Name="NEMA_L22_20P"> |
| 280 | <Annotation Term="OData.Description" String="NEMA L22-20P (Three-phase 277/480V; 20A; 3P5W)."/> |
| 281 | <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)."/> |
| 282 | </Member> |
| 283 | <Member Name="NEMA_L22_30P"> |
| 284 | <Annotation Term="OData.Description" String="NEMA L22-30P (Three-phase 277/480V; 30A; 3P5W)."/> |
| 285 | <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)."/> |
| 286 | </Member> |
| 287 | <Member Name="California_CS8265"> |
| 288 | <Annotation Term="OData.Description" String="California Standard CS8265 (Single-phase 250V; 50A; 2P3W)."/> |
| 289 | <Annotation Term="OData.LongDescription" String="This value shall represent a plug that matches the 'California Standard' CS8265 style plug (Three-phase 250V; 50A; 3P4W)."/> |
| 290 | </Member> |
| 291 | <Member Name="California_CS8365"> |
| 292 | <Annotation Term="OData.Description" String="California Standard CS8365 (Three-phase 250V; 50A; 3P4W)."/> |
| 293 | <Annotation Term="OData.LongDescription" String="This value shall represent a plug that matches the 'California Standard' CS8365 style plug (Three-phase 250V; 50A; 3P4W)."/> |
| 294 | </Member> |
| 295 | <Member Name="IEC_60320_C14"> |
| 296 | <Annotation Term="OData.Description" String="IEC C14 (Single-phase 250V; 10A; 1P3W)."/> |
| 297 | <Annotation Term="OData.LongDescription" String="This value shall represent a plug that matches the IEC 60320 specified C14 input (Single-phase 250V; 10A; 1P3W)."/> |
| 298 | </Member> |
| 299 | <Member Name="IEC_60320_C20"> |
| 300 | <Annotation Term="OData.Description" String="IEC C20 (Single-phase 250V; 16A; 1P3W)."/> |
| 301 | <Annotation Term="OData.LongDescription" String="This value shall represent a plug that matches the IEC 60320 specified C20 input (Single-phase 250V; 16A; 1P3W)."/> |
| 302 | </Member> |
| 303 | <Member Name="IEC_60309_316P6"> |
| 304 | <Annotation Term="OData.Description" String="IEC 60309 316P6 (Single-phase 200-250V; 16A; 1P3W; Blue, 6-hour)."/> |
| 305 | <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)."/> |
| 306 | </Member> |
| 307 | <Member Name="IEC_60309_332P6"> |
| 308 | <Annotation Term="OData.Description" String="IEC 60309 332P6 (Single-phase 200-250V; 32A; 1P3W; Blue, 6-hour)."/> |
| 309 | <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)."/> |
| 310 | </Member> |
| 311 | <Member Name="IEC_60309_363P6"> |
| 312 | <Annotation Term="OData.Description" String="IEC 60309 363P6 (Single-phase 200-250V; 63A; 1P3W; Blue, 6-hour)."/> |
| 313 | <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)."/> |
| 314 | </Member> |
| 315 | <Member Name="IEC_60309_516P6"> |
| 316 | <Annotation Term="OData.Description" String="IEC 60309 516P6 (Three-phase 200-240/346-415V; 16A; 3P5W; Red; 6-hour)."/> |
| 317 | <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)."/> |
| 318 | </Member> |
| 319 | <Member Name="IEC_60309_532P6"> |
| 320 | <Annotation Term="OData.Description" String="IEC 60309 532P6 (Three-phase 200-240/346-415V; 32A; 3P5W; Red; 6-hour)."/> |
| 321 | <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)."/> |
| 322 | </Member> |
| 323 | <Member Name="IEC_60309_563P6"> |
| 324 | <Annotation Term="OData.Description" String="IEC 60309 563P6 (Three-phase 200-240/346-415V; 63A; 3P5W; Red; 6-hour)."/> |
| 325 | <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)."/> |
| 326 | </Member> |
| 327 | <Member Name="IEC_60309_460P9"> |
| 328 | <Annotation Term="OData.Description" String="IEC 60309 460P9 (Three-phase 200-250V; 60A; 3P4W; Blue; 9-hour)."/> |
| 329 | <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)."/> |
| 330 | </Member> |
| 331 | <Member Name="IEC_60309_560P9"> |
| 332 | <Annotation Term="OData.Description" String="IEC 60309 560P9 (Three-phase 120-144/208-250V; 60A; 3P5W; Blue; 9-hour)."/> |
| 333 | <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)."/> |
| 334 | </Member> |
| 335 | <Member Name="Field_208V_3P4W_60A"> |
| 336 | <Annotation Term="OData.Description" String="Field-wired; Three-phase 200-250V; 60A; 3P4W."/> |
| 337 | <Annotation Term="OData.LongDescription" String="This value shall represent field-wired input is three-phase 200-250V; 60A; 3P4W. It is appropriate for use on a 60A branch circuit."/> |
| 338 | </Member> |
| 339 | <Member Name="Field_400V_3P5W_32A"> |
| 340 | <Annotation Term="OData.Description" String="Field-wired; Three-phase 200-240/346-415V; 32A; 3P5W."/> |
| 341 | <Annotation Term="OData.LongDescription" String="This value shall represent field-wired input is three-phase 200-240/346-415V; 32A; 3P5W. It is appropriate for use on a 30, 32A, or 40A branch circuit."/> |
| 342 | </Member> |
| 343 | </EnumType> |
| 344 | </Schema> |
| 345 | |
| 346 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Circuit.v1_0_0"> |
| 347 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 348 | <Annotation Term="Redfish.Release" String="2019.4"/> |
| 349 | <EntityType Name="Circuit" BaseType="Circuit.Circuit"> |
| 350 | <Property Name="Status" Type="Resource.Status" Nullable="false"> |
| 351 | <Annotation Term="OData.Description" String="The status and health of the resource and its subordinate or dependent resources."/> |
| 352 | <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/> |
| 353 | </Property> |
| 354 | <Property Name="CircuitType" Type="Circuit.v1_0_0.CircuitType"> |
| 355 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 356 | <Annotation Term="OData.Description" String="The type of circuit."/> |
| 357 | <Annotation Term="OData.LongDescription" String="This property shall contain the type of circuit."/> |
| 358 | </Property> |
| 359 | <Property Name="CriticalCircuit" Type="Edm.Boolean"> |
| 360 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
| 361 | <Annotation Term="OData.Description" String="Designates if this is a critical circuit."/> |
| 362 | <Annotation Term="OData.LongDescription" String="This property shall indicate whether the circuit is desginated 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."/> |
| 363 | </Property> |
| 364 | <Property Name="ElectricalContext" Type="Sensor.ElectricalContext"> |
| 365 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 366 | <Annotation Term="OData.Description" String="The combination of current-carrying conductors."/> |
| 367 | <Annotation Term="OData.LongDescription" String="This property shall contain the combination of current-carrying conductors that distribute power."/> |
| 368 | </Property> |
| 369 | <Property Name="PhaseWiringType" Type="Circuit.PhaseWiringType"> |
| 370 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 371 | <Annotation Term="OData.Description" String="The number of ungrounded current-carrying conductors (phases) and the total number of conductors (wires)."/> |
| 372 | <Annotation Term="OData.LongDescription" String="This property shall contain the number of ungrounded current-carrying conductors (phases) and the total number of conductors (wires)."/> |
| 373 | </Property> |
| 374 | <Property Name="VoltageType" Type="Circuit.v1_0_0.VoltageType"> |
| 375 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 376 | <Annotation Term="OData.Description" String="The type of voltage applied to the circuit."/> |
| 377 | <Annotation Term="OData.LongDescription" String="This property shall contain the type of voltage applied to the circuit."/> |
| 378 | </Property> |
| 379 | <Property Name="PlugType" Type="Circuit.PlugType"> |
| 380 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 381 | <Annotation Term="OData.Description" String="The type of plug according to NEMA, IEC, or regional standards."/> |
| 382 | <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 standard."/> |
| 383 | </Property> |
| 384 | <Property Name="NominalVoltage" Type="Circuit.NominalVoltageType"> |
| 385 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 386 | <Annotation Term="OData.Description" String="The nominal voltage for this circuit."/> |
| 387 | <Annotation Term="OData.LongDescription" String="This property shall contain the nominal voltage for this circuit, in Volts."/> |
| 388 | </Property> |
| 389 | <Property Name="RatedCurrentAmps" Type="Edm.Decimal"> |
| 390 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 391 | <Annotation Term="OData.Description" String="The rated maximum current allowed for this circuit."/> |
| 392 | <Annotation Term="OData.LongDescription" String="This property shall contain the rated maximum current for this circuit, in Amps, after any required de-rating, due to safety agency or other regulatory requirements, has been applied."/> |
| 393 | <Annotation Term="Measures.Unit" String="A"/> |
| 394 | <Annotation Term="Validation.Minimum" Int="0"/> |
| 395 | </Property> |
| 396 | <Property Name="IndicatorLED" Type="Resource.IndicatorLED"> |
| 397 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
| 398 | <Annotation Term="OData.Description" String="The state of the indicator LED, which identifies the circuit."/> |
| 399 | <Annotation Term="OData.LongDescription" String="This property shall contain the indicator light state for the indicator light associated with this circuit."/> |
| 400 | </Property> |
| 401 | <Property Name="BreakerState" Type="Circuit.BreakerStates"> |
| 402 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 403 | <Annotation Term="OData.Description" String="The state of the over current protection device."/> |
| 404 | <Annotation Term="OData.LongDescription" String="This property shall contain the state of the over current protection device."/> |
| 405 | </Property> |
| 406 | <Property Name="PowerOnDelaySeconds" Type="Edm.Decimal"> |
| 407 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
| 408 | <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."/> |
| 409 | <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."/> |
| 410 | </Property> |
| 411 | <Property Name="PowerOffDelaySeconds" Type="Edm.Decimal"> |
| 412 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
| 413 | <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."/> |
| 414 | <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."/> |
| 415 | </Property> |
| 416 | <Property Name="PowerCycleDelaySeconds" Type="Edm.Decimal"> |
| 417 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
| 418 | <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."/> |
| 419 | <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."/> |
| 420 | </Property> |
| 421 | <Property Name="PowerRestoreDelaySeconds" Type="Edm.Decimal"> |
| 422 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
| 423 | <Annotation Term="OData.Description" String="The number of seconds to delay power on after power has been restored. Zero seconds indicates no delay."/> |
| 424 | <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."/> |
| 425 | </Property> |
| 426 | <Property Name="PowerRestorePolicy" Type="Circuit.PowerRestorePolicyTypes" Nullable="false"> |
| 427 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/> |
| 428 | <Annotation Term="OData.Description" String="The desired power state of the circuit when power is restored after a power loss."/> |
| 429 | <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."/> |
| 430 | </Property> |
| 431 | <Property Name="PowerState" Type="Resource.PowerState"> |
| 432 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 433 | <Annotation Term="OData.Description" String="The power state of the circuit."/> |
| 434 | <Annotation Term="OData.LongDescription" String="This property shall contain the power state of the circuit."/> |
| 435 | </Property> |
| 436 | <Property Name="PowerEnabled" Type="Edm.Boolean"> |
| 437 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 438 | <Annotation Term="OData.Description" String="Indicates if the circuit can be powered."/> |
Gunnar Mills | 844b415 | 2020-06-22 12:44:09 -0500 | [diff] [blame^] | 439 | <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."/> |
Gunnar Mills | 09b9d45 | 2020-02-11 13:27:39 -0600 | [diff] [blame] | 440 | </Property> |
| 441 | <NavigationProperty Name="Voltage" Type="Sensor.Sensor"> |
| 442 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 443 | <Annotation Term="Redfish.ExcerptCopy" String="Voltage"/> |
| 444 | <Annotation Term="OData.Description" String="The voltage reading for this single phase circuit."/> |
| 445 | <Annotation Term="OData.LongDescription" String="This property shall contain the voltage, measured in Volts, for this single phase circuit. This property shall not appear in resource instances representing poly-phase circuits."/> |
| 446 | </NavigationProperty> |
| 447 | <NavigationProperty Name="CurrentAmps" Type="Sensor.Sensor"> |
| 448 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 449 | <Annotation Term="Redfish.ExcerptCopy" String="Current"/> |
| 450 | <Annotation Term="OData.Description" String="The current reading for this single phase circuit."/> |
| 451 | <Annotation Term="OData.LongDescription" String="This property shall contain the current, measured in Amperes, for this single phase circuit. This property shall not appear in resource instances representing poly-phase circuits."/> |
| 452 | </NavigationProperty> |
| 453 | <NavigationProperty Name="PowerWatts" Type="Sensor.Sensor"> |
| 454 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 455 | <Annotation Term="Redfish.ExcerptCopy" String="Power"/> |
| 456 | <Annotation Term="OData.Description" String="The power reading for this circuit."/> |
| 457 | <Annotation Term="OData.LongDescription" String="This property shall contain the total power, measured in Watts, for this circuit, that represents the `Total` ElectricalContext sensor when multiple power sensors exist for this circuit."/> |
| 458 | </NavigationProperty> |
| 459 | <NavigationProperty Name="EnergykWh" Type="Sensor.Sensor"> |
| 460 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 461 | <Annotation Term="Redfish.ExcerptCopy" String="EnergykWh"/> |
| 462 | <Annotation Term="OData.Description" String="The energy reading for this circuit."/> |
| 463 | <Annotation Term="OData.LongDescription" String="This property shall contain the total energy, measured in kilowatt-hours (kW.h), for this circuit, that represents the `Total` ElectricalContext sensor when multiple energy sensors exist for this circuit."/> |
| 464 | </NavigationProperty> |
| 465 | <NavigationProperty Name="FrequencyHz" Type="Sensor.Sensor"> |
| 466 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 467 | <Annotation Term="Redfish.ExcerptCopy"/> |
| 468 | <Annotation Term="OData.Description" String="The frequency reading for this circuit."/> |
| 469 | <Annotation Term="OData.LongDescription" String="This property shall contain the frequency sensor for this circuit."/> |
| 470 | </NavigationProperty> |
| 471 | <Property Name="PolyPhaseVoltage" Type="Circuit.v1_0_0.VoltageSensors"> |
| 472 | <Annotation Term="OData.Description" String="The voltage readings for this circuit."/> |
| 473 | <Annotation Term="OData.LongDescription" String="This property shall contain the voltage sensor(s) for this circuit. For single phase circuits this property shall contain a duplicate copy of the voltage sensor referenced in the VoltageSensor property, if present. For poly-phase circuits this property should contain multiple voltage sensor readings used to fully describe the circuit."/> |
| 474 | </Property> |
| 475 | <Property Name="PolyPhaseCurrentAmps" Type="Circuit.v1_0_0.CurrentSensors"> |
| 476 | <Annotation Term="OData.Description" String="The current readings for this circuit."/> |
| 477 | <Annotation Term="OData.LongDescription" String="This property shall contain the current sensor(s) for this circuit. For single phase circuits this property shall contain a duplicate copy of the current sensor referenced in the CurrentSensor property, if present. For poly-phase circuits this property should contain multiple current sensor readings used to fully describe the circuit."/> |
| 478 | </Property> |
| 479 | <Property Name="PolyPhasePowerWatts" Type="Circuit.v1_0_0.PowerSensors"> |
| 480 | <Annotation Term="OData.Description" String="The power readings for this circuit."/> |
| 481 | <Annotation Term="OData.LongDescription" String="This property shall contain the power sensor(s) for this circuit. For single phase circuits this property shall contain a duplicate copy of the power sensor referenced in the PowerSensor property, if present. For poly-phase circuits this property should contain multiple power sensor readings used to fully describe the circuit."/> |
| 482 | </Property> |
| 483 | <Property Name="PolyPhaseEnergykWh" Type="Circuit.v1_0_0.EnergySensors"> |
| 484 | <Annotation Term="OData.Description" String="The energy readings for this circuit."/> |
| 485 | <Annotation Term="OData.LongDescription" String="This property shall contain the energy sensor(s) for this circuit. For single phase circuits this property shall contain a duplicate copy of the energy sensor referenced in the EnergySensor property, if present. For poly-phase circuits this property should contain multiple energy sensor readings used to fully describe the circuit."/> |
| 486 | </Property> |
| 487 | <Property Name="Links" Type="Circuit.v1_0_0.Links" Nullable="false"> |
| 488 | <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/> |
Gunnar Mills | 844b415 | 2020-06-22 12:44:09 -0500 | [diff] [blame^] | 489 | <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."/> |
Gunnar Mills | 09b9d45 | 2020-02-11 13:27:39 -0600 | [diff] [blame] | 490 | </Property> |
| 491 | <Property Name="Actions" Type="Circuit.v1_0_0.Actions" Nullable="false"> |
| 492 | <Annotation Term="OData.Description" String="The available actions for this resource."/> |
| 493 | <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/> |
| 494 | </Property> |
| 495 | </EntityType> |
| 496 | |
| 497 | <ComplexType Name="Links" BaseType="Resource.Links"> |
| 498 | <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/> |
Gunnar Mills | 844b415 | 2020-06-22 12:44:09 -0500 | [diff] [blame^] | 499 | <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."/> |
Gunnar Mills | 09b9d45 | 2020-02-11 13:27:39 -0600 | [diff] [blame] | 500 | <NavigationProperty Name="BranchCircuit" Type="Circuit.Circuit"> |
| 501 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 502 | <Annotation Term="OData.Description" String="A reference to the branch circuit related to this circuit."/> |
| 503 | <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."/> |
| 504 | <Annotation Term="OData.AutoExpandReferences"/> |
| 505 | </NavigationProperty> |
| 506 | <NavigationProperty Name="Outlets" Type="Collection(Outlet.Outlet)"> |
| 507 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 508 | <Annotation Term="OData.Description" String="An array of references to the outlets contained by this circuit."/> |
| 509 | <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."/> |
| 510 | <Annotation Term="OData.AutoExpandReferences"/> |
| 511 | </NavigationProperty> |
| 512 | </ComplexType> |
| 513 | |
| 514 | <ComplexType Name="Actions"> |
| 515 | <Annotation Term="OData.AdditionalProperties" Bool="false"/> |
| 516 | <Annotation Term="OData.Description" String="The available actions for this resource."/> |
| 517 | <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/> |
| 518 | <Property Name="Oem" Type="Circuit.v1_0_0.OemActions" Nullable="false"> |
| 519 | <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/> |
| 520 | <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/> |
| 521 | </Property> |
| 522 | </ComplexType> |
| 523 | |
| 524 | <ComplexType Name="OemActions"> |
| 525 | <Annotation Term="OData.AdditionalProperties" Bool="true"/> |
| 526 | <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/> |
| 527 | <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/> |
| 528 | </ComplexType> |
| 529 | |
| 530 | <ComplexType Name="VoltageSensors"> |
| 531 | <Annotation Term="OData.AdditionalProperties" Bool="false"/> |
| 532 | <Annotation Term="OData.Description" String="The voltage readings for this circuit."/> |
| 533 | <Annotation Term="OData.LongDescription" String="This type shall contain properties that describe voltage sensor readings for a circuit."/> |
| 534 | <NavigationProperty Name="Line1ToLine2" Type="Sensor.Sensor"> |
| 535 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 536 | <Annotation Term="Redfish.ExcerptCopy" String="Voltage"/> |
| 537 | <Annotation Term="OData.Description" String="The Line 1 to Line 2 voltage reading for this circuit."/> |
| 538 | <Annotation Term="OData.LongDescription" String="This property shall contain a VoltageSensor excerpt that measures voltage between L1 and L2. This property shall not be present if the circuit does not include an L1-L2 measurement."/> |
| 539 | </NavigationProperty> |
| 540 | <NavigationProperty Name="Line2ToLine3" Type="Sensor.Sensor"> |
| 541 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 542 | <Annotation Term="Redfish.ExcerptCopy" String="Voltage"/> |
| 543 | <Annotation Term="OData.Description" String="The Line 2 to Line 3 voltage reading for this circuit."/> |
| 544 | <Annotation Term="OData.LongDescription" String="This property shall contain a VoltageSensor excerpt that measures voltage between L2 and L3. This property shall not be present if the circuit does not include an L2-L3 measurement."/> |
| 545 | </NavigationProperty> |
| 546 | <NavigationProperty Name="Line3ToLine1" Type="Sensor.Sensor"> |
| 547 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 548 | <Annotation Term="Redfish.ExcerptCopy" String="Voltage"/> |
| 549 | <Annotation Term="OData.Description" String="The Line 3 to Line 1 voltage reading for this circuit."/> |
| 550 | <Annotation Term="OData.LongDescription" String="This property shall contain a VoltageSensor excerpt that measures voltage between L3 and L1. This property shall not be present if the circuit does not include an L3-L1 measurement."/> |
| 551 | </NavigationProperty> |
| 552 | <NavigationProperty Name="Line1ToNeutral" Type="Sensor.Sensor"> |
| 553 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 554 | <Annotation Term="Redfish.ExcerptCopy" String="Voltage"/> |
| 555 | <Annotation Term="OData.Description" String="The Line 1 to Neutral voltage reading for this circuit."/> |
| 556 | <Annotation Term="OData.LongDescription" String="This property shall contain a VoltageSensor excerpt that measures voltage between L1 and Neutral. This property shall not be present if the circuit does not include an L1-Neutral measurement."/> |
| 557 | </NavigationProperty> |
| 558 | <NavigationProperty Name="Line2ToNeutral" Type="Sensor.Sensor"> |
| 559 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 560 | <Annotation Term="Redfish.ExcerptCopy" String="Voltage"/> |
| 561 | <Annotation Term="OData.Description" String="The Line 2 to Neutral voltage reading for this circuit."/> |
| 562 | <Annotation Term="OData.LongDescription" String="This property shall contain a VoltageSensor excerpt that measures voltage between L2 and Neutral. This property shall not be present if the circuit does not include an L2-Neutral measurement."/> |
| 563 | </NavigationProperty> |
| 564 | <NavigationProperty Name="Line3ToNeutral" Type="Sensor.Sensor"> |
| 565 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 566 | <Annotation Term="Redfish.ExcerptCopy" String="Voltage"/> |
| 567 | <Annotation Term="OData.Description" String="The Line 3 to Neutral voltage reading for this circuit."/> |
| 568 | <Annotation Term="OData.LongDescription" String="This property shall contain a VoltageSensor excerpt that measures voltage between L3 and Neutral. This property shall not be present if the circuit does not include an L3-Neutral measurement."/> |
| 569 | </NavigationProperty> |
| 570 | </ComplexType> |
| 571 | |
| 572 | <ComplexType Name="CurrentSensors"> |
| 573 | <Annotation Term="OData.AdditionalProperties" Bool="false"/> |
| 574 | <Annotation Term="OData.Description" String="The current sensors for this circuit."/> |
| 575 | <Annotation Term="OData.LongDescription" String="This type shall contain properties that describe current sensor readings for a circuit."/> |
| 576 | <NavigationProperty Name="Line1" Type="Sensor.Sensor"> |
| 577 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 578 | <Annotation Term="Redfish.ExcerptCopy" String="Current"/> |
| 579 | <Annotation Term="OData.Description" String="Line 1 current sensor."/> |
| 580 | <Annotation Term="OData.LongDescription" String="This property shall contain a CurrentSensor excerpt that measures current for L1. This property shall not be present if the circuit does not include an L1 measurement."/> |
| 581 | </NavigationProperty> |
| 582 | <NavigationProperty Name="Line2" Type="Sensor.Sensor"> |
| 583 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 584 | <Annotation Term="Redfish.ExcerptCopy" String="Current"/> |
| 585 | <Annotation Term="OData.Description" String="Line 2 current sensor."/> |
| 586 | <Annotation Term="OData.LongDescription" String="This property shall contain a CurrentSensor excerpt that measures current for L2. This property shall not be present if the circuit does not include an L2 measurement."/> |
| 587 | </NavigationProperty> |
| 588 | <NavigationProperty Name="Line3" Type="Sensor.Sensor"> |
| 589 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 590 | <Annotation Term="Redfish.ExcerptCopy" String="Current"/> |
| 591 | <Annotation Term="OData.Description" String="Line 3 current sensor."/> |
| 592 | <Annotation Term="OData.LongDescription" String="This property shall contain a CurrentSensor excerpt that measures current for L3. This property shall not be present if the circuit does not include an L3 measurement."/> |
| 593 | </NavigationProperty> |
| 594 | <NavigationProperty Name="Neutral" Type="Sensor.Sensor"> |
| 595 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 596 | <Annotation Term="Redfish.ExcerptCopy" String="Current"/> |
| 597 | <Annotation Term="OData.Description" String="Neutral line current sensor."/> |
| 598 | <Annotation Term="OData.LongDescription" String="This property shall contain a CurrentSensor excerpt that measures current for the Neutral line. This property shall not be present if the circuit does not include a Neutral measurement."/> |
| 599 | </NavigationProperty> |
| 600 | </ComplexType> |
| 601 | |
| 602 | <ComplexType Name="EnergySensors"> |
| 603 | <Annotation Term="OData.AdditionalProperties" Bool="false"/> |
| 604 | <Annotation Term="OData.Description" String="The energy readings for this circuit."/> |
| 605 | <Annotation Term="OData.LongDescription" String="This type shall contain properties that describe energy sensor readings for a circuit."/> |
| 606 | <NavigationProperty Name="Line1ToLine2" Type="Sensor.Sensor"> |
| 607 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 608 | <Annotation Term="Redfish.ExcerptCopy" String="EnergykWh"/> |
| 609 | <Annotation Term="OData.Description" String="The Line 1 to Line 2 energy reading for this circuit."/> |
| 610 | <Annotation Term="OData.LongDescription" String="This property shall contain a EnergykWhSensor excerpt that measures energy between L1 and L2. This property shall not be present if the circuit does not include an L1-L2 measurement."/> |
| 611 | </NavigationProperty> |
| 612 | <NavigationProperty Name="Line2ToLine3" Type="Sensor.Sensor"> |
| 613 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 614 | <Annotation Term="Redfish.ExcerptCopy" String="EnergykWh"/> |
| 615 | <Annotation Term="OData.Description" String="The Line 2 to Line 3 energy reading for this circuit."/> |
| 616 | <Annotation Term="OData.LongDescription" String="This property shall contain a EnergykWhSensor excerpt that measures energy between L2 and L3. This property shall not be present if the circuit does not include an L2-L3 measurement."/> |
| 617 | </NavigationProperty> |
| 618 | <NavigationProperty Name="Line3ToLine1" Type="Sensor.Sensor"> |
| 619 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 620 | <Annotation Term="Redfish.ExcerptCopy" String="EnergykWh"/> |
| 621 | <Annotation Term="OData.Description" String="The Line 3 to Line 1 energy reading for this circuit."/> |
| 622 | <Annotation Term="OData.LongDescription" String="This property shall contain a EnergykWhSensor excerpt that measures energy between L3 and L1. This property shall not be present if the circuit does not include an L3-L1 measurement."/> |
| 623 | </NavigationProperty> |
| 624 | <NavigationProperty Name="Line1ToNeutral" Type="Sensor.Sensor"> |
| 625 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 626 | <Annotation Term="Redfish.ExcerptCopy" String="EnergykWh"/> |
| 627 | <Annotation Term="OData.Description" String="The Line 1 to Neutral energy reading for this circuit."/> |
| 628 | <Annotation Term="OData.LongDescription" String="This property shall contain a EnergykWhSensor excerpt that measures energy between L1 and Neutral. This property shall not be present if the circuit does not include an L1-Neutral measurement."/> |
| 629 | </NavigationProperty> |
| 630 | <NavigationProperty Name="Line2ToNeutral" Type="Sensor.Sensor"> |
| 631 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 632 | <Annotation Term="Redfish.ExcerptCopy" String="EnergykWh"/> |
| 633 | <Annotation Term="OData.Description" String="The Line 2 to Neutral energy reading for this circuit."/> |
| 634 | <Annotation Term="OData.LongDescription" String="This property shall contain a EnergykWhSensor excerpt that measures energy between L2 and Neutral. This property shall not be present if the circuit does not include an L2-Neutral measurement."/> |
| 635 | </NavigationProperty> |
| 636 | <NavigationProperty Name="Line3ToNeutral" Type="Sensor.Sensor"> |
| 637 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 638 | <Annotation Term="Redfish.ExcerptCopy" String="EnergykWh"/> |
| 639 | <Annotation Term="OData.Description" String="The Line 3 to Neutral energy reading for this circuit."/> |
| 640 | <Annotation Term="OData.LongDescription" String="This property shall contain a EnergykWhSensor excerpt that measures energy between L3 and Neutral. This property shall not be present if the circuit does not include an L3-Neutral measurement."/> |
| 641 | </NavigationProperty> |
| 642 | </ComplexType> |
| 643 | |
| 644 | <ComplexType Name="PowerSensors"> |
| 645 | <Annotation Term="OData.AdditionalProperties" Bool="false"/> |
| 646 | <Annotation Term="OData.Description" String="This property contains the power sensors."/> |
| 647 | <Annotation Term="OData.LongDescription" String="This type shall contain properties that describe power sensor readings for a circuit."/> |
| 648 | <NavigationProperty Name="Line1ToLine2" Type="Sensor.Sensor"> |
| 649 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 650 | <Annotation Term="Redfish.ExcerptCopy" String="Power"/> |
| 651 | <Annotation Term="OData.Description" String="The Line 1 to Line 2 power reading for this circuit."/> |
| 652 | <Annotation Term="OData.LongDescription" String="This property shall contain a PowerSensor excerpt that measures power between L1 and L2. This property shall not be present if the circuit does not include an L1-L2 measurement."/> |
| 653 | </NavigationProperty> |
| 654 | <NavigationProperty Name="Line2ToLine3" Type="Sensor.Sensor"> |
| 655 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 656 | <Annotation Term="Redfish.ExcerptCopy" String="Power"/> |
| 657 | <Annotation Term="OData.Description" String="The Line 2 to Line 3 power reading for this circuit."/> |
| 658 | <Annotation Term="OData.LongDescription" String="This property shall contain a PowerSensor excerpt that measures power between L2 and L3. This property shall not be present if the circuit does not include an L2-L3 measurement."/> |
| 659 | </NavigationProperty> |
| 660 | <NavigationProperty Name="Line3ToLine1" Type="Sensor.Sensor"> |
| 661 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 662 | <Annotation Term="Redfish.ExcerptCopy" String="Power"/> |
| 663 | <Annotation Term="OData.Description" String="The Line 3 to Line 1 power reading for this circuit."/> |
| 664 | <Annotation Term="OData.LongDescription" String="This property shall contain a PowerSensor excerpt that measures power between L3 and L1. This property shall not be present if the circuit does not include an L3-L1 measurement."/> |
| 665 | </NavigationProperty> |
| 666 | <NavigationProperty Name="Line1ToNeutral" Type="Sensor.Sensor"> |
| 667 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 668 | <Annotation Term="Redfish.ExcerptCopy" String="Power"/> |
| 669 | <Annotation Term="OData.Description" String="The Line 1 to Neutral power reading for this circuit."/> |
| 670 | <Annotation Term="OData.LongDescription" String="This property shall contain a PowerSensor excerpt that measures power between L1 and Neutral. This property shall not be present if the circuit does not include an L1-Neutral measurement."/> |
| 671 | </NavigationProperty> |
| 672 | <NavigationProperty Name="Line2ToNeutral" Type="Sensor.Sensor"> |
| 673 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 674 | <Annotation Term="Redfish.ExcerptCopy" String="Power"/> |
| 675 | <Annotation Term="OData.Description" String="The Line 2 to Neutral power reading for this circuit."/> |
| 676 | <Annotation Term="OData.LongDescription" String="This property shall contain a PowerSensor excerpt that measures power between L2 and Neutral. This property shall not be present if the circuit does not include an L2-Neutral measurement."/> |
| 677 | </NavigationProperty> |
| 678 | <NavigationProperty Name="Line3ToNeutral" Type="Sensor.Sensor"> |
| 679 | <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> |
| 680 | <Annotation Term="Redfish.ExcerptCopy" String="Power"/> |
| 681 | <Annotation Term="OData.Description" String="The Line 3 to Neutral power reading for this circuit."/> |
| 682 | <Annotation Term="OData.LongDescription" String="This property shall contain a PowerSensor excerpt that measures power between L3 and Neutral. This property shall not be present if the circuit does not include an L3-Neutral measurement."/> |
| 683 | </NavigationProperty> |
| 684 | </ComplexType> |
| 685 | |
| 686 | <EnumType Name="CircuitType"> |
| 687 | <Member Name="Mains"> |
| 688 | <Annotation Term="OData.Description" String="A mains input or utility circuit."/> |
| 689 | </Member> |
| 690 | <Member Name="Branch"> |
| 691 | <Annotation Term="OData.Description" String="A branch (output) circuit."/> |
| 692 | </Member> |
| 693 | <Member Name="Subfeed"> |
| 694 | <Annotation Term="OData.Description" String="A subfeed (output) circuit."/> |
| 695 | </Member> |
| 696 | <Member Name="Feeder"> |
| 697 | <Annotation Term="OData.Description" String="A feeder (output) circuit."/> |
| 698 | </Member> |
| 699 | </EnumType> |
| 700 | |
| 701 | <EnumType Name="VoltageType"> |
| 702 | <Member Name="AC"> |
| 703 | <Annotation Term="OData.Description" String="Alternating Current (AC) circuit."/> |
| 704 | </Member> |
| 705 | <Member Name="DC"> |
| 706 | <Annotation Term="OData.Description" String="Direct Current (DC) circuit."/> |
| 707 | </Member> |
| 708 | </EnumType> |
Gunnar Mills | 844b415 | 2020-06-22 12:44:09 -0500 | [diff] [blame^] | 709 | </Schema> |
Gunnar Mills | 09b9d45 | 2020-02-11 13:27:39 -0600 | [diff] [blame] | 710 | |
Gunnar Mills | 844b415 | 2020-06-22 12:44:09 -0500 | [diff] [blame^] | 711 | <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Circuit.v1_0_1"> |
| 712 | <Annotation Term="Redfish.OwningEntity" String="DMTF"/> |
| 713 | <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> |
| 714 | <EntityType Name="Circuit" BaseType="Circuit.v1_0_0.Circuit"/> |
Gunnar Mills | 09b9d45 | 2020-02-11 13:27:39 -0600 | [diff] [blame] | 715 | </Schema> |
| 716 | |
| 717 | </edmx:DataServices> |
| 718 | </edmx:Edmx> |