1<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################       -->
4<!--# Redfish Schema:  NetworkDeviceFunctionMetrics v1.2.0                                 -->
5<!--#                                                                                      -->
6<!--# For a detailed change log, see the README file contained in the DSP8010 bundle,      -->
7<!--# available at http://www.dmtf.org/standards/redfish                                   -->
8<!--# Copyright 2014-2024 DMTF.                                                            -->
9<!--# For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright -->
10<!--################################################################################       -->
11<!---->
12<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0">
13
14  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Core.V1.xml">
15    <edmx:Include Namespace="Org.OData.Core.V1" Alias="OData"/>
16  </edmx:Reference>
17  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Capabilities.V1.xml">
18    <edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="Capabilities"/>
19  </edmx:Reference>
20  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Measures.V1.xml">
21    <edmx:Include Namespace="Org.OData.Measures.V1" Alias="Measures"/>
22  </edmx:Reference>
23  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
24    <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
25    <edmx:Include Namespace="Validation.v1_0_0" Alias="Validation"/>
26  </edmx:Reference>
27  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
28    <edmx:Include Namespace="Resource.v1_0_0"/>
29  </edmx:Reference>
30
31  <edmx:DataServices>
32
33    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkDeviceFunctionMetrics">
34      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
35      <Annotation Term="Redfish.Language" String="en"/>
36
37      <EntityType Name="NetworkDeviceFunctionMetrics" BaseType="Resource.v1_0_0.Resource" Abstract="true">
38        <Annotation Term="OData.Description" String="The `NetworkDeviceFunctionMetrics` schema contains usage and health statistics for a network function of a network adapter."/>
39        <Annotation Term="OData.LongDescription" String="This resource shall represent the network metrics for a single network function of a network adapter in a Redfish implementation."/>
40        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
41        <Annotation Term="Capabilities.InsertRestrictions">
42          <Record>
43            <PropertyValue Property="Insertable" Bool="false"/>
44          </Record>
45        </Annotation>
46        <Annotation Term="Capabilities.UpdateRestrictions">
47          <Record>
48            <PropertyValue Property="Updatable" Bool="false"/>
49          </Record>
50        </Annotation>
51        <Annotation Term="Capabilities.DeleteRestrictions">
52          <Record>
53            <PropertyValue Property="Deletable" Bool="false"/>
54          </Record>
55        </Annotation>
56        <Annotation Term="Redfish.Uris">
57          <Collection>
58            <String>/redfish/v1/Chassis/{ChassisId}/NetworkAdapters/{NetworkAdapterId}/NetworkDeviceFunctions/{NetworkDeviceFunctionId}/Metrics</String>
59          </Collection>
60        </Annotation>
61      </EntityType>
62
63      <Action Name="ResetMetrics" IsBound="true">
64        <Parameter Name="NetworkDeviceFunctionMetrics" Type="NetworkDeviceFunctionMetrics.v1_0_0.Actions"/>
65        <Annotation Term="OData.Description" String="This action resets the summary metrics related to this device."/>
66        <Annotation Term="OData.LongDescription" String="This action shall reset any time intervals or counted values for this device."/>
67        <Annotation Term="Redfish.Revisions">
68          <Collection>
69            <Record>
70              <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
71              <PropertyValue Property="Version" String="v1_2_0"/>
72            </Record>
73          </Collection>
74        </Annotation>
75      </Action>
76    </Schema>
77
78    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkDeviceFunctionMetrics.v1_0_0">
79      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
80      <Annotation Term="Redfish.Release" String="2021.1"/>
81
82      <EntityType Name="NetworkDeviceFunctionMetrics" BaseType="NetworkDeviceFunctionMetrics.NetworkDeviceFunctionMetrics">
83        <Property Name="Ethernet" Type="NetworkDeviceFunctionMetrics.v1_0_0.Ethernet" Nullable="false">
84          <Annotation Term="OData.Description" String="The network function metrics specific to Ethernet adapters."/>
85          <Annotation Term="OData.LongDescription" String="This property shall contain network function metrics specific to Ethernet adapters."/>
86        </Property>
87        <Property Name="TXAvgQueueDepthPercent" Type="Edm.Decimal">
88          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
89          <Annotation Term="OData.Description" String="The average TX queue depth as the percentage."/>
90          <Annotation Term="OData.LongDescription" String="This property shall contain the average TX queue depth as a percentage, typically `0` to `100`."/>
91          <Annotation Term="Validation.Minimum" Int="0"/>
92          <Annotation Term="Measures.Unit" String="%"/>
93        </Property>
94        <Property Name="RXAvgQueueDepthPercent" Type="Edm.Decimal">
95          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
96          <Annotation Term="OData.Description" String="The average RX queue depth as the percentage."/>
97          <Annotation Term="OData.LongDescription" String="This property shall contain the average RX queue depth as a percentage, typically `0` to `100`."/>
98          <Annotation Term="Validation.Minimum" Int="0"/>
99          <Annotation Term="Measures.Unit" String="%"/>
100        </Property>
101        <Property Name="RXFrames" Type="Edm.Int64">
102          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
103          <Annotation Term="OData.Description" String="The total number of frames received on a network function."/>
104          <Annotation Term="OData.LongDescription" String="This property shall contain the total number of frames received on a network function."/>
105        </Property>
106        <Property Name="RXBytes" Type="Edm.Int64">
107          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
108          <Annotation Term="OData.Description" String="The total number of bytes received on a network function."/>
109          <Annotation Term="OData.LongDescription" String="This property shall contain the total number of bytes received on a network function, inclusive of all protocol overhead."/>
110          <Annotation Term="Measures.Unit" String="By"/>
111        </Property>
112        <Property Name="RXUnicastFrames" Type="Edm.Int64">
113          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
114          <Annotation Term="OData.Description" String="The total number of good unicast frames received on a network function since reset."/>
115          <Annotation Term="OData.LongDescription" String="This property shall contain the total number of good unicast frames received on a network function since reset."/>
116        </Property>
117        <Property Name="RXMulticastFrames" Type="Edm.Int64">
118          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
119          <Annotation Term="OData.Description" String="The total number of good multicast frames received on a network function since reset."/>
120          <Annotation Term="OData.LongDescription" String="This property shall contain the total number of good multicast frames received on a network function since reset, including host and remote management passthrough traffic."/>
121        </Property>
122        <Property Name="TXFrames" Type="Edm.Int64">
123          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
124          <Annotation Term="OData.Description" String="The total number of frames sent on a network function."/>
125          <Annotation Term="OData.LongDescription" String="This property shall contain the total number of frames sent on a network function."/>
126        </Property>
127        <Property Name="TXBytes" Type="Edm.Int64">
128          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
129          <Annotation Term="OData.Description" String="The total number of bytes sent on a network function."/>
130          <Annotation Term="OData.LongDescription" String="This property shall contain the total number of bytes sent on a network function, inclusive of all protocol overhead."/>
131          <Annotation Term="Measures.Unit" String="By"/>
132        </Property>
133        <Property Name="TXUnicastFrames" Type="Edm.Int64">
134          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
135          <Annotation Term="OData.Description" String="The total number of good unicast frames transmitted on a network function since reset."/>
136          <Annotation Term="OData.LongDescription" String="This property shall contain the total number of good unicast frames transmitted on a network function since reset, including host and remote management passthrough traffic."/>
137        </Property>
138        <Property Name="TXMulticastFrames" Type="Edm.Int64">
139          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
140          <Annotation Term="OData.Description" String="The total number of good multicast frames transmitted on a network function since reset."/>
141          <Annotation Term="OData.LongDescription" String="This property shall contain the total number of good multicast frames transmitted on a network function since reset, including host and remote management passthrough traffic."/>
142        </Property>
143        <Property Name="TXQueuesEmpty" Type="Edm.Boolean">
144          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
145          <Annotation Term="OData.Description" String="Whether all TX queues for a network function are empty."/>
146          <Annotation Term="OData.LongDescription" String="This property shall indicate whether all TX queues for a network function are empty."/>
147        </Property>
148        <Property Name="RXQueuesEmpty" Type="Edm.Boolean">
149          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
150          <Annotation Term="OData.Description" String="Whether nothing is in a network function's RX queues to DMA."/>
151          <Annotation Term="OData.LongDescription" String="This property shall indicate whether nothing is in a network function's RX queues to DMA."/>
152        </Property>
153        <Property Name="TXQueuesFull" Type="Edm.Int64">
154          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
155          <Annotation Term="OData.Description" String="The number of TX queues that are full."/>
156          <Annotation Term="OData.LongDescription" String="This property shall contain the number of TX queues that are full."/>
157        </Property>
158        <Property Name="RXQueuesFull" Type="Edm.Int64">
159          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
160          <Annotation Term="OData.Description" String="The number of RX queues that are full."/>
161          <Annotation Term="OData.LongDescription" String="This property shall contain the number of RX queues that are full."/>
162        </Property>
163        <Property Name="Actions" Type="NetworkDeviceFunctionMetrics.v1_0_0.Actions" Nullable="false">
164          <Annotation Term="OData.Description" String="The available actions for this resource."/>
165          <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
166        </Property>
167      </EntityType>
168
169      <ComplexType Name="Ethernet">
170        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
171        <Annotation Term="OData.Description" String="The network function metrics for an Ethernet interface."/>
172        <Annotation Term="OData.LongDescription" String="This type shall describe the Ethernet-related network function metrics."/>
173        <Property Name="NumOffloadedIPv4Conns" Type="Edm.Int64">
174          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
175          <Annotation Term="OData.Description" String="The total number of offloaded TCP/IPv4 connections."/>
176          <Annotation Term="OData.LongDescription" String="This property shall contain the total number of offloaded TCP/IPv4 connections."/>
177        </Property>
178        <Property Name="NumOffloadedIPv6Conns" Type="Edm.Int64">
179          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
180          <Annotation Term="OData.Description" String="The total number of offloaded TCP/IPv6 connections."/>
181          <Annotation Term="OData.LongDescription" String="This property shall contain the total number of offloaded TCP/IPv6 connections."/>
182        </Property>
183      </ComplexType>
184
185      <ComplexType Name="Actions">
186        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
187        <Annotation Term="OData.Description" String="The available actions for this resource."/>
188        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
189        <Property Name="Oem" Type="NetworkDeviceFunctionMetrics.v1_0_0.OemActions" Nullable="false">
190          <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
191          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
192        </Property>
193      </ComplexType>
194
195      <ComplexType Name="OemActions">
196        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
197        <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
198        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
199      </ComplexType>
200    </Schema>
201
202    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkDeviceFunctionMetrics.v1_0_1">
203      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
204      <Annotation Term="OData.Description" String="This version was created to clarify the range of possible values for properties with percent units."/>
205      <EntityType Name="NetworkDeviceFunctionMetrics" BaseType="NetworkDeviceFunctionMetrics.v1_0_0.NetworkDeviceFunctionMetrics"/>
206    </Schema>
207
208    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkDeviceFunctionMetrics.v1_0_2">
209      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
210      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
211      <EntityType Name="NetworkDeviceFunctionMetrics" BaseType="NetworkDeviceFunctionMetrics.v1_0_1.NetworkDeviceFunctionMetrics"/>
212    </Schema>
213
214    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkDeviceFunctionMetrics.v1_0_3">
215      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
216      <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."/>
217      <EntityType Name="NetworkDeviceFunctionMetrics" BaseType="NetworkDeviceFunctionMetrics.v1_0_2.NetworkDeviceFunctionMetrics"/>
218    </Schema>
219
220    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkDeviceFunctionMetrics.v1_1_0">
221      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
222      <Annotation Term="Redfish.Release" String="2021.2"/>
223
224      <EntityType Name="NetworkDeviceFunctionMetrics" BaseType="NetworkDeviceFunctionMetrics.v1_0_0.NetworkDeviceFunctionMetrics">
225        <Property Name="FibreChannel" Type="NetworkDeviceFunctionMetrics.v1_1_0.FibreChannel" Nullable="false">
226          <Annotation Term="OData.Description" String="The network function metrics specific to Fibre Channel adapters."/>
227          <Annotation Term="OData.LongDescription" String="This property shall contain network function metrics specific to Fibre Channel adapters."/>
228        </Property>
229      </EntityType>
230
231      <ComplexType Name="FibreChannel">
232        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
233        <Annotation Term="OData.Description" String="The network function metrics for a Fibre Channel interface."/>
234        <Annotation Term="OData.LongDescription" String="This type shall describe the Fibre Channel-related network function metrics."/>
235        <Property Name="RXSequences" Type="Edm.Int64">
236          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
237          <Annotation Term="OData.Description" String="The total number of Fibre Channel sequences received."/>
238          <Annotation Term="OData.LongDescription" String="This property shall contain the total number of Fibre Channel sequences received."/>
239        </Property>
240        <Property Name="TXSequences" Type="Edm.Int64">
241          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
242          <Annotation Term="OData.Description" String="The total number of Fibre Channel sequences transmitted."/>
243          <Annotation Term="OData.LongDescription" String="This property shall contain the total number of Fibre Channel sequences transmitted."/>
244        </Property>
245        <Property Name="TXExchanges" Type="Edm.Int64">
246          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
247          <Annotation Term="OData.Description" String="The total number of Fibre Channel exchanges transmitted."/>
248          <Annotation Term="OData.LongDescription" String="This property shall contain the total number of Fibre Channel exchanges transmitted."/>
249        </Property>
250        <Property Name="RXExchanges" Type="Edm.Int64">
251          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
252          <Annotation Term="OData.Description" String="The total number of Fibre Channel exchanges received."/>
253          <Annotation Term="OData.LongDescription" String="This property shall contain the total number of Fibre Channel exchanges received."/>
254        </Property>
255        <Property Name="PortLoginRequests" Type="Edm.Int64">
256          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
257          <Annotation Term="OData.Description" String="The total number of port login (PLOGI) requests transmitted."/>
258          <Annotation Term="OData.LongDescription" String="This property shall contain the total number of PLOGI requests sent by this function."/>
259        </Property>
260        <Property Name="PortLoginAccepts" Type="Edm.Int64">
261          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
262          <Annotation Term="OData.Description" String="The total number of port login (PLOGI) accept (ACC) responses."/>
263          <Annotation Term="OData.LongDescription" String="This property shall contain the total number of PLOGI ACC responses received by this Fibre Channel function."/>
264        </Property>
265        <Property Name="PortLoginRejects" Type="Edm.Int64">
266          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
267          <Annotation Term="OData.Description" String="The total number of port login (PLOGI) reject (RJT) responses."/>
268          <Annotation Term="OData.LongDescription" String="This property shall contain the total number of PLOGI RJT responses received by this Fibre Channel function."/>
269        </Property>
270        <Property Name="RXPeerCongestionFPINs" Type="Edm.Int64">
271          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
272          <Annotation Term="OData.Description" String="The total number of Peer Congestion Fabric Performance Impact Notifications (FPINs) received."/>
273          <Annotation Term="OData.LongDescription" String="This property shall contain the total number of Peer Congestion FPINs received by this Fibre Channel function."/>
274        </Property>
275        <Property Name="TXPeerCongestionFPINs" Type="Edm.Int64">
276          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
277          <Annotation Term="OData.Description" String="The total number of Peer Congestion Fabric Performance Impact Notifications (FPINs) sent."/>
278          <Annotation Term="OData.LongDescription" String="This property shall contain the total number of Peer Congestion FPINs sent by this Fibre Channel function."/>
279        </Property>
280        <Property Name="RXCongestionFPINs" Type="Edm.Int64">
281          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
282          <Annotation Term="OData.Description" String="The total number of Congestion Fabric Performance Impact Notifications (FPINs) received."/>
283          <Annotation Term="OData.LongDescription" String="This property shall contain the total number of Congestion FPINs received by this Fibre Channel function."/>
284        </Property>
285        <Property Name="TXCongestionFPINs" Type="Edm.Int64">
286          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
287          <Annotation Term="OData.Description" String="The total number of Congestion Fabric Performance Impact Notifications (FPINs) sent."/>
288          <Annotation Term="OData.LongDescription" String="This property shall contain the total number of Congestion FPINs sent by this Fibre Channel function."/>
289        </Property>
290        <Property Name="RXLinkIntegrityFPINs" Type="Edm.Int64">
291          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
292          <Annotation Term="OData.Description" String="The total number of Link Integrity Fabric Performance Impact Notifications (FPINs) received."/>
293          <Annotation Term="OData.LongDescription" String="This property shall contain the total number of Link Integrity FPINs received by this Fibre Channel function."/>
294        </Property>
295        <Property Name="TXLinkIntegrityFPINs" Type="Edm.Int64">
296          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
297          <Annotation Term="OData.Description" String="The total number of Link Integrity Fabric Performance Impact Notifications (FPINs) sent."/>
298          <Annotation Term="OData.LongDescription" String="This property shall contain the total number of Link Integrity FPINs sent by this Fibre Channel function."/>
299        </Property>
300        <Property Name="RXDeliveryFPINs" Type="Edm.Int64">
301          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
302          <Annotation Term="OData.Description" String="The total number of Delivery Fabric Performance Impact Notifications (FPINs) received."/>
303          <Annotation Term="OData.LongDescription" String="This property shall contain the total number of Delivery FPINs received by this Fibre Channel function."/>
304        </Property>
305        <Property Name="TXDeliveryFPINs" Type="Edm.Int64">
306          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
307          <Annotation Term="OData.Description" String="The total number of Delivery Fabric Performance Impact Notifications (FPINs) sent."/>
308          <Annotation Term="OData.LongDescription" String="This property shall contain the total number of Delivery FPINs sent by this Fibre Channel function."/>
309        </Property>
310      </ComplexType>
311    </Schema>
312
313    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkDeviceFunctionMetrics.v1_1_1">
314      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
315      <Annotation Term="OData.Description" String="This version was created to clarify the range of possible values for properties with percent units."/>
316      <EntityType Name="NetworkDeviceFunctionMetrics" BaseType="NetworkDeviceFunctionMetrics.v1_1_0.NetworkDeviceFunctionMetrics"/>
317    </Schema>
318
319    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkDeviceFunctionMetrics.v1_1_2">
320      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
321      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
322      <EntityType Name="NetworkDeviceFunctionMetrics" BaseType="NetworkDeviceFunctionMetrics.v1_1_1.NetworkDeviceFunctionMetrics"/>
323    </Schema>
324
325    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkDeviceFunctionMetrics.v1_1_3">
326      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
327      <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."/>
328      <EntityType Name="NetworkDeviceFunctionMetrics" BaseType="NetworkDeviceFunctionMetrics.v1_1_2.NetworkDeviceFunctionMetrics"/>
329    </Schema>
330
331    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="NetworkDeviceFunctionMetrics.v1_2_0">
332      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
333      <Annotation Term="Redfish.Release" String="2024.1"/>
334      <Annotation Term="OData.Description" String="This version was created to add the `ResetMetrics` action."/>
335
336      <EntityType Name="NetworkDeviceFunctionMetrics" BaseType="NetworkDeviceFunctionMetrics.v1_1_3.NetworkDeviceFunctionMetrics"/>
337    </Schema>
338
339  </edmx:DataServices>
340</edmx:Edmx>
341