blob: 97d923edb3abc126a2213ae93eeebf1cd70e61ef [file] [log] [blame]
Jason M. Billsea4aa752018-06-05 13:29:11 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################ -->
Gunnar Mills10f270b2021-05-19 15:34:06 -05004<!--# Redfish Schema: Thermal v1.7.1 -->
Jason M. Billsea4aa752018-06-05 13:29:11 -07005<!--# -->
6<!--# For a detailed change log, see the README file contained in the DSP8010 bundle, -->
7<!--# available at http://www.dmtf.org/standards/redfish -->
Ed Tanousf263e092023-05-22 09:56:29 -07008<!--# Copyright 2014-2023 DMTF. -->
Jason M. Billsea4aa752018-06-05 13:29:11 -07009<!--# 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 <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Core.V1.xml">
14 <edmx:Include Namespace="Org.OData.Core.V1" Alias="OData"/>
15 </edmx:Reference>
16 <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Capabilities.V1.xml">
17 <edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="Capabilities"/>
18 </edmx:Reference>
19 <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Measures.V1.xml">
20 <edmx:Include Namespace="Org.OData.Measures.V1" Alias="Measures"/>
21 </edmx:Reference>
22 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
23 <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
24 </edmx:Reference>
25 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
26 <edmx:Include Namespace="Resource"/>
27 <edmx:Include Namespace="Resource.v1_0_0"/>
28 </edmx:Reference>
29 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/PhysicalContext_v1.xml">
30 <edmx:Include Namespace="PhysicalContext"/>
31 </edmx:Reference>
32 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Redundancy_v1.xml">
33 <edmx:Include Namespace="Redundancy"/>
34 </edmx:Reference>
35 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Assembly_v1.xml">
36 <edmx:Include Namespace="Assembly"/>
37 </edmx:Reference>
38
39 <edmx:DataServices>
40
41 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal">
42 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
43
44 <EntityType Name="Thermal" BaseType="Resource.v1_0_0.Resource" Abstract="true">
Gunnar Millsa778c022020-05-12 12:20:36 -050045 <Annotation Term="OData.Description" String="The Thermal schema describes temperature monitoring and thermal management subsystems, such as cooling fans, for a computer system or similar devices contained within a chassis."/>
46 <Annotation Term="OData.LongDescription" String="This resource shall contain the thermal management properties for temperature monitoring and management of cooling fans for a Redfish implementation."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070047 <Annotation Term="Capabilities.InsertRestrictions">
48 <Record>
49 <PropertyValue Property="Insertable" Bool="false"/>
50 </Record>
51 </Annotation>
52 <Annotation Term="Capabilities.UpdateRestrictions">
53 <Record>
54 <PropertyValue Property="Updatable" Bool="true"/>
Ed Tanouscb103132019-10-08 11:34:22 -070055 <Annotation Term="OData.Description" String="Any writable properties can be updated."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070056 </Record>
57 </Annotation>
58 <Annotation Term="Capabilities.DeleteRestrictions">
59 <Record>
60 <PropertyValue Property="Deletable" Bool="false"/>
61 </Record>
62 </Annotation>
Ed Tanous530520e2019-01-02 13:41:37 -080063 <Annotation Term="Redfish.Uris">
64 <Collection>
65 <String>/redfish/v1/Chassis/{ChassisId}/Thermal</String>
66 </Collection>
67 </Annotation>
Ed Tanousa8d8f9d2023-01-26 13:57:00 -080068 <Annotation Term="Redfish.DeprecatedUris">
69 <Collection>
70 <String>/redfish/v1/Chassis/{ChassisId}/Thermal</String>
71 </Collection>
72 </Annotation>
Gunnar Mills262d7d42021-01-20 16:28:41 -060073 <Annotation Term="Redfish.Revisions">
74 <Collection>
75 <Record>
76 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
77 <PropertyValue Property="Version" String="v1_7_0"/>
78 <PropertyValue Property="Description" String="This schema has been deprecated in favor of the ThermalSubsystem schema."/>
79 </Record>
80 </Collection>
81 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -070082 </EntityType>
Jason M. Billsea4aa752018-06-05 13:29:11 -070083 </Schema>
84
85 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_0_0">
86 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060087 <Annotation Term="Redfish.Release" String="1.0"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070088
89 <EntityType Name="Thermal" BaseType="Thermal.Thermal">
90 <NavigationProperty Name="Temperatures" Type="Collection(Thermal.v1_0_0.Temperature)" ContainsTarget="true">
91 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -070092 <Annotation Term="OData.Description" String="The set of temperature sensors for this chassis."/>
93 <Annotation Term="OData.LongDescription" String="This property shall contain the set of temperature sensors for this chassis."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070094 <Annotation Term="OData.AutoExpand"/>
95 </NavigationProperty>
96 <NavigationProperty Name="Fans" Type="Collection(Thermal.v1_0_0.Fan)" ContainsTarget="true">
97 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -070098 <Annotation Term="OData.Description" String="The set of fans for this chassis."/>
99 <Annotation Term="OData.LongDescription" String="This property shall contain the set of fans for this chassis."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700100 <Annotation Term="OData.AutoExpand"/>
101 </NavigationProperty>
102 <NavigationProperty Name="Redundancy" Type="Collection(Redundancy.Redundancy)" ContainsTarget="true">
Ed Tanouscb103132019-10-08 11:34:22 -0700103 <Annotation Term="OData.Description" String="The redundancy information for the set of fans in this chassis."/>
104 <Annotation Term="OData.LongDescription" String="This property shall contain redundancy information for the fans in this chassis."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700105 <Annotation Term="OData.AutoExpand"/>
106 </NavigationProperty>
Ed Tanous530520e2019-01-02 13:41:37 -0800107 <Property Name="Status" Type="Resource.Status" Nullable="false">
Gunnar Millsa778c022020-05-12 12:20:36 -0500108 <Annotation Term="OData.Description" String="The status and health of the resource and its subordinate or dependent resources."/>
109 <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800110 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700111 </EntityType>
112
113 <EntityType Name="Temperature" BaseType="Resource.v1_0_0.ReferenceableMember">
114 <Property Name="Name" Type="Edm.String">
115 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700116 <Annotation Term="OData.Description" String="The temperature sensor name."/>
117 <Annotation Term="OData.LongDescription" String="This property shall contain the name of the temperature sensor."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700118 </Property>
119 <Property Name="SensorNumber" Type="Edm.Int64">
120 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700121 <Annotation Term="OData.Description" String="The numerical identifier of the temperature sensor."/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500122 <Annotation Term="OData.LongDescription" String="This property shall contain a numerical identifier for this temperature sensor that is unique within this resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700123 </Property>
Ed Tanous530520e2019-01-02 13:41:37 -0800124 <Property Name="Status" Type="Resource.Status" Nullable="false">
Gunnar Millsa778c022020-05-12 12:20:36 -0500125 <Annotation Term="OData.Description" String="The status and health of the resource and its subordinate or dependent resources."/>
126 <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800127 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700128 <Property Name="ReadingCelsius" Type="Edm.Decimal">
129 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700130 <Annotation Term="OData.Description" String="The temperature in degrees Celsius."/>
131 <Annotation Term="OData.LongDescription" String="This property shall contain the temperature in Celsius degrees."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700132 <Annotation Term="Measures.Unit" String="Cel"/>
133 </Property>
134 <Property Name="UpperThresholdNonCritical" Type="Edm.Decimal">
135 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700136 <Annotation Term="OData.Description" String="The value at which the reading is above normal range."/>
137 <Annotation Term="OData.LongDescription" String="This property shall contain the value at which the ReadingCelsius property is above the normal range. The value of the property shall use the same units as the ReadingCelsius property."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700138 <Annotation Term="Measures.Unit" String="Cel"/>
139 </Property>
140 <Property Name="UpperThresholdCritical" Type="Edm.Decimal">
141 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700142 <Annotation Term="OData.Description" String="The value at which the reading is above normal range but not yet fatal."/>
143 <Annotation Term="OData.LongDescription" String="This property shall contain the value at which the ReadingCelsius property is above the normal range but is not yet fatal. The value of the property shall use the same units as the ReadingCelsius property."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700144 <Annotation Term="Measures.Unit" String="Cel"/>
145 </Property>
146 <Property Name="UpperThresholdFatal" Type="Edm.Decimal">
147 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700148 <Annotation Term="OData.Description" String="The value at which the reading is above normal range and fatal."/>
149 <Annotation Term="OData.LongDescription" String="This property shall contain the value at which the ReadingCelsius property is above the normal range and is fatal. The value of the property shall use the same units as the ReadingCelsius property."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700150 <Annotation Term="Measures.Unit" String="Cel"/>
151 </Property>
152 <Property Name="LowerThresholdNonCritical" Type="Edm.Decimal">
153 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700154 <Annotation Term="OData.Description" String="The value at which the reading is below normal range."/>
155 <Annotation Term="OData.LongDescription" String="This property shall contain the value at which the ReadingCelsius property is below normal range. The value of the property shall use the same units as the ReadingCelsius property."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700156 <Annotation Term="Measures.Unit" String="Cel"/>
157 </Property>
158 <Property Name="LowerThresholdCritical" Type="Edm.Decimal">
159 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700160 <Annotation Term="OData.Description" String="The value at which the reading is below normal range but not yet fatal."/>
161 <Annotation Term="OData.LongDescription" String="This property shall contain the value at which the ReadingCelsius property is below the normal range but is not yet fatal. The value of the property shall use the same units as the ReadingCelsius property."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700162 <Annotation Term="Measures.Unit" String="Cel"/>
163 </Property>
164 <Property Name="LowerThresholdFatal" Type="Edm.Decimal">
165 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700166 <Annotation Term="OData.Description" String="The value at which the reading is below normal range and fatal."/>
167 <Annotation Term="OData.LongDescription" String="This property shall contain the value at which the ReadingCelsius property is below the normal range and is fatal. The value of the property shall use the same units as the ReadingCelsius property."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700168 <Annotation Term="Measures.Unit" String="Cel"/>
169 </Property>
170 <Property Name="MinReadingRangeTemp" Type="Edm.Decimal">
171 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700172 <Annotation Term="OData.Description" String="Minimum value for this sensor."/>
173 <Annotation Term="OData.LongDescription" String="This property shall indicate the lowest possible value for the ReadingCelsius property. The value of the property shall use the same units as the ReadingCelsius property."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700174 <Annotation Term="Measures.Unit" String="Cel"/>
175 </Property>
176 <Property Name="MaxReadingRangeTemp" Type="Edm.Decimal">
177 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700178 <Annotation Term="OData.Description" String="Maximum value for this sensor."/>
179 <Annotation Term="OData.LongDescription" String="This property shall indicate the highest possible value for the ReadingCelsius property. The value of the property shall use the same units as the ReadingCelsius property."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700180 <Annotation Term="Measures.Unit" String="Cel"/>
181 </Property>
182 <Property Name="PhysicalContext" Type="PhysicalContext.PhysicalContext" Nullable="false">
183 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700184 <Annotation Term="OData.Description" String="The area or device to which this temperature measurement applies."/>
185 <Annotation Term="OData.LongDescription" String="This property shall contain a description of the affected device or region within the chassis to which this temperature applies."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700186 </Property>
187 <NavigationProperty Name="RelatedItem" Type="Collection(Resource.Item)">
188 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500189 <Annotation Term="OData.Description" String="An array of links to resources or objects that represent areas or devices to which this temperature applies."/>
190 <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to resources or objects that represent areas or devices to which this temperature applies."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700191 <Annotation Term="OData.AutoExpandReferences"/>
192 </NavigationProperty>
193 </EntityType>
194
195 <EntityType Name="Fan" BaseType="Resource.v1_0_0.ReferenceableMember">
196 <Property Name="FanName" Type="Edm.String">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700197 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700198 <Annotation Term="OData.Description" String="The name of the fan."/>
199 <Annotation Term="OData.LongDescription" String="This property shall contain the name of the fan."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600200 <Annotation Term="Redfish.Revisions">
201 <Collection>
202 <Record>
203 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
204 <PropertyValue Property="Version" String="v1_1_0"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700205 <PropertyValue Property="Description" String="This property has been deprecated in favor of the Name property."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600206 </Record>
207 </Collection>
208 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700209 </Property>
210 <Property Name="PhysicalContext" Type="PhysicalContext.PhysicalContext" Nullable="false">
211 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700212 <Annotation Term="OData.Description" String="The area or device associated with this fan."/>
213 <Annotation Term="OData.LongDescription" String="This property shall contain a description of the affected device or region within the chassis with which this fan is associated."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700214 </Property>
Ed Tanous530520e2019-01-02 13:41:37 -0800215 <Property Name="Status" Type="Resource.Status" Nullable="false">
Gunnar Millsa778c022020-05-12 12:20:36 -0500216 <Annotation Term="OData.Description" String="The status and health of the resource and its subordinate or dependent resources."/>
217 <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800218 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700219 <Property Name="Reading" Type="Edm.Int64">
220 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700221 <Annotation Term="OData.Description" String="The fan speed."/>
222 <Annotation Term="OData.LongDescription" String="This property shall contain the fan sensor reading."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700223 </Property>
224 <Property Name="UpperThresholdNonCritical" Type="Edm.Int64">
225 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700226 <Annotation Term="OData.Description" String="The value at which the reading is above normal range."/>
227 <Annotation Term="OData.LongDescription" String="This property shall contain the value at which the Reading property is above the normal range. The value of the property shall use the same units as the Reading property."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700228 </Property>
229 <Property Name="UpperThresholdCritical" Type="Edm.Int64">
230 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700231 <Annotation Term="OData.Description" String="The value at which the reading is above normal range but not yet fatal."/>
232 <Annotation Term="OData.LongDescription" String="This property shall contain the value at which the Reading property is above the normal range but is not yet fatal. The value of the property shall use the same units as the Reading property."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700233 </Property>
234 <Property Name="UpperThresholdFatal" Type="Edm.Int64">
235 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700236 <Annotation Term="OData.Description" String="The value at which the reading is above normal range and fatal."/>
237 <Annotation Term="OData.LongDescription" String="This property shall contain the value at which the Reading property is above the normal range and is fatal. The value of the property shall use the same units as the Reading property."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700238 </Property>
239 <Property Name="LowerThresholdNonCritical" Type="Edm.Int64">
240 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700241 <Annotation Term="OData.Description" String="The value at which the reading is below normal range."/>
242 <Annotation Term="OData.LongDescription" String="This property shall contain the value at which the Reading property is below normal range. The value of the property shall use the same units as the Reading property."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700243 </Property>
244 <Property Name="LowerThresholdCritical" Type="Edm.Int64">
245 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700246 <Annotation Term="OData.Description" String="The value at which the reading is below normal range but not yet fatal."/>
247 <Annotation Term="OData.LongDescription" String="This property shall contain the value at which the Reading property is below the normal range but is not yet fatal. The value of the property shall use the same units as the Reading property."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700248 </Property>
249 <Property Name="LowerThresholdFatal" Type="Edm.Int64">
250 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700251 <Annotation Term="OData.Description" String="The value at which the reading is below normal range and fatal."/>
252 <Annotation Term="OData.LongDescription" String="This property shall contain the value at which the Reading property is below the normal range and is fatal. The value of the property shall use the same units as the Reading property."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700253 </Property>
254 <Property Name="MinReadingRange" Type="Edm.Int64">
255 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700256 <Annotation Term="OData.Description" String="Minimum value for this sensor."/>
257 <Annotation Term="OData.LongDescription" String="This property shall indicate the lowest possible value for the Reading property. The value of the property shall use the same units as the Reading property."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700258 </Property>
259 <Property Name="MaxReadingRange" Type="Edm.Int64">
260 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700261 <Annotation Term="OData.Description" String="Maximum value for this sensor."/>
262 <Annotation Term="OData.LongDescription" String="This property shall indicate the highest possible value for the Reading property. The value of the property shall use the same units as the Reading property."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700263 </Property>
264 <NavigationProperty Name="RelatedItem" Type="Collection(Resource.Item)">
265 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500266 <Annotation Term="OData.Description" String="An array of links to resources or objects that this fan services."/>
267 <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to resources or objects that this fan services."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700268 <Annotation Term="OData.AutoExpandReferences"/>
269 </NavigationProperty>
270 <NavigationProperty Name="Redundancy" Type="Collection(Redundancy.Redundancy)">
Ed Tanouscb103132019-10-08 11:34:22 -0700271 <Annotation Term="OData.Description" String="The set of redundancy groups for this fan."/>
272 <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to the redundancy groups to which this fan belongs."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700273 <Annotation Term="OData.AutoExpandReferences"/>
274 </NavigationProperty>
275 </EntityType>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700276 </Schema>
277
278 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_0_1">
279 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500280
Jason M. Billsea4aa752018-06-05 13:29:11 -0700281 <EntityType Name="Thermal" BaseType="Thermal.v1_0_0.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500282
283 <EntityType Name="Temperature" BaseType="Thermal.v1_0_0.Temperature"/>
284
Jason M. Billsea4aa752018-06-05 13:29:11 -0700285 <EntityType Name="Fan" BaseType="Thermal.v1_0_0.Fan">
286 <Property Name="ReadingUnits" Type="Thermal.v1_0_1.ReadingUnits">
287 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700288 <Annotation Term="OData.Description" String="The units in which the fan reading and thresholds are measured."/>
289 <Annotation Term="OData.LongDescription" String="This property shall contain the units in which the fan reading and thresholds are measured."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700290 </Property>
291 </EntityType>
292
293 <EnumType Name="ReadingUnits">
294 <Member Name="RPM">
Gunnar Mills10f270b2021-05-19 15:34:06 -0500295 <Annotation Term="OData.Description" String="The fan reading and thresholds are measured in revolutions per minute."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700296 </Member>
297 <Member Name="Percent">
Ed Tanouscb103132019-10-08 11:34:22 -0700298 <Annotation Term="OData.Description" String="The fan reading and thresholds are measured as a percentage."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700299 </Member>
300 </EnumType>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700301 </Schema>
302
303 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_0_2">
304 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700305 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700306 <EntityType Name="Thermal" BaseType="Thermal.v1_0_1.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500307 <EntityType Name="Temperature" BaseType="Thermal.v1_0_1.Temperature"/>
308 <EntityType Name="Fan" BaseType="Thermal.v1_0_1.Fan"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700309 </Schema>
310
311 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_0_3">
312 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700313 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700314 <EntityType Name="Thermal" BaseType="Thermal.v1_0_2.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500315 <EntityType Name="Temperature" BaseType="Thermal.v1_0_2.Temperature"/>
316 <EntityType Name="Fan" BaseType="Thermal.v1_0_2.Fan"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700317 </Schema>
318
319 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_0_4">
320 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700321 <Annotation Term="OData.Description" String="This version was created to remove the Nullable facet on NavigationProperties of the Collection type."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700322 <EntityType Name="Thermal" BaseType="Thermal.v1_0_3.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500323 <EntityType Name="Temperature" BaseType="Thermal.v1_0_3.Temperature"/>
324 <EntityType Name="Fan" BaseType="Thermal.v1_0_3.Fan"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700325 </Schema>
326
327 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_0_5">
328 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500329 <Annotation Term="OData.Description" String="This version was created to remove the auto expand annotation for the Redundancy property inside fans."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700330 <EntityType Name="Thermal" BaseType="Thermal.v1_0_4.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500331 <EntityType Name="Temperature" BaseType="Thermal.v1_0_4.Temperature"/>
332 <EntityType Name="Fan" BaseType="Thermal.v1_0_4.Fan"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700333 </Schema>
334
335 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_0_6">
336 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700337 <Annotation Term="OData.Description" String="This version was created to change PhysicalContext to use the unversioned definition."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700338 <EntityType Name="Thermal" BaseType="Thermal.v1_0_5.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500339 <EntityType Name="Temperature" BaseType="Thermal.v1_0_5.Temperature"/>
340 <EntityType Name="Fan" BaseType="Thermal.v1_0_5.Fan"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700341 </Schema>
342
Ed Tanous530520e2019-01-02 13:41:37 -0800343 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_0_7">
344 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
345 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/>
346 <EntityType Name="Thermal" BaseType="Thermal.v1_0_6.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500347 <EntityType Name="Temperature" BaseType="Thermal.v1_0_6.Temperature"/>
348 <EntityType Name="Fan" BaseType="Thermal.v1_0_6.Fan"/>
Ed Tanous530520e2019-01-02 13:41:37 -0800349 </Schema>
350
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600351 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_0_8">
352 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500353 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600354 <EntityType Name="Thermal" BaseType="Thermal.v1_0_7.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500355 <EntityType Name="Temperature" BaseType="Thermal.v1_0_7.Temperature"/>
356 <EntityType Name="Fan" BaseType="Thermal.v1_0_7.Fan"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600357 </Schema>
358
Ed Tanouscb103132019-10-08 11:34:22 -0700359 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_0_9">
360 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
361 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/>
362 <EntityType Name="Thermal" BaseType="Thermal.v1_0_8.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500363 <EntityType Name="Temperature" BaseType="Thermal.v1_0_8.Temperature"/>
364 <EntityType Name="Fan" BaseType="Thermal.v1_0_8.Fan"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700365 </Schema>
366
367 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_0_10">
368 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
369 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
370 <EntityType Name="Thermal" BaseType="Thermal.v1_0_9.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500371 <EntityType Name="Temperature" BaseType="Thermal.v1_0_9.Temperature"/>
372 <EntityType Name="Fan" BaseType="Thermal.v1_0_9.Fan"/>
373 </Schema>
374
375 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_0_11">
376 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
377 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
378 <EntityType Name="Thermal" BaseType="Thermal.v1_0_10.Thermal"/>
379 <EntityType Name="Temperature" BaseType="Thermal.v1_0_10.Temperature"/>
380 <EntityType Name="Fan" BaseType="Thermal.v1_0_10.Fan"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700381 </Schema>
382
Gunnar Mills10f270b2021-05-19 15:34:06 -0500383 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_0_12">
384 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
385 <Annotation Term="OData.Description" String="This version was created to correct various description to use proper normative terminology. It was also created to correct various typographical errors."/>
386 <EntityType Name="Thermal" BaseType="Thermal.v1_0_11.Thermal"/>
387 <EntityType Name="Temperature" BaseType="Thermal.v1_0_11.Temperature"/>
388 <EntityType Name="Fan" BaseType="Thermal.v1_0_11.Fan"/>
389 </Schema>
390
Jason M. Billsea4aa752018-06-05 13:29:11 -0700391 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_1_0">
392 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600393 <Annotation Term="Redfish.Release" String="2016.1"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500394
Jason M. Billsea4aa752018-06-05 13:29:11 -0700395 <EntityType Name="Thermal" BaseType="Thermal.v1_0_2.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500396
397 <EntityType Name="Temperature" BaseType="Thermal.v1_0_2.Temperature"/>
398
399 <EntityType Name="Fan" BaseType="Thermal.v1_0_2.Fan">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700400 <Property Name="Name" Type="Edm.String">
401 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
402 <Annotation Term="OData.Description" String="Name of the fan."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700403 <Annotation Term="OData.LongDescription" String="This property shall contain the name of the fan."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700404 </Property>
405 </EntityType>
406 </Schema>
407
408 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_1_1">
409 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700410 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700411 <EntityType Name="Thermal" BaseType="Thermal.v1_1_0.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500412 <EntityType Name="Temperature" BaseType="Thermal.v1_1_0.Temperature"/>
413 <EntityType Name="Fan" BaseType="Thermal.v1_1_0.Fan"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700414 </Schema>
415
416 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_1_2">
417 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700418 <Annotation Term="OData.Description" String="This version was created to remove the Nullable facet on NavigationProperties of the Collection type."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700419 <EntityType Name="Thermal" BaseType="Thermal.v1_1_1.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500420 <EntityType Name="Temperature" BaseType="Thermal.v1_1_1.Temperature"/>
421 <EntityType Name="Fan" BaseType="Thermal.v1_1_1.Fan"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700422 </Schema>
423
424 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_1_3">
425 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500426 <Annotation Term="OData.Description" String="This version was created to remove the auto expand annotation for the Redundancy property inside Fans."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700427 <EntityType Name="Thermal" BaseType="Thermal.v1_1_2.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500428 <EntityType Name="Temperature" BaseType="Thermal.v1_1_2.Temperature"/>
429 <EntityType Name="Fan" BaseType="Thermal.v1_1_2.Fan"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700430 </Schema>
431
432 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_1_4">
433 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700434 <Annotation Term="OData.Description" String="This version was created to change PhysicalContext to use the unversioned definition."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700435 <EntityType Name="Thermal" BaseType="Thermal.v1_1_3.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500436 <EntityType Name="Temperature" BaseType="Thermal.v1_1_3.Temperature"/>
437 <EntityType Name="Fan" BaseType="Thermal.v1_1_3.Fan"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700438 </Schema>
439
Ed Tanous530520e2019-01-02 13:41:37 -0800440 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_1_5">
441 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
442 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/>
443 <EntityType Name="Thermal" BaseType="Thermal.v1_1_4.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500444 <EntityType Name="Temperature" BaseType="Thermal.v1_1_4.Temperature"/>
445 <EntityType Name="Fan" BaseType="Thermal.v1_1_4.Fan"/>
Ed Tanous530520e2019-01-02 13:41:37 -0800446 </Schema>
447
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600448 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_1_6">
449 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500450 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600451 <EntityType Name="Thermal" BaseType="Thermal.v1_1_5.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500452 <EntityType Name="Temperature" BaseType="Thermal.v1_1_5.Temperature"/>
453 <EntityType Name="Fan" BaseType="Thermal.v1_1_5.Fan"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600454 </Schema>
455
Ed Tanouscb103132019-10-08 11:34:22 -0700456 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_1_7">
457 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
458 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/>
459 <EntityType Name="Thermal" BaseType="Thermal.v1_1_6.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500460 <EntityType Name="Temperature" BaseType="Thermal.v1_1_6.Temperature"/>
461 <EntityType Name="Fan" BaseType="Thermal.v1_1_6.Fan"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700462 </Schema>
463
464 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_1_8">
465 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
466 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
467 <EntityType Name="Thermal" BaseType="Thermal.v1_1_7.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500468 <EntityType Name="Temperature" BaseType="Thermal.v1_1_7.Temperature"/>
469 <EntityType Name="Fan" BaseType="Thermal.v1_1_7.Fan"/>
470 </Schema>
471
472 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_1_9">
473 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
474 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
475 <EntityType Name="Thermal" BaseType="Thermal.v1_1_8.Thermal"/>
476 <EntityType Name="Temperature" BaseType="Thermal.v1_1_8.Temperature"/>
477 <EntityType Name="Fan" BaseType="Thermal.v1_1_8.Fan"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700478 </Schema>
479
Gunnar Mills10f270b2021-05-19 15:34:06 -0500480 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_1_10">
481 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
482 <Annotation Term="OData.Description" String="This version was created to correct various description to use proper normative terminology. It was also created to correct various typographical errors."/>
483 <EntityType Name="Thermal" BaseType="Thermal.v1_1_9.Thermal"/>
484 <EntityType Name="Temperature" BaseType="Thermal.v1_1_9.Temperature"/>
485 <EntityType Name="Fan" BaseType="Thermal.v1_1_9.Fan"/>
486 </Schema>
487
Jason M. Billsea4aa752018-06-05 13:29:11 -0700488 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_2_0">
489 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600490 <Annotation Term="Redfish.Release" String="2016.3"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500491
Jason M. Billsea4aa752018-06-05 13:29:11 -0700492 <EntityType Name="Thermal" BaseType="Thermal.v1_1_1.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500493
494 <EntityType Name="Temperature" BaseType="Thermal.v1_1_1.Temperature"/>
495
496 <EntityType Name="Fan" BaseType="Thermal.v1_1_1.Fan">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700497 <Property Name="Manufacturer" Type="Edm.String">
498 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700499 <Annotation Term="OData.Description" String="The manufacturer of this fan."/>
Gunnar Mills10f270b2021-05-19 15:34:06 -0500500 <Annotation Term="OData.LongDescription" String="This property shall contain the name of the organization responsible for producing the fan. This organization may be the entity from whom the fan is purchased, but this is not necessarily true."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700501 </Property>
502 <Property Name="Model" Type="Edm.String">
503 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700504 <Annotation Term="OData.Description" String="The model number for this fan."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700505 <Annotation Term="OData.LongDescription" String="This property shall contain the model information as defined by the manufacturer for the associated fan."/>
506 </Property>
507 <Property Name="SerialNumber" Type="Edm.String">
508 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700509 <Annotation Term="OData.Description" String="The serial number for this fan."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700510 <Annotation Term="OData.LongDescription" String="This property shall contain the serial number as defined by the manufacturer for the associated fan."/>
511 </Property>
512 <Property Name="PartNumber" Type="Edm.String">
513 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700514 <Annotation Term="OData.Description" String="The part number for this fan."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700515 <Annotation Term="OData.LongDescription" String="This property shall contain the part number as defined by the manufacturer for the associated fan."/>
516 </Property>
517 <Property Name="SparePartNumber" Type="Edm.String">
518 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700519 <Annotation Term="OData.Description" String="The spare part number for this fan."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700520 <Annotation Term="OData.LongDescription" String="This property shall contain the spare or replacement part number as defined by the manufacturer for the associated fan."/>
521 </Property>
522 <Property Name="IndicatorLED" Type="Resource.IndicatorLED">
523 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700524 <Annotation Term="OData.Description" String="The state of the indicator LED, which identifies this fan."/>
525 <Annotation Term="OData.LongDescription" String="This property shall contain the state of the indicator light associated with this fan."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700526 </Property>
527 </EntityType>
528 </Schema>
529
530 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_2_1">
531 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700532 <Annotation Term="OData.Description" String="This version was created to remove the Nullable facet on NavigationProperties of the Collection type."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700533 <EntityType Name="Thermal" BaseType="Thermal.v1_2_0.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500534 <EntityType Name="Temperature" BaseType="Thermal.v1_2_0.Temperature"/>
535 <EntityType Name="Fan" BaseType="Thermal.v1_2_0.Fan"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700536 </Schema>
537
538 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_2_2">
539 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500540 <Annotation Term="OData.Description" String="This version was created to remove the auto expand annotation for the Redundancy property inside Fans."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700541 <EntityType Name="Thermal" BaseType="Thermal.v1_2_1.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500542 <EntityType Name="Temperature" BaseType="Thermal.v1_2_1.Temperature"/>
543 <EntityType Name="Fan" BaseType="Thermal.v1_2_1.Fan"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700544 </Schema>
545
546 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_2_3">
547 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700548 <Annotation Term="OData.Description" String="This version was created to change PhysicalContext and IndicatorLED to use the unversioned definition."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700549 <EntityType Name="Thermal" BaseType="Thermal.v1_2_2.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500550 <EntityType Name="Temperature" BaseType="Thermal.v1_2_2.Temperature"/>
551 <EntityType Name="Fan" BaseType="Thermal.v1_2_2.Fan"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700552 </Schema>
553
Ed Tanous530520e2019-01-02 13:41:37 -0800554 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_2_4">
555 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
556 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/>
557 <EntityType Name="Thermal" BaseType="Thermal.v1_2_3.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500558 <EntityType Name="Temperature" BaseType="Thermal.v1_2_3.Temperature"/>
559 <EntityType Name="Fan" BaseType="Thermal.v1_2_3.Fan"/>
Ed Tanous530520e2019-01-02 13:41:37 -0800560 </Schema>
561
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600562 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_2_5">
563 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500564 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600565 <EntityType Name="Thermal" BaseType="Thermal.v1_2_4.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500566 <EntityType Name="Temperature" BaseType="Thermal.v1_2_4.Temperature"/>
567 <EntityType Name="Fan" BaseType="Thermal.v1_2_4.Fan"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600568 </Schema>
569
Ed Tanouscb103132019-10-08 11:34:22 -0700570 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_2_6">
571 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
572 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/>
573 <EntityType Name="Thermal" BaseType="Thermal.v1_2_5.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500574 <EntityType Name="Temperature" BaseType="Thermal.v1_2_5.Temperature"/>
575 <EntityType Name="Fan" BaseType="Thermal.v1_2_5.Fan"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700576 </Schema>
577
578 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_2_7">
579 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
580 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
581 <EntityType Name="Thermal" BaseType="Thermal.v1_2_6.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500582 <EntityType Name="Temperature" BaseType="Thermal.v1_2_6.Temperature"/>
583 <EntityType Name="Fan" BaseType="Thermal.v1_2_6.Fan"/>
584 </Schema>
585
586 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_2_8">
587 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
588 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
589 <EntityType Name="Thermal" BaseType="Thermal.v1_2_7.Thermal"/>
590 <EntityType Name="Temperature" BaseType="Thermal.v1_2_7.Temperature"/>
591 <EntityType Name="Fan" BaseType="Thermal.v1_2_7.Fan"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700592 </Schema>
593
Gunnar Mills10f270b2021-05-19 15:34:06 -0500594 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_2_9">
595 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
596 <Annotation Term="OData.Description" String="This version was created to correct various description to use proper normative terminology. It was also created to correct various typographical errors."/>
597 <EntityType Name="Thermal" BaseType="Thermal.v1_2_8.Thermal"/>
598 <EntityType Name="Temperature" BaseType="Thermal.v1_2_8.Temperature"/>
599 <EntityType Name="Fan" BaseType="Thermal.v1_2_8.Fan"/>
600 </Schema>
601
Jason M. Billsea4aa752018-06-05 13:29:11 -0700602 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_3_0">
603 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600604 <Annotation Term="Redfish.Release" String="2017.1"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500605
Jason M. Billsea4aa752018-06-05 13:29:11 -0700606 <EntityType Name="Thermal" BaseType="Thermal.v1_2_1.Thermal">
607 <Property Name="Actions" Type="Thermal.v1_3_0.ThermalActions" Nullable="false">
Gunnar Millsa778c022020-05-12 12:20:36 -0500608 <Annotation Term="OData.Description" String="The available actions for this resource."/>
609 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700610 </Property>
611 </EntityType>
612
Gunnar Millsa778c022020-05-12 12:20:36 -0500613 <EntityType Name="Temperature" BaseType="Thermal.v1_2_1.Temperature">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700614 <Property Name="Actions" Type="Thermal.v1_3_0.TemperatureActions" Nullable="false">
Gunnar Millsa778c022020-05-12 12:20:36 -0500615 <Annotation Term="OData.Description" String="The available actions for this resource."/>
616 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700617 </Property>
618 </EntityType>
619
Gunnar Millsa778c022020-05-12 12:20:36 -0500620 <EntityType Name="Fan" BaseType="Thermal.v1_2_1.Fan">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700621 <Property Name="Actions" Type="Thermal.v1_3_0.FanActions" Nullable="false">
Gunnar Millsa778c022020-05-12 12:20:36 -0500622 <Annotation Term="OData.Description" String="The available actions for this resource."/>
623 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700624 </Property>
625 </EntityType>
626
627 <ComplexType Name="ThermalActions">
628 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500629 <Annotation Term="OData.Description" String="The available actions for this resource."/>
630 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800631 <Property Name="Oem" Type="Thermal.v1_3_0.ThermalOemActions" Nullable="false">
Gunnar Millsa778c022020-05-12 12:20:36 -0500632 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
633 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800634 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700635 </ComplexType>
636
637 <ComplexType Name="ThermalOemActions">
638 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500639 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
640 <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700641 </ComplexType>
642
643 <ComplexType Name="TemperatureActions">
644 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500645 <Annotation Term="OData.Description" String="The available actions for this resource."/>
646 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800647 <Property Name="Oem" Type="Thermal.v1_3_0.TemperatureOemActions" Nullable="false">
Gunnar Millsa778c022020-05-12 12:20:36 -0500648 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
649 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800650 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700651 </ComplexType>
652
653 <ComplexType Name="TemperatureOemActions">
654 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500655 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
656 <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700657 </ComplexType>
658
659 <ComplexType Name="FanActions">
660 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500661 <Annotation Term="OData.Description" String="The available actions for this resource."/>
662 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800663 <Property Name="Oem" Type="Thermal.v1_3_0.FanOemActions" Nullable="false">
Gunnar Millsa778c022020-05-12 12:20:36 -0500664 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
665 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800666 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700667 </ComplexType>
668
669 <ComplexType Name="FanOemActions">
670 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500671 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
672 <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700673 </ComplexType>
674 </Schema>
675
676 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_3_1">
677 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500678 <Annotation Term="OData.Description" String="This version was created to remove the auto expand annotation for the Redundancy property inside Fans."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700679 <EntityType Name="Thermal" BaseType="Thermal.v1_3_0.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500680 <EntityType Name="Temperature" BaseType="Thermal.v1_3_0.Temperature"/>
681 <EntityType Name="Fan" BaseType="Thermal.v1_3_0.Fan"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700682 </Schema>
683
684
685 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_3_2">
686 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700687 <Annotation Term="OData.Description" String="This version was created to change PhysicalContext and IndicatorLED to use the unversioned definition."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700688 <EntityType Name="Thermal" BaseType="Thermal.v1_3_1.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500689 <EntityType Name="Temperature" BaseType="Thermal.v1_3_1.Temperature"/>
690 <EntityType Name="Fan" BaseType="Thermal.v1_3_1.Fan"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700691 </Schema>
692
Ed Tanous530520e2019-01-02 13:41:37 -0800693 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_3_3">
694 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
695 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/>
696 <EntityType Name="Thermal" BaseType="Thermal.v1_3_2.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500697 <EntityType Name="Temperature" BaseType="Thermal.v1_3_2.Temperature"/>
698 <EntityType Name="Fan" BaseType="Thermal.v1_3_2.Fan"/>
Ed Tanous530520e2019-01-02 13:41:37 -0800699 </Schema>
700
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600701 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_3_4">
702 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500703 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600704 <EntityType Name="Thermal" BaseType="Thermal.v1_3_3.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500705 <EntityType Name="Temperature" BaseType="Thermal.v1_3_3.Temperature"/>
706 <EntityType Name="Fan" BaseType="Thermal.v1_3_3.Fan"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600707 </Schema>
708
Ed Tanouscb103132019-10-08 11:34:22 -0700709 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_3_5">
710 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
711 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/>
712 <EntityType Name="Thermal" BaseType="Thermal.v1_3_4.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500713 <EntityType Name="Temperature" BaseType="Thermal.v1_3_4.Temperature"/>
714 <EntityType Name="Fan" BaseType="Thermal.v1_3_4.Fan"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700715 </Schema>
716
717 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_3_6">
718 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
719 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
720 <EntityType Name="Thermal" BaseType="Thermal.v1_3_5.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500721 <EntityType Name="Temperature" BaseType="Thermal.v1_3_5.Temperature"/>
722 <EntityType Name="Fan" BaseType="Thermal.v1_3_5.Fan"/>
723 </Schema>
724
725 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_3_7">
726 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
727 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
728 <EntityType Name="Thermal" BaseType="Thermal.v1_3_6.Thermal"/>
729 <EntityType Name="Temperature" BaseType="Thermal.v1_3_6.Temperature"/>
730 <EntityType Name="Fan" BaseType="Thermal.v1_3_6.Fan"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700731 </Schema>
732
Gunnar Mills10f270b2021-05-19 15:34:06 -0500733 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_3_8">
734 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
735 <Annotation Term="OData.Description" String="This version was created to correct various description to use proper normative terminology. It was also created to correct various typographical errors."/>
736 <EntityType Name="Thermal" BaseType="Thermal.v1_3_7.Thermal"/>
737 <EntityType Name="Temperature" BaseType="Thermal.v1_3_7.Temperature"/>
738 <EntityType Name="Fan" BaseType="Thermal.v1_3_7.Fan"/>
739 </Schema>
740
Jason M. Billsea4aa752018-06-05 13:29:11 -0700741 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_4_0">
742 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600743 <Annotation Term="Redfish.Release" String="2017.3"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500744
Jason M. Billsea4aa752018-06-05 13:29:11 -0700745 <EntityType Name="Thermal" BaseType="Thermal.v1_3_2.Thermal"/>
746
Gunnar Millsa778c022020-05-12 12:20:36 -0500747 <EntityType Name="Temperature" BaseType="Thermal.v1_3_2.Temperature">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700748 <Property Name="DeltaReadingCelsius" Type="Edm.Decimal">
749 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500750 <Annotation Term="OData.Description" String="The delta temperature reading."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700751 <Annotation Term="OData.LongDescription" String="This property shall contain the delta of the values of the temperature readings across this sensor and the sensor at DeltaPhysicalContext."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700752 <Annotation Term="Measures.Unit" String="Cel"/>
753 </Property>
754 <Property Name="DeltaPhysicalContext" Type="PhysicalContext.PhysicalContext" Nullable="false">
755 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700756 <Annotation Term="OData.Description" String="The area or device to which the DeltaReadingCelsius temperature measurement applies, relative to PhysicalContext."/>
757 <Annotation Term="OData.LongDescription" String="This property shall contain a description of the affected device or region within the chassis to which the DeltaReadingCelsius temperature measurement applies, relative to PhysicalContext."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700758 </Property>
759 <Property Name="MaxAllowableOperatingValue" Type="Edm.Int64">
760 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
761 <Annotation Term="OData.Description" String="Maximum allowable operating temperature for this equipment."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700762 <Annotation Term="OData.LongDescription" String="This property shall indicate the maximum allowable operating temperature for the equipment monitored by this temperature sensor, as specified by a standards body, manufacturer, or a combination."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700763 <Annotation Term="Measures.Unit" String="Cel"/>
764 </Property>
765 <Property Name="MinAllowableOperatingValue" Type="Edm.Int64">
766 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
767 <Annotation Term="OData.Description" String="Minimum allowable operating temperature for this equipment."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700768 <Annotation Term="OData.LongDescription" String="This property shall indicate the minimum allowable operating temperature for the equipment monitored by this temperature sensor, as specified by a standards body, manufacturer, or a combination."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700769 <Annotation Term="Measures.Unit" String="Cel"/>
770 </Property>
771 <Property Name="AdjustedMaxAllowableOperatingValue" Type="Edm.Int64">
772 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
773 <Annotation Term="OData.Description" String="Adjusted maximum allowable operating temperature for this equipment based on the current environmental conditions present."/>
Gunnar Mills844b4152020-06-22 12:44:09 -0500774 <Annotation Term="OData.LongDescription" String="This property shall indicate the adjusted maximum allowable operating temperature for the equipment monitored by this temperature sensor, as specified by a standards body, manufacturer, or a combination, and adjusted based on environmental conditions present. For example, liquid inlet temperature can be adjusted based on the available liquid pressure."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700775 <Annotation Term="Measures.Unit" String="Cel"/>
776 </Property>
777 <Property Name="AdjustedMinAllowableOperatingValue" Type="Edm.Int64">
778 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
779 <Annotation Term="OData.Description" String="Adjusted minimum allowable operating temperature for this equipment based on the current environmental conditions present."/>
Gunnar Mills844b4152020-06-22 12:44:09 -0500780 <Annotation Term="OData.LongDescription" String="This property shall indicate the adjusted minimum allowable operating temperature for the equipment monitored by this temperature sensor, as specified by a standards body, manufacturer, or a combination, and adjusted based on environmental conditions present. For example, liquid inlet temperature can be adjusted based on the available liquid pressure."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700781 <Annotation Term="Measures.Unit" String="Cel"/>
782 </Property>
783 </EntityType>
784
Gunnar Millsa778c022020-05-12 12:20:36 -0500785 <EntityType Name="Fan" BaseType="Thermal.v1_3_2.Fan">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700786 <Property Name="HotPluggable" Type="Edm.Boolean">
787 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700788 <Annotation Term="OData.Description" String="An indication of whether this device can be inserted or removed while the equipment is in operation."/>
789 <Annotation Term="OData.LongDescription" String="This property shall indicate whether the device can be inserted or removed while the underlying equipment otherwise remains in its current operational state. Hot-pluggable devices can become operable without altering the operational state of the underlying equipment. Devices that cannot be inserted or removed from equipment in operation, or devices that cannot become operable without affecting the operational state of that equipment, shall be not hot-pluggable."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700790 </Property>
Ed Tanous530520e2019-01-02 13:41:37 -0800791 <Property Name="Location" Type="Resource.Location" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700792 <Annotation Term="OData.Description" String="The location of the fan."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800793 <Annotation Term="OData.LongDescription" String="This property shall contain location information of the associated fan."/>
794 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700795 <NavigationProperty Name="Assembly" Type="Assembly.Assembly" ContainsTarget="true" Nullable="false">
796 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700797 <Annotation Term="OData.Description" String="The link to the assembly associated with this fan."/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500798 <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource of type Assembly."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700799 <Annotation Term="OData.AutoExpandReferences"/>
800 </NavigationProperty>
801 </EntityType>
802 </Schema>
803
Ed Tanous530520e2019-01-02 13:41:37 -0800804 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_4_1">
805 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
806 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/>
807 <EntityType Name="Thermal" BaseType="Thermal.v1_4_0.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500808 <EntityType Name="Temperature" BaseType="Thermal.v1_4_0.Temperature"/>
809 <EntityType Name="Fan" BaseType="Thermal.v1_4_0.Fan"/>
Ed Tanous530520e2019-01-02 13:41:37 -0800810 </Schema>
811
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600812 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_4_2">
813 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500814 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600815 <EntityType Name="Thermal" BaseType="Thermal.v1_4_1.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500816 <EntityType Name="Temperature" BaseType="Thermal.v1_4_1.Temperature"/>
817 <EntityType Name="Fan" BaseType="Thermal.v1_4_1.Fan"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600818 </Schema>
819
Ed Tanouscb103132019-10-08 11:34:22 -0700820 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_4_3">
821 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
822 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/>
823 <EntityType Name="Thermal" BaseType="Thermal.v1_4_2.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500824 <EntityType Name="Temperature" BaseType="Thermal.v1_4_2.Temperature"/>
825 <EntityType Name="Fan" BaseType="Thermal.v1_4_2.Fan"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700826 </Schema>
827
828 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_4_4">
829 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
830 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
831 <EntityType Name="Thermal" BaseType="Thermal.v1_4_3.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500832 <EntityType Name="Temperature" BaseType="Thermal.v1_4_3.Temperature"/>
833 <EntityType Name="Fan" BaseType="Thermal.v1_4_3.Fan"/>
834 </Schema>
835
836 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_4_5">
837 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
838 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
839 <EntityType Name="Thermal" BaseType="Thermal.v1_4_4.Thermal"/>
840 <EntityType Name="Temperature" BaseType="Thermal.v1_4_4.Temperature"/>
841 <EntityType Name="Fan" BaseType="Thermal.v1_4_4.Fan"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700842 </Schema>
843
Gunnar Mills844b4152020-06-22 12:44:09 -0500844 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_4_6">
845 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
846 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
847 <EntityType Name="Thermal" BaseType="Thermal.v1_4_5.Thermal"/>
848 <EntityType Name="Temperature" BaseType="Thermal.v1_4_5.Temperature"/>
849 <EntityType Name="Fan" BaseType="Thermal.v1_4_5.Fan"/>
850 </Schema>
851
Gunnar Mills10f270b2021-05-19 15:34:06 -0500852 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_4_7">
853 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
854 <Annotation Term="OData.Description" String="This version was created to correct various description to use proper normative terminology. It was also created to correct various typographical errors."/>
855 <EntityType Name="Thermal" BaseType="Thermal.v1_4_6.Thermal"/>
856 <EntityType Name="Temperature" BaseType="Thermal.v1_4_6.Temperature"/>
857 <EntityType Name="Fan" BaseType="Thermal.v1_4_6.Fan"/>
858 </Schema>
859
Ed Tanous530520e2019-01-02 13:41:37 -0800860 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_5_0">
861 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600862 <Annotation Term="Redfish.Release" String="2018.2"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500863
Ed Tanous530520e2019-01-02 13:41:37 -0800864 <EntityType Name="Thermal" BaseType="Thermal.v1_4_1.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500865
866 <EntityType Name="Temperature" BaseType="Thermal.v1_4_1.Temperature"/>
867
868 <EntityType Name="Fan" BaseType="Thermal.v1_4_1.Fan">
Ed Tanous530520e2019-01-02 13:41:37 -0800869 <Property Name="SensorNumber" Type="Edm.Int64">
870 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700871 <Annotation Term="OData.Description" String="The numerical identifier for this fan speed sensor."/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500872 <Annotation Term="OData.LongDescription" String="This property shall contain a numerical identifier for this fan speed sensor that is unique within this resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800873 </Property>
874 </EntityType>
875 </Schema>
876
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600877 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_5_1">
878 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500879 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600880 <EntityType Name="Thermal" BaseType="Thermal.v1_5_0.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500881 <EntityType Name="Temperature" BaseType="Thermal.v1_5_0.Temperature"/>
882 <EntityType Name="Fan" BaseType="Thermal.v1_5_0.Fan"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600883 </Schema>
884
Ed Tanouscb103132019-10-08 11:34:22 -0700885 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_5_2">
886 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
887 <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/>
888 <EntityType Name="Thermal" BaseType="Thermal.v1_5_1.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500889 <EntityType Name="Temperature" BaseType="Thermal.v1_5_1.Temperature"/>
890 <EntityType Name="Fan" BaseType="Thermal.v1_5_1.Fan"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700891 </Schema>
892
893 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_5_3">
894 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
895 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
896 <EntityType Name="Thermal" BaseType="Thermal.v1_5_2.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500897 <EntityType Name="Temperature" BaseType="Thermal.v1_5_2.Temperature"/>
898 <EntityType Name="Fan" BaseType="Thermal.v1_5_2.Fan"/>
899 </Schema>
900
901 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_5_4">
902 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
903 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
904 <EntityType Name="Thermal" BaseType="Thermal.v1_5_3.Thermal"/>
905 <EntityType Name="Temperature" BaseType="Thermal.v1_5_3.Temperature"/>
906 <EntityType Name="Fan" BaseType="Thermal.v1_5_3.Fan"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700907 </Schema>
908
Gunnar Mills844b4152020-06-22 12:44:09 -0500909 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_5_5">
910 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
911 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
912 <EntityType Name="Thermal" BaseType="Thermal.v1_5_4.Thermal"/>
913 <EntityType Name="Temperature" BaseType="Thermal.v1_5_4.Temperature"/>
914 <EntityType Name="Fan" BaseType="Thermal.v1_5_4.Fan"/>
915 </Schema>
916
Gunnar Mills10f270b2021-05-19 15:34:06 -0500917 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_5_6">
918 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
919 <Annotation Term="OData.Description" String="This version was created to correct various description to use proper normative terminology. It was also created to correct various typographical errors."/>
920
921 <EntityType Name="Thermal" BaseType="Thermal.v1_5_5.Thermal"/>
922 <EntityType Name="Temperature" BaseType="Thermal.v1_5_5.Temperature"/>
923 <EntityType Name="Fan" BaseType="Thermal.v1_5_5.Fan"/>
924 </Schema>
925
Gunnar Mills09b9d452020-02-11 13:27:39 -0600926 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_6_0">
927 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
928 <Annotation Term="Redfish.Release" String="2019.4"/>
929
930 <EntityType Name="Thermal" BaseType="Thermal.v1_5_3.Thermal"/>
931
Gunnar Millsa778c022020-05-12 12:20:36 -0500932 <EntityType Name="Temperature" BaseType="Thermal.v1_5_3.Temperature">
Gunnar Mills09b9d452020-02-11 13:27:39 -0600933 <Property Name="UpperThresholdUser" Type="Edm.Int64">
934 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
935 <Annotation Term="OData.Description" String="The value at which the reading is above the user-defined range."/>
936 <Annotation Term="OData.LongDescription" String="This property shall contain the value at which the ReadingCelsius property is above the user-defined range. The value of the property shall use the same units as the ReadingCelsius property. The value shall be equal to the value of UpperThresholdNonCritical, UpperThresholdCritical, or UpperThresholdFatal, unless set by a user."/>
937 <Annotation Term="Measures.Unit" String="Cel"/>
938 </Property>
939 <Property Name="LowerThresholdUser" Type="Edm.Int64">
940 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
941 <Annotation Term="OData.Description" String="The value at which the reading is below the user-defined range."/>
942 <Annotation Term="OData.LongDescription" String="This property shall contain the value at which the ReadingCelsius property is below the user-defined range. The value of the property shall use the same units as the ReadingCelsius property. The value shall be equal to the value of LowerThresholdNonCritical, LowerThresholdCritical, or LowerThresholdFatal, unless set by a user."/>
943 <Annotation Term="Measures.Unit" String="Cel"/>
944 </Property>
945 </EntityType>
Gunnar Millsa778c022020-05-12 12:20:36 -0500946
947 <EntityType Name="Fan" BaseType="Thermal.v1_5_3.Fan"/>
948 </Schema>
949
950 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_6_1">
951 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
952 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
953 <EntityType Name="Thermal" BaseType="Thermal.v1_6_0.Thermal"/>
954 <EntityType Name="Temperature" BaseType="Thermal.v1_6_0.Temperature"/>
955 <EntityType Name="Fan" BaseType="Thermal.v1_6_0.Fan"/>
Gunnar Mills09b9d452020-02-11 13:27:39 -0600956 </Schema>
957
Gunnar Mills844b4152020-06-22 12:44:09 -0500958 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_6_2">
959 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
960 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
961 <EntityType Name="Thermal" BaseType="Thermal.v1_6_1.Thermal"/>
962 <EntityType Name="Temperature" BaseType="Thermal.v1_6_1.Temperature"/>
963 <EntityType Name="Fan" BaseType="Thermal.v1_6_1.Fan"/>
964 </Schema>
965
Gunnar Mills10f270b2021-05-19 15:34:06 -0500966 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_6_3">
967 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
968 <Annotation Term="OData.Description" String="This version was created to correct various description to use proper normative terminology. It was also created to correct various typographical errors."/>
969 <EntityType Name="Thermal" BaseType="Thermal.v1_6_2.Thermal"/>
970 <EntityType Name="Temperature" BaseType="Thermal.v1_6_2.Temperature"/>
971 <EntityType Name="Fan" BaseType="Thermal.v1_6_2.Fan"/>
972 </Schema>
973
Gunnar Mills262d7d42021-01-20 16:28:41 -0600974 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_7_0">
975 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
976 <Annotation Term="Redfish.Release" String="2020.4"/>
977 <Annotation Term="OData.Description" String="This version was created to deprecate the schema."/>
978
979 <EntityType Name="Thermal" BaseType="Thermal.v1_6_2.Thermal"/>
980
981 <EntityType Name="Temperature" BaseType="Thermal.v1_6_2.Temperature"/>
982
983 <EntityType Name="Fan" BaseType="Thermal.v1_6_2.Fan"/>
984 </Schema>
985
Gunnar Mills10f270b2021-05-19 15:34:06 -0500986 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_7_1">
987 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
988 <Annotation Term="OData.Description" String="This version was created to correct various description to use proper normative terminology. It was also created to correct various typographical errors."/>
989 <EntityType Name="Thermal" BaseType="Thermal.v1_7_0.Thermal"/>
990 <EntityType Name="Temperature" BaseType="Thermal.v1_7_0.Temperature"/>
991 <EntityType Name="Fan" BaseType="Thermal.v1_7_0.Fan"/>
992 </Schema>
993
Jason M. Billsea4aa752018-06-05 13:29:11 -0700994 </edmx:DataServices>
995</edmx:Edmx>