1<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################       -->
4<!--# Redfish Schema:  ThermalMetrics v1.3.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://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
21    <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
22  </edmx:Reference>
23  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
24    <edmx:Include Namespace="Resource.v1_0_0"/>
25  </edmx:Reference>
26  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Sensor_v1.xml">
27    <edmx:Include Namespace="Sensor"/>
28  </edmx:Reference>
29
30  <edmx:DataServices>
31
32    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ThermalMetrics">
33      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
34
35      <EntityType Name="ThermalMetrics" BaseType="Resource.v1_0_0.Resource" Abstract="true">
36        <Annotation Term="OData.Description" String="The ThermalMetrics schema represents the thermal metrics of a chassis."/>
37        <Annotation Term="OData.LongDescription" String="This resource shall represent the thermal metrics of a chassis for a Redfish implementation."/>
38        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
39        <Annotation Term="Capabilities.InsertRestrictions">
40          <Record>
41            <PropertyValue Property="Insertable" Bool="false"/>
42          </Record>
43        </Annotation>
44        <Annotation Term="Capabilities.UpdateRestrictions">
45          <Record>
46            <PropertyValue Property="Updatable" Bool="false"/>
47          </Record>
48        </Annotation>
49        <Annotation Term="Capabilities.DeleteRestrictions">
50          <Record>
51            <PropertyValue Property="Deletable" Bool="false"/>
52          </Record>
53        </Annotation>
54        <Annotation Term="Redfish.Uris">
55          <Collection>
56            <String>/redfish/v1/Chassis/{ChassisId}/ThermalSubsystem/ThermalMetrics</String>
57          </Collection>
58        </Annotation>
59      </EntityType>
60
61      <Action Name="ResetMetrics" IsBound="true">
62        <Parameter Name="ThermalMetrics" Type="ThermalMetrics.v1_0_0.Actions"/>
63        <Annotation Term="OData.Description" String="This action resets the summary metrics related to this equipment."/>
64        <Annotation Term="OData.LongDescription" String="This action shall reset any time intervals or counted values for this equipment."/>
65      </Action>
66    </Schema>
67
68    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ThermalMetrics.v1_0_0">
69      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
70      <Annotation Term="Redfish.Release" String="2020.4"/>
71
72      <EntityType Name="ThermalMetrics" BaseType="ThermalMetrics.ThermalMetrics">
73        <Property Name="TemperatureSummaryCelsius" Type="ThermalMetrics.v1_0_0.TemperatureSummary">
74          <Annotation Term="OData.Description" String="The summary temperature readings for this chassis."/>
75          <Annotation Term="OData.LongDescription" String="This property shall contain the temperature sensor readings for this subsystem."/>
76        </Property>
77        <NavigationProperty Name="TemperatureReadingsCelsius" Type="Collection(Sensor.Sensor)">
78          <Annotation Term="Redfish.ExcerptCopy" String="Array"/>
79          <Annotation Term="OData.Description" String="The temperatures (in degree Celsius units) from all related sensors for this device."/>
80          <Annotation Term="OData.LongDescription" String="This property shall contain the temperatures, in degree Celsius units, for this subsystem.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `Temperature`."/>
81        </NavigationProperty>
82        <Property Name="Actions" Type="ThermalMetrics.v1_0_0.Actions" Nullable="false">
83          <Annotation Term="OData.Description" String="The available actions for this resource."/>
84          <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
85        </Property>
86      </EntityType>
87
88      <ComplexType Name="TemperatureSummary">
89        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
90        <Annotation Term="OData.Description" String="The temperature readings for a subsystem."/>
91        <Annotation Term="OData.LongDescription" String="This type shall contain properties that describe temperature sensor for a subsystem."/>
92        <NavigationProperty Name="Internal" Type="Sensor.Sensor">
93          <Annotation Term="Redfish.ExcerptCopy"/>
94          <Annotation Term="OData.Description" String="The internal temperature (in degree Celsius units) of this subsystem."/>
95          <Annotation Term="OData.LongDescription" String="This property shall contain the temperature, in degree Celsius units, for the internal temperature of this subsystem.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `Temperature`."/>
96        </NavigationProperty>
97        <NavigationProperty Name="Intake" Type="Sensor.Sensor">
98          <Annotation Term="Redfish.ExcerptCopy"/>
99          <Annotation Term="OData.Description" String="The intake temperature (in degree Celsius units) of this subsystem."/>
100          <Annotation Term="OData.LongDescription" String="This property shall contain the temperature, in degree Celsius units, for the intake temperature of this subsystem.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `Temperature`."/>
101        </NavigationProperty>
102        <NavigationProperty Name="Exhaust" Type="Sensor.Sensor">
103          <Annotation Term="Redfish.ExcerptCopy"/>
104          <Annotation Term="OData.Description" String="The exhaust temperature (in degree Celsius units) of this subsystem."/>
105          <Annotation Term="OData.LongDescription" String="This property shall contain the temperature, in degree Celsius units, for the exhaust temperature of this subsystem.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `Temperature`."/>
106        </NavigationProperty>
107        <NavigationProperty Name="Ambient" Type="Sensor.Sensor">
108          <Annotation Term="Redfish.ExcerptCopy"/>
109          <Annotation Term="OData.Description" String="The ambient temperature (in degree Celsius units) of this subsystem."/>
110          <Annotation Term="OData.LongDescription" String="This property shall contain the temperature, in degree Celsius units, for the ambient temperature of this subsystem.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `Temperature`."/>
111        </NavigationProperty>
112      </ComplexType>
113
114      <ComplexType Name="Actions">
115        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
116        <Annotation Term="OData.Description" String="The available actions for this resource."/>
117        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
118        <Property Name="Oem" Type="ThermalMetrics.v1_0_0.OemActions" Nullable="false">
119          <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
120          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
121        </Property>
122      </ComplexType>
123
124      <ComplexType Name="OemActions">
125        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
126        <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
127        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
128      </ComplexType>
129    </Schema>
130
131    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ThermalMetrics.v1_0_1">
132      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
133      <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 various typographical errors."/>
134      <EntityType Name="ThermalMetrics" BaseType="ThermalMetrics.v1_0_0.ThermalMetrics"/>
135    </Schema>
136
137    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ThermalMetrics.v1_0_2">
138      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
139      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
140      <EntityType Name="ThermalMetrics" BaseType="ThermalMetrics.v1_0_1.ThermalMetrics"/>
141    </Schema>
142
143    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ThermalMetrics.v1_1_0">
144      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
145      <Annotation Term="Redfish.Release" String="2022.3"/>
146
147      <EntityType Name="ThermalMetrics" BaseType="ThermalMetrics.v1_0_1.ThermalMetrics">
148        <Property Name="HeaterSummary" Type="ThermalMetrics.v1_1_0.HeaterSummary">
149          <Annotation Term="OData.Description" String="The summary of heater metrics for this chassis."/>
150          <Annotation Term="OData.LongDescription" String="This property shall contain the summary of heater metrics for this subsystem."/>
151        </Property>
152      </EntityType>
153
154      <ComplexType Name="HeaterSummary">
155        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
156        <Annotation Term="OData.Description" String="The heater metrics summary for the subsystem."/>
157        <Annotation Term="OData.LongDescription" String="This type shall contain properties that describe the heater metrics summary for the subsystem."/>
158        <Property Name="TotalPrePowerOnHeatingTimeSeconds" Type="Edm.Int64">
159          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
160          <Annotation Term="OData.Description" String="The total number of seconds all the heaters in the thermal subsystem were active while the respective devices they heat were powered off."/>
161          <Annotation Term="OData.LongDescription" String="This property shall contain the total number of seconds all the heaters in the thermal subsystem were active while the respective devices they heat were powered off."/>
162        </Property>
163        <Property Name="TotalRuntimeHeatingTimeSeconds" Type="Edm.Int64">
164          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
165          <Annotation Term="OData.Description" String="The total number of seconds all the heaters in the thermal subsystem were active while the respective devices they heat were powered on."/>
166          <Annotation Term="OData.LongDescription" String="This property shall contain the total number of seconds all the heaters in the thermal subsystem were active while the respective devices they heat were powered on."/>
167        </Property>
168      </ComplexType>
169    </Schema>
170
171    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ThermalMetrics.v1_1_1">
172      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
173      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
174      <EntityType Name="ThermalMetrics" BaseType="ThermalMetrics.v1_1_0.ThermalMetrics"/>
175    </Schema>
176
177    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ThermalMetrics.v1_2_0">
178      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
179      <Annotation Term="Redfish.Release" String="2023.1"/>
180
181      <EntityType Name="ThermalMetrics" BaseType="ThermalMetrics.v1_1_0.ThermalMetrics">
182        <NavigationProperty Name="DeltaPressurekPa" Type="Sensor.Sensor">
183          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
184          <Annotation Term="Redfish.ExcerptCopy"/>
185          <Annotation Term="OData.Description" String="The differential pressure (kPa)."/>
186          <Annotation Term="OData.LongDescription" String="This property shall contain the pressure, in kilopascal units, for the difference in pressure between the air intake and the air exhaust of this chassis.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `PressurekPa`."/>
187        </NavigationProperty>
188        <NavigationProperty Name="AirFlowCubicMetersPerMinute" Type="Sensor.Sensor">
189          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
190          <Annotation Term="Redfish.ExcerptCopy"/>
191          <Annotation Term="OData.Description" String="The air flow through the chassis (m^3/min)."/>
192          <Annotation Term="OData.LongDescription" String="This property shall contain the rate of air flow, in cubic meters per minute units, between the air intake and the air exhaust of this chassis.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `AirFlowCMM`."/>
193        </NavigationProperty>
194      </EntityType>
195    </Schema>
196
197    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ThermalMetrics.v1_2_1">
198      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
199      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
200      <EntityType Name="ThermalMetrics" BaseType="ThermalMetrics.v1_2_0.ThermalMetrics"/>
201    </Schema>
202
203    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ThermalMetrics.v1_3_0">
204      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
205      <Annotation Term="Redfish.Release" String="2023.2"/>
206
207      <EntityType Name="ThermalMetrics" BaseType="ThermalMetrics.v1_2_0.ThermalMetrics">
208        <NavigationProperty Name="PowerWatts" Type="Sensor.Sensor">
209          <Annotation Term="Redfish.ExcerptCopy" String="Power"/>
210          <Annotation Term="OData.Description" String="Power consumption (W) of the thermal management subsystem."/>
211          <Annotation Term="OData.LongDescription" String="This property shall contain the power, in watt units, for the thermal subsystem.  The value shall include the total power consumption of devices involved in thermal management of the chassis, such as fans, pumps, and heaters.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `Power`."/>
212        </NavigationProperty>
213        <NavigationProperty Name="EnergykWh" Type="Sensor.Sensor">
214          <Annotation Term="Redfish.ExcerptCopy" String="EnergykWh"/>
215          <Annotation Term="OData.Description" String="Energy consumption (kWh) of the thermal management subsystem."/>
216          <Annotation Term="OData.LongDescription" String="This property shall contain the total energy, in kilowatt-hour units, for the thermal subsystem.  The value shall include the total energy consumption of devices involved in thermal management of the chassis, such as fans, pumps, and heaters.  The value of the DataSourceUri property, if present, shall reference a resource of type Sensor with the ReadingType property containing the value `EnergykWh`."/>
217        </NavigationProperty>
218      </EntityType>
219    </Schema>
220
221    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ThermalMetrics.v1_3_1">
222      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
223      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
224      <EntityType Name="ThermalMetrics" BaseType="ThermalMetrics.v1_3_0.ThermalMetrics"/>
225    </Schema>
226
227  </edmx:DataServices>
228</edmx:Edmx>
229