1<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################       -->
4<!--# Redfish Schema:  MetricReport v1.5.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-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://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
21    <edmx:Include Namespace="Resource"/>
22    <edmx:Include Namespace="Resource.v1_0_0"/>
23  </edmx:Reference>
24  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
25    <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
26  </edmx:Reference>
27  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/MetricReportDefinition_v1.xml">
28    <edmx:Include Namespace="MetricReportDefinition"/>
29  </edmx:Reference>
30  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/MetricDefinition_v1.xml">
31    <edmx:Include Namespace="MetricDefinition"/>
32  </edmx:Reference>
33
34  <edmx:DataServices>
35
36    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReport">
37      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
38
39      <EntityType Name="MetricReport" BaseType="Resource.v1_0_0.Resource" Abstract="true">
40        <Annotation Term="OData.Description" String="The MetricReport schema represents a set of collected metrics."/>
41        <Annotation Term="OData.LongDescription" String="This resource shall represent a metric report in a Redfish implementation.  When a metric report is deleted, the historic metric data used to generate the report shall be deleted as well unless other metric reports are consuming the data."/>
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="false"/>
50          </Record>
51        </Annotation>
52        <Annotation Term="Capabilities.DeleteRestrictions">
53          <Record>
54            <PropertyValue Property="Deletable" Bool="true"/>
55            <Annotation Term="OData.Description" String="Metric reports can be deleted."/>
56          </Record>
57        </Annotation>
58        <Annotation Term="Redfish.Uris">
59          <Collection>
60            <String>/redfish/v1/TelemetryService/MetricReports/{MetricReportId}</String>
61          </Collection>
62        </Annotation>
63      </EntityType>
64    </Schema>
65
66    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReport.v1_0_0">
67      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
68      <Annotation Term="Redfish.Release" String="2018.2"/>
69
70      <EntityType Name="MetricReport" BaseType="MetricReport.MetricReport">
71        <NavigationProperty Name="MetricReportDefinition" Type="MetricReportDefinition.MetricReportDefinition" Nullable="false">
72          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
73          <Annotation Term="OData.Description" String="The link to the definition of this metric report."/>
74          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource of type MetricReportDefinition."/>
75          <Annotation Term="OData.AutoExpandReferences"/>
76        </NavigationProperty>
77        <Property Name="ReportSequence" Type="Edm.String" Nullable="false">
78          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
79          <Annotation Term="OData.Description" String="The current sequence identifier for this metric report."/>
80          <Annotation Term="OData.LongDescription" String="This property shall contain the current sequence identifier for this metric report.  The sequence identifier is a unique identifier assigned by the Service for serializing metric reports as they are produced."/>
81          <Annotation Term="Redfish.Revisions">
82            <Collection>
83              <Record>
84                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
85                <PropertyValue Property="Version" String="v1_3_0"/>
86                <PropertyValue Property="Description" String="This property has been deprecated due to specification changes with regards to Server-Sent Events."/>
87              </Record>
88            </Collection>
89          </Annotation>
90        </Property>
91        <Property Name="MetricValues" Type="Collection(MetricReport.v1_0_0.MetricValue)" Nullable="false">
92          <Annotation Term="OData.Description" String="An array of metric values for the metered items of this metric report."/>
93          <Annotation Term="OData.LongDescription" String="The values shall be metric values for this metric report."/>
94        </Property>
95        <Property Name="Actions" Type="MetricReport.v1_0_0.Actions" Nullable="false">
96          <Annotation Term="OData.Description" String="The available actions for this resource."/>
97          <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
98        </Property>
99      </EntityType>
100
101      <ComplexType Name="MetricValue">
102        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
103        <Annotation Term="OData.Description" String="Properties that capture a metric value and other associated information."/>
104        <Annotation Term="OData.LongDescription" String="This type shall contain properties that capture a metric value and other associated information."/>
105        <Property Name="MetricId" Type="Edm.String">
106          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
107          <Annotation Term="OData.Description" String="The metric definitions identifier that contains additional information for the source metric."/>
108          <Annotation Term="OData.LongDescription" String="This property shall contain the value of the Id property of the MetricDefinition resource that contains additional information for the source metric."/>
109        </Property>
110        <Property Name="MetricValue" Type="Edm.String">
111          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
112          <Annotation Term="OData.Description" String="The metric value, as a string."/>
113          <Annotation Term="OData.LongDescription" String="This property shall contain the metric value, as a string."/>
114        </Property>
115        <Property Name="Timestamp" Type="Edm.DateTimeOffset">
116          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
117          <Annotation Term="OData.Description" String="The date and time when the metric is obtained.  A management application can establish a time series of metric data by retrieving the instances of metric value and sorting them according to their timestamp."/>
118          <Annotation Term="OData.LongDescription" String="The value shall time when the metric value was obtained.  Note that this value may be different from the time when this instance is created."/>
119        </Property>
120        <Property Name="MetricProperty" Type="Edm.String">
121          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
122          <Annotation Term="OData.Description" String="The URI for the property from which this metric is derived."/>
123          <Annotation Term="OData.LongDescription" String="This property shall contain a URI following RFC6901-specified JSON pointer notation to the property from which this metric is derived.  The value of MetricValue may contain additional calculations performed on the property based upon the configuration of the MetricReportDefinition."/>
124          <Annotation Term="OData.IsURL"/>
125        </Property>
126        <NavigationProperty Name="MetricDefinition" Type="MetricDefinition.MetricDefinition" Nullable="false">
127          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
128          <Annotation Term="OData.Description" String="The link to the metric definition for this metric."/>
129          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource of type MetricDefinition that describes what this metric value captures."/>
130          <Annotation Term="OData.AutoExpandReferences"/>
131          <Annotation Term="Redfish.Revisions">
132            <Collection>
133              <Record>
134                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
135                <PropertyValue Property="Version" String="v1_5_0"/>
136                <PropertyValue Property="Description" String="This property has been deprecated in favor of the MetricId property."/>
137              </Record>
138            </Collection>
139          </Annotation>
140        </NavigationProperty>
141      </ComplexType>
142
143      <ComplexType Name="Actions">
144        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
145        <Annotation Term="OData.Description" String="The available actions for this resource."/>
146        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
147        <Property Name="Oem" Type="MetricReport.v1_0_0.OemActions" Nullable="false">
148          <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
149          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
150        </Property>
151      </ComplexType>
152
153      <ComplexType Name="OemActions">
154        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
155        <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
156        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
157      </ComplexType>
158    </Schema>
159
160    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReport.v1_0_1">
161      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
162      <Annotation Term="OData.Description" String="This version was created to clarify descriptions of several properties."/>
163      <EntityType Name="MetricReport" BaseType="MetricReport.v1_0_0.MetricReport"/>
164    </Schema>
165
166    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReport.v1_0_2">
167      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
168      <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 MetricValues to disallow it from being `null`."/>
169      <EntityType Name="MetricReport" BaseType="MetricReport.v1_0_1.MetricReport"/>
170    </Schema>
171
172    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReport.v1_0_3">
173      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
174      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
175      <EntityType Name="MetricReport" BaseType="MetricReport.v1_0_2.MetricReport"/>
176    </Schema>
177
178    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReport.v1_0_4">
179      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
180      <Annotation Term="OData.Description" String="This version was created to no longer make ReportSequence required."/>
181      <EntityType Name="MetricReport" BaseType="MetricReport.v1_0_3.MetricReport"/>
182    </Schema>
183
184    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReport.v1_0_5">
185      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
186      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
187      <EntityType Name="MetricReport" BaseType="MetricReport.v1_0_4.MetricReport"/>
188    </Schema>
189
190    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReport.v1_0_6">
191      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
192      <Annotation Term="OData.Description" String="This version was created to clarify behavior for when a metric report is deleted."/>
193      <EntityType Name="MetricReport" BaseType="MetricReport.v1_0_5.MetricReport"/>
194    </Schema>
195
196    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReport.v1_0_7">
197      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
198      <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology."/>
199      <EntityType Name="MetricReport" BaseType="MetricReport.v1_0_6.MetricReport"/>
200    </Schema>
201
202    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReport.v1_0_8">
203      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
204      <Annotation Term="OData.Description" String="This version was created to clarify the usage of MetricId and MetricProperty."/>
205      <EntityType Name="MetricReport" BaseType="MetricReport.v1_0_7.MetricReport"/>
206    </Schema>
207
208    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReport.v1_1_0">
209      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
210      <Annotation Term="Redfish.Release" String="2018.3"/>
211      <Annotation Term="OData.Description" String="This version was created to add a Timestamp property for the metric report in its entirety."/>
212
213      <EntityType Name="MetricReport" BaseType="MetricReport.v1_0_1.MetricReport">
214        <Property Name="Timestamp" Type="Edm.DateTimeOffset">
215          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
216          <Annotation Term="OData.Description" String="The time associated with the metric report in its entirety.  The time of the metric report can be relevant when the time of individual metrics are minimally different."/>
217          <Annotation Term="OData.LongDescription" String="This property shall contain the time when the metric report was generated."/>
218        </Property>
219      </EntityType>
220    </Schema>
221
222    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReport.v1_1_1">
223      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
224      <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 MetricValues to disallow it from being `null`."/>
225      <EntityType Name="MetricReport" BaseType="MetricReport.v1_1_0.MetricReport"/>
226    </Schema>
227
228    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReport.v1_1_2">
229      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
230      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
231      <EntityType Name="MetricReport" BaseType="MetricReport.v1_1_1.MetricReport"/>
232    </Schema>
233
234    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReport.v1_1_3">
235      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
236      <Annotation Term="OData.Description" String="This version was created to no longer make ReportSequence required."/>
237      <EntityType Name="MetricReport" BaseType="MetricReport.v1_1_2.MetricReport"/>
238    </Schema>
239
240    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReport.v1_1_4">
241      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
242      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
243      <EntityType Name="MetricReport" BaseType="MetricReport.v1_1_3.MetricReport"/>
244    </Schema>
245
246    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReport.v1_1_5">
247      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
248      <Annotation Term="OData.Description" String="This version was created to clarify behavior for when a metric report is deleted."/>
249      <EntityType Name="MetricReport" BaseType="MetricReport.v1_1_4.MetricReport"/>
250    </Schema>
251
252    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReport.v1_1_6">
253      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
254      <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology."/>
255      <EntityType Name="MetricReport" BaseType="MetricReport.v1_1_5.MetricReport"/>
256    </Schema>
257
258    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReport.v1_1_7">
259      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
260      <Annotation Term="OData.Description" String="This version was created to clarify the usage of MetricId and MetricProperty."/>
261      <EntityType Name="MetricReport" BaseType="MetricReport.v1_1_6.MetricReport"/>
262    </Schema>
263
264    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReport.v1_2_0">
265      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
266      <Annotation Term="Redfish.Release" String="2019.2"/>
267
268      <EntityType Name="MetricReport" BaseType="MetricReport.v1_1_2.MetricReport"/>
269
270      <ComplexType Name="MetricValue" BaseType="MetricReport.v1_0_0.MetricValue">
271        <Property Name="Oem" Type="Resource.Oem" Nullable="false">
272          <Annotation Term="OData.Description" String="The OEM extension property."/>
273          <Annotation Term="OData.LongDescription" String="This property shall contain the OEM extensions.  All values for properties contained in this object shall conform to the Redfish Specification-described requirements."/>
274        </Property>
275      </ComplexType>
276    </Schema>
277
278    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReport.v1_2_1">
279      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
280      <Annotation Term="OData.Description" String="This version was created to no longer make ReportSequence required."/>
281      <EntityType Name="MetricReport" BaseType="MetricReport.v1_2_0.MetricReport"/>
282    </Schema>
283
284    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReport.v1_2_2">
285      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
286      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
287      <EntityType Name="MetricReport" BaseType="MetricReport.v1_2_1.MetricReport"/>
288    </Schema>
289
290    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReport.v1_2_3">
291      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
292      <Annotation Term="OData.Description" String="This version was created to clarify behavior for when a metric report is deleted."/>
293      <EntityType Name="MetricReport" BaseType="MetricReport.v1_2_2.MetricReport"/>
294    </Schema>
295
296    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReport.v1_2_4">
297      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
298      <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology."/>
299      <EntityType Name="MetricReport" BaseType="MetricReport.v1_2_3.MetricReport"/>
300    </Schema>
301
302    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReport.v1_2_5">
303      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
304      <Annotation Term="OData.Description" String="This version was created to clarify the usage of MetricId and MetricProperty."/>
305      <EntityType Name="MetricReport" BaseType="MetricReport.v1_2_4.MetricReport"/>
306    </Schema>
307
308    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReport.v1_3_0">
309      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
310      <Annotation Term="Redfish.Release" String="2019.4"/>
311      <Annotation Term="OData.Description" String="This version was created to deprecate ReportSequence."/>
312
313      <EntityType Name="MetricReport" BaseType="MetricReport.v1_2_1.MetricReport"/>
314    </Schema>
315
316    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReport.v1_3_1">
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="MetricReport" BaseType="MetricReport.v1_3_0.MetricReport"/>
320    </Schema>
321
322    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReport.v1_3_2">
323      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
324      <Annotation Term="OData.Description" String="This version was created to clarify behavior for when a metric report is deleted."/>
325      <EntityType Name="MetricReport" BaseType="MetricReport.v1_3_1.MetricReport"/>
326    </Schema>
327
328    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReport.v1_3_4">
329      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
330      <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology."/>
331      <EntityType Name="MetricReport" BaseType="MetricReport.v1_3_2.MetricReport"/>
332    </Schema>
333
334    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReport.v1_3_5">
335      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
336      <Annotation Term="OData.Description" String="This version was created to clarify the usage of MetricId and MetricProperty."/>
337      <EntityType Name="MetricReport" BaseType="MetricReport.v1_3_4.MetricReport"/>
338    </Schema>
339
340    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReport.v1_4_0">
341      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
342      <Annotation Term="Redfish.Release" String="2020.2"/>
343
344      <EntityType Name="MetricReport" BaseType="MetricReport.v1_3_1.MetricReport">
345        <Property Name="Context" Type="Edm.String" Nullable="false">
346          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
347          <Annotation Term="OData.Description" String="A context can be supplied at subscription time.  This property is the context value supplied by the subscriber."/>
348          <Annotation Term="OData.LongDescription" String="This property shall contain a client supplied context for the event destination to which this event is being sent.  This property shall only be present when sent as a payload in an event."/>
349        </Property>
350      </EntityType>
351    </Schema>
352
353    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReport.v1_4_1">
354      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
355      <Annotation Term="OData.Description" String="This version was created to clarify behavior for when a metric report is deleted."/>
356      <EntityType Name="MetricReport" BaseType="MetricReport.v1_4_0.MetricReport"/>
357    </Schema>
358
359    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReport.v1_4_2">
360      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
361      <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology."/>
362      <EntityType Name="MetricReport" BaseType="MetricReport.v1_4_1.MetricReport"/>
363    </Schema>
364
365    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReport.v1_4_3">
366      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
367      <Annotation Term="OData.Description" String="This version was created to clarify the usage of MetricId and MetricProperty."/>
368      <EntityType Name="MetricReport" BaseType="MetricReport.v1_4_2.MetricReport"/>
369    </Schema>
370
371    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReport.v1_5_0">
372      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
373      <Annotation Term="Redfish.Release" String="2022.2"/>
374      <Annotation Term="OData.Description" String="This version was created to deprecate MetricDefinition in favor of MetricId."/>
375
376      <EntityType Name="MetricReport" BaseType="MetricReport.v1_4_3.MetricReport"/>
377    </Schema>
378
379  </edmx:DataServices>
380</edmx:Edmx>
381