12bde4061SEd Tanous<?xml version="1.0" encoding="UTF-8"?>
22bde4061SEd Tanous<!---->
32bde4061SEd Tanous<!--################################################################################       -->
4*f2a8e57eSGunnar Mills<!--# Redfish Schema:  PowerDistributionMetrics v1.3.2                                     -->
52bde4061SEd Tanous<!--#                                                                                      -->
62bde4061SEd Tanous<!--# For a detailed change log, see the README file contained in the DSP8010 bundle,      -->
72bde4061SEd Tanous<!--# available at http://www.dmtf.org/standards/redfish                                   -->
8*f2a8e57eSGunnar Mills<!--# Copyright 2014-2024 DMTF.                                                            -->
92bde4061SEd Tanous<!--# For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright -->
102bde4061SEd Tanous<!--################################################################################       -->
112bde4061SEd Tanous<!---->
122bde4061SEd Tanous<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0">
132bde4061SEd Tanous
142bde4061SEd Tanous  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Core.V1.xml">
152bde4061SEd Tanous    <edmx:Include Namespace="Org.OData.Core.V1" Alias="OData"/>
162bde4061SEd Tanous  </edmx:Reference>
172bde4061SEd Tanous  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Capabilities.V1.xml">
182bde4061SEd Tanous    <edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="Capabilities"/>
192bde4061SEd Tanous  </edmx:Reference>
202bde4061SEd Tanous  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
212bde4061SEd Tanous    <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
222bde4061SEd Tanous  </edmx:Reference>
232bde4061SEd Tanous  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
242bde4061SEd Tanous    <edmx:Include Namespace="Resource.v1_0_0"/>
252bde4061SEd Tanous  </edmx:Reference>
262bde4061SEd Tanous  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Sensor_v1.xml">
272bde4061SEd Tanous    <edmx:Include Namespace="Sensor"/>
282bde4061SEd Tanous  </edmx:Reference>
292bde4061SEd Tanous
302bde4061SEd Tanous  <edmx:DataServices>
312bde4061SEd Tanous
322bde4061SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerDistributionMetrics">
332bde4061SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
34*f2a8e57eSGunnar Mills      <Annotation Term="Redfish.Language" String="en"/>
352bde4061SEd Tanous
362bde4061SEd Tanous      <EntityType Name="PowerDistributionMetrics" BaseType="Resource.v1_0_0.Resource" Abstract="true">
37*f2a8e57eSGunnar Mills        <Annotation Term="OData.Description" String="The `PowerDistributionMetrics` schema contains metrics of a power distribution component or unit, such as a floor power distribution unit (PDU) or switchgear."/>
38*f2a8e57eSGunnar Mills        <Annotation Term="OData.LongDescription" String="This resource shall represent the metrics of a power distribution component or unit for a Redfish implementation."/>
392bde4061SEd Tanous        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
402bde4061SEd Tanous        <Annotation Term="Capabilities.InsertRestrictions">
412bde4061SEd Tanous          <Record>
422bde4061SEd Tanous            <PropertyValue Property="Insertable" Bool="false"/>
432bde4061SEd Tanous          </Record>
442bde4061SEd Tanous        </Annotation>
452bde4061SEd Tanous        <Annotation Term="Capabilities.UpdateRestrictions">
462bde4061SEd Tanous          <Record>
472bde4061SEd Tanous            <PropertyValue Property="Updatable" Bool="false"/>
482bde4061SEd Tanous          </Record>
492bde4061SEd Tanous        </Annotation>
502bde4061SEd Tanous        <Annotation Term="Capabilities.DeleteRestrictions">
512bde4061SEd Tanous          <Record>
522bde4061SEd Tanous            <PropertyValue Property="Deletable" Bool="false"/>
532bde4061SEd Tanous          </Record>
542bde4061SEd Tanous        </Annotation>
552bde4061SEd Tanous        <Annotation Term="Redfish.Uris">
562bde4061SEd Tanous          <Collection>
572bde4061SEd Tanous            <String>/redfish/v1/PowerEquipment/RackPDUs/{PowerDistributionId}/Metrics</String>
582bde4061SEd Tanous            <String>/redfish/v1/PowerEquipment/FloorPDUs/{PowerDistributionId}/Metrics</String>
592bde4061SEd Tanous            <String>/redfish/v1/PowerEquipment/TransferSwitches/{PowerDistributionId}/Metrics</String>
602bde4061SEd Tanous            <String>/redfish/v1/PowerEquipment/PowerShelves/{PowerDistributionId}/Metrics</String>
612bde4061SEd Tanous            <String>/redfish/v1/PowerEquipment/Switchgear/{PowerDistributionId}/Metrics</String>
622bde4061SEd Tanous            <String>/redfish/v1/PowerEquipment/ElectricalBuses/{PowerDistributionId}/Metrics</String>
632bde4061SEd Tanous          </Collection>
642bde4061SEd Tanous        </Annotation>
652bde4061SEd Tanous      </EntityType>
662bde4061SEd Tanous
672bde4061SEd Tanous      <Action Name="ResetMetrics" IsBound="true">
682bde4061SEd Tanous        <Parameter Name="PowerDistributionMetrics" Type="PowerDistributionMetrics.v1_0_0.Actions"/>
692bde4061SEd Tanous        <Annotation Term="OData.Description" String="This action resets the summary metrics related to this equipment."/>
702bde4061SEd Tanous        <Annotation Term="OData.LongDescription" String="This action shall reset any time intervals or counted values for this equipment."/>
712bde4061SEd Tanous      </Action>
722bde4061SEd Tanous    </Schema>
732bde4061SEd Tanous
742bde4061SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerDistributionMetrics.v1_0_0">
752bde4061SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
762bde4061SEd Tanous      <Annotation Term="Redfish.Release" String="2019.4"/>
772bde4061SEd Tanous
782bde4061SEd Tanous      <EntityType Name="PowerDistributionMetrics" BaseType="PowerDistributionMetrics.PowerDistributionMetrics">
792bde4061SEd Tanous        <NavigationProperty Name="PowerWatts" Type="Sensor.Sensor">
802bde4061SEd Tanous          <Annotation Term="Redfish.ExcerptCopy" String="Power"/>
812bde4061SEd Tanous          <Annotation Term="OData.Description" String="Power consumption (W)."/>
82*f2a8e57eSGunnar Mills          <Annotation Term="OData.LongDescription" String="This property shall contain the total power, in watt units, for this resource that represents the `Total` `ElectricalContext` sensor when multiple power sensors exist.  The value of the `DataSourceUri` property, if present, shall reference a resource of type `Sensor` with the `ReadingType` property containing the value `Power`."/>
832bde4061SEd Tanous        </NavigationProperty>
842bde4061SEd Tanous
852bde4061SEd Tanous        <NavigationProperty Name="EnergykWh" Type="Sensor.Sensor">
862bde4061SEd Tanous          <Annotation Term="Redfish.ExcerptCopy" String="EnergykWh"/>
872bde4061SEd Tanous          <Annotation Term="OData.Description" String="Energy consumption (kWh)."/>
88*f2a8e57eSGunnar Mills          <Annotation Term="OData.LongDescription" String="This property shall contain the total energy, in kilowatt-hour units, for this resource that represents the `Total` `ElectricalContext` sensor when multiple energy sensors exist.  The value of the `DataSourceUri` property, if present, shall reference a resource of type `Sensor` with the `ReadingType` property containing the value `EnergykWh`."/>
892bde4061SEd Tanous        </NavigationProperty>
902bde4061SEd Tanous
912bde4061SEd Tanous        <Property Name="Actions" Type="PowerDistributionMetrics.v1_0_0.Actions" Nullable="false">
922bde4061SEd Tanous          <Annotation Term="OData.Description" String="The available actions for this resource."/>
932bde4061SEd Tanous          <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
942bde4061SEd Tanous        </Property>
952bde4061SEd Tanous      </EntityType>
962bde4061SEd Tanous
972bde4061SEd Tanous      <ComplexType Name="Actions">
982bde4061SEd Tanous        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
992bde4061SEd Tanous        <Annotation Term="OData.Description" String="The available actions for this resource."/>
1002bde4061SEd Tanous        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
1012bde4061SEd Tanous        <Property Name="Oem" Type="PowerDistributionMetrics.v1_0_0.OemActions" Nullable="false">
1022bde4061SEd Tanous          <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
1032bde4061SEd Tanous          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
1042bde4061SEd Tanous        </Property>
1052bde4061SEd Tanous      </ComplexType>
1062bde4061SEd Tanous
1072bde4061SEd Tanous      <ComplexType Name="OemActions">
1082bde4061SEd Tanous        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
1092bde4061SEd Tanous        <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
1102bde4061SEd Tanous        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
1112bde4061SEd Tanous      </ComplexType>
1122bde4061SEd Tanous    </Schema>
1132bde4061SEd Tanous
1142bde4061SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerDistributionMetrics.v1_0_1">
1152bde4061SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
116*f2a8e57eSGunnar Mills      <Annotation Term="OData.Description" String="This version was created to update the descriptions for power and energy sensors."/>
1172bde4061SEd Tanous      <EntityType Name="PowerDistributionMetrics" BaseType="PowerDistributionMetrics.v1_0_0.PowerDistributionMetrics"/>
1182bde4061SEd Tanous    </Schema>
1192bde4061SEd Tanous
1202bde4061SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerDistributionMetrics.v1_0_2">
1212bde4061SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
122*f2a8e57eSGunnar Mills      <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` resource."/>
1232bde4061SEd Tanous      <EntityType Name="PowerDistributionMetrics" BaseType="PowerDistributionMetrics.v1_0_1.PowerDistributionMetrics"/>
1242bde4061SEd Tanous    </Schema>
1252bde4061SEd Tanous
1262bde4061SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerDistributionMetrics.v1_0_3">
1272bde4061SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1282bde4061SEd Tanous      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1292bde4061SEd Tanous      <EntityType Name="PowerDistributionMetrics" BaseType="PowerDistributionMetrics.v1_0_2.PowerDistributionMetrics"/>
1302bde4061SEd Tanous    </Schema>
1312bde4061SEd Tanous
132*f2a8e57eSGunnar Mills    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerDistributionMetrics.v1_0_4">
133*f2a8e57eSGunnar Mills      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
134*f2a8e57eSGunnar Mills      <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors."/>
135*f2a8e57eSGunnar Mills      <EntityType Name="PowerDistributionMetrics" BaseType="PowerDistributionMetrics.v1_0_3.PowerDistributionMetrics"/>
136*f2a8e57eSGunnar Mills    </Schema>
137*f2a8e57eSGunnar Mills
1382bde4061SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerDistributionMetrics.v1_1_0">
1392bde4061SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1402bde4061SEd Tanous      <Annotation Term="Redfish.Release" String="2021.1"/>
1412bde4061SEd Tanous
1422bde4061SEd Tanous      <EntityType Name="PowerDistributionMetrics" BaseType="PowerDistributionMetrics.v1_0_1.PowerDistributionMetrics">
1432bde4061SEd Tanous        <NavigationProperty Name="TemperatureCelsius" Type="Sensor.Sensor">
1442bde4061SEd Tanous          <Annotation Term="Redfish.ExcerptCopy"/>
1452bde4061SEd Tanous          <Annotation Term="OData.Description" String="Temperature (Celsius)."/>
146*f2a8e57eSGunnar Mills          <Annotation Term="OData.LongDescription" String="This property shall contain the temperature, in degree Celsius units, for this resource.  The value of the `DataSourceUri` property, if present, shall reference a resource of type `Sensor` with the `ReadingType` property containing the value `Temperature`."/>
1472bde4061SEd Tanous        </NavigationProperty>
1482bde4061SEd Tanous        <NavigationProperty Name="HumidityPercent" Type="Sensor.Sensor">
1492bde4061SEd Tanous          <Annotation Term="Redfish.ExcerptCopy"/>
1502bde4061SEd Tanous          <Annotation Term="OData.Description" String="Humidity (percent)."/>
151*f2a8e57eSGunnar Mills          <Annotation Term="OData.LongDescription" String="This property shall contain the humidity, in percent units, for this resource.  The value of the `DataSourceUri` property, if present, shall reference a resource of type `Sensor` with the `ReadingType` property containing the value `Humidity`."/>
1522bde4061SEd Tanous        </NavigationProperty>
1532bde4061SEd Tanous      </EntityType>
1542bde4061SEd Tanous    </Schema>
1552bde4061SEd Tanous
1562bde4061SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerDistributionMetrics.v1_1_1">
1572bde4061SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
158*f2a8e57eSGunnar Mills      <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` resource."/>
1592bde4061SEd Tanous      <EntityType Name="PowerDistributionMetrics" BaseType="PowerDistributionMetrics.v1_1_0.PowerDistributionMetrics"/>
1602bde4061SEd Tanous    </Schema>
1612bde4061SEd Tanous
1622bde4061SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerDistributionMetrics.v1_1_2">
1632bde4061SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1642bde4061SEd Tanous      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1652bde4061SEd Tanous      <EntityType Name="PowerDistributionMetrics" BaseType="PowerDistributionMetrics.v1_1_1.PowerDistributionMetrics"/>
1662bde4061SEd Tanous    </Schema>
1672bde4061SEd Tanous
168*f2a8e57eSGunnar Mills    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerDistributionMetrics.v1_1_3">
169*f2a8e57eSGunnar Mills      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
170*f2a8e57eSGunnar Mills      <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors."/>
171*f2a8e57eSGunnar Mills      <EntityType Name="PowerDistributionMetrics" BaseType="PowerDistributionMetrics.v1_1_2.PowerDistributionMetrics"/>
172*f2a8e57eSGunnar Mills    </Schema>
173*f2a8e57eSGunnar Mills
1742bde4061SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerDistributionMetrics.v1_2_0">
1752bde4061SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1762bde4061SEd Tanous      <Annotation Term="Redfish.Release" String="2021.2"/>
1772bde4061SEd Tanous
1782bde4061SEd Tanous      <EntityType Name="PowerDistributionMetrics" BaseType="PowerDistributionMetrics.v1_1_0.PowerDistributionMetrics">
1792bde4061SEd Tanous        <NavigationProperty Name="PowerLoadPercent" Type="Sensor.Sensor">
1802bde4061SEd Tanous          <Annotation Term="Redfish.ExcerptCopy"/>
1812bde4061SEd Tanous          <Annotation Term="OData.Description" String="The power load (percent) for this equipment."/>
182*f2a8e57eSGunnar Mills          <Annotation Term="OData.LongDescription" String="This property shall contain the power load, in percent units, for this device that represents the `Total` `ElectricalContext` for this device.  The value of the `DataSourceUri` property, if present, shall reference a resource of type `Sensor` with the `ReadingType` property containing the value `Percent`."/>
1832bde4061SEd Tanous        </NavigationProperty>
1842bde4061SEd Tanous      </EntityType>
1852bde4061SEd Tanous    </Schema>
1862bde4061SEd Tanous
1872bde4061SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerDistributionMetrics.v1_2_1">
1882bde4061SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
189*f2a8e57eSGunnar Mills      <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` resource."/>
1902bde4061SEd Tanous      <EntityType Name="PowerDistributionMetrics" BaseType="PowerDistributionMetrics.v1_2_0.PowerDistributionMetrics"/>
1912bde4061SEd Tanous    </Schema>
1922bde4061SEd Tanous
1932bde4061SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerDistributionMetrics.v1_2_2">
1942bde4061SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1952bde4061SEd Tanous      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1962bde4061SEd Tanous      <EntityType Name="PowerDistributionMetrics" BaseType="PowerDistributionMetrics.v1_2_1.PowerDistributionMetrics"/>
1972bde4061SEd Tanous    </Schema>
1982bde4061SEd Tanous
199*f2a8e57eSGunnar Mills    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerDistributionMetrics.v1_2_3">
200*f2a8e57eSGunnar Mills      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
201*f2a8e57eSGunnar Mills      <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors."/>
202*f2a8e57eSGunnar Mills      <EntityType Name="PowerDistributionMetrics" BaseType="PowerDistributionMetrics.v1_2_2.PowerDistributionMetrics"/>
203*f2a8e57eSGunnar Mills    </Schema>
204*f2a8e57eSGunnar Mills
2052bde4061SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerDistributionMetrics.v1_3_0">
2062bde4061SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
2072bde4061SEd Tanous      <Annotation Term="Redfish.Release" String="2021.4"/>
2082bde4061SEd Tanous
2092bde4061SEd Tanous      <EntityType Name="PowerDistributionMetrics" BaseType="PowerDistributionMetrics.v1_2_1.PowerDistributionMetrics">
2102bde4061SEd Tanous        <NavigationProperty Name="AbsoluteHumidity" Type="Sensor.Sensor">
2112bde4061SEd Tanous          <Annotation Term="Redfish.ExcerptCopy"/>
2122bde4061SEd Tanous          <Annotation Term="OData.Description" String="Absolute humidity (g/m^3)."/>
213*f2a8e57eSGunnar Mills          <Annotation Term="OData.LongDescription" String="This property shall contain the absolute (volumetric) humidity sensor reading, in grams per cubic meter units, for this resource.  The value of the `DataSourceUri` property, if present, shall reference a resource of type `Sensor` with the `ReadingType` property containing the value `AbsoluteHumidity`."/>
2142bde4061SEd Tanous        </NavigationProperty>
2152bde4061SEd Tanous      </EntityType>
2162bde4061SEd Tanous    </Schema>
2172bde4061SEd Tanous
2182bde4061SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerDistributionMetrics.v1_3_1">
2192bde4061SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
2202bde4061SEd Tanous      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
2212bde4061SEd Tanous      <EntityType Name="PowerDistributionMetrics" BaseType="PowerDistributionMetrics.v1_3_0.PowerDistributionMetrics"/>
2222bde4061SEd Tanous    </Schema>
2232bde4061SEd Tanous
224*f2a8e57eSGunnar Mills    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="PowerDistributionMetrics.v1_3_2">
225*f2a8e57eSGunnar Mills      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
226*f2a8e57eSGunnar Mills      <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors."/>
227*f2a8e57eSGunnar Mills      <EntityType Name="PowerDistributionMetrics" BaseType="PowerDistributionMetrics.v1_3_1.PowerDistributionMetrics"/>
228*f2a8e57eSGunnar Mills    </Schema>
229*f2a8e57eSGunnar Mills
2302bde4061SEd Tanous  </edmx:DataServices>
2312bde4061SEd Tanous</edmx:Edmx>
232