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