1<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################       -->
4<!--# Redfish Schema:  Heater v1.0.2                                                       -->
5<!--#                                                                                      -->
6<!--# For a detailed change log, see the README file contained in the DSP8010 bundle,      -->
7<!--# available at http://www.dmtf.org/standards/redfish                                   -->
8<!--# Copyright 2014-2024 DMTF.                                                            -->
9<!--# For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright -->
10<!--################################################################################       -->
11<!---->
12<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0">
13
14  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Core.V1.xml">
15    <edmx:Include Namespace="Org.OData.Core.V1" Alias="OData"/>
16  </edmx:Reference>
17  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Capabilities.V1.xml">
18    <edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="Capabilities"/>
19  </edmx:Reference>
20  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Measures.V1.xml">
21    <edmx:Include Namespace="Org.OData.Measures.V1" Alias="Measures"/>
22  </edmx:Reference>
23  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
24    <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
25  </edmx:Reference>
26  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
27    <edmx:Include Namespace="Resource"/>
28    <edmx:Include Namespace="Resource.v1_0_0"/>
29  </edmx:Reference>
30  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/PhysicalContext_v1.xml">
31    <edmx:Include Namespace="PhysicalContext"/>
32  </edmx:Reference>
33  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Sensor_v1.xml">
34    <edmx:Include Namespace="Sensor"/>
35  </edmx:Reference>
36  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Assembly_v1.xml">
37    <edmx:Include Namespace="Assembly"/>
38  </edmx:Reference>
39  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Memory_v1.xml">
40    <edmx:Include Namespace="Memory"/>
41  </edmx:Reference>
42  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Manager_v1.xml">
43    <edmx:Include Namespace="Manager"/>
44  </edmx:Reference>
45  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Processor_v1.xml">
46    <edmx:Include Namespace="Processor"/>
47  </edmx:Reference>
48  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/NetworkAdapter_v1.xml">
49    <edmx:Include Namespace="NetworkAdapter"/>
50  </edmx:Reference>
51  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/StorageController_v1.xml">
52    <edmx:Include Namespace="StorageController"/>
53  </edmx:Reference>
54  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/HeaterMetrics_v1.xml">
55    <edmx:Include Namespace="HeaterMetrics"/>
56  </edmx:Reference>
57
58  <edmx:DataServices>
59
60    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Heater">
61      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
62      <Annotation Term="Redfish.Language" String="en"/>
63
64      <EntityType Name="Heater" BaseType="Resource.v1_0_0.Resource" Abstract="true">
65        <Annotation Term="OData.Description" String="The `Heater` schema describes a heating unit for devices contained within a chassis."/>
66        <Annotation Term="OData.LongDescription" String="This resource shall represent the management properties for monitoring and management of heaters for a Redfish implementation."/>
67        <Annotation Term="Capabilities.InsertRestrictions">
68          <Record>
69            <PropertyValue Property="Insertable" Bool="false"/>
70          </Record>
71        </Annotation>
72        <Annotation Term="Capabilities.UpdateRestrictions">
73          <Record>
74            <PropertyValue Property="Updatable" Bool="true"/>
75            <Annotation Term="OData.Description" String="Any writable properties can be updated."/>
76          </Record>
77        </Annotation>
78        <Annotation Term="Capabilities.DeleteRestrictions">
79          <Record>
80            <PropertyValue Property="Deletable" Bool="false"/>
81          </Record>
82        </Annotation>
83        <Annotation Term="Redfish.Uris">
84          <Collection>
85            <String>/redfish/v1/Chassis/{ChassisId}/ThermalSubsystem/Heaters/{HeaterId}</String>
86          </Collection>
87        </Annotation>
88      </EntityType>
89    </Schema>
90
91    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Heater.v1_0_0">
92      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
93      <Annotation Term="Redfish.Release" String="2022.3"/>
94
95      <EntityType Name="Heater" BaseType="Heater.Heater">
96        <Property Name="PhysicalContext" Type="PhysicalContext.PhysicalContext" Nullable="false">
97          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
98          <Annotation Term="OData.Description" String="The area or device associated with this heater."/>
99          <Annotation Term="OData.LongDescription" String="This property shall contain a description of the affected device or region within the chassis with which this heater is associated."/>
100        </Property>
101        <Property Name="Status" Type="Resource.Status" Nullable="false">
102          <Annotation Term="OData.Description" String="The status and health of the resource and its subordinate or dependent resources."/>
103          <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
104        </Property>
105        <Property Name="Manufacturer" Type="Edm.String">
106          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
107          <Annotation Term="OData.Description" String="The manufacturer of this heater."/>
108          <Annotation Term="OData.LongDescription" String="This property shall contain the name of the organization responsible for producing the heater.  This organization may be the entity from whom the heater is purchased, but this is not necessarily true."/>
109        </Property>
110        <Property Name="Model" Type="Edm.String">
111          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
112          <Annotation Term="OData.Description" String="The model number for this heater."/>
113          <Annotation Term="OData.LongDescription" String="This property shall contain the model information as defined by the manufacturer for this heater."/>
114        </Property>
115        <Property Name="SerialNumber" Type="Edm.String">
116          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
117          <Annotation Term="OData.Description" String="The serial number for this heater."/>
118          <Annotation Term="OData.LongDescription" String="This property shall contain the serial number as defined by the manufacturer for this heater."/>
119        </Property>
120        <Property Name="PartNumber" Type="Edm.String">
121          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
122          <Annotation Term="OData.Description" String="The part number for this heater."/>
123          <Annotation Term="OData.LongDescription" String="This property shall contain the part number as defined by the manufacturer for this heater."/>
124        </Property>
125        <Property Name="SparePartNumber" Type="Edm.String">
126          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
127          <Annotation Term="OData.Description" String="The spare part number for this heater."/>
128          <Annotation Term="OData.LongDescription" String="This property shall contain the spare or replacement part number as defined by the manufacturer for this heater."/>
129        </Property>
130        <Property Name="Location" Type="Resource.Location" Nullable="false">
131          <Annotation Term="OData.Description" String="The location of the heater."/>
132          <Annotation Term="OData.LongDescription" String="This property shall contain the location information of this heater."/>
133        </Property>
134        <Property Name="LocationIndicatorActive" Type="Edm.Boolean">
135          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
136          <Annotation Term="OData.Description" String="An indicator allowing an operator to physically locate this resource."/>
137          <Annotation Term="OData.LongDescription" String="This property shall contain the state of the indicator used to physically identify or locate this resource."/>
138        </Property>
139        <Property Name="HotPluggable" Type="Edm.Boolean">
140          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
141          <Annotation Term="OData.Description" String="An indication of whether this device can be inserted or removed while the equipment is in operation."/>
142          <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 not be hot-pluggable."/>
143        </Property>
144        <NavigationProperty Name="Assembly" Type="Assembly.Assembly" ContainsTarget="true" Nullable="false">
145          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
146          <Annotation Term="OData.Description" String="The link to the assembly associated with this heater."/>
147          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource of type `Assembly`."/>
148          <Annotation Term="OData.AutoExpandReferences"/>
149        </NavigationProperty>
150        <NavigationProperty Name="Metrics" Type="HeaterMetrics.HeaterMetrics" ContainsTarget="true" Nullable="false">
151          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
152          <Annotation Term="OData.Description" String="The link to the heater metrics resource associated with this heater."/>
153          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource of type `HeaterMetrics`."/>
154          <Annotation Term="OData.AutoExpandReferences"/>
155        </NavigationProperty>
156        <Property Name="Actions" Type="Heater.v1_0_0.Actions" Nullable="false">
157          <Annotation Term="OData.Description" String="The available actions for this resource."/>
158          <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
159        </Property>
160        <Property Name="Links" Type="Heater.v1_0_0.Links" Nullable="false">
161          <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
162          <Annotation Term="OData.LongDescription" String="This property shall contain links to resources that are related to but are not contained by, or subordinate to, this resource."/>
163        </Property>
164      </EntityType>
165
166      <ComplexType Name="Actions">
167        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
168        <Annotation Term="OData.Description" String="The available actions for this resource."/>
169        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
170        <Property Name="Oem" Type="Heater.v1_0_0.OemActions" Nullable="false">
171          <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
172          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
173        </Property>
174      </ComplexType>
175
176      <ComplexType Name="OemActions">
177        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
178        <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
179        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
180      </ComplexType>
181
182      <ComplexType Name="Links" BaseType="Resource.Links">
183        <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
184        <Annotation Term="OData.LongDescription" String="This Redfish Specification-described type shall contain links to resources that are related to but are not contained by, or subordinate to, this resource."/>
185        <NavigationProperty Name="Memory" Type="Collection(Memory.Memory)">
186          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
187          <Annotation Term="OData.Description" String="An array of links to the memory devices heated by this heater."/>
188          <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to the memory devices which this heater heats."/>
189          <Annotation Term="OData.AutoExpandReferences"/>
190        </NavigationProperty>
191        <NavigationProperty Name="Managers" Type="Collection(Manager.Manager)">
192          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
193          <Annotation Term="OData.Description" String="An array of links to the managers heated by this heater."/>
194          <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to the managers which this heater heats."/>
195          <Annotation Term="OData.AutoExpandReferences"/>
196        </NavigationProperty>
197        <NavigationProperty Name="Processors" Type="Collection(Processor.Processor)">
198          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
199          <Annotation Term="OData.Description" String="An array of links to the processors heated by this heater."/>
200          <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to the processors which this heater heats."/>
201          <Annotation Term="OData.AutoExpandReferences"/>
202        </NavigationProperty>
203        <NavigationProperty Name="NetworkAdapters" Type="Collection(NetworkAdapter.NetworkAdapter)">
204          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
205          <Annotation Term="OData.Description" String="An array of links to the network adapters heated by this heater."/>
206          <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to the network adapters which this heater heats."/>
207          <Annotation Term="OData.AutoExpandReferences"/>
208        </NavigationProperty>
209        <NavigationProperty Name="StorageControllers" Type="Collection(StorageController.StorageController)">
210          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
211          <Annotation Term="OData.Description" String="An array of links to the storage controllers heated by this heater."/>
212          <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to the storage controllers which this heater heats."/>
213          <Annotation Term="OData.AutoExpandReferences"/>
214        </NavigationProperty>
215      </ComplexType>
216    </Schema>
217
218    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Heater.v1_0_1">
219      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
220      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
221      <EntityType Name="Heater" BaseType="Heater.v1_0_0.Heater"/>
222    </Schema>
223
224    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Heater.v1_0_2">
225      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
226      <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors."/>
227      <EntityType Name="Heater" BaseType="Heater.v1_0_1.Heater"/>
228    </Schema>
229
230  </edmx:DataServices>
231</edmx:Edmx>
232