1<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################       -->
4<!--# Redfish Schema:  NetworkPort v1.4.3                                                  -->
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/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/NetworkDeviceFunction_v1.xml">
31    <edmx:Include Namespace="NetworkDeviceFunction"/>
32  </edmx:Reference>
33
34  <edmx:DataServices>
35
36    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort">
37      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
38      <Annotation Term="Redfish.Language" String="en"/>
39
40      <EntityType Name="NetworkPort" BaseType="Resource.v1_0_0.Resource" Abstract="true">
41        <Annotation Term="OData.Description" String="The `NetworkPort` schema describes a network port, which is a discrete physical port that can connect to a network."/>
42        <Annotation Term="OData.LongDescription" String="This resource shall represent a discrete physical port that can connect to a network in a Redfish implementation."/>
43        <Annotation Term="Capabilities.InsertRestrictions">
44          <Record>
45            <PropertyValue Property="Insertable" Bool="false"/>
46          </Record>
47        </Annotation>
48        <Annotation Term="Capabilities.UpdateRestrictions">
49          <Record>
50            <PropertyValue Property="Updatable" Bool="true"/>
51            <Annotation Term="OData.Description" String="Any writable properties, such as the bandwidth allocation and flow control configuration, can be updated for network ports."/>
52          </Record>
53        </Annotation>
54        <Annotation Term="Capabilities.DeleteRestrictions">
55          <Record>
56            <PropertyValue Property="Deletable" Bool="false"/>
57          </Record>
58        </Annotation>
59        <Annotation Term="Redfish.Uris">
60          <Collection>
61            <String>/redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/NetworkPorts/{NetworkPortId}</String>
62          </Collection>
63        </Annotation>
64        <Annotation Term="Redfish.DeprecatedUris">
65          <Collection>
66            <String>/redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/NetworkPorts/{NetworkPortId}</String>
67          </Collection>
68        </Annotation>
69        <Annotation Term="Redfish.Revisions">
70          <Collection>
71            <Record>
72              <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
73              <PropertyValue Property="Version" String="v1_4_0"/>
74              <PropertyValue Property="Description" String="This schema has been deprecated in favor of the `Port` schema."/>
75            </Record>
76          </Collection>
77        </Annotation>
78      </EntityType>
79    </Schema>
80
81    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_0_0">
82      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
83      <Annotation Term="Redfish.Release" String="2016.3"/>
84
85      <EntityType Name="NetworkPort" BaseType="NetworkPort.NetworkPort">
86        <Property Name="Status" Type="Resource.Status" Nullable="false">
87          <Annotation Term="OData.Description" String="The status and health of the resource and its subordinate or dependent resources."/>
88          <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
89        </Property>
90        <Property Name="PhysicalPortNumber" Type="Edm.String">
91          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
92          <Annotation Term="OData.Description" String="The physical port number label for this port."/>
93          <Annotation Term="OData.LongDescription" String="This property shall contain the physical port number on the network adapter hardware that this network port corresponds to.  This value should match a value visible on the hardware."/>
94        </Property>
95        <Property Name="LinkStatus" Type="NetworkPort.v1_0_0.LinkStatus">
96          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
97          <Annotation Term="OData.Description" String="The status of the link between this port and its link partner."/>
98          <Annotation Term="OData.LongDescription" String="This property shall contain the link status between this port and its link partner."/>
99        </Property>
100        <Property Name="SupportedLinkCapabilities" Type="Collection(NetworkPort.v1_0_0.SupportedLinkCapabilities)" Nullable="false">
101          <Annotation Term="OData.Description" String="The link capabilities of this port."/>
102          <Annotation Term="OData.LongDescription" String="This property shall describe the static capabilities of the port, irrespective of transient conditions such as cabling, interface module presence, or remote link partner status or configuration."/>
103        </Property>
104        <Property Name="ActiveLinkTechnology" Type="NetworkPort.v1_0_0.LinkNetworkTechnology">
105          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
106          <Annotation Term="OData.Description" String="Network port active link technology."/>
107          <Annotation Term="OData.LongDescription" String="This property shall contain the configured link technology of this port."/>
108        </Property>
109        <Property Name="SupportedEthernetCapabilities" Type="Collection(NetworkPort.v1_0_0.SupportedEthernetCapabilities)">
110          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
111          <Annotation Term="OData.Description" String="The set of Ethernet capabilities that this port supports."/>
112          <Annotation Term="OData.LongDescription" String="This property shall contain an array of zero or more Ethernet capabilities supported by this port."/>
113        </Property>
114        <Property Name="NetDevFuncMinBWAlloc" Type="Collection(NetworkPort.v1_0_0.NetDevFuncMinBWAlloc)" Nullable="false">
115          <Annotation Term="OData.Description" String="An array of minimum bandwidth allocation percentages for the network device functions associated with this port."/>
116          <Annotation Term="OData.LongDescription" String="This property shall contain an array of minimum bandwidth percentage allocations for each of the network device functions associated with this port."/>
117        </Property>
118        <Property Name="NetDevFuncMaxBWAlloc" Type="Collection(NetworkPort.v1_0_0.NetDevFuncMaxBWAlloc)" Nullable="false">
119          <Annotation Term="OData.Description" String="An array of maximum bandwidth allocation percentages for the network device functions associated with this port."/>
120          <Annotation Term="OData.LongDescription" String="This property shall contain an array of maximum bandwidth allocation percentages for the network device functions associated with this port."/>
121        </Property>
122        <Property Name="AssociatedNetworkAddresses" Type="Collection(Edm.String)">
123          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
124          <Annotation Term="OData.Description" String="An array of configured MAC or WWN network addresses that are associated with this network port, including the programmed address of the lowest-numbered network device function, the configured but not active address, if applicable, the address for hardware port teaming, or other network addresses."/>
125          <Annotation Term="OData.LongDescription" String="This property shall contain an array of configured network addresses that are associated with this network port, including the programmed address of the lowest-numbered network device function, the configured but not active address if applicable, the address for hardware port teaming, or other network addresses."/>
126        </Property>
127        <Property Name="EEEEnabled" Type="Edm.Boolean">
128          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
129          <Annotation Term="OData.Description" String="An indication of whether IEEE 802.3az Energy-Efficient Ethernet (EEE) is enabled for this network port."/>
130          <Annotation Term="OData.LongDescription" String="This property shall indicate whether IEEE 802.3az Energy-Efficient Ethernet (EEE) is enabled for this network port."/>
131        </Property>
132        <Property Name="WakeOnLANEnabled" Type="Edm.Boolean">
133          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
134          <Annotation Term="OData.Description" String="An indication of whether Wake on LAN (WoL) is enabled for this network port."/>
135          <Annotation Term="OData.LongDescription" String="This property shall indicate whether Wake on LAN (WoL) is enabled for this network port."/>
136        </Property>
137        <Property Name="PortMaximumMTU" Type="Edm.Int64">
138          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
139          <Annotation Term="OData.Description" String="The largest maximum transmission unit (MTU) that can be configured for this network port."/>
140          <Annotation Term="OData.LongDescription" String="This property shall contain the largest maximum transmission unit (MTU) that can be configured for this network port."/>
141        </Property>
142        <Property Name="FlowControlStatus" Type="NetworkPort.v1_0_0.FlowControl">
143          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
144          <Annotation Term="OData.Description" String="The 802.3x flow control behavior negotiated with the link partner for this network port (Ethernet-only)."/>
145          <Annotation Term="OData.LongDescription" String="This property shall contain the 802.3x flow control behavior negotiated with the link partner for this network port (Ethernet-only)."/>
146        </Property>
147        <Property Name="FlowControlConfiguration" Type="NetworkPort.v1_0_0.FlowControl">
148          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
149          <Annotation Term="OData.Description" String="The locally configured 802.3x flow control setting for this network port."/>
150          <Annotation Term="OData.LongDescription" String="This property shall contain the locally configured 802.3x flow control setting for this network port."/>
151        </Property>
152        <Property Name="SignalDetected" Type="Edm.Boolean">
153          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
154          <Annotation Term="OData.Description" String="An indication of whether the port has detected enough signal on enough lanes to establish a link."/>
155          <Annotation Term="OData.LongDescription" String="This property shall indicate whether the port has detected enough signal on enough lanes to establish a link."/>
156        </Property>
157      </EntityType>
158
159      <ComplexType Name="SupportedLinkCapabilities">
160        <Annotation Term="OData.Description" String="The link capabilities of an associated port."/>
161        <Annotation Term="OData.LongDescription" String="This type shall describe the static capabilities of an associated port, irrespective of transient conditions such as cabling, interface module presence, or remote link partner status or configuration."/>
162        <Property Name="LinkNetworkTechnology" Type="NetworkPort.v1_0_0.LinkNetworkTechnology">
163          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
164          <Annotation Term="OData.Description" String="The link network technology capabilities of this port."/>
165          <Annotation Term="OData.LongDescription" String="This property shall contain a network technology capability of this port."/>
166        </Property>
167        <Property Name="LinkSpeedMbps" Type="Edm.Int64">
168          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
169          <Annotation Term="OData.Description" String="The speed of the link in Mbit/s when this link network technology is active."/>
170          <Annotation Term="OData.LongDescription" String="This property shall contain the speed of the link in megabits per second (Mbit/s) units for this port when this link network technology is active."/>
171          <Annotation Term="Measures.Unit" String="Mbit/s"/>
172          <Annotation Term="Redfish.Revisions">
173            <Collection>
174              <Record>
175                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
176                <PropertyValue Property="Version" String="v1_2_0"/>
177                <PropertyValue Property="Description" String="This property has been deprecated in favor of the `CapableLinkSpeedMbps` property."/>
178              </Record>
179            </Collection>
180          </Annotation>
181        </Property>
182      </ComplexType>
183
184      <ComplexType Name="NetDevFuncMinBWAlloc">
185        <Annotation Term="OData.Description" String="A minimum bandwidth allocation percentage for a network device functions associated with a port."/>
186        <Annotation Term="OData.LongDescription" String="This type shall describe a minimum bandwidth percentage allocation for a network device function associated with a port."/>
187        <NavigationProperty Name="NetworkDeviceFunction" Type="NetworkDeviceFunction.NetworkDeviceFunction" Nullable="false">
188          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
189          <Annotation Term="OData.Description" String="The link to the network device function associated with this bandwidth setting of this network port."/>
190          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource of type `NetworkDeviceFunction` that represents the network device function associated with this bandwidth setting of this network port."/>
191          <Annotation Term="OData.AutoExpandReferences"/>
192        </NavigationProperty>
193        <Property Name="MinBWAllocPercent" Type="Edm.Int64">
194          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
195          <Annotation Term="OData.Description" String="The minimum bandwidth allocation percentage allocated to the corresponding network device function instance."/>
196          <Annotation Term="OData.LongDescription" String="This property shall contain the minimum bandwidth percentage allocation for the associated network device function.  The sum total of all minimum percentages shall not exceed 100."/>
197          <Annotation Term="Measures.Unit" String="%"/>
198        </Property>
199      </ComplexType>
200
201      <ComplexType Name="NetDevFuncMaxBWAlloc">
202        <Annotation Term="OData.Description" String="A maximum bandwidth allocation percentage for a network device functions associated with a port."/>
203        <Annotation Term="OData.LongDescription" String="This type shall describe a maximum bandwidth percentage allocation for a network device function associated with a port."/>
204        <NavigationProperty Name="NetworkDeviceFunction" Type="NetworkDeviceFunction.NetworkDeviceFunction" Nullable="false">
205          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
206          <Annotation Term="OData.Description" String="The link to the network device function associated with this bandwidth setting of this network port."/>
207          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource of type `NetworkDeviceFunction` that represents the network device function associated with this bandwidth setting of this network port."/>
208          <Annotation Term="OData.AutoExpandReferences"/>
209        </NavigationProperty>
210        <Property Name="MaxBWAllocPercent" Type="Edm.Int64">
211          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
212          <Annotation Term="OData.Description" String="The maximum bandwidth allocation percentage allocated to the corresponding network device function instance."/>
213          <Annotation Term="OData.LongDescription" String="This property shall contain the maximum bandwidth percentage allocation for the associated network device function."/>
214          <Annotation Term="Measures.Unit" String="%"/>
215        </Property>
216      </ComplexType>
217
218      <EnumType Name="LinkStatus">
219        <Member Name="Down">
220          <Annotation Term="OData.Description" String="The port is enabled but link is down." />
221        </Member>
222        <Member Name="Up">
223          <Annotation Term="OData.Description" String="The port is enabled and link is good (up)." />
224        </Member>
225        <Member Name="Starting">
226          <Annotation Term="OData.Description" String="This link on this interface is starting.  A physical link has been established, but the port is not able to transfer data."/>
227          <Annotation Term="Redfish.Revisions">
228            <Collection>
229              <Record>
230                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
231                <PropertyValue Property="Version" String="v1_3_0"/>
232              </Record>
233            </Collection>
234          </Annotation>
235        </Member>
236        <Member Name="Training">
237          <Annotation Term="OData.Description" String="This physical link on this interface is training."/>
238          <Annotation Term="Redfish.Revisions">
239            <Collection>
240              <Record>
241                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
242                <PropertyValue Property="Version" String="v1_3_0"/>
243              </Record>
244            </Collection>
245          </Annotation>
246        </Member>
247      </EnumType>
248
249      <EnumType Name="LinkNetworkTechnology">
250        <Member Name="Ethernet">
251          <Annotation Term="OData.Description" String="The port is capable of connecting to an Ethernet network." />
252        </Member>
253        <Member Name="InfiniBand">
254          <Annotation Term="OData.Description" String="The port is capable of connecting to an InfiniBand network." />
255        </Member>
256        <Member Name="FibreChannel">
257          <Annotation Term="OData.Description" String="The port is capable of connecting to a Fibre Channel network." />
258        </Member>
259      </EnumType>
260
261      <EnumType Name="SupportedEthernetCapabilities">
262        <Member Name="WakeOnLAN">
263          <Annotation Term="OData.Description" String="Wake on LAN (WoL) is supported on this port." />
264        </Member>
265        <Member Name="EEE">
266          <Annotation Term="OData.Description" String="IEEE 802.3az Energy-Efficient Ethernet (EEE) is supported on this port." />
267        </Member>
268      </EnumType>
269
270      <EnumType Name="FlowControl">
271        <Member Name="None">
272          <Annotation Term="OData.Description" String="No IEEE 802.3x flow control is enabled on this port." />
273        </Member>
274        <Member Name="TX">
275          <Annotation Term="OData.Description" String="This station can initiate IEEE 802.3x flow control." />
276        </Member>
277        <Member Name="RX">
278          <Annotation Term="OData.Description" String="The link partner can initiate IEEE 802.3x flow control." />
279        </Member>
280        <Member Name="TX_RX">
281          <Annotation Term="OData.Description" String="This station or the link partner can initiate IEEE 802.3x flow control." />
282        </Member>
283      </EnumType>
284    </Schema>
285
286    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_0_1">
287      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
288      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
289      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_0_0.NetworkPort"/>
290    </Schema>
291
292    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_0_2">
293      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
294      <Annotation Term="OData.Description" String="This version was created to add units annotations on the `LinkSpeedMbps` property.  It was also 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.  It was also created to add missing percent units onto existing properties."/>
295      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_0_1.NetworkPort"/>
296    </Schema>
297
298    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_0_3">
299      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
300      <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
301      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_0_2.NetworkPort"/>
302    </Schema>
303
304    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_0_4">
305      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
306      <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 several properties to disallow them from being `null`."/>
307      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_0_3.NetworkPort"/>
308    </Schema>
309
310    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_0_5">
311      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
312      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
313      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_0_4.NetworkPort"/>
314    </Schema>
315
316    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_0_6">
317      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
318      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
319      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_0_5.NetworkPort"/>
320    </Schema>
321
322    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_0_7">
323      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
324      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
325      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_0_6.NetworkPort"/>
326    </Schema>
327
328    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_0_8">
329      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
330      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
331      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_0_7.NetworkPort"/>
332    </Schema>
333
334    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_0_9">
335      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
336      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
337      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_0_8.NetworkPort"/>
338    </Schema>
339
340    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_0_10">
341      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
342      <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."/>
343      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_0_9.NetworkPort"/>
344    </Schema>
345
346    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_1_0">
347      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
348      <Annotation Term="Redfish.Release" String="2017.1"/>
349
350      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_0_1.NetworkPort">
351        <Property Name="Actions" Type="NetworkPort.v1_1_0.Actions" Nullable="false">
352          <Annotation Term="OData.Description" String="The available actions for this resource."/>
353          <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
354        </Property>
355      </EntityType>
356
357      <ComplexType Name="Actions">
358        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
359        <Annotation Term="OData.Description" String="The available actions for this resource."/>
360        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
361        <Property Name="Oem" Type="NetworkPort.v1_1_0.OemActions" Nullable="false">
362          <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
363          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
364        </Property>
365      </ComplexType>
366
367      <ComplexType Name="OemActions">
368        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
369        <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
370        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
371      </ComplexType>
372    </Schema>
373
374    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_1_1">
375      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
376      <Annotation Term="OData.Description" String="This version was created to add units annotations on the `LinkSpeedMbps` property.  It was also 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.  It was also created to add missing percent units onto existing properties."/>
377      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_1_0.NetworkPort"/>
378    </Schema>
379
380    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_1_2">
381      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
382      <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
383      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_1_1.NetworkPort"/>
384    </Schema>
385
386    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_1_3">
387      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
388      <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 several properties to disallow them from being `null`."/>
389      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_1_2.NetworkPort"/>
390    </Schema>
391
392    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_1_4">
393      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
394      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
395      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_1_3.NetworkPort"/>
396    </Schema>
397
398    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_1_5">
399      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
400      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
401      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_1_4.NetworkPort"/>
402    </Schema>
403
404    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_1_6">
405      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
406      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
407      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_1_5.NetworkPort"/>
408    </Schema>
409
410    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_1_7">
411      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
412      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
413      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_1_6.NetworkPort"/>
414    </Schema>
415
416    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_1_8">
417      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
418      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
419      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_1_7.NetworkPort"/>
420    </Schema>
421
422    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_1_9">
423      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
424      <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."/>
425      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_1_8.NetworkPort"/>
426    </Schema>
427
428    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_2_0">
429      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
430      <Annotation Term="Redfish.Release" String="2018.2"/>
431
432      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_1_1.NetworkPort">
433        <Property Name="FCPortConnectionType" Type="NetworkPort.v1_2_0.PortConnectionType">
434          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
435          <Annotation Term="OData.Description" String="The connection type of this port."/>
436          <Annotation Term="OData.LongDescription" String="This property shall contain the connection type for this port."/>
437        </Property>
438        <Property Name="NumberDiscoveredRemotePorts" Type="Edm.Int64">
439          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
440          <Annotation Term="OData.Description" String="The number of ports not on this adapter that this port has discovered."/>
441          <Annotation Term="OData.LongDescription" String="This property shall contain the number of ports not on this adapter that this port has discovered."/>
442        </Property>
443        <Property Name="MaxFrameSize" Type="Edm.Int64">
444          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
445          <Annotation Term="OData.Description" String="The maximum frame size supported by the port."/>
446          <Annotation Term="OData.LongDescription" String="This property shall contain the maximum frame size supported by the port."/>
447          <Annotation Term="Measures.Unit" String="By"/>
448        </Property>
449        <Property Name="VendorId" Type="Edm.String">
450          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
451          <Annotation Term="OData.Description" String="The vendor Identification for this port."/>
452          <Annotation Term="OData.LongDescription" String="This property shall indicate the vendor identification string information as provided by the manufacturer of this port."/>
453        </Property>
454        <Property Name="FCFabricName" Type="Edm.String">
455          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
456          <Annotation Term="OData.Description" String="The FC Fabric Name provided by the switch."/>
457          <Annotation Term="OData.LongDescription" String="This property shall indicate the FC Fabric Name provided by the switch."/>
458        </Property>
459        <Property Name="CurrentLinkSpeedMbps" Type="Edm.Int64">
460          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
461          <Annotation Term="OData.Description" String="Network port current link speed."/>
462          <Annotation Term="OData.LongDescription" String="This property shall contain the current configured link speed of this port."/>
463          <Annotation Term="Measures.Unit" String="Mbit/s"/>
464        </Property>
465      </EntityType>
466
467      <EnumType Name="PortConnectionType">
468        <Member Name="NotConnected">
469          <Annotation Term="OData.Description" String="This port is not connected."/>
470        </Member>
471        <Member Name="NPort">
472          <Annotation Term="OData.Description" String="This port connects through an N-port to a switch."/>
473        </Member>
474        <Member Name="PointToPoint">
475          <Annotation Term="OData.Description" String="This port connects in a point-to-point configuration."/>
476        </Member>
477        <Member Name="PrivateLoop">
478          <Annotation Term="OData.Description" String="This port connects in a private loop configuration."/>
479        </Member>
480        <Member Name="PublicLoop">
481          <Annotation Term="OData.Description" String="This port connects in a public configuration."/>
482        </Member>
483        <Member Name="Generic">
484          <Annotation Term="OData.Description" String="This port connection type is a generic fabric port."/>
485        </Member>
486        <Member Name="ExtenderFabric">
487          <Annotation Term="OData.Description" String="This port connection type is an extender fabric port."/>
488        </Member>
489      </EnumType>
490
491      <ComplexType Name="SupportedLinkCapabilities" BaseType="NetworkPort.v1_0_0.SupportedLinkCapabilities">
492        <Property Name="CapableLinkSpeedMbps" Type="Collection(Edm.Int64)">
493          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
494          <Annotation Term="OData.Description" String="The set of link speed capabilities of this port."/>
495          <Annotation Term="OData.LongDescription" String="This property shall contain all of the possible network link speed capabilities of this port."/>
496        </Property>
497        <Property Name="AutoSpeedNegotiation" Type="Edm.Boolean">
498          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
499          <Annotation Term="OData.Description" String="An indication of whether the port is capable of autonegotiating speed."/>
500          <Annotation Term="OData.LongDescription" String="This property shall indicate whether the port is capable of autonegotiating speed."/>
501        </Property>
502      </ComplexType>
503    </Schema>
504
505    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_2_1">
506      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
507      <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
508      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_2_0.NetworkPort"/>
509    </Schema>
510
511    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_2_2">
512      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
513      <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 several properties to disallow them from being `null`."/>
514      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_2_1.NetworkPort"/>
515    </Schema>
516
517    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_2_3">
518      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
519      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
520      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_2_2.NetworkPort"/>
521    </Schema>
522
523    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_2_4">
524      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
525      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
526      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_2_3.NetworkPort"/>
527    </Schema>
528
529    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_2_5">
530      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
531      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
532      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_2_4.NetworkPort"/>
533    </Schema>
534
535    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_2_6">
536      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
537      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
538      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_2_5.NetworkPort"/>
539    </Schema>
540
541    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_2_7">
542      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
543      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
544      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_2_6.NetworkPort"/>
545    </Schema>
546
547    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_2_8">
548      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
549      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
550      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_2_7.NetworkPort"/>
551    </Schema>
552
553    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_2_9">
554      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
555      <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."/>
556      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_2_8.NetworkPort"/>
557    </Schema>
558
559    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_3_0">
560      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
561      <Annotation Term="Redfish.Release" String="2020.3"/>
562      <Annotation Term="OData.Description" String="This version was created to add `Starting` and `Training` to `LinkStatus`."/>
563
564      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_2_4.NetworkPort"/>
565    </Schema>
566
567    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_3_1">
568      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
569      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
570      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_3_0.NetworkPort"/>
571    </Schema>
572
573    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_3_2">
574      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
575      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
576      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_3_1.NetworkPort"/>
577    </Schema>
578
579    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_3_3">
580      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
581      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
582      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_3_2.NetworkPort"/>
583    </Schema>
584
585    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_3_4">
586      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
587      <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."/>
588      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_3_3.NetworkPort"/>
589    </Schema>
590
591    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_4_0">
592      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
593      <Annotation Term="Redfish.Release" String="2020.4"/>
594      <Annotation Term="OData.Description" String="This version was created to deprecate the schema."/>
595
596      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_3_1.NetworkPort"/>
597    </Schema>
598
599    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_4_1">
600      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
601      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
602      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_4_0.NetworkPort"/>
603    </Schema>
604
605    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_4_2">
606      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
607      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
608      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_4_1.NetworkPort"/>
609    </Schema>
610
611    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkPort.v1_4_3">
612      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
613      <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."/>
614      <EntityType Name="NetworkPort" BaseType="NetworkPort.v1_4_2.NetworkPort"/>
615    </Schema>
616
617  </edmx:DataServices>
618</edmx:Edmx>
619