1<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################       -->
4<!--# Redfish Schema:  Switch v1.9.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-2023 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/Resource_v1.xml">
24    <edmx:Include Namespace="Resource"/>
25    <edmx:Include Namespace="Resource.v1_0_0"/>
26  </edmx:Reference>
27  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
28    <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
29  </edmx:Reference>
30  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Chassis_v1.xml">
31    <edmx:Include Namespace="Chassis"/>
32  </edmx:Reference>
33  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Manager_v1.xml">
34    <edmx:Include Namespace="Manager"/>
35  </edmx:Reference>
36  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Redundancy_v1.xml">
37    <edmx:Include Namespace="Redundancy"/>
38  </edmx:Reference>
39  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/PortCollection_v1.xml">
40    <edmx:Include Namespace="PortCollection"/>
41  </edmx:Reference>
42  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/LogServiceCollection_v1.xml">
43    <edmx:Include Namespace="LogServiceCollection"/>
44  </edmx:Reference>
45  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Protocol_v1.xml">
46    <edmx:Include Namespace="Protocol"/>
47  </edmx:Reference>
48  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Endpoint_v1.xml">
49    <edmx:Include Namespace="Endpoint"/>
50  </edmx:Reference>
51  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/PCIeDevice_v1.xml">
52    <edmx:Include Namespace="PCIeDevice"/>
53  </edmx:Reference>
54  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/CertificateCollection_v1.xml">
55    <edmx:Include Namespace="CertificateCollection"/>
56  </edmx:Reference>
57  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/SoftwareInventory_v1.xml">
58    <edmx:Include Namespace="SoftwareInventory"/>
59  </edmx:Reference>
60  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/EnvironmentMetrics_v1.xml">
61    <edmx:Include Namespace="EnvironmentMetrics"/>
62  </edmx:Reference>
63  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/SwitchMetrics_v1.xml">
64    <edmx:Include Namespace="SwitchMetrics"/>
65  </edmx:Reference>
66
67  <edmx:DataServices>
68
69    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch">
70      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
71
72      <EntityType Name="Switch" BaseType="Resource.v1_0_0.Resource" Abstract="true">
73        <Annotation Term="OData.Description" String="The Switch schema contains properties that describe a fabric switch."/>
74        <Annotation Term="OData.LongDescription" String="This resource contains a switch for a Redfish implementation."/>
75        <Annotation Term="Capabilities.InsertRestrictions">
76          <Record>
77            <PropertyValue Property="Insertable" Bool="false"/>
78          </Record>
79        </Annotation>
80        <Annotation Term="Capabilities.UpdateRestrictions">
81          <Record>
82            <PropertyValue Property="Updatable" Bool="true"/>
83            <Annotation Term="OData.Description" String="Any writable properties, such as AssetTag, can be updated for switches."/>
84          </Record>
85        </Annotation>
86        <Annotation Term="Capabilities.DeleteRestrictions">
87          <Record>
88            <PropertyValue Property="Deletable" Bool="false"/>
89          </Record>
90        </Annotation>
91        <Annotation Term="Redfish.Uris">
92          <Collection>
93            <String>/redfish/v1/Fabrics/{FabricId}/Switches/{SwitchId}</String>
94          </Collection>
95        </Annotation>
96      </EntityType>
97
98      <Action Name="Reset" IsBound="true">
99        <Annotation Term="OData.Description" String="This action resets this switch."/>
100        <Annotation Term="OData.LongDescription" String="This action shall reset this switch."/>
101        <Parameter Name="Switch" Type="Switch.v1_0_0.Actions"/>
102        <Parameter Name="ResetType" Type="Resource.ResetType">
103          <Annotation Term="OData.Description" String="The type of reset."/>
104          <Annotation Term="OData.LongDescription" String="This parameter shall contain the type of reset.  The service can accept a request without this parameter and can complete an implementation-specific default reset."/>
105        </Parameter>
106      </Action>
107    </Schema>
108
109    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_0_0">
110      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
111      <Annotation Term="Redfish.Release" String="2016.2"/>
112
113      <EntityType Name="Switch" BaseType="Switch.Switch">
114        <Property Name="SwitchType" Type="Protocol.Protocol">
115          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
116          <Annotation Term="OData.Description" String="The protocol being sent over this switch."/>
117          <Annotation Term="OData.LongDescription" String="This property shall contain the protocol being sent over this switch.  For a switch that supports multiple protocols, the value should be `MultiProtocol` and the SupportedProtocols property should be used to describe the supported protocols."/>
118        </Property>
119        <Property Name="Status" Type="Resource.Status" Nullable="false">
120          <Annotation Term="OData.Description" String="The status and health of the resource and its subordinate or dependent resources."/>
121          <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
122        </Property>
123        <Property Name="Manufacturer" Type="Edm.String">
124          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
125          <Annotation Term="OData.Description" String="The manufacturer of this switch."/>
126          <Annotation Term="OData.LongDescription" String="This property shall contain the name of the organization responsible for producing the switch.  This organization may be the entity from which the switch is purchased, but this is not necessarily true."/>
127        </Property>
128        <Property Name="Model" Type="Edm.String">
129          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
130          <Annotation Term="OData.Description" String="The product model number of this switch."/>
131          <Annotation Term="OData.LongDescription" String="This property shall contain the manufacturer-provided model information of this switch."/>
132        </Property>
133        <Property Name="SKU" Type="Edm.String">
134          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
135          <Annotation Term="OData.Description" String="The SKU for this switch."/>
136          <Annotation Term="OData.LongDescription" String="This property shall contain the SKU number for this switch."/>
137        </Property>
138        <Property Name="SerialNumber" Type="Edm.String">
139          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
140          <Annotation Term="OData.Description" String="The serial number for this switch."/>
141          <Annotation Term="OData.LongDescription" String="This property shall contain a manufacturer-allocated number that identifies the switch."/>
142        </Property>
143        <Property Name="PartNumber" Type="Edm.String">
144          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
145          <Annotation Term="OData.Description" String="The part number for this switch."/>
146          <Annotation Term="OData.LongDescription" String="This property shall contain the manufacturer-provided part number for the switch."/>
147        </Property>
148        <Property Name="AssetTag" Type="Edm.String">
149          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
150          <Annotation Term="OData.Description" String="The user-assigned asset tag for this switch."/>
151          <Annotation Term="OData.LongDescription" String="This property shall contain the user-assigned asset tag, which is an identifying string that tracks the drive for inventory purposes."/>
152        </Property>
153        <Property Name="DomainID" Type="Edm.Int64">
154          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
155          <Annotation Term="OData.Description" String="The domain ID for this switch."/>
156          <Annotation Term="OData.LongDescription" String="This property shall contain The domain ID for this switch.  This property has a scope of uniqueness within the fabric of which the switch is a member."/>
157        </Property>
158        <Property Name="IsManaged" Type="Edm.Boolean">
159          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
160          <Annotation Term="OData.Description" String="An indication of whether the switch is in a managed or unmanaged state."/>
161          <Annotation Term="OData.LongDescription" String="This property shall indicate whether this switch is in a managed or unmanaged state."/>
162        </Property>
163        <Property Name="TotalSwitchWidth" Type="Edm.Int64">
164          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
165          <Annotation Term="OData.Description" String="The total number of lanes, phys, or other physical transport links that this switch contains."/>
166          <Annotation Term="OData.LongDescription" String="This property shall contain the number of physical transport lanes, phys, or other physical transport links that this switch contains.  For PCIe, this value shall be the lane count."/>
167        </Property>
168        <Property Name="IndicatorLED" Type="Resource.IndicatorLED">
169          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
170          <Annotation Term="OData.Description" String="The state of the indicator LED, which identifies the switch."/>
171          <Annotation Term="OData.LongDescription" String="This property shall contain the state of the indicator light associated with this switch."/>
172          <Annotation Term="Redfish.Revisions">
173            <Collection>
174              <Record>
175                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
176                <PropertyValue Property="Version" String="v1_4_0"/>
177                <PropertyValue Property="Description" String="This property has been deprecated in favor of the LocationIndicatorActive property."/>
178              </Record>
179            </Collection>
180          </Annotation>
181        </Property>
182        <Property Name="PowerState" Type="Resource.PowerState">
183          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
184          <Annotation Term="OData.Description" String="The current power state of the switch."/>
185          <Annotation Term="OData.LongDescription" String="This property shall contain the power state of the switch."/>
186        </Property>
187        <NavigationProperty Name="Ports" Type="PortCollection.PortCollection" ContainsTarget="true" Nullable="false">
188          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
189          <Annotation Term="OData.Description" String="The link to the collection ports for this switch."/>
190          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource collection of type PortCollection."/>
191          <Annotation Term="OData.AutoExpandReferences"/>
192        </NavigationProperty>
193        <NavigationProperty Name="Redundancy" Type="Collection(Redundancy.Redundancy)" ContainsTarget="true">
194          <Annotation Term="OData.Description" String="Redundancy information for the switches."/>
195          <Annotation Term="OData.LongDescription" String="This property shall contain an array that shows how this switch is grouped with other switches for form redundancy sets."/>
196          <Annotation Term="OData.AutoExpand"/>
197        </NavigationProperty>
198        <Property Name="Links" Type="Switch.v1_0_0.Links" Nullable="false">
199          <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
200          <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."/>
201        </Property>
202        <NavigationProperty Name="LogServices" Type="LogServiceCollection.LogServiceCollection" ContainsTarget="true" Nullable="false">
203          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
204          <Annotation Term="OData.Description" String="The link to the collection of log services associated with this switch."/>
205          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource collection of type LogServiceCollection."/>
206          <Annotation Term="OData.AutoExpandReferences"/>
207        </NavigationProperty>
208        <Property Name="Actions" Type="Switch.v1_0_0.Actions" Nullable="false">
209          <Annotation Term="OData.Description" String="The available actions for this resource."/>
210          <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
211        </Property>
212      </EntityType>
213
214      <ComplexType Name="Links" BaseType="Resource.Links">
215        <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
216        <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."/>
217        <NavigationProperty Name="Chassis" Type="Chassis.Chassis" Nullable="false">
218          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
219          <Annotation Term="OData.Description" String="The link to the chassis that contains this switch."/>
220          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource of type Chassis with which this switch is associated."/>
221          <Annotation Term="OData.AutoExpandReferences"/>
222        </NavigationProperty>
223        <NavigationProperty Name="ManagedBy" Type="Collection(Manager.Manager)">
224          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
225          <Annotation Term="OData.Description" String="An array of links to the managers that manage this switch."/>
226          <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to resources of type Manager with which this switch is associated."/>
227          <Annotation Term="OData.AutoExpandReferences"/>
228        </NavigationProperty>
229      </ComplexType>
230
231      <ComplexType Name="Actions">
232        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
233        <Annotation Term="OData.Description" String="The available actions for this resource."/>
234        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
235        <Property Name="Oem" Type="Switch.v1_0_0.OemActions" Nullable="false">
236          <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
237          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
238        </Property>
239      </ComplexType>
240
241      <ComplexType Name="OemActions">
242        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
243        <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
244        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
245      </ComplexType>
246    </Schema>
247
248    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_0_1">
249      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
250      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
251      <EntityType Name="Switch" BaseType="Switch.v1_0_0.Switch"/>
252    </Schema>
253
254    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_0_2">
255      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
256      <Annotation Term="OData.Description" String="This version was created to remove the Nullable facet on NavigationProperties of the Collection type."/>
257      <EntityType Name="Switch" BaseType="Switch.v1_0_1.Switch"/>
258    </Schema>
259
260    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_0_3">
261      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
262      <Annotation Term="OData.Description" String="This version was created to change IndicatorLED, PowerState, and Protocol to use the unversioned definition, and correct the short and long descriptions in the defined actions."/>
263      <EntityType Name="Switch" BaseType="Switch.v1_0_2.Switch"/>
264    </Schema>
265
266    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_0_4">
267      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
268      <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."/>
269      <EntityType Name="Switch" BaseType="Switch.v1_0_3.Switch"/>
270    </Schema>
271
272    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_0_5">
273      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
274      <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, and to add a missing term to the LogServices property to disallow it from being `null`."/>
275      <EntityType Name="Switch" BaseType="Switch.v1_0_4.Switch"/>
276    </Schema>
277
278    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_0_6">
279      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
280      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
281      <EntityType Name="Switch" BaseType="Switch.v1_0_5.Switch"/>
282    </Schema>
283
284    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_0_7">
285      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
286      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
287      <EntityType Name="Switch" BaseType="Switch.v1_0_6.Switch"/>
288    </Schema>
289
290    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_0_8">
291      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
292      <Annotation Term="OData.Description" String="This version was created to specify 64-bit integers in OpenAPI."/>
293      <EntityType Name="Switch" BaseType="Switch.v1_0_7.Switch"/>
294    </Schema>
295
296    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_0_9">
297      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
298      <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology."/>
299      <EntityType Name="Switch" BaseType="Switch.v1_0_8.Switch"/>
300    </Schema>
301
302    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_1_0">
303      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
304      <Annotation Term="Redfish.Release" String="2017.3"/>
305
306      <EntityType Name="Switch" BaseType="Switch.v1_0_3.Switch">
307        <Property Name="Location" Type="Resource.Location" Nullable="false">
308          <Annotation Term="OData.Description" String="The location of the switch."/>
309          <Annotation Term="OData.LongDescription" String="This property shall contain the location information of the associated switch."/>
310        </Property>
311      </EntityType>
312    </Schema>
313
314    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_1_1">
315      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
316      <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."/>
317      <EntityType Name="Switch" BaseType="Switch.v1_1_0.Switch"/>
318    </Schema>
319
320    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_1_2">
321      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
322      <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, and to add a missing term to the LogServices property to disallow it from being `null`."/>
323      <EntityType Name="Switch" BaseType="Switch.v1_1_1.Switch"/>
324    </Schema>
325
326    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_1_3">
327      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
328      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
329      <EntityType Name="Switch" BaseType="Switch.v1_1_2.Switch"/>
330    </Schema>
331
332    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_1_4">
333      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
334      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
335      <EntityType Name="Switch" BaseType="Switch.v1_1_3.Switch"/>
336    </Schema>
337
338    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_1_5">
339      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
340      <Annotation Term="OData.Description" String="This version was created to specify 64-bit integers in OpenAPI."/>
341      <EntityType Name="Switch" BaseType="Switch.v1_1_4.Switch"/>
342    </Schema>
343
344    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_1_6">
345      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
346      <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology."/>
347      <EntityType Name="Switch" BaseType="Switch.v1_1_5.Switch"/>
348    </Schema>
349
350    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_1_7">
351      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
352      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
353      <EntityType Name="Switch" BaseType="Switch.v1_1_6.Switch"/>
354    </Schema>
355
356    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_2_0">
357      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
358      <Annotation Term="Redfish.Release" String="2019.2"/>
359
360      <EntityType Name="Switch" BaseType="Switch.v1_1_3.Switch">
361        <Property Name="FirmwareVersion" Type="Edm.String">
362          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
363          <Annotation Term="OData.Description" String="The firmware version of this switch."/>
364          <Annotation Term="OData.LongDescription" String="This property shall contain the firmware version as defined by the manufacturer for the associated switch."/>
365        </Property>
366      </EntityType>
367    </Schema>
368
369    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_2_1">
370      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
371      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
372      <EntityType Name="Switch" BaseType="Switch.v1_2_0.Switch"/>
373    </Schema>
374
375    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_2_2">
376      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
377      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
378      <EntityType Name="Switch" BaseType="Switch.v1_2_1.Switch"/>
379    </Schema>
380
381    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_2_3">
382      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
383      <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology."/>
384      <EntityType Name="Switch" BaseType="Switch.v1_2_2.Switch"/>
385    </Schema>
386
387    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_2_4">
388      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
389      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
390      <EntityType Name="Switch" BaseType="Switch.v1_2_3.Switch"/>
391    </Schema>
392
393    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_3_0">
394      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
395      <Annotation Term="Redfish.Release" String="2019.4"/>
396
397      <EntityType Name="Switch" BaseType="Switch.v1_2_0.Switch">
398        <Property Name="SupportedProtocols" Type="Collection(Protocol.Protocol)" Nullable="false">
399          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
400          <Annotation Term="OData.Description" String="The protocols this switch supports."/>
401          <Annotation Term="OData.LongDescription" String="The property shall contain an array of protocols this switch supports.  If the value of SwitchType is `MultiProtocol`, this property shall be required."/>
402        </Property>
403        <Property Name="UUID" Type="Resource.UUID">
404          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
405          <Annotation Term="OData.Description" String="The UUID for this switch."/>
406          <Annotation Term="OData.LongDescription" String="This property shall contain a universally unique identifier number for the switch."/>
407        </Property>
408      </EntityType>
409
410      <ComplexType Name="Links" BaseType="Switch.v1_0_0.Links">
411        <NavigationProperty Name="Endpoints" Type="Collection(Endpoint.Endpoint)">
412          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
413          <Annotation Term="OData.Description" String="An array of links to the endpoints that connect to this switch."/>
414          <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to resources of type Endpoint with which this switch is associated."/>
415          <Annotation Term="OData.AutoExpandReferences"/>
416        </NavigationProperty>
417      </ComplexType>
418    </Schema>
419
420    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_3_1">
421      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
422      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
423      <EntityType Name="Switch" BaseType="Switch.v1_3_0.Switch"/>
424    </Schema>
425
426    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_3_2">
427      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
428      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
429      <EntityType Name="Switch" BaseType="Switch.v1_3_1.Switch"/>
430    </Schema>
431
432    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_3_3">
433      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
434      <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology."/>
435      <EntityType Name="Switch" BaseType="Switch.v1_3_2.Switch"/>
436    </Schema>
437
438    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_3_4">
439      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
440      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
441      <EntityType Name="Switch" BaseType="Switch.v1_3_3.Switch"/>
442    </Schema>
443
444    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_4_0">
445      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
446      <Annotation Term="Redfish.Release" String="2020.3"/>
447      <Annotation Term="OData.Description" String="This version was created to add LocationIndicatorActive, CurrentBandwidthGbps, and MaxBandwidthGbps.  It was also created to deprecate IndicatorLED properties."/>
448
449      <EntityType Name="Switch" BaseType="Switch.v1_3_1.Switch">
450        <Property Name="LocationIndicatorActive" Type="Edm.Boolean">
451          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
452          <Annotation Term="OData.Description" String="An indicator allowing an operator to physically locate this resource."/>
453          <Annotation Term="OData.LongDescription" String="This property shall contain the state of the indicator used to physically identify or locate this resource.  A write to this property shall update the value of IndicatorLED in this resource, if supported, to reflect the implementation of the locating function."/>
454        </Property>
455        <Property Name="CurrentBandwidthGbps" Type="Edm.Decimal">
456          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
457          <Annotation Term="OData.Description" String="The current internal bandwidth of this switch."/>
458          <Annotation Term="OData.LongDescription" String="This property shall contain the internal unidirectional bandwidth of this switch currently negotiated and running."/>
459          <Annotation Term="Measures.Unit" String="Gbit/s"/>
460        </Property>
461        <Property Name="MaxBandwidthGbps" Type="Edm.Decimal">
462          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
463          <Annotation Term="OData.Description" String="The maximum internal bandwidth of this switch as currently configured."/>
464          <Annotation Term="OData.LongDescription" String="This property shall contain the maximum internal unidirectional bandwidth this switch is capable of being configured.  If capable of autonegotiation, the switch shall attempt to negotiate to the specified maximum bandwidth."/>
465          <Annotation Term="Measures.Unit" String="Gbit/s"/>
466        </Property>
467      </EntityType>
468
469      <ComplexType Name="Links" BaseType="Switch.v1_3_0.Links">
470        <NavigationProperty Name="PCIeDevice" Type="PCIeDevice.PCIeDevice">
471          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
472          <Annotation Term="OData.Description" String="The link to the PCIe device providing this switch."/>
473          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource of type PCIeDevice that represents the PCIe device providing this switch."/>
474          <Annotation Term="OData.AutoExpandReferences"/>
475        </NavigationProperty>
476      </ComplexType>
477    </Schema>
478
479    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_4_1">
480      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
481      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
482      <EntityType Name="Switch" BaseType="Switch.v1_4_0.Switch"/>
483    </Schema>
484
485    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_4_2">
486      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
487      <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology."/>
488      <EntityType Name="Switch" BaseType="Switch.v1_4_1.Switch"/>
489    </Schema>
490
491    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_4_3">
492      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
493      <Annotation Term="OData.Description" String="This version was created to update the long descriptions of CurrentBandwidthGbps and MaxBandwidthGbps properties to show speeds are unidirectional.  It was also created to correct various typographical errors."/>
494      <EntityType Name="Switch" BaseType="Switch.v1_4_2.Switch"/>
495    </Schema>
496
497    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_5_0">
498      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
499      <Annotation Term="Redfish.Release" String="2020.4"/>
500      <Annotation Term="OData.Description" String="This version was created to add Certificates and Measurements to devices for attestation and identity management."/>
501
502      <EntityType Name="Switch" BaseType="Switch.v1_4_1.Switch">
503        <NavigationProperty Name="Certificates" Type="CertificateCollection.CertificateCollection" ContainsTarget="true" Nullable="false">
504          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
505          <Annotation Term="OData.Description" String="The link to a collection of certificates for device identity and attestation."/>
506          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource collection of type CertificateCollection that contains certificates for device identity and attestation."/>
507          <Annotation Term="OData.AutoExpandReferences"/>
508        </NavigationProperty>
509        <Property Name="Measurements" Type="Collection(SoftwareInventory.MeasurementBlock)" Nullable="false">
510          <Annotation Term="OData.Description" String="An array of DSP0274-defined measurement blocks."/>
511          <Annotation Term="OData.LongDescription" String="This property shall contain an array of DSP0274-defined measurement blocks."/>
512          <Annotation Term="Redfish.Revisions">
513            <Collection>
514              <Record>
515                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
516                <PropertyValue Property="Version" String="v1_8_0"/>
517                <PropertyValue Property="Description" String="This property has been deprecated in favor of the ComponentIntegrity resource."/>
518              </Record>
519            </Collection>
520          </Annotation>
521        </Property>
522      </EntityType>
523    </Schema>
524
525    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_5_1">
526      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
527      <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology."/>
528      <EntityType Name="Switch" BaseType="Switch.v1_5_0.Switch"/>
529    </Schema>
530
531    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_5_2">
532      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
533      <Annotation Term="OData.Description" String="This version was created to correct version tags within the schema file."/>
534      <EntityType Name="Switch" BaseType="Switch.v1_5_1.Switch"/>
535    </Schema>
536
537    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_5_3">
538      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
539      <Annotation Term="OData.Description" String="This version was created to update the long descriptions of CurrentBandwidthGbps and MaxBandwidthGbps properties to show speeds are unidirectional.  It was also created to correct various typographical errors."/>
540      <EntityType Name="Switch" BaseType="Switch.v1_5_2.Switch"/>
541    </Schema>
542
543    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_6_0">
544      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
545      <Annotation Term="Redfish.Release" String="2021.1"/>
546      <Annotation Term="OData.Description" String="This version was created to add the Enabled property and a link to EnvironmentMetrics."/>
547
548      <EntityType Name="Switch" BaseType="Switch.v1_5_0.Switch">
549        <Property Name="Enabled" Type="Edm.Boolean" Nullable="false">
550          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
551          <Annotation Term="OData.Description" String="An indication of whether this switch is enabled."/>
552          <Annotation Term="OData.LongDescription" String="The value of this property shall indicate if this switch is enabled."/>
553        </Property>
554        <NavigationProperty Name="EnvironmentMetrics" Type="EnvironmentMetrics.EnvironmentMetrics" Nullable="false">
555          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
556          <Annotation Term="OData.Description" String="The link to the environment metrics for this switch."/>
557          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource of type EnvironmentMetrics that specifies the environment metrics for this switch."/>
558          <Annotation Term="OData.AutoExpandReferences"/>
559        </NavigationProperty>
560      </EntityType>
561    </Schema>
562
563    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_6_1">
564      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
565      <Annotation Term="OData.Description" String="This version was created to update the long descriptions of CurrentBandwidthGbps and MaxBandwidthGbps properties to show speeds are unidirectional.  It was also created to correct various typographical errors."/>
566      <EntityType Name="Switch" BaseType="Switch.v1_6_0.Switch"/>
567    </Schema>
568
569    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_7_0">
570      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
571      <Annotation Term="Redfish.Release" String="2021.3"/>
572
573      <EntityType Name="Switch" BaseType="Switch.v1_6_0.Switch">
574        <NavigationProperty Name="Metrics" Type="SwitchMetrics.SwitchMetrics" Nullable="false">
575          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
576          <Annotation Term="OData.Description" String="The link to the metrics associated with this switch."/>
577          <Annotation Term="OData.LongDescription" String="This property shall contain a link to the metrics associated with this switch."/>
578          <Annotation Term="OData.AutoExpandReferences"/>
579          <Annotation Term="Redfish.URISegment" String="SwitchMetrics"/>
580        </NavigationProperty>
581      </EntityType>
582    </Schema>
583
584    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_7_1">
585      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
586      <Annotation Term="OData.Description" String="This version was created to add the URI segment annotation to Metrics."/>
587      <EntityType Name="Switch" BaseType="Switch.v1_7_0.Switch"/>
588    </Schema>
589
590    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_7_2">
591      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
592      <Annotation Term="OData.Description" String="This version was created to update the long descriptions of CurrentBandwidthGbps and MaxBandwidthGbps properties to show speeds are unidirectional.  It was also created to correct various typographical errors."/>
593      <EntityType Name="Switch" BaseType="Switch.v1_7_1.Switch"/>
594    </Schema>
595
596    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_8_0">
597      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
598      <Annotation Term="Redfish.Release" String="2021.4"/>
599      <Annotation Term="OData.Description" String="This version was created to deprecate Measurements in favor of measurement reporting in the ComponentIntegrity resource."/>
600
601      <EntityType Name="Switch" BaseType="Switch.v1_7_0.Switch"/>
602    </Schema>
603
604    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_8_1">
605      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
606      <Annotation Term="OData.Description" String="This version was created to add the URI segment annotation to Metrics."/>
607      <EntityType Name="Switch" BaseType="Switch.v1_8_0.Switch"/>
608    </Schema>
609
610    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_8_2">
611      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
612      <Annotation Term="OData.Description" String="This version was created to update the long descriptions of CurrentBandwidthGbps and MaxBandwidthGbps properties to show speeds are unidirectional.  It was also created to correct various typographical errors."/>
613      <EntityType Name="Switch" BaseType="Switch.v1_8_1.Switch"/>
614    </Schema>
615
616    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_9_0">
617      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
618      <Annotation Term="Redfish.Release" String="2022.3"/>
619
620      <EntityType Name="Switch" BaseType="Switch.v1_8_0.Switch">
621        <Property Name="CXL" Type="Switch.v1_9_0.CXL" Nullable="false">
622          <Annotation Term="OData.Description" String="CXL properties for this switch."/>
623          <Annotation Term="OData.LongDescription" String="This property shall contain CXL-specific properties for this switch."/>
624        </Property>
625      </EntityType>
626
627      <ComplexType Name="CXL">
628        <Annotation Term="OData.Description" String="CXL properties for a switch."/>
629        <Annotation Term="OData.LongDescription" String="This type shall contain CXL-specific properties for a switch."/>
630        <Property Name="MaxVCSsSupported" Type="Edm.Int64" Nullable="false">
631          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
632          <Annotation Term="OData.Description" String="The maximum number of Virtual CXL Switches (VCSs) supported in this switch."/>
633          <Annotation Term="OData.LongDescription" String="This property shall contain the maximum number of Virtual CXL Switches (VCSs) supported in this switch."/>
634        </Property>
635        <Property Name="TotalNumbervPPBs" Type="Edm.Int64" Nullable="false">
636          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
637          <Annotation Term="OData.Description" String="The total number of virtual PCI-to-PCI bridges (vPPBs) supported in this switch."/>
638          <Annotation Term="OData.LongDescription" String="This property shall contain the total number of virtual PCI-to-PCI bridges (vPPBs) supported in this switch."/>
639        </Property>
640        <Property Name="VCS" Type="Switch.v1_9_0.VCSSwitch" Nullable="false">
641          <Annotation Term="OData.Description" String="Virtual CXL Switch (VCS) properties for this switch."/>
642          <Annotation Term="OData.LongDescription" String="This property shall contain Virtual CXL Switch (VCS) properties for this switch."/>
643        </Property>
644      </ComplexType>
645
646      <ComplexType Name="VCSSwitch">
647        <Annotation Term="OData.Description" String="Virtual CXL Switch (VCS) properties for a switch."/>
648        <Annotation Term="OData.LongDescription" String="This type shall contain Virtual CXL Switch (VCS) properties for a switch."/>
649        <Property Name="HDMDecoders" Type="Edm.Int64" Nullable="false">
650          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
651          <Annotation Term="OData.Description" String="The number of Host Device Memory (HDM) Decoders supported by this switch."/>
652          <Annotation Term="OData.LongDescription" String="This property shall contain the number of Host Device Memory (HDM) Decoders supported by this switch."/>
653        </Property>
654      </ComplexType>
655    </Schema>
656
657    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_9_1">
658      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
659      <Annotation Term="OData.Description" String="This version was created to add the URI segment annotation to Metrics."/>
660      <EntityType Name="Switch" BaseType="Switch.v1_9_0.Switch"/>
661    </Schema>
662
663    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Switch.v1_9_2">
664      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
665      <Annotation Term="OData.Description" String="This version was created to update the long descriptions of CurrentBandwidthGbps and MaxBandwidthGbps properties to show speeds are unidirectional.  It was also created to correct various typographical errors."/>
666      <EntityType Name="Switch" BaseType="Switch.v1_9_1.Switch"/>
667    </Schema>
668
669  </edmx:DataServices>
670</edmx:Edmx>
671