blob: 6a51f43b327a72034314eedb67299e84a4435ea5 [file] [log] [blame]
Jason M. Billsea4aa752018-06-05 13:29:11 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################ -->
Gunnar Mills844b4152020-06-22 12:44:09 -05004<!--# Redfish Schema: Thermal v1.6.2 -->
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 -->
Gunnar Millsa778c022020-05-12 12:20:36 -05008<!--# Copyright 2014-2020 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>
Jason M. Billsea4aa752018-06-05 13:29:11 -070068 </EntityType>
69
70 </Schema>
71
72 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_0_0">
73 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060074 <Annotation Term="Redfish.Release" String="1.0"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070075
76 <EntityType Name="Thermal" BaseType="Thermal.Thermal">
77 <NavigationProperty Name="Temperatures" Type="Collection(Thermal.v1_0_0.Temperature)" ContainsTarget="true">
78 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -070079 <Annotation Term="OData.Description" String="The set of temperature sensors for this chassis."/>
80 <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 -070081 <Annotation Term="OData.AutoExpand"/>
82 </NavigationProperty>
83 <NavigationProperty Name="Fans" Type="Collection(Thermal.v1_0_0.Fan)" ContainsTarget="true">
84 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -070085 <Annotation Term="OData.Description" String="The set of fans for this chassis."/>
86 <Annotation Term="OData.LongDescription" String="This property shall contain the set of fans for this chassis."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070087 <Annotation Term="OData.AutoExpand"/>
88 </NavigationProperty>
89 <NavigationProperty Name="Redundancy" Type="Collection(Redundancy.Redundancy)" ContainsTarget="true">
Ed Tanouscb103132019-10-08 11:34:22 -070090 <Annotation Term="OData.Description" String="The redundancy information for the set of fans in this chassis."/>
91 <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 -070092 <Annotation Term="OData.AutoExpand"/>
93 </NavigationProperty>
Ed Tanous530520e2019-01-02 13:41:37 -080094 <Property Name="Status" Type="Resource.Status" Nullable="false">
Gunnar Millsa778c022020-05-12 12:20:36 -050095 <Annotation Term="OData.Description" String="The status and health of the resource and its subordinate or dependent resources."/>
96 <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -080097 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -070098 </EntityType>
99
100 <EntityType Name="Temperature" BaseType="Resource.v1_0_0.ReferenceableMember">
101 <Property Name="Name" Type="Edm.String">
102 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700103 <Annotation Term="OData.Description" String="The temperature sensor name."/>
104 <Annotation Term="OData.LongDescription" String="This property shall contain the name of the temperature sensor."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700105 </Property>
106 <Property Name="SensorNumber" Type="Edm.Int64">
107 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700108 <Annotation Term="OData.Description" String="The numerical identifier of the temperature sensor."/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500109 <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 -0700110 </Property>
Ed Tanous530520e2019-01-02 13:41:37 -0800111 <Property Name="Status" Type="Resource.Status" Nullable="false">
Gunnar Millsa778c022020-05-12 12:20:36 -0500112 <Annotation Term="OData.Description" String="The status and health of the resource and its subordinate or dependent resources."/>
113 <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800114 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700115 <Property Name="ReadingCelsius" Type="Edm.Decimal">
116 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700117 <Annotation Term="OData.Description" String="The temperature in degrees Celsius."/>
118 <Annotation Term="OData.LongDescription" String="This property shall contain the temperature in Celsius degrees."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700119 <Annotation Term="Measures.Unit" String="Cel"/>
120 </Property>
121 <Property Name="UpperThresholdNonCritical" Type="Edm.Decimal">
122 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700123 <Annotation Term="OData.Description" String="The value at which the reading is above normal range."/>
124 <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 -0700125 <Annotation Term="Measures.Unit" String="Cel"/>
126 </Property>
127 <Property Name="UpperThresholdCritical" Type="Edm.Decimal">
128 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700129 <Annotation Term="OData.Description" String="The value at which the reading is above normal range but not yet fatal."/>
130 <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 -0700131 <Annotation Term="Measures.Unit" String="Cel"/>
132 </Property>
133 <Property Name="UpperThresholdFatal" Type="Edm.Decimal">
134 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700135 <Annotation Term="OData.Description" String="The value at which the reading is above normal range and fatal."/>
136 <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 -0700137 <Annotation Term="Measures.Unit" String="Cel"/>
138 </Property>
139 <Property Name="LowerThresholdNonCritical" Type="Edm.Decimal">
140 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700141 <Annotation Term="OData.Description" String="The value at which the reading is below normal range."/>
142 <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 -0700143 <Annotation Term="Measures.Unit" String="Cel"/>
144 </Property>
145 <Property Name="LowerThresholdCritical" Type="Edm.Decimal">
146 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700147 <Annotation Term="OData.Description" String="The value at which the reading is below normal range but not yet fatal."/>
148 <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 -0700149 <Annotation Term="Measures.Unit" String="Cel"/>
150 </Property>
151 <Property Name="LowerThresholdFatal" Type="Edm.Decimal">
152 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700153 <Annotation Term="OData.Description" String="The value at which the reading is below normal range and fatal."/>
154 <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 -0700155 <Annotation Term="Measures.Unit" String="Cel"/>
156 </Property>
157 <Property Name="MinReadingRangeTemp" Type="Edm.Decimal">
158 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700159 <Annotation Term="OData.Description" String="Minimum value for this sensor."/>
160 <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 -0700161 <Annotation Term="Measures.Unit" String="Cel"/>
162 </Property>
163 <Property Name="MaxReadingRangeTemp" Type="Edm.Decimal">
164 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700165 <Annotation Term="OData.Description" String="Maximum value for this sensor."/>
166 <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 -0700167 <Annotation Term="Measures.Unit" String="Cel"/>
168 </Property>
169 <Property Name="PhysicalContext" Type="PhysicalContext.PhysicalContext" Nullable="false">
170 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700171 <Annotation Term="OData.Description" String="The area or device to which this temperature measurement applies."/>
172 <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 -0700173 </Property>
174 <NavigationProperty Name="RelatedItem" Type="Collection(Resource.Item)">
175 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500176 <Annotation Term="OData.Description" String="An array of links to resources or objects that represent areas or devices to which this temperature applies."/>
177 <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 -0700178 <Annotation Term="OData.AutoExpandReferences"/>
179 </NavigationProperty>
180 </EntityType>
181
182 <EntityType Name="Fan" BaseType="Resource.v1_0_0.ReferenceableMember">
183 <Property Name="FanName" Type="Edm.String">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700184 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700185 <Annotation Term="OData.Description" String="The name of the fan."/>
186 <Annotation Term="OData.LongDescription" String="This property shall contain the name of the fan."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600187 <Annotation Term="Redfish.Revisions">
188 <Collection>
189 <Record>
190 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
191 <PropertyValue Property="Version" String="v1_1_0"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700192 <PropertyValue Property="Description" String="This property has been deprecated in favor of the Name property."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600193 </Record>
194 </Collection>
195 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700196 </Property>
197 <Property Name="PhysicalContext" Type="PhysicalContext.PhysicalContext" Nullable="false">
198 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700199 <Annotation Term="OData.Description" String="The area or device associated with this fan."/>
200 <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 -0700201 </Property>
Ed Tanous530520e2019-01-02 13:41:37 -0800202 <Property Name="Status" Type="Resource.Status" Nullable="false">
Gunnar Millsa778c022020-05-12 12:20:36 -0500203 <Annotation Term="OData.Description" String="The status and health of the resource and its subordinate or dependent resources."/>
204 <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800205 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700206 <Property Name="Reading" Type="Edm.Int64">
207 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700208 <Annotation Term="OData.Description" String="The fan speed."/>
209 <Annotation Term="OData.LongDescription" String="This property shall contain the fan sensor reading."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700210 </Property>
211 <Property Name="UpperThresholdNonCritical" Type="Edm.Int64">
212 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700213 <Annotation Term="OData.Description" String="The value at which the reading is above normal range."/>
214 <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 -0700215 </Property>
216 <Property Name="UpperThresholdCritical" Type="Edm.Int64">
217 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700218 <Annotation Term="OData.Description" String="The value at which the reading is above normal range but not yet fatal."/>
219 <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 -0700220 </Property>
221 <Property Name="UpperThresholdFatal" Type="Edm.Int64">
222 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700223 <Annotation Term="OData.Description" String="The value at which the reading is above normal range and fatal."/>
224 <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 -0700225 </Property>
226 <Property Name="LowerThresholdNonCritical" Type="Edm.Int64">
227 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700228 <Annotation Term="OData.Description" String="The value at which the reading is below normal range."/>
229 <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 -0700230 </Property>
231 <Property Name="LowerThresholdCritical" Type="Edm.Int64">
232 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700233 <Annotation Term="OData.Description" String="The value at which the reading is below normal range but not yet fatal."/>
234 <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 -0700235 </Property>
236 <Property Name="LowerThresholdFatal" Type="Edm.Int64">
237 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700238 <Annotation Term="OData.Description" String="The value at which the reading is below normal range and fatal."/>
239 <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 -0700240 </Property>
241 <Property Name="MinReadingRange" Type="Edm.Int64">
242 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700243 <Annotation Term="OData.Description" String="Minimum value for this sensor."/>
244 <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 -0700245 </Property>
246 <Property Name="MaxReadingRange" Type="Edm.Int64">
247 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700248 <Annotation Term="OData.Description" String="Maximum value for this sensor."/>
249 <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 -0700250 </Property>
251 <NavigationProperty Name="RelatedItem" Type="Collection(Resource.Item)">
252 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500253 <Annotation Term="OData.Description" String="An array of links to resources or objects that this fan services."/>
254 <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 -0700255 <Annotation Term="OData.AutoExpandReferences"/>
256 </NavigationProperty>
257 <NavigationProperty Name="Redundancy" Type="Collection(Redundancy.Redundancy)">
Ed Tanouscb103132019-10-08 11:34:22 -0700258 <Annotation Term="OData.Description" String="The set of redundancy groups for this fan."/>
259 <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 -0700260 <Annotation Term="OData.AutoExpandReferences"/>
261 </NavigationProperty>
262 </EntityType>
263
264 </Schema>
265
266 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_0_1">
267 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500268
Jason M. Billsea4aa752018-06-05 13:29:11 -0700269 <EntityType Name="Thermal" BaseType="Thermal.v1_0_0.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500270
271 <EntityType Name="Temperature" BaseType="Thermal.v1_0_0.Temperature"/>
272
Jason M. Billsea4aa752018-06-05 13:29:11 -0700273 <EntityType Name="Fan" BaseType="Thermal.v1_0_0.Fan">
274 <Property Name="ReadingUnits" Type="Thermal.v1_0_1.ReadingUnits">
275 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700276 <Annotation Term="OData.Description" String="The units in which the fan reading and thresholds are measured."/>
277 <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 -0700278 </Property>
279 </EntityType>
280
281 <EnumType Name="ReadingUnits">
282 <Member Name="RPM">
Ed Tanouscb103132019-10-08 11:34:22 -0700283 <Annotation Term="OData.Description" String="The fan reading and thresholds are measured in rotations per minute."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700284 </Member>
285 <Member Name="Percent">
Ed Tanouscb103132019-10-08 11:34:22 -0700286 <Annotation Term="OData.Description" String="The fan reading and thresholds are measured as a percentage."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700287 </Member>
288 </EnumType>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700289 </Schema>
290
291 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_0_2">
292 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700293 <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 -0700294 <EntityType Name="Thermal" BaseType="Thermal.v1_0_1.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500295 <EntityType Name="Temperature" BaseType="Thermal.v1_0_1.Temperature"/>
296 <EntityType Name="Fan" BaseType="Thermal.v1_0_1.Fan"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700297 </Schema>
298
299 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_0_3">
300 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700301 <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 -0700302 <EntityType Name="Thermal" BaseType="Thermal.v1_0_2.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500303 <EntityType Name="Temperature" BaseType="Thermal.v1_0_2.Temperature"/>
304 <EntityType Name="Fan" BaseType="Thermal.v1_0_2.Fan"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700305 </Schema>
306
307 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_0_4">
308 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700309 <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 -0700310 <EntityType Name="Thermal" BaseType="Thermal.v1_0_3.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500311 <EntityType Name="Temperature" BaseType="Thermal.v1_0_3.Temperature"/>
312 <EntityType Name="Fan" BaseType="Thermal.v1_0_3.Fan"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700313 </Schema>
314
315 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_0_5">
316 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500317 <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 -0700318 <EntityType Name="Thermal" BaseType="Thermal.v1_0_4.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500319 <EntityType Name="Temperature" BaseType="Thermal.v1_0_4.Temperature"/>
320 <EntityType Name="Fan" BaseType="Thermal.v1_0_4.Fan"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700321 </Schema>
322
323 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_0_6">
324 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700325 <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 -0700326 <EntityType Name="Thermal" BaseType="Thermal.v1_0_5.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500327 <EntityType Name="Temperature" BaseType="Thermal.v1_0_5.Temperature"/>
328 <EntityType Name="Fan" BaseType="Thermal.v1_0_5.Fan"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700329 </Schema>
330
Ed Tanous530520e2019-01-02 13:41:37 -0800331 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_0_7">
332 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
333 <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."/>
334 <EntityType Name="Thermal" BaseType="Thermal.v1_0_6.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500335 <EntityType Name="Temperature" BaseType="Thermal.v1_0_6.Temperature"/>
336 <EntityType Name="Fan" BaseType="Thermal.v1_0_6.Fan"/>
Ed Tanous530520e2019-01-02 13:41:37 -0800337 </Schema>
338
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600339 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_0_8">
340 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500341 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600342 <EntityType Name="Thermal" BaseType="Thermal.v1_0_7.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500343 <EntityType Name="Temperature" BaseType="Thermal.v1_0_7.Temperature"/>
344 <EntityType Name="Fan" BaseType="Thermal.v1_0_7.Fan"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600345 </Schema>
346
Ed Tanouscb103132019-10-08 11:34:22 -0700347 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_0_9">
348 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
349 <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."/>
350 <EntityType Name="Thermal" BaseType="Thermal.v1_0_8.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500351 <EntityType Name="Temperature" BaseType="Thermal.v1_0_8.Temperature"/>
352 <EntityType Name="Fan" BaseType="Thermal.v1_0_8.Fan"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700353 </Schema>
354
355 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_0_10">
356 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
357 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
358 <EntityType Name="Thermal" BaseType="Thermal.v1_0_9.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500359 <EntityType Name="Temperature" BaseType="Thermal.v1_0_9.Temperature"/>
360 <EntityType Name="Fan" BaseType="Thermal.v1_0_9.Fan"/>
361 </Schema>
362
363 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_0_11">
364 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
365 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
366 <EntityType Name="Thermal" BaseType="Thermal.v1_0_10.Thermal"/>
367 <EntityType Name="Temperature" BaseType="Thermal.v1_0_10.Temperature"/>
368 <EntityType Name="Fan" BaseType="Thermal.v1_0_10.Fan"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700369 </Schema>
370
Jason M. Billsea4aa752018-06-05 13:29:11 -0700371 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_1_0">
372 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600373 <Annotation Term="Redfish.Release" String="2016.1"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500374
Jason M. Billsea4aa752018-06-05 13:29:11 -0700375 <EntityType Name="Thermal" BaseType="Thermal.v1_0_2.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500376
377 <EntityType Name="Temperature" BaseType="Thermal.v1_0_2.Temperature"/>
378
379 <EntityType Name="Fan" BaseType="Thermal.v1_0_2.Fan">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700380 <Property Name="Name" Type="Edm.String">
381 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
382 <Annotation Term="OData.Description" String="Name of the fan."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700383 <Annotation Term="OData.LongDescription" String="This property shall contain the name of the fan."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700384 </Property>
385 </EntityType>
386 </Schema>
387
388 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_1_1">
389 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700390 <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 -0700391 <EntityType Name="Thermal" BaseType="Thermal.v1_1_0.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500392 <EntityType Name="Temperature" BaseType="Thermal.v1_1_0.Temperature"/>
393 <EntityType Name="Fan" BaseType="Thermal.v1_1_0.Fan"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700394 </Schema>
395
396 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_1_2">
397 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700398 <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 -0700399 <EntityType Name="Thermal" BaseType="Thermal.v1_1_1.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500400 <EntityType Name="Temperature" BaseType="Thermal.v1_1_1.Temperature"/>
401 <EntityType Name="Fan" BaseType="Thermal.v1_1_1.Fan"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700402 </Schema>
403
404 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_1_3">
405 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500406 <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 -0700407 <EntityType Name="Thermal" BaseType="Thermal.v1_1_2.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500408 <EntityType Name="Temperature" BaseType="Thermal.v1_1_2.Temperature"/>
409 <EntityType Name="Fan" BaseType="Thermal.v1_1_2.Fan"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700410 </Schema>
411
412 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_1_4">
413 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700414 <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 -0700415 <EntityType Name="Thermal" BaseType="Thermal.v1_1_3.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500416 <EntityType Name="Temperature" BaseType="Thermal.v1_1_3.Temperature"/>
417 <EntityType Name="Fan" BaseType="Thermal.v1_1_3.Fan"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700418 </Schema>
419
Ed Tanous530520e2019-01-02 13:41:37 -0800420 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_1_5">
421 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
422 <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."/>
423 <EntityType Name="Thermal" BaseType="Thermal.v1_1_4.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500424 <EntityType Name="Temperature" BaseType="Thermal.v1_1_4.Temperature"/>
425 <EntityType Name="Fan" BaseType="Thermal.v1_1_4.Fan"/>
Ed Tanous530520e2019-01-02 13:41:37 -0800426 </Schema>
427
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600428 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_1_6">
429 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500430 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600431 <EntityType Name="Thermal" BaseType="Thermal.v1_1_5.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500432 <EntityType Name="Temperature" BaseType="Thermal.v1_1_5.Temperature"/>
433 <EntityType Name="Fan" BaseType="Thermal.v1_1_5.Fan"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600434 </Schema>
435
Ed Tanouscb103132019-10-08 11:34:22 -0700436 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_1_7">
437 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
438 <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."/>
439 <EntityType Name="Thermal" BaseType="Thermal.v1_1_6.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500440 <EntityType Name="Temperature" BaseType="Thermal.v1_1_6.Temperature"/>
441 <EntityType Name="Fan" BaseType="Thermal.v1_1_6.Fan"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700442 </Schema>
443
444 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_1_8">
445 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
446 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
447 <EntityType Name="Thermal" BaseType="Thermal.v1_1_7.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500448 <EntityType Name="Temperature" BaseType="Thermal.v1_1_7.Temperature"/>
449 <EntityType Name="Fan" BaseType="Thermal.v1_1_7.Fan"/>
450 </Schema>
451
452 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_1_9">
453 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
454 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
455 <EntityType Name="Thermal" BaseType="Thermal.v1_1_8.Thermal"/>
456 <EntityType Name="Temperature" BaseType="Thermal.v1_1_8.Temperature"/>
457 <EntityType Name="Fan" BaseType="Thermal.v1_1_8.Fan"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700458 </Schema>
459
Jason M. Billsea4aa752018-06-05 13:29:11 -0700460 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_2_0">
461 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600462 <Annotation Term="Redfish.Release" String="2016.3"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500463
Jason M. Billsea4aa752018-06-05 13:29:11 -0700464 <EntityType Name="Thermal" BaseType="Thermal.v1_1_1.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500465
466 <EntityType Name="Temperature" BaseType="Thermal.v1_1_1.Temperature"/>
467
468 <EntityType Name="Fan" BaseType="Thermal.v1_1_1.Fan">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700469 <Property Name="Manufacturer" Type="Edm.String">
470 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700471 <Annotation Term="OData.Description" String="The manufacturer of this fan."/>
472 <Annotation Term="OData.LongDescription" String="This property shall contain the name of the organization responsible for producing the fan. This organization might be the entity from whom the fan is purchased, but this is not necessarily true."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700473 </Property>
474 <Property Name="Model" Type="Edm.String">
475 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700476 <Annotation Term="OData.Description" String="The model number for this fan."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700477 <Annotation Term="OData.LongDescription" String="This property shall contain the model information as defined by the manufacturer for the associated fan."/>
478 </Property>
479 <Property Name="SerialNumber" Type="Edm.String">
480 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700481 <Annotation Term="OData.Description" String="The serial number for this fan."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700482 <Annotation Term="OData.LongDescription" String="This property shall contain the serial number as defined by the manufacturer for the associated fan."/>
483 </Property>
484 <Property Name="PartNumber" Type="Edm.String">
485 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700486 <Annotation Term="OData.Description" String="The part number for this fan."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700487 <Annotation Term="OData.LongDescription" String="This property shall contain the part number as defined by the manufacturer for the associated fan."/>
488 </Property>
489 <Property Name="SparePartNumber" Type="Edm.String">
490 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700491 <Annotation Term="OData.Description" String="The spare part number for this fan."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700492 <Annotation Term="OData.LongDescription" String="This property shall contain the spare or replacement part number as defined by the manufacturer for the associated fan."/>
493 </Property>
494 <Property Name="IndicatorLED" Type="Resource.IndicatorLED">
495 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700496 <Annotation Term="OData.Description" String="The state of the indicator LED, which identifies this fan."/>
497 <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 -0700498 </Property>
499 </EntityType>
500 </Schema>
501
502 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_2_1">
503 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700504 <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 -0700505 <EntityType Name="Thermal" BaseType="Thermal.v1_2_0.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500506 <EntityType Name="Temperature" BaseType="Thermal.v1_2_0.Temperature"/>
507 <EntityType Name="Fan" BaseType="Thermal.v1_2_0.Fan"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700508 </Schema>
509
510 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_2_2">
511 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500512 <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 -0700513 <EntityType Name="Thermal" BaseType="Thermal.v1_2_1.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500514 <EntityType Name="Temperature" BaseType="Thermal.v1_2_1.Temperature"/>
515 <EntityType Name="Fan" BaseType="Thermal.v1_2_1.Fan"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700516 </Schema>
517
518 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_2_3">
519 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700520 <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 -0700521 <EntityType Name="Thermal" BaseType="Thermal.v1_2_2.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500522 <EntityType Name="Temperature" BaseType="Thermal.v1_2_2.Temperature"/>
523 <EntityType Name="Fan" BaseType="Thermal.v1_2_2.Fan"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700524 </Schema>
525
Ed Tanous530520e2019-01-02 13:41:37 -0800526 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_2_4">
527 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
528 <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."/>
529 <EntityType Name="Thermal" BaseType="Thermal.v1_2_3.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500530 <EntityType Name="Temperature" BaseType="Thermal.v1_2_3.Temperature"/>
531 <EntityType Name="Fan" BaseType="Thermal.v1_2_3.Fan"/>
Ed Tanous530520e2019-01-02 13:41:37 -0800532 </Schema>
533
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600534 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_2_5">
535 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500536 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600537 <EntityType Name="Thermal" BaseType="Thermal.v1_2_4.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500538 <EntityType Name="Temperature" BaseType="Thermal.v1_2_4.Temperature"/>
539 <EntityType Name="Fan" BaseType="Thermal.v1_2_4.Fan"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600540 </Schema>
541
Ed Tanouscb103132019-10-08 11:34:22 -0700542 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_2_6">
543 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
544 <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."/>
545 <EntityType Name="Thermal" BaseType="Thermal.v1_2_5.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500546 <EntityType Name="Temperature" BaseType="Thermal.v1_2_5.Temperature"/>
547 <EntityType Name="Fan" BaseType="Thermal.v1_2_5.Fan"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700548 </Schema>
549
550 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_2_7">
551 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
552 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
553 <EntityType Name="Thermal" BaseType="Thermal.v1_2_6.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500554 <EntityType Name="Temperature" BaseType="Thermal.v1_2_6.Temperature"/>
555 <EntityType Name="Fan" BaseType="Thermal.v1_2_6.Fan"/>
556 </Schema>
557
558 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_2_8">
559 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
560 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
561 <EntityType Name="Thermal" BaseType="Thermal.v1_2_7.Thermal"/>
562 <EntityType Name="Temperature" BaseType="Thermal.v1_2_7.Temperature"/>
563 <EntityType Name="Fan" BaseType="Thermal.v1_2_7.Fan"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700564 </Schema>
565
Jason M. Billsea4aa752018-06-05 13:29:11 -0700566 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_3_0">
567 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600568 <Annotation Term="Redfish.Release" String="2017.1"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500569
Jason M. Billsea4aa752018-06-05 13:29:11 -0700570 <EntityType Name="Thermal" BaseType="Thermal.v1_2_1.Thermal">
571 <Property Name="Actions" Type="Thermal.v1_3_0.ThermalActions" Nullable="false">
Gunnar Millsa778c022020-05-12 12:20:36 -0500572 <Annotation Term="OData.Description" String="The available actions for this resource."/>
573 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700574 </Property>
575 </EntityType>
576
Gunnar Millsa778c022020-05-12 12:20:36 -0500577 <EntityType Name="Temperature" BaseType="Thermal.v1_2_1.Temperature">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700578 <Property Name="Actions" Type="Thermal.v1_3_0.TemperatureActions" Nullable="false">
Gunnar Millsa778c022020-05-12 12:20:36 -0500579 <Annotation Term="OData.Description" String="The available actions for this resource."/>
580 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700581 </Property>
582 </EntityType>
583
Gunnar Millsa778c022020-05-12 12:20:36 -0500584 <EntityType Name="Fan" BaseType="Thermal.v1_2_1.Fan">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700585 <Property Name="Actions" Type="Thermal.v1_3_0.FanActions" Nullable="false">
Gunnar Millsa778c022020-05-12 12:20:36 -0500586 <Annotation Term="OData.Description" String="The available actions for this resource."/>
587 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700588 </Property>
589 </EntityType>
590
591 <ComplexType Name="ThermalActions">
592 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500593 <Annotation Term="OData.Description" String="The available actions for this resource."/>
594 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800595 <Property Name="Oem" Type="Thermal.v1_3_0.ThermalOemActions" Nullable="false">
Gunnar Millsa778c022020-05-12 12:20:36 -0500596 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
597 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800598 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700599 </ComplexType>
600
601 <ComplexType Name="ThermalOemActions">
602 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500603 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
604 <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 -0700605 </ComplexType>
606
607 <ComplexType Name="TemperatureActions">
608 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500609 <Annotation Term="OData.Description" String="The available actions for this resource."/>
610 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800611 <Property Name="Oem" Type="Thermal.v1_3_0.TemperatureOemActions" Nullable="false">
Gunnar Millsa778c022020-05-12 12:20:36 -0500612 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
613 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800614 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700615 </ComplexType>
616
617 <ComplexType Name="TemperatureOemActions">
618 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500619 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
620 <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 -0700621 </ComplexType>
622
623 <ComplexType Name="FanActions">
624 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500625 <Annotation Term="OData.Description" String="The available actions for this resource."/>
626 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800627 <Property Name="Oem" Type="Thermal.v1_3_0.FanOemActions" Nullable="false">
Gunnar Millsa778c022020-05-12 12:20:36 -0500628 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
629 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800630 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700631 </ComplexType>
632
633 <ComplexType Name="FanOemActions">
634 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500635 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
636 <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 -0700637 </ComplexType>
638 </Schema>
639
640 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_3_1">
641 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500642 <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 -0700643 <EntityType Name="Thermal" BaseType="Thermal.v1_3_0.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500644 <EntityType Name="Temperature" BaseType="Thermal.v1_3_0.Temperature"/>
645 <EntityType Name="Fan" BaseType="Thermal.v1_3_0.Fan"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700646 </Schema>
647
648
649 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_3_2">
650 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700651 <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 -0700652 <EntityType Name="Thermal" BaseType="Thermal.v1_3_1.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500653 <EntityType Name="Temperature" BaseType="Thermal.v1_3_1.Temperature"/>
654 <EntityType Name="Fan" BaseType="Thermal.v1_3_1.Fan"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700655 </Schema>
656
Ed Tanous530520e2019-01-02 13:41:37 -0800657 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_3_3">
658 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
659 <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."/>
660 <EntityType Name="Thermal" BaseType="Thermal.v1_3_2.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500661 <EntityType Name="Temperature" BaseType="Thermal.v1_3_2.Temperature"/>
662 <EntityType Name="Fan" BaseType="Thermal.v1_3_2.Fan"/>
Ed Tanous530520e2019-01-02 13:41:37 -0800663 </Schema>
664
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600665 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_3_4">
666 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500667 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600668 <EntityType Name="Thermal" BaseType="Thermal.v1_3_3.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500669 <EntityType Name="Temperature" BaseType="Thermal.v1_3_3.Temperature"/>
670 <EntityType Name="Fan" BaseType="Thermal.v1_3_3.Fan"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600671 </Schema>
672
Ed Tanouscb103132019-10-08 11:34:22 -0700673 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_3_5">
674 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
675 <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."/>
676 <EntityType Name="Thermal" BaseType="Thermal.v1_3_4.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500677 <EntityType Name="Temperature" BaseType="Thermal.v1_3_4.Temperature"/>
678 <EntityType Name="Fan" BaseType="Thermal.v1_3_4.Fan"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700679 </Schema>
680
681 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_3_6">
682 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
683 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
684 <EntityType Name="Thermal" BaseType="Thermal.v1_3_5.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500685 <EntityType Name="Temperature" BaseType="Thermal.v1_3_5.Temperature"/>
686 <EntityType Name="Fan" BaseType="Thermal.v1_3_5.Fan"/>
687 </Schema>
688
689 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_3_7">
690 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
691 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
692 <EntityType Name="Thermal" BaseType="Thermal.v1_3_6.Thermal"/>
693 <EntityType Name="Temperature" BaseType="Thermal.v1_3_6.Temperature"/>
694 <EntityType Name="Fan" BaseType="Thermal.v1_3_6.Fan"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700695 </Schema>
696
Jason M. Billsea4aa752018-06-05 13:29:11 -0700697 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_4_0">
698 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600699 <Annotation Term="Redfish.Release" String="2017.3"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500700
Jason M. Billsea4aa752018-06-05 13:29:11 -0700701 <EntityType Name="Thermal" BaseType="Thermal.v1_3_2.Thermal"/>
702
Gunnar Millsa778c022020-05-12 12:20:36 -0500703 <EntityType Name="Temperature" BaseType="Thermal.v1_3_2.Temperature">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700704 <Property Name="DeltaReadingCelsius" Type="Edm.Decimal">
705 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500706 <Annotation Term="OData.Description" String="The delta temperature reading."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700707 <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 -0700708 <Annotation Term="Measures.Unit" String="Cel"/>
709 </Property>
710 <Property Name="DeltaPhysicalContext" Type="PhysicalContext.PhysicalContext" Nullable="false">
711 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700712 <Annotation Term="OData.Description" String="The area or device to which the DeltaReadingCelsius temperature measurement applies, relative to PhysicalContext."/>
713 <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 -0700714 </Property>
715 <Property Name="MaxAllowableOperatingValue" Type="Edm.Int64">
716 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
717 <Annotation Term="OData.Description" String="Maximum allowable operating temperature for this equipment."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700718 <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 -0700719 <Annotation Term="Measures.Unit" String="Cel"/>
720 </Property>
721 <Property Name="MinAllowableOperatingValue" Type="Edm.Int64">
722 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
723 <Annotation Term="OData.Description" String="Minimum allowable operating temperature for this equipment."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700724 <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 -0700725 <Annotation Term="Measures.Unit" String="Cel"/>
726 </Property>
727 <Property Name="AdjustedMaxAllowableOperatingValue" Type="Edm.Int64">
728 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
729 <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 -0500730 <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 -0700731 <Annotation Term="Measures.Unit" String="Cel"/>
732 </Property>
733 <Property Name="AdjustedMinAllowableOperatingValue" Type="Edm.Int64">
734 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
735 <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 -0500736 <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 -0700737 <Annotation Term="Measures.Unit" String="Cel"/>
738 </Property>
739 </EntityType>
740
Gunnar Millsa778c022020-05-12 12:20:36 -0500741 <EntityType Name="Fan" BaseType="Thermal.v1_3_2.Fan">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700742 <Property Name="HotPluggable" Type="Edm.Boolean">
743 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700744 <Annotation Term="OData.Description" String="An indication of whether this device can be inserted or removed while the equipment is in operation."/>
745 <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 -0700746 </Property>
Ed Tanous530520e2019-01-02 13:41:37 -0800747 <Property Name="Location" Type="Resource.Location" Nullable="false">
Ed Tanouscb103132019-10-08 11:34:22 -0700748 <Annotation Term="OData.Description" String="The location of the fan."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800749 <Annotation Term="OData.LongDescription" String="This property shall contain location information of the associated fan."/>
750 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700751 <NavigationProperty Name="Assembly" Type="Assembly.Assembly" ContainsTarget="true" Nullable="false">
752 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700753 <Annotation Term="OData.Description" String="The link to the assembly associated with this fan."/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500754 <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 -0700755 <Annotation Term="OData.AutoExpandReferences"/>
756 </NavigationProperty>
757 </EntityType>
758 </Schema>
759
Ed Tanous530520e2019-01-02 13:41:37 -0800760 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_4_1">
761 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
762 <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."/>
763 <EntityType Name="Thermal" BaseType="Thermal.v1_4_0.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500764 <EntityType Name="Temperature" BaseType="Thermal.v1_4_0.Temperature"/>
765 <EntityType Name="Fan" BaseType="Thermal.v1_4_0.Fan"/>
Ed Tanous530520e2019-01-02 13:41:37 -0800766 </Schema>
767
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600768 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_4_2">
769 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500770 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600771 <EntityType Name="Thermal" BaseType="Thermal.v1_4_1.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500772 <EntityType Name="Temperature" BaseType="Thermal.v1_4_1.Temperature"/>
773 <EntityType Name="Fan" BaseType="Thermal.v1_4_1.Fan"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600774 </Schema>
775
Ed Tanouscb103132019-10-08 11:34:22 -0700776 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_4_3">
777 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
778 <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."/>
779 <EntityType Name="Thermal" BaseType="Thermal.v1_4_2.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500780 <EntityType Name="Temperature" BaseType="Thermal.v1_4_2.Temperature"/>
781 <EntityType Name="Fan" BaseType="Thermal.v1_4_2.Fan"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700782 </Schema>
783
784 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_4_4">
785 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
786 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
787 <EntityType Name="Thermal" BaseType="Thermal.v1_4_3.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500788 <EntityType Name="Temperature" BaseType="Thermal.v1_4_3.Temperature"/>
789 <EntityType Name="Fan" BaseType="Thermal.v1_4_3.Fan"/>
790 </Schema>
791
792 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_4_5">
793 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
794 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
795 <EntityType Name="Thermal" BaseType="Thermal.v1_4_4.Thermal"/>
796 <EntityType Name="Temperature" BaseType="Thermal.v1_4_4.Temperature"/>
797 <EntityType Name="Fan" BaseType="Thermal.v1_4_4.Fan"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700798 </Schema>
799
Gunnar Mills844b4152020-06-22 12:44:09 -0500800 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_4_6">
801 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
802 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
803 <EntityType Name="Thermal" BaseType="Thermal.v1_4_5.Thermal"/>
804 <EntityType Name="Temperature" BaseType="Thermal.v1_4_5.Temperature"/>
805 <EntityType Name="Fan" BaseType="Thermal.v1_4_5.Fan"/>
806 </Schema>
807
Ed Tanous530520e2019-01-02 13:41:37 -0800808 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_5_0">
809 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600810 <Annotation Term="Redfish.Release" String="2018.2"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500811
Ed Tanous530520e2019-01-02 13:41:37 -0800812 <EntityType Name="Thermal" BaseType="Thermal.v1_4_1.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500813
814 <EntityType Name="Temperature" BaseType="Thermal.v1_4_1.Temperature"/>
815
816 <EntityType Name="Fan" BaseType="Thermal.v1_4_1.Fan">
Ed Tanous530520e2019-01-02 13:41:37 -0800817 <Property Name="SensorNumber" Type="Edm.Int64">
818 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700819 <Annotation Term="OData.Description" String="The numerical identifier for this fan speed sensor."/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500820 <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 -0800821 </Property>
822 </EntityType>
823 </Schema>
824
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600825 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_5_1">
826 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500827 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600828 <EntityType Name="Thermal" BaseType="Thermal.v1_5_0.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500829 <EntityType Name="Temperature" BaseType="Thermal.v1_5_0.Temperature"/>
830 <EntityType Name="Fan" BaseType="Thermal.v1_5_0.Fan"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600831 </Schema>
832
Ed Tanouscb103132019-10-08 11:34:22 -0700833 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_5_2">
834 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
835 <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."/>
836 <EntityType Name="Thermal" BaseType="Thermal.v1_5_1.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500837 <EntityType Name="Temperature" BaseType="Thermal.v1_5_1.Temperature"/>
838 <EntityType Name="Fan" BaseType="Thermal.v1_5_1.Fan"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700839 </Schema>
840
841 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_5_3">
842 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
843 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
844 <EntityType Name="Thermal" BaseType="Thermal.v1_5_2.Thermal"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500845 <EntityType Name="Temperature" BaseType="Thermal.v1_5_2.Temperature"/>
846 <EntityType Name="Fan" BaseType="Thermal.v1_5_2.Fan"/>
847 </Schema>
848
849 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_5_4">
850 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
851 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
852 <EntityType Name="Thermal" BaseType="Thermal.v1_5_3.Thermal"/>
853 <EntityType Name="Temperature" BaseType="Thermal.v1_5_3.Temperature"/>
854 <EntityType Name="Fan" BaseType="Thermal.v1_5_3.Fan"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700855 </Schema>
856
Gunnar Mills844b4152020-06-22 12:44:09 -0500857 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_5_5">
858 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
859 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
860 <EntityType Name="Thermal" BaseType="Thermal.v1_5_4.Thermal"/>
861 <EntityType Name="Temperature" BaseType="Thermal.v1_5_4.Temperature"/>
862 <EntityType Name="Fan" BaseType="Thermal.v1_5_4.Fan"/>
863 </Schema>
864
Gunnar Mills09b9d452020-02-11 13:27:39 -0600865 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_6_0">
866 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
867 <Annotation Term="Redfish.Release" String="2019.4"/>
868
869 <EntityType Name="Thermal" BaseType="Thermal.v1_5_3.Thermal"/>
870
Gunnar Millsa778c022020-05-12 12:20:36 -0500871 <EntityType Name="Temperature" BaseType="Thermal.v1_5_3.Temperature">
Gunnar Mills09b9d452020-02-11 13:27:39 -0600872 <Property Name="UpperThresholdUser" Type="Edm.Int64">
873 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
874 <Annotation Term="OData.Description" String="The value at which the reading is above the user-defined range."/>
875 <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."/>
876 <Annotation Term="Measures.Unit" String="Cel"/>
877 </Property>
878 <Property Name="LowerThresholdUser" Type="Edm.Int64">
879 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
880 <Annotation Term="OData.Description" String="The value at which the reading is below the user-defined range."/>
881 <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."/>
882 <Annotation Term="Measures.Unit" String="Cel"/>
883 </Property>
884 </EntityType>
Gunnar Millsa778c022020-05-12 12:20:36 -0500885
886 <EntityType Name="Fan" BaseType="Thermal.v1_5_3.Fan"/>
887 </Schema>
888
889 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_6_1">
890 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
891 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
892 <EntityType Name="Thermal" BaseType="Thermal.v1_6_0.Thermal"/>
893 <EntityType Name="Temperature" BaseType="Thermal.v1_6_0.Temperature"/>
894 <EntityType Name="Fan" BaseType="Thermal.v1_6_0.Fan"/>
Gunnar Mills09b9d452020-02-11 13:27:39 -0600895 </Schema>
896
Gunnar Mills844b4152020-06-22 12:44:09 -0500897 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Thermal.v1_6_2">
898 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
899 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
900 <EntityType Name="Thermal" BaseType="Thermal.v1_6_1.Thermal"/>
901 <EntityType Name="Temperature" BaseType="Thermal.v1_6_1.Temperature"/>
902 <EntityType Name="Fan" BaseType="Thermal.v1_6_1.Fan"/>
903 </Schema>
904
Jason M. Billsea4aa752018-06-05 13:29:11 -0700905 </edmx:DataServices>
906</edmx:Edmx>