1<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################       -->
4<!--# Redfish Schema:  MetricReportDefinition v1.4.5                                       -->
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:Include Namespace="Validation.v1_0_0" Alias="Validation"/>
27  </edmx:Reference>
28  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/MetricReport_v1.xml">
29    <edmx:Include Namespace="MetricReport"/>
30  </edmx:Reference>
31  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Schedule_v1.xml">
32    <edmx:Include Namespace="Schedule"/>
33  </edmx:Reference>
34  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Triggers_v1.xml">
35    <edmx:Include Namespace="Triggers"/>
36  </edmx:Reference>
37
38  <edmx:DataServices>
39
40    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition">
41      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
42
43      <EntityType Name="MetricReportDefinition" BaseType="Resource.v1_0_0.Resource" Abstract="true">
44        <Annotation Term="OData.Description" String="The MetricReportDefinition schema describes set of metrics that are collected into a metric report."/>
45        <Annotation Term="OData.LongDescription" String="This resource shall specify a set of metrics that shall be collected into a metric report in a Redfish implementation."/>
46        <Annotation Term="Capabilities.InsertRestrictions">
47          <Record>
48            <PropertyValue Property="Insertable" Bool="false"/>
49          </Record>
50        </Annotation>
51        <Annotation Term="Capabilities.UpdateRestrictions">
52          <Record>
53            <PropertyValue Property="Updatable" Bool="true"/>
54            <Annotation Term="OData.Description" String="Any writable properties can be updated for metric report definitions."/>
55          </Record>
56        </Annotation>
57        <Annotation Term="Capabilities.DeleteRestrictions">
58          <Record>
59            <PropertyValue Property="Deletable" Bool="true"/>
60            <Annotation Term="OData.Description" String="Metric report definitions can be deleted."/>
61          </Record>
62        </Annotation>
63        <Annotation Term="Redfish.Uris">
64          <Collection>
65            <String>/redfish/v1/TelemetryService/MetricReportDefinitions/{MetricReportDefinitionId}</String>
66          </Collection>
67        </Annotation>
68      </EntityType>
69    </Schema>
70
71    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_0_0">
72      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
73      <Annotation Term="Redfish.Release" String="2018.2"/>
74
75      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.MetricReportDefinition">
76        <Property Name="MetricReportDefinitionType" Type="MetricReportDefinition.v1_0_0.MetricReportDefinitionType">
77          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
78          <Annotation Term="OData.Description" String="Specifies when the metric report is generated."/>
79          <Annotation Term="OData.LongDescription" String="This property shall specify when the metric report is generated.  If the value is `Periodic`, the Schedule property shall be present."/>
80        </Property>
81        <Property Name="Schedule" Type="Schedule.Schedule" Nullable="false">
82          <Annotation Term="OData.Description" String="The schedule for generating the metric report."/>
83          <Annotation Term="OData.LongDescription" String="This property shall contain the schedule of the metric report.  The metric report shall be generated at an interval specified by the RecurrenceInterval property within Schedule.  If the MaxOccurrences property within Schedule is specified, the metric report shall no longer be generated after the specified number of occurrences.  The State property within Status should be set to `Disabled` and the MetricReportDefinitionEnabled property should be set to `false` when the specified number of occurrences is reached."/>
84        </Property>
85        <Property Name="ReportActions" Type="Collection(MetricReportDefinition.v1_0_0.ReportActionsEnum)" Nullable="false">
86          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
87          <Annotation Term="OData.Description" String="The set of actions to perform when a metric report is generated."/>
88          <Annotation Term="OData.LongDescription" String="This property shall contain the set of actions to perform when the metric report is generated.  This property should be ignored if MetricReportDefinitionType contains the value `OnRequest`."/>
89        </Property>
90        <Property Name="ReportUpdates" Type="MetricReportDefinition.v1_0_0.ReportUpdatesEnum" Nullable="false">
91          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
92          <Annotation Term="OData.Description" String="The behavior for how subsequent metric reports are handled in relationship to an existing metric report created from the metric report definition.  Namely, whether to overwrite, append, or create a metric report."/>
93          <Annotation Term="OData.LongDescription" String="This property shall contain the behavior for how subsequent metric reports are handled in relationship to an existing metric report created from the metric report definition.  This property should be ignored if MetricReportDefinitionType contains the value `OnRequest`."/>
94        </Property>
95        <Property Name="AppendLimit" Type="Edm.Int64" Nullable="false">
96          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
97          <Annotation Term="OData.Description" String="The maximum number of entries that can be appended to a metric report.  When the metric report reaches its limit, its behavior is dictated by the ReportUpdates property."/>
98          <Annotation Term="OData.LongDescription" String="This property shall contain a number that indicates the maximum number of entries that can be appended to a metric report.  When the metric report reaches its limit, its behavior shall be dictated by the ReportUpdates property.  This property shall be required if ReportUpdates contains `AppendWrapsWhenFull` or `AppendStopsWhenFull`."/>
99          <Annotation Term="Validation.Minimum" Int="0"/>
100        </Property>
101        <Property Name="Status" Type="Resource.Status" Nullable="false">
102          <Annotation Term="OData.Description" String="The status and health of the resource and its subordinate or dependent resources."/>
103          <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
104        </Property>
105        <Property Name="Wildcards" Type="Collection(MetricReportDefinition.v1_0_0.Wildcard)" Nullable="false">
106          <Annotation Term="OData.Description" String="The set of wildcards and their substitution values for the entries in the MetricProperties property."/>
107          <Annotation Term="OData.LongDescription" String="The property shall contain a set of wildcards and their replacement strings, which are applied to the MetricProperties property.  Each wildcard expressed in the MetricProperties property shall have a corresponding entry in this property."/>
108        </Property>
109        <Property Name="MetricProperties" Type="Collection(Edm.String)">
110          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
111          <Annotation Term="OData.Description" String="The list of URIs with wildcards and property identifiers to include in the metric report.  If a URI has wildcards, the wildcards are substituted as specified in the Wildcards property."/>
112          <Annotation Term="OData.LongDescription" String="This property shall contain a list of URIs with wildcards and property identifiers to include in the metric report.  A set of curly braces shall delimit each wildcard in the URI.  The corresponding entry in the Wildcard property shall replace each wildcard.  After each wildcard is replaced, it shall describe a resource property to include in the metric report.  The property identifiers portion of the URI shall follow RFC6901-specified JSON pointer notation rules."/>
113          <Annotation Term="OData.IsURL"/>
114        </Property>
115        <Property Name="Metrics" Type="Collection(MetricReportDefinition.v1_0_0.Metric)" Nullable="false">
116          <Annotation Term="OData.Description" String="The list of metrics to include in the metric report.  The metrics might include calculations to apply to metric properties."/>
117          <Annotation Term="OData.LongDescription" String="The property shall contain a list of metrics to include in the metric report.  The metrics may include calculations to apply to metric properties."/>
118        </Property>
119        <NavigationProperty Name="MetricReport" Type="MetricReport.MetricReport" Nullable="false">
120          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
121          <Annotation Term="OData.Description" String="The most recent metric report produced by this metric report definition."/>
122          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource of type MetricReport that represents the most recent metric report produced by this metric report definition."/>
123          <Annotation Term="OData.AutoExpandReferences"/>
124        </NavigationProperty>
125        <Property Name="Actions" Type="MetricReportDefinition.v1_0_0.Actions" Nullable="false">
126          <Annotation Term="OData.Description" String="The available actions for this resource."/>
127          <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
128        </Property>
129      </EntityType>
130
131      <ComplexType Name="Wildcard">
132        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
133        <Annotation Term="OData.Description" String="The wildcard and its substitution values."/>
134        <Annotation Term="OData.LongDescription" String="This type shall contain a wildcard and its substitution values."/>
135        <Property Name="Name" Type="Edm.String">
136          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
137          <Annotation Term="OData.Description" String="The string used as a wildcard."/>
138          <Annotation Term="OData.LongDescription" String="This property shall contain the string used as a wildcard."/>
139        </Property>
140        <Property Name="Keys" Type="Collection(Edm.String)">
141          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
142          <Annotation Term="OData.Description" String="An array of values to substitute for the wildcard."/>
143          <Annotation Term="OData.LongDescription" String="This property shall contain the list of values to substitute for the wildcard."/>
144          <Annotation Term="Redfish.Revisions">
145            <Collection>
146              <Record>
147                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
148                <PropertyValue Property="Version" String="v1_1_0"/>
149                <PropertyValue Property="Description" String="This property has been deprecated in favor of using the property Values."/>
150              </Record>
151            </Collection>
152          </Annotation>
153        </Property>
154      </ComplexType>
155
156      <ComplexType Name="Metric">
157        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
158        <Annotation Term="OData.Description" String="Specifies a set of metrics to include in the metric report.  Calculation parameters, if present, are applied to the metrics prior to being included in the metric report."/>
159        <Annotation Term="OData.LongDescription" String="The properties shall specify a set of metrics to include in the metric report.  The algorithm specified by CollectionFunction, if present, shall be applied to each of the metric properties listed in the MetricProperties property or the metric properties specified in the MetricDefinition referenced by the MetricId property prior to being included in the metric report."/>
160        <Property Name="MetricId" Type="Edm.String">
161          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
162          <Annotation Term="OData.Description" String="The metric definition identifier that contains the metric properties to include in the metric report."/>
163          <Annotation Term="OData.LongDescription" String="This property shall contain the value of the Id property of the MetricDefinition resource that contains the metric properties to include in the metric report.  This property should not be present if MetricProperties is present."/>
164        </Property>
165        <Property Name="MetricProperties" Type="Collection(Edm.String)">
166          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
167          <Annotation Term="OData.Description" String="The list of URIs with wildcards and property identifiers to include in the metric report.  If a URI has wildcards, the wildcards are substituted as specified in the Wildcards property."/>
168          <Annotation Term="OData.LongDescription" String="This property shall contain a list of URIs with wildcards and property identifiers to include in the metric report.  A set of curly braces shall delimit each wildcard in the URI.  The corresponding entry in the Wildcard property shall replace each wildcard.  After each wildcard is replaced, it shall describe a resource property to include in the metric report.  The property identifiers portion of the URI shall follow RFC6901-specified JSON pointer notation rules.  This property should not be present if MetricId is present."/>
169          <Annotation Term="OData.IsURL"/>
170        </Property>
171        <Property Name="CollectionFunction" Type="MetricReportDefinition.v1_0_0.CalculationAlgorithmEnum">
172          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
173          <Annotation Term="OData.Description" String="Specifies the function to perform on each of the metric properties listed in the MetricProperties property or the metric properties specified in the MetricDefinition referenced by the MetricId property.  If not specified, calculations are not performed on the metric properties."/>
174          <Annotation Term="OData.LongDescription" String="The property shall specify the function to perform on each of the metric properties listed in the MetricProperties property or the metric properties specified in the MetricDefinition referenced by the MetricId property.  If not specified, calculations shall not be performed on the metric properties."/>
175        </Property>
176        <Property Name="CollectionDuration" Type="Edm.Duration">
177          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
178          <Annotation Term="OData.Description" String="The duration over which the function is computed."/>
179          <Annotation Term="OData.LongDescription" String="This property shall specify the duration over which the function is computed."/>
180        </Property>
181        <Property Name="CollectionTimeScope" Type="MetricReportDefinition.v1_0_0.CollectionTimeScope">
182          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
183          <Annotation Term="OData.Description" String="The scope of time over which the function is applied."/>
184          <Annotation Term="OData.LongDescription" String="This property shall specify the scope of time over which the function is applied."/>
185        </Property>
186      </ComplexType>
187
188      <EnumType Name="MetricReportDefinitionType">
189        <Annotation Term="OData.Description" String="Indicates when the metric report is generated."/>
190        <Annotation Term="OData.LongDescription" String="This type shall specify when the metric report is generated."/>
191        <Member Name="Periodic">
192          <Annotation Term="OData.Description" String="The metric report is generated at a periodic time interval, specified in the Schedule property."/>
193        </Member>
194        <Member Name="OnChange">
195          <Annotation Term="OData.Description" String="The metric report is generated when any of the metric values change."/>
196        </Member>
197        <Member Name="OnRequest">
198          <Annotation Term="OData.Description" String="The metric report is generated when a HTTP GET is performed on the specified metric report."/>
199        </Member>
200      </EnumType>
201
202      <EnumType Name="ReportActionsEnum">
203        <Annotation Term="OData.Description" String="Actions to perform when a metric report is generated."/>
204        <Annotation Term="OData.LongDescription" String="This type shall specify the actions to perform when a metric report is generated."/>
205        <Member Name="LogToMetricReportsCollection">
206          <Annotation Term="OData.Description" String="Record the occurrence to the metric report collection."/>
207          <Annotation Term="OData.LongDescription" String="This value shall indicate the service records the occurrence to the metric report collection found under the telemetry service.  The service shall update the metric report based on the setting of the ReportUpdates property."/>
208        </Member>
209        <Member Name="RedfishEvent">
210          <Annotation Term="OData.Description" String="Send a Redfish event message containing the metric report."/>
211          <Annotation Term="OData.LongDescription" String="This value shall indicate the service sends a Redfish event of type MetricReport to subscribers in the event subscription collection of the event service."/>
212        </Member>
213      </EnumType>
214
215      <EnumType Name="ReportUpdatesEnum">
216        <Annotation Term="OData.Description" String="Handling of subsequent metric reports when a metric report exists."/>
217        <Annotation Term="OData.LongDescription" String="This type shall indicate how the service handles subsequent metric reports when a metric report exists."/>
218        <Member Name="Overwrite">
219          <Annotation Term="OData.Description" String="Overwrite the metric report."/>
220          <Annotation Term="OData.LongDescription" String="This value shall indicate the service overwrites the metric report referenced by the MetricReport property."/>
221        </Member>
222        <Member Name="AppendWrapsWhenFull">
223          <Annotation Term="OData.Description" String="New information is appended to the metric report.  The metric report entries are overwritten with new entries when the metric report has reached its maximum capacity."/>
224          <Annotation Term="OData.LongDescription" String="This value shall indicate the service appends new information to the metric report referenced by the MetricReport property.  The service shall overwrite entries in the metric report with new entries when the metric report has reached its maximum capacity."/>
225        </Member>
226        <Member Name="AppendStopsWhenFull">
227          <Annotation Term="OData.Description" String="New information is appended to the metric report.  The service stops adding entries when the metric report has reached its maximum capacity."/>
228          <Annotation Term="OData.LongDescription" String="This value shall indicate the service appends new information to the metric report referenced by the MetricReport property.  The service shall stop adding entries when the metric report has reached its maximum capacity.  The State property within Status should be set to `Disabled` and the MetricReportDefinitionEnabled property should be set to `false` when the append limit is reached."/>
229        </Member>
230        <Member Name="NewReport">
231          <Annotation Term="OData.Description" String="A new metric report is created, whose identifier is a service-defined identifier concatenated with the timestamp."/>
232          <Annotation Term="OData.LongDescription" String="This value shall indicate the service creates a new metric report resource, whose Id property is a service-defined identifier concatenated with the timestamp.  The metric report referenced by the MetricReport property shall reference the metric report most recently created by this metric report definition."/>
233        </Member>
234      </EnumType>
235
236      <EnumType Name="CalculationAlgorithmEnum">
237        <Annotation Term="OData.Description" String="The function to apply to the list of metric properties."/>
238        <Annotation Term="OData.LongDescription" String="This type shall specify the function to apply to the list of metric properties."/>
239        <Member Name="Average">
240          <Annotation Term="OData.Description" String="The metric is calculated as the average metric reading over a duration."/>
241          <Annotation Term="OData.LongDescription" String="This value shall indicate the metric is calculated as the average metric reading over a duration.  The duration shall be the CollectionDuration property value."/>
242        </Member>
243        <Member Name="Maximum">
244          <Annotation Term="OData.Description" String="The metric is calculated as the maximum metric reading over a duration."/>
245          <Annotation Term="OData.LongDescription" String="This value shall indicate the metric is calculated as the maximum metric reading over a duration.  The duration shall be the CollectionDuration property value."/>
246        </Member>
247        <Member Name="Minimum">
248          <Annotation Term="OData.Description" String="The metric is calculated as the minimum metric reading over a duration."/>
249          <Annotation Term="OData.LongDescription" String="This value shall indicate the metric is calculated as the minimum metric reading over a duration.  The duration shall be the CollectionDuration property value."/>
250        </Member>
251        <Member Name="Summation">
252          <Annotation Term="OData.Description" String="The metric is calculated as the sum of the values over a duration."/>
253          <Annotation Term="OData.LongDescription" String="This value shall indicate the metric is calculated as the sum of the specified metric reading over a duration.  The duration shall be the CollectionDuration property value."/>
254        </Member>
255      </EnumType>
256
257      <EnumType Name="CollectionTimeScope">
258        <Annotation Term="OData.Description" String="The time scope of the related metric values."/>
259        <Annotation Term="OData.LongDescription" String="This type shall specify the time scope of the corresponding metric values."/>
260        <Member Name="Point">
261          <Annotation Term="OData.Description" String="The corresponding metric values apply to a point in time.  On the corresponding metric value instances, the Timestamp property value in the metric report specifies the point in time."/>
262          <Annotation Term="OData.LongDescription" String="This value shall indicate the corresponding metric values apply to a point in time.  On the corresponding metric value instances, the Timestamp property value in the metric report shall specify the point in time."/>
263        </Member>
264        <Member Name="Interval">
265          <Annotation Term="OData.Description" String="The corresponding metric values apply to a time interval.  On the corresponding metric value instances, the Timestamp property value in the metric report specifies the end of the time interval and the CollectionDuration property specifies its duration."/>
266          <Annotation Term="OData.LongDescription" String="This value shall indicate the corresponding metric values apply to a time interval.  On the corresponding metric value instances, the Timestamp property value in the metric report shall specify the end of the time interval and the CollectionDuration property shall specify its duration."/>
267        </Member>
268        <Member Name="StartupInterval">
269          <Annotation Term="OData.Description" String="The corresponding metric values apply to a time interval that began at the startup of the measured resource.  On the corresponding metric value instances, the Timestamp property value in the metric report specifies the end of the time interval.  The CollectionDuration property value specifies the duration between the startup of the resource and timestamp."/>
270          <Annotation Term="OData.LongDescription" String="This value shall indicate the corresponding metric values apply to a time interval that began at the startup of the measured resource.  On the corresponding metric value instances, the Timestamp property value in the metric report shall specify the end of the time interval.  The CollectionDuration property value shall specify the duration between the startup of the resource and timestamp."/>
271        </Member>
272      </EnumType>
273
274      <ComplexType Name="Actions">
275        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
276        <Annotation Term="OData.Description" String="The available actions for this resource."/>
277        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
278        <Property Name="Oem" Type="MetricReportDefinition.v1_0_0.OemActions" Nullable="false">
279          <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
280          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
281        </Property>
282      </ComplexType>
283
284      <ComplexType Name="OemActions">
285        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
286        <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
287        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
288      </ComplexType>
289    </Schema>
290
291    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_0_1">
292      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
293      <Annotation Term="OData.Description" String="This version was created to clarify descriptions of several properties."/>
294      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_0_0.MetricReportDefinition"/>
295    </Schema>
296
297    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_0_2">
298      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
299      <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`."/>
300      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_0_1.MetricReportDefinition"/>
301    </Schema>
302
303    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_0_3">
304      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
305      <Annotation Term="OData.Description" String="This version was created to correct descriptions in the CalculationAlgorithmEnum enumeration.  It was also created to update descriptions that this schema defines."/>
306      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_0_2.MetricReportDefinition"/>
307    </Schema>
308
309    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_0_4">
310      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
311      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of `OnRequest` metric report definitions with regards to ReportUpdates and ReportActions.  It was also created to clarify the behavior when a metric report definition stops updating a metric report."/>
312      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_0_3.MetricReportDefinition"/>
313    </Schema>
314
315    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_0_5">
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="MetricReportDefinition" BaseType="MetricReportDefinition.v1_0_4.MetricReportDefinition"/>
319    </Schema>
320
321    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_0_6">
322      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
323      <Annotation Term="OData.Description" String="This version was created to mark ReportActions, ReportUpdates, MetricId, and properties in Wildcards as writable."/>
324      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_0_5.MetricReportDefinition"/>
325    </Schema>
326
327    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_0_7">
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="MetricReportDefinition" BaseType="MetricReportDefinition.v1_0_6.MetricReportDefinition"/>
331    </Schema>
332
333    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_0_8">
334      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
335      <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology."/>
336      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_0_7.MetricReportDefinition"/>
337    </Schema>
338
339    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_0_9">
340      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
341      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of the MetricReport property, clarify the identifier formatting for when `NewReport` is configured, and the usage of MetricId."/>
342      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_0_8.MetricReportDefinition"/>
343    </Schema>
344
345    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_0_10">
346      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
347      <Annotation Term="OData.Description" String="This version was created to correct the regular expression pattern for duration properties in JSON Schema and OpenAPI to not allow for negative values."/>
348      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_0_9.MetricReportDefinition"/>
349    </Schema>
350
351    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_0_11">
352      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
353      <Annotation Term="OData.Description" String="This version was created to remove normative language from non-normative descriptions."/>
354      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_0_10.MetricReportDefinition"/>
355    </Schema>
356
357    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_0_12">
358      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
359      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
360      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_0_11.MetricReportDefinition"/>
361    </Schema>
362
363    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_1_0">
364      <Annotation Term="OData.Description" String="This version was created to add the Values property to the Wildcard property."/>
365      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
366      <Annotation Term="Redfish.Release" String="2018.3"/>
367
368      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_0_1.MetricReportDefinition"/>
369
370      <ComplexType Name="Wildcard" BaseType="MetricReportDefinition.v1_0_0.Wildcard">
371        <Property Name="Values" Type="Collection(Edm.String)">
372          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
373          <Annotation Term="OData.Description" String="An array of values to substitute for the wildcard."/>
374          <Annotation Term="OData.LongDescription" String="This property shall contain the list of values to substitute for the wildcard."/>
375        </Property>
376      </ComplexType>
377    </Schema>
378
379    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_1_1">
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="MetricReportDefinition" BaseType="MetricReportDefinition.v1_1_0.MetricReportDefinition"/>
383    </Schema>
384
385    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_1_2">
386      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
387      <Annotation Term="OData.Description" String="This version was created to correct descriptions in the CalculationAlgorithmEnum enumeration.  It was also created to update descriptions that this schema defines."/>
388      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_1_1.MetricReportDefinition"/>
389    </Schema>
390
391    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_1_3">
392      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
393      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of `OnRequest` metric report definitions with regards to ReportUpdates and ReportActions.  It was also created to clarify the behavior when a metric report definition stops updating a metric report."/>
394      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_1_2.MetricReportDefinition"/>
395    </Schema>
396
397    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_1_4">
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="MetricReportDefinition" BaseType="MetricReportDefinition.v1_1_3.MetricReportDefinition"/>
401    </Schema>
402
403    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_1_5">
404      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
405      <Annotation Term="OData.Description" String="This version was created to mark ReportActions, ReportUpdates, MetricId, and properties in Wildcards as writable."/>
406      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_1_4.MetricReportDefinition"/>
407    </Schema>
408
409    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_1_6">
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="MetricReportDefinition" BaseType="MetricReportDefinition.v1_1_5.MetricReportDefinition"/>
413    </Schema>
414
415    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_1_7">
416      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
417      <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology."/>
418      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_1_6.MetricReportDefinition"/>
419    </Schema>
420
421    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_1_8">
422      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
423      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of the MetricReport property, clarify the identifier formatting for when `NewReport` is configured, and the usage of MetricId."/>
424      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_1_7.MetricReportDefinition"/>
425    </Schema>
426
427    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_1_9">
428      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
429      <Annotation Term="OData.Description" String="This version was created to correct the regular expression pattern for duration properties in JSON Schema and OpenAPI to not allow for negative values."/>
430      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_1_8.MetricReportDefinition"/>
431    </Schema>
432
433    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_1_10">
434      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
435      <Annotation Term="OData.Description" String="This version was created to remove normative language from non-normative descriptions."/>
436      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_1_9.MetricReportDefinition"/>
437    </Schema>
438
439    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_1_11">
440      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
441      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
442      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_1_10.MetricReportDefinition"/>
443    </Schema>
444
445    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_2_0">
446      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
447      <Annotation Term="Redfish.Release" String="2019.1"/>
448
449      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_1_1.MetricReportDefinition">
450        <Property Name="SuppressRepeatedMetricValue" Type="Edm.Boolean">
451          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
452          <Annotation Term="OData.Description" String="An indication of whether any metrics are suppressed from the generated metric report.  If `true`, any metric that equals the same value in the previously generated metric report is suppressed from the current report.  Also, duplicate metrics are suppressed.  If `false`, no metrics are suppressed from the current report.  The current report might contain no metrics if all metrics equal the values in the previously generated metric report."/>
453          <Annotation Term="OData.LongDescription" String="This property shall indicate whether any metrics are suppressed from the generated metric report.  If `true`, any metric that equals the same value in the previously generated metric report is suppressed from the current report.  Also, duplicate metrics are suppressed.  If `false`, no metrics are suppressed from the current report.  The current report may contain no metrics if all metrics equal the values in the previously generated metric report."/>
454        </Property>
455        <Property Name="MetricReportHeartbeatInterval" Type="Edm.Duration">
456          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
457          <Annotation Term="OData.Description" String="The interval at which to send the complete metric report because the Redfish client wants refreshed metric data even when the data has not changed.  This property value is always greater than the recurrence interval of a metric report, and it only applies when the SuppressRepeatedMetricValue property is `true`."/>
458          <Annotation Term="OData.LongDescription" String="The property value shall contain a Redfish duration that describes the time interval between generations of the unsuppressed metric report.  It shall always be a value greater than the RecurrenceInterval property within Schedule and should only apply when the SuppressRepeatedMetricValue property is `true`."/>
459        </Property>
460        <Property Name="MetricReportDefinitionEnabled" Type="Edm.Boolean">
461          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
462          <Annotation Term="OData.Description" String="An indication of whether the generation of new metric reports is enabled."/>
463          <Annotation Term="OData.LongDescription" String="This property shall indicate whether the generation of new metric reports is enabled."/>
464        </Property>
465        <Property Name="Links" Type="MetricReportDefinition.v1_2_0.Links" Nullable="false">
466          <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
467          <Annotation Term="OData.LongDescription" String="This property shall contain links to resources that are related to but are not contained by, or subordinate to, this resource."/>
468        </Property>
469      </EntityType>
470
471      <ComplexType Name="Links" BaseType="Resource.Links">
472        <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
473        <Annotation Term="OData.LongDescription" String="This Redfish Specification-described type shall contain links to resources that are related to but are not contained by, or subordinate to, this resource."/>
474        <NavigationProperty Name="Triggers" Type="Collection(Triggers.Triggers)">
475          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
476          <Annotation Term="OData.Description" String="The triggers that cause this metric report definition to generate a new metric report upon a trigger occurrence when the TriggerActions property contains `RedfishMetricReport`."/>
477          <Annotation Term="OData.LongDescription" String="This property shall contain a set of triggers that cause this metric report to generate a new metric report upon a trigger occurrence when the TriggerActions property contains `RedfishMetricReport`."/>
478          <Annotation Term="OData.AutoExpandReferences"/>
479        </NavigationProperty>
480      </ComplexType>
481    </Schema>
482
483    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_2_1">
484      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
485      <Annotation Term="OData.Description" String="This version was created to correct descriptions in the CalculationAlgorithmEnum enumeration.  It was also created to update descriptions that this schema defines."/>
486      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_2_0.MetricReportDefinition"/>
487    </Schema>
488
489    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_2_2">
490      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
491      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of `OnRequest` metric report definitions with regards to ReportUpdates and ReportActions.  It was also created to clarify the behavior when a metric report definition stops updating a metric report."/>
492      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_2_1.MetricReportDefinition"/>
493    </Schema>
494
495    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_2_3">
496      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
497      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
498      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_2_2.MetricReportDefinition"/>
499    </Schema>
500
501    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_2_4">
502      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
503      <Annotation Term="OData.Description" String="This version was created to mark ReportActions, ReportUpdates, MetricId, and properties in Wildcards as writable."/>
504      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_2_3.MetricReportDefinition"/>
505    </Schema>
506
507    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_2_5">
508      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
509      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
510      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_2_4.MetricReportDefinition"/>
511    </Schema>
512
513    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_2_6">
514      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
515      <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology."/>
516      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_2_5.MetricReportDefinition"/>
517    </Schema>
518
519    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_2_7">
520      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
521      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of the MetricReport property, clarify the identifier formatting for when `NewReport` is configured, and the usage of MetricId."/>
522      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_2_6.MetricReportDefinition"/>
523    </Schema>
524
525    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_2_8">
526      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
527      <Annotation Term="OData.Description" String="This version was created to correct the regular expression pattern for duration properties in JSON Schema and OpenAPI to not allow for negative values."/>
528      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_2_7.MetricReportDefinition"/>
529    </Schema>
530
531    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_2_9">
532      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
533      <Annotation Term="OData.Description" String="This version was created to remove normative language from non-normative descriptions."/>
534      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_2_8.MetricReportDefinition"/>
535    </Schema>
536
537    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_2_10">
538      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
539      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
540      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_2_9.MetricReportDefinition"/>
541    </Schema>
542
543    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_3_0">
544      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
545      <Annotation Term="Redfish.Release" String="2019.2"/>
546
547      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_2_1.MetricReportDefinition">
548        <Property Name="ReportTimespan" Type="Edm.Duration">
549          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
550          <Annotation Term="OData.Description" String="The maximum timespan that a metric report can cover."/>
551          <Annotation Term="OData.LongDescription" String="This property shall contain the maximum timespan that a metric report can cover."/>
552        </Property>
553      </EntityType>
554    </Schema>
555
556    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_3_1">
557      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
558      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of `OnRequest` metric report definitions with regards to ReportUpdates and ReportActions.  It was also created to clarify the behavior when a metric report definition stops updating a metric report.  It was also created to clarify the description for the ReportTimespan property."/>
559      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_3_0.MetricReportDefinition"/>
560    </Schema>
561
562    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_3_2">
563      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
564      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
565      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_3_1.MetricReportDefinition"/>
566    </Schema>
567
568    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_3_3">
569      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
570      <Annotation Term="OData.Description" String="This version was created to mark ReportActions, ReportUpdates, MetricId, and properties in Wildcards as writable."/>
571      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_3_2.MetricReportDefinition"/>
572    </Schema>
573
574    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_3_4">
575      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
576      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
577      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_3_3.MetricReportDefinition"/>
578    </Schema>
579
580    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_3_5">
581      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
582      <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology."/>
583      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_3_4.MetricReportDefinition"/>
584    </Schema>
585
586    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_3_6">
587      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
588      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of the MetricReport property, clarify the identifier formatting for when `NewReport` is configured, and the usage of MetricId."/>
589      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_3_5.MetricReportDefinition"/>
590    </Schema>
591
592    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_3_7">
593      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
594      <Annotation Term="OData.Description" String="This version was created to correct the regular expression pattern for duration properties in JSON Schema and OpenAPI to not allow for negative values."/>
595      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_3_6.MetricReportDefinition"/>
596    </Schema>
597
598    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_3_8">
599      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
600      <Annotation Term="OData.Description" String="This version was created to remove normative language from non-normative descriptions."/>
601      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_3_7.MetricReportDefinition"/>
602    </Schema>
603
604    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_3_9">
605      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
606      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
607      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_3_8.MetricReportDefinition"/>
608    </Schema>
609
610    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_4_0">
611      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
612      <Annotation Term="Redfish.Release" String="2020.4"/>
613
614      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_3_4.MetricReportDefinition"/>
615
616      <ComplexType Name="Metric" BaseType="MetricReportDefinition.v1_0_0.Metric">
617        <Property Name="Oem" Type="Resource.Oem" Nullable="false">
618          <Annotation Term="OData.Description" String="The OEM extension property."/>
619          <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."/>
620        </Property>
621      </ComplexType>
622    </Schema>
623
624    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_4_1">
625      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
626      <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology."/>
627      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_4_0.MetricReportDefinition"/>
628    </Schema>
629
630    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_4_2">
631      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
632      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of the MetricReport property, clarify the identifier formatting for when `NewReport` is configured, and the usage of MetricId."/>
633      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_4_1.MetricReportDefinition"/>
634    </Schema>
635
636    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_4_3">
637      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
638      <Annotation Term="OData.Description" String="This version was created to correct the regular expression pattern for duration properties in JSON Schema and OpenAPI to not allow for negative values."/>
639      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_4_2.MetricReportDefinition"/>
640    </Schema>
641
642    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_4_4">
643      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
644      <Annotation Term="OData.Description" String="This version was created to remove normative language from non-normative descriptions."/>
645      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_4_3.MetricReportDefinition"/>
646    </Schema>
647
648    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MetricReportDefinition.v1_4_5">
649      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
650      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
651      <EntityType Name="MetricReportDefinition" BaseType="MetricReportDefinition.v1_4_4.MetricReportDefinition"/>
652    </Schema>
653
654  </edmx:DataServices>
655</edmx:Edmx>
656