blob: c5e585c85d13592ff133e9c9eb3f4f84646f0db8 [file] [log] [blame]
Xiaochao Ma1ec18992022-06-29 09:52:24 +08001<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################ -->
Ed Tanousf263e092023-05-22 09:56:29 -07004<!--# Redfish Schema: ThermalSubsystem v1.2.0 -->
Xiaochao Ma1ec18992022-06-29 09:52:24 +08005<!--# -->
6<!--# For a detailed change log, see the README file contained in the DSP8010 bundle, -->
7<!--# available at http://www.dmtf.org/standards/redfish -->
Ed Tanousf263e092023-05-22 09:56:29 -07008<!--# Copyright 2014-2023 DMTF. -->
Xiaochao Ma1ec18992022-06-29 09:52:24 +08009<!--# For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright -->
10<!--################################################################################ -->
11<!---->
12<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0">
13
14 <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Core.V1.xml">
15 <edmx:Include Namespace="Org.OData.Core.V1" Alias="OData"/>
16 </edmx:Reference>
17 <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Capabilities.V1.xml">
18 <edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="Capabilities"/>
19 </edmx:Reference>
20 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
21 <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
22 <edmx:Include Namespace="Validation.v1_0_0" Alias="Validation"/>
23 </edmx:Reference>
24 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
25 <edmx:Include Namespace="Resource"/>
26 <edmx:Include Namespace="Resource.v1_0_0"/>
27 </edmx:Reference>
28 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Redundancy_v1.xml">
29 <edmx:Include Namespace="Redundancy"/>
30 </edmx:Reference>
31 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/FanCollection_v1.xml">
32 <edmx:Include Namespace="FanCollection"/>
33 </edmx:Reference>
34 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/ThermalMetrics_v1.xml">
35 <edmx:Include Namespace="ThermalMetrics"/>
36 </edmx:Reference>
Ed Tanousa8d8f9d2023-01-26 13:57:00 -080037 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/HeaterCollection_v1.xml">
38 <edmx:Include Namespace="HeaterCollection"/>
39 </edmx:Reference>
Ed Tanousf263e092023-05-22 09:56:29 -070040 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/CoolantConnectorCollection_v1.xml">
41 <edmx:Include Namespace="CoolantConnectorCollection"/>
42 </edmx:Reference>
Xiaochao Ma1ec18992022-06-29 09:52:24 +080043
44 <edmx:DataServices>
45
46 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ThermalSubsystem">
47 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
48
49 <EntityType Name="ThermalSubsystem" BaseType="Resource.v1_0_0.Resource" Abstract="true">
50 <Annotation Term="OData.Description" String="This ThermalSubsystem schema contains the definition for the thermal subsystem of a chassis."/>
51 <Annotation Term="OData.LongDescription" String="This resource shall represent a thermal subsystem for a Redfish implementation."/>
52 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
53 <Annotation Term="Capabilities.InsertRestrictions">
54 <Record>
55 <PropertyValue Property="Insertable" Bool="false"/>
56 </Record>
57 </Annotation>
58 <Annotation Term="Capabilities.UpdateRestrictions">
59 <Record>
60 <PropertyValue Property="Updatable" Bool="false"/>
61 </Record>
62 </Annotation>
63 <Annotation Term="Capabilities.DeleteRestrictions">
64 <Record>
65 <PropertyValue Property="Deletable" Bool="false"/>
66 </Record>
67 </Annotation>
68 <Annotation Term="Redfish.Uris">
69 <Collection>
70 <String>/redfish/v1/Chassis/{ChassisId}/ThermalSubsystem</String>
71 </Collection>
72 </Annotation>
73 </EntityType>
74 </Schema>
75
76 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ThermalSubsystem.v1_0_0">
77 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
78 <Annotation Term="Redfish.Release" String="2020.4"/>
79
80 <EntityType Name="ThermalSubsystem" BaseType="ThermalSubsystem.ThermalSubsystem">
81 <Property Name="Status" Type="Resource.Status" Nullable="false">
82 <Annotation Term="OData.Description" String="The status and health of the resource and its subordinate or dependent resources."/>
83 <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
84 </Property>
85 <NavigationProperty Name="Fans" Type="FanCollection.FanCollection" Nullable="false">
86 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
87 <Annotation Term="OData.Description" String="The link to the collection of fans within this subsystem."/>
88 <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource collection of type FanCollection."/>
89 <Annotation Term="OData.AutoExpandReferences"/>
90 </NavigationProperty>
91 <Property Name="FanRedundancy" Type="Collection(Redundancy.RedundantGroup)" Nullable="false">
92 <Annotation Term="OData.Description" String="The redundancy information for the groups of fans in this subsystem."/>
93 <Annotation Term="OData.LongDescription" String="This property shall contain redundancy information for the groups of fans in this subsystem."/>
94 </Property>
95 <NavigationProperty Name="ThermalMetrics" Type="ThermalMetrics.ThermalMetrics" Nullable="false">
96 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
97 <Annotation Term="OData.Description" String="The link to the summary of thermal metrics for this subsystem."/>
98 <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource collection of type ThermalMetrics."/>
99 <Annotation Term="OData.AutoExpandReferences"/>
100 </NavigationProperty>
101 <Property Name="Actions" Type="ThermalSubsystem.v1_0_0.Actions" Nullable="false">
102 <Annotation Term="OData.Description" String="The available actions for this resource."/>
103 <Annotation Term="OData.LongDescription" String="The Actions property shall contain the available actions for this resource."/>
104 </Property>
105 </EntityType>
106
107 <ComplexType Name="Actions">
108 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
109 <Annotation Term="OData.Description" String="The available actions for this resource."/>
110 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
111 <Property Name="Oem" Type="ThermalSubsystem.v1_0_0.OemActions" Nullable="false">
112 <Annotation Term="OData.Description" String="This property contains the available OEM specific actions for this resource."/>
113 <Annotation Term="OData.LongDescription" String="This property shall contain any additional OEM actions for this resource."/>
114 </Property>
115 </ComplexType>
116
117 <ComplexType Name="OemActions">
118 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
119 <Annotation Term="OData.Description" String="The available OEM specific actions for this resource."/>
120 <Annotation Term="OData.LongDescription" String="This type shall contain any additional OEM actions for this resource."/>
121 </ComplexType>
122 </Schema>
123
Ed Tanousa8d8f9d2023-01-26 13:57:00 -0800124 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ThermalSubsystem.v1_1_0">
125 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
126 <Annotation Term="Redfish.Release" String="2022.3"/>
127
128 <EntityType Name="ThermalSubsystem" BaseType="ThermalSubsystem.v1_0_0.ThermalSubsystem">
129 <NavigationProperty Name="Heaters" Type="HeaterCollection.HeaterCollection" Nullable="false">
130 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
131 <Annotation Term="OData.Description" String="The link to the collection of heaters within this subsystem."/>
132 <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource collection of type HeaterCollection."/>
133 <Annotation Term="OData.AutoExpandReferences"/>
134 </NavigationProperty>
135 </EntityType>
136 </Schema>
137
Ed Tanousf263e092023-05-22 09:56:29 -0700138 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ThermalSubsystem.v1_2_0">
139 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
140 <Annotation Term="Redfish.Release" String="2023.1"/>
141
142 <EntityType Name="ThermalSubsystem" BaseType="ThermalSubsystem.v1_1_0.ThermalSubsystem">
143 <NavigationProperty Name="CoolantConnectors" Type="CoolantConnectorCollection.CoolantConnectorCollection" Nullable="false">
144 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
145 <Annotation Term="OData.Description" String="A link to the coolant connectors for this equipment."/>
146 <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource collection of type CoolantConnectorCollection that contains the coolant connectors for this equipment."/>
147 <Annotation Term="OData.AutoExpandReferences"/>
148 </NavigationProperty>
149 </EntityType>
150 </Schema>
151
Xiaochao Ma1ec18992022-06-29 09:52:24 +0800152 </edmx:DataServices>
153</edmx:Edmx>