1720c9898SEd Tanous<?xml version="1.0" encoding="UTF-8"?>
2720c9898SEd Tanous<!---->
3720c9898SEd Tanous<!--################################################################################       -->
4*f2a8e57eSGunnar Mills<!--# Redfish Schema:  ThermalMetrics v1.3.2                                               -->
5720c9898SEd Tanous<!--#                                                                                      -->
6720c9898SEd Tanous<!--# For a detailed change log, see the README file contained in the DSP8010 bundle,      -->
7720c9898SEd Tanous<!--# available at http://www.dmtf.org/standards/redfish                                   -->
8*f2a8e57eSGunnar Mills<!--# Copyright 2014-2024 DMTF.                                                            -->
9720c9898SEd Tanous<!--# For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright -->
10720c9898SEd Tanous<!--################################################################################       -->
11720c9898SEd Tanous<!---->
12720c9898SEd Tanous<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0">
13720c9898SEd Tanous
14720c9898SEd Tanous  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Core.V1.xml">
15720c9898SEd Tanous    <edmx:Include Namespace="Org.OData.Core.V1" Alias="OData"/>
16720c9898SEd Tanous  </edmx:Reference>
17720c9898SEd Tanous  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Capabilities.V1.xml">
18720c9898SEd Tanous    <edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="Capabilities"/>
19720c9898SEd Tanous  </edmx:Reference>
20720c9898SEd Tanous  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
21720c9898SEd Tanous    <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
22720c9898SEd Tanous  </edmx:Reference>
23720c9898SEd Tanous  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
24720c9898SEd Tanous    <edmx:Include Namespace="Resource.v1_0_0"/>
25720c9898SEd Tanous  </edmx:Reference>
26720c9898SEd Tanous  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Sensor_v1.xml">
27720c9898SEd Tanous    <edmx:Include Namespace="Sensor"/>
28720c9898SEd Tanous  </edmx:Reference>
29720c9898SEd Tanous
30720c9898SEd Tanous  <edmx:DataServices>
31720c9898SEd Tanous
32720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ThermalMetrics">
33720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
34*f2a8e57eSGunnar Mills      <Annotation Term="Redfish.Language" String="en"/>
35720c9898SEd Tanous
36720c9898SEd Tanous      <EntityType Name="ThermalMetrics" BaseType="Resource.v1_0_0.Resource" Abstract="true">
37*f2a8e57eSGunnar Mills        <Annotation Term="OData.Description" String="The `ThermalMetrics` schema represents the thermal metrics of a chassis."/>
38720c9898SEd Tanous        <Annotation Term="OData.LongDescription" String="This resource shall represent the thermal metrics of a chassis for a Redfish implementation."/>
39720c9898SEd Tanous        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
40720c9898SEd Tanous        <Annotation Term="Capabilities.InsertRestrictions">
41720c9898SEd Tanous          <Record>
42720c9898SEd Tanous            <PropertyValue Property="Insertable" Bool="false"/>
43720c9898SEd Tanous          </Record>
44720c9898SEd Tanous        </Annotation>
45720c9898SEd Tanous        <Annotation Term="Capabilities.UpdateRestrictions">
46720c9898SEd Tanous          <Record>
47720c9898SEd Tanous            <PropertyValue Property="Updatable" Bool="false"/>
48720c9898SEd Tanous          </Record>
49720c9898SEd Tanous        </Annotation>
50720c9898SEd Tanous        <Annotation Term="Capabilities.DeleteRestrictions">
51720c9898SEd Tanous          <Record>
52720c9898SEd Tanous            <PropertyValue Property="Deletable" Bool="false"/>
53720c9898SEd Tanous          </Record>
54720c9898SEd Tanous        </Annotation>
55720c9898SEd Tanous        <Annotation Term="Redfish.Uris">
56720c9898SEd Tanous          <Collection>
57720c9898SEd Tanous            <String>/redfish/v1/Chassis/{ChassisId}/ThermalSubsystem/ThermalMetrics</String>
58720c9898SEd Tanous          </Collection>
59720c9898SEd Tanous        </Annotation>
60720c9898SEd Tanous      </EntityType>
61720c9898SEd Tanous
62720c9898SEd Tanous      <Action Name="ResetMetrics" IsBound="true">
63720c9898SEd Tanous        <Parameter Name="ThermalMetrics" Type="ThermalMetrics.v1_0_0.Actions"/>
64720c9898SEd Tanous        <Annotation Term="OData.Description" String="This action resets the summary metrics related to this equipment."/>
65720c9898SEd Tanous        <Annotation Term="OData.LongDescription" String="This action shall reset any time intervals or counted values for this equipment."/>
66720c9898SEd Tanous      </Action>
67720c9898SEd Tanous    </Schema>
68720c9898SEd Tanous
69720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ThermalMetrics.v1_0_0">
70720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
71720c9898SEd Tanous      <Annotation Term="Redfish.Release" String="2020.4"/>
72720c9898SEd Tanous
73720c9898SEd Tanous      <EntityType Name="ThermalMetrics" BaseType="ThermalMetrics.ThermalMetrics">
74*f2a8e57eSGunnar Mills        <Property Name="TemperatureSummaryCelsius" Type="ThermalMetrics.v1_0_0.TemperatureSummary" Nullable="false">
75720c9898SEd Tanous          <Annotation Term="OData.Description" String="The summary temperature readings for this chassis."/>
76720c9898SEd Tanous          <Annotation Term="OData.LongDescription" String="This property shall contain the temperature sensor readings for this subsystem."/>
77720c9898SEd Tanous        </Property>
78720c9898SEd Tanous        <NavigationProperty Name="TemperatureReadingsCelsius" Type="Collection(Sensor.Sensor)">
79720c9898SEd Tanous          <Annotation Term="Redfish.ExcerptCopy" String="Array"/>
80720c9898SEd Tanous          <Annotation Term="OData.Description" String="The temperatures (in degree Celsius units) from all related sensors for this device."/>
81*f2a8e57eSGunnar Mills          <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`."/>
82720c9898SEd Tanous        </NavigationProperty>
83720c9898SEd Tanous        <Property Name="Actions" Type="ThermalMetrics.v1_0_0.Actions" Nullable="false">
84720c9898SEd Tanous          <Annotation Term="OData.Description" String="The available actions for this resource."/>
85720c9898SEd Tanous          <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
86720c9898SEd Tanous        </Property>
87720c9898SEd Tanous      </EntityType>
88720c9898SEd Tanous
89720c9898SEd Tanous      <ComplexType Name="TemperatureSummary">
90720c9898SEd Tanous        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
91720c9898SEd Tanous        <Annotation Term="OData.Description" String="The temperature readings for a subsystem."/>
92720c9898SEd Tanous        <Annotation Term="OData.LongDescription" String="This type shall contain properties that describe temperature sensor for a subsystem."/>
93720c9898SEd Tanous        <NavigationProperty Name="Internal" Type="Sensor.Sensor">
94720c9898SEd Tanous          <Annotation Term="Redfish.ExcerptCopy"/>
95720c9898SEd Tanous          <Annotation Term="OData.Description" String="The internal temperature (in degree Celsius units) of this subsystem."/>
96*f2a8e57eSGunnar Mills          <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`."/>
97720c9898SEd Tanous        </NavigationProperty>
98720c9898SEd Tanous        <NavigationProperty Name="Intake" Type="Sensor.Sensor">
99720c9898SEd Tanous          <Annotation Term="Redfish.ExcerptCopy"/>
100720c9898SEd Tanous          <Annotation Term="OData.Description" String="The intake temperature (in degree Celsius units) of this subsystem."/>
101*f2a8e57eSGunnar Mills          <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`."/>
102720c9898SEd Tanous        </NavigationProperty>
103720c9898SEd Tanous        <NavigationProperty Name="Exhaust" Type="Sensor.Sensor">
104720c9898SEd Tanous          <Annotation Term="Redfish.ExcerptCopy"/>
105720c9898SEd Tanous          <Annotation Term="OData.Description" String="The exhaust temperature (in degree Celsius units) of this subsystem."/>
106*f2a8e57eSGunnar Mills          <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`."/>
107720c9898SEd Tanous        </NavigationProperty>
108720c9898SEd Tanous        <NavigationProperty Name="Ambient" Type="Sensor.Sensor">
109720c9898SEd Tanous          <Annotation Term="Redfish.ExcerptCopy"/>
110720c9898SEd Tanous          <Annotation Term="OData.Description" String="The ambient temperature (in degree Celsius units) of this subsystem."/>
111*f2a8e57eSGunnar Mills          <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`."/>
112720c9898SEd Tanous        </NavigationProperty>
113720c9898SEd Tanous      </ComplexType>
114720c9898SEd Tanous
115720c9898SEd Tanous      <ComplexType Name="Actions">
116720c9898SEd Tanous        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
117720c9898SEd Tanous        <Annotation Term="OData.Description" String="The available actions for this resource."/>
118720c9898SEd Tanous        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
119720c9898SEd Tanous        <Property Name="Oem" Type="ThermalMetrics.v1_0_0.OemActions" Nullable="false">
120720c9898SEd Tanous          <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
121720c9898SEd Tanous          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
122720c9898SEd Tanous        </Property>
123720c9898SEd Tanous      </ComplexType>
124720c9898SEd Tanous
125720c9898SEd Tanous      <ComplexType Name="OemActions">
126720c9898SEd Tanous        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
127720c9898SEd Tanous        <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
128720c9898SEd Tanous        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
129720c9898SEd Tanous      </ComplexType>
130720c9898SEd Tanous    </Schema>
131720c9898SEd Tanous
132720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ThermalMetrics.v1_0_1">
133720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
134*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.  It was also created to correct various typographical errors."/>
135720c9898SEd Tanous      <EntityType Name="ThermalMetrics" BaseType="ThermalMetrics.v1_0_0.ThermalMetrics"/>
136720c9898SEd Tanous    </Schema>
137720c9898SEd Tanous
138720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ThermalMetrics.v1_0_2">
139720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
140720c9898SEd Tanous      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
141720c9898SEd Tanous      <EntityType Name="ThermalMetrics" BaseType="ThermalMetrics.v1_0_1.ThermalMetrics"/>
142720c9898SEd Tanous    </Schema>
143720c9898SEd Tanous
144*f2a8e57eSGunnar Mills    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ThermalMetrics.v1_0_3">
145*f2a8e57eSGunnar Mills      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
146*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."/>
147*f2a8e57eSGunnar Mills      <EntityType Name="ThermalMetrics" BaseType="ThermalMetrics.v1_0_2.ThermalMetrics"/>
148*f2a8e57eSGunnar Mills    </Schema>
149*f2a8e57eSGunnar Mills
150720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ThermalMetrics.v1_1_0">
151720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
152720c9898SEd Tanous      <Annotation Term="Redfish.Release" String="2022.3"/>
153720c9898SEd Tanous
154720c9898SEd Tanous      <EntityType Name="ThermalMetrics" BaseType="ThermalMetrics.v1_0_1.ThermalMetrics">
155*f2a8e57eSGunnar Mills        <Property Name="HeaterSummary" Type="ThermalMetrics.v1_1_0.HeaterSummary" Nullable="false">
156720c9898SEd Tanous          <Annotation Term="OData.Description" String="The summary of heater metrics for this chassis."/>
157720c9898SEd Tanous          <Annotation Term="OData.LongDescription" String="This property shall contain the summary of heater metrics for this subsystem."/>
158720c9898SEd Tanous        </Property>
159720c9898SEd Tanous      </EntityType>
160720c9898SEd Tanous
161720c9898SEd Tanous      <ComplexType Name="HeaterSummary">
162720c9898SEd Tanous        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
163720c9898SEd Tanous        <Annotation Term="OData.Description" String="The heater metrics summary for the subsystem."/>
164720c9898SEd Tanous        <Annotation Term="OData.LongDescription" String="This type shall contain properties that describe the heater metrics summary for the subsystem."/>
165720c9898SEd Tanous        <Property Name="TotalPrePowerOnHeatingTimeSeconds" Type="Edm.Int64">
166720c9898SEd Tanous          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
167720c9898SEd Tanous          <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."/>
168720c9898SEd Tanous          <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."/>
169720c9898SEd Tanous        </Property>
170720c9898SEd Tanous        <Property Name="TotalRuntimeHeatingTimeSeconds" Type="Edm.Int64">
171720c9898SEd Tanous          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
172720c9898SEd Tanous          <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."/>
173720c9898SEd Tanous          <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."/>
174720c9898SEd Tanous        </Property>
175720c9898SEd Tanous      </ComplexType>
176720c9898SEd Tanous    </Schema>
177720c9898SEd Tanous
178720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ThermalMetrics.v1_1_1">
179720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
180720c9898SEd Tanous      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
181720c9898SEd Tanous      <EntityType Name="ThermalMetrics" BaseType="ThermalMetrics.v1_1_0.ThermalMetrics"/>
182720c9898SEd Tanous    </Schema>
183720c9898SEd Tanous
184*f2a8e57eSGunnar Mills    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ThermalMetrics.v1_1_2">
185*f2a8e57eSGunnar Mills      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
186*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."/>
187*f2a8e57eSGunnar Mills      <EntityType Name="ThermalMetrics" BaseType="ThermalMetrics.v1_1_1.ThermalMetrics"/>
188*f2a8e57eSGunnar Mills    </Schema>
189*f2a8e57eSGunnar Mills
190720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ThermalMetrics.v1_2_0">
191720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
192720c9898SEd Tanous      <Annotation Term="Redfish.Release" String="2023.1"/>
193720c9898SEd Tanous
194720c9898SEd Tanous      <EntityType Name="ThermalMetrics" BaseType="ThermalMetrics.v1_1_0.ThermalMetrics">
195720c9898SEd Tanous        <NavigationProperty Name="DeltaPressurekPa" Type="Sensor.Sensor">
196720c9898SEd Tanous          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
197720c9898SEd Tanous          <Annotation Term="Redfish.ExcerptCopy"/>
198720c9898SEd Tanous          <Annotation Term="OData.Description" String="The differential pressure (kPa)."/>
199*f2a8e57eSGunnar Mills          <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`."/>
200720c9898SEd Tanous        </NavigationProperty>
201720c9898SEd Tanous        <NavigationProperty Name="AirFlowCubicMetersPerMinute" Type="Sensor.Sensor">
202720c9898SEd Tanous          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
203720c9898SEd Tanous          <Annotation Term="Redfish.ExcerptCopy"/>
204720c9898SEd Tanous          <Annotation Term="OData.Description" String="The air flow through the chassis (m^3/min)."/>
205*f2a8e57eSGunnar Mills          <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`."/>
206720c9898SEd Tanous        </NavigationProperty>
207720c9898SEd Tanous      </EntityType>
208720c9898SEd Tanous    </Schema>
209720c9898SEd Tanous
210720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ThermalMetrics.v1_2_1">
211720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
212720c9898SEd Tanous      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
213720c9898SEd Tanous      <EntityType Name="ThermalMetrics" BaseType="ThermalMetrics.v1_2_0.ThermalMetrics"/>
214720c9898SEd Tanous    </Schema>
215720c9898SEd Tanous
216*f2a8e57eSGunnar Mills    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ThermalMetrics.v1_2_2">
217*f2a8e57eSGunnar Mills      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
218*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."/>
219*f2a8e57eSGunnar Mills      <EntityType Name="ThermalMetrics" BaseType="ThermalMetrics.v1_2_1.ThermalMetrics"/>
220*f2a8e57eSGunnar Mills    </Schema>
221*f2a8e57eSGunnar Mills
222720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ThermalMetrics.v1_3_0">
223720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
224720c9898SEd Tanous      <Annotation Term="Redfish.Release" String="2023.2"/>
225720c9898SEd Tanous
226720c9898SEd Tanous      <EntityType Name="ThermalMetrics" BaseType="ThermalMetrics.v1_2_0.ThermalMetrics">
227720c9898SEd Tanous        <NavigationProperty Name="PowerWatts" Type="Sensor.Sensor">
228720c9898SEd Tanous          <Annotation Term="Redfish.ExcerptCopy" String="Power"/>
229720c9898SEd Tanous          <Annotation Term="OData.Description" String="Power consumption (W) of the thermal management subsystem."/>
230*f2a8e57eSGunnar Mills          <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`."/>
231720c9898SEd Tanous        </NavigationProperty>
232720c9898SEd Tanous        <NavigationProperty Name="EnergykWh" Type="Sensor.Sensor">
233720c9898SEd Tanous          <Annotation Term="Redfish.ExcerptCopy" String="EnergykWh"/>
234720c9898SEd Tanous          <Annotation Term="OData.Description" String="Energy consumption (kWh) of the thermal management subsystem."/>
235*f2a8e57eSGunnar Mills          <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`."/>
236720c9898SEd Tanous        </NavigationProperty>
237720c9898SEd Tanous      </EntityType>
238720c9898SEd Tanous    </Schema>
239720c9898SEd Tanous
240720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ThermalMetrics.v1_3_1">
241720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
242720c9898SEd Tanous      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
243720c9898SEd Tanous      <EntityType Name="ThermalMetrics" BaseType="ThermalMetrics.v1_3_0.ThermalMetrics"/>
244720c9898SEd Tanous    </Schema>
245720c9898SEd Tanous
246*f2a8e57eSGunnar Mills    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ThermalMetrics.v1_3_2">
247*f2a8e57eSGunnar Mills      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
248*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."/>
249*f2a8e57eSGunnar Mills      <EntityType Name="ThermalMetrics" BaseType="ThermalMetrics.v1_3_1.ThermalMetrics"/>
250*f2a8e57eSGunnar Mills    </Schema>
251*f2a8e57eSGunnar Mills
252720c9898SEd Tanous  </edmx:DataServices>
253720c9898SEd Tanous</edmx:Edmx>
254