1<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################       -->
4<!--# Redfish Schema:  MessageRegistry v1.4.2                                              -->
5<!--#                                                                                      -->
6<!--# For a detailed change log, see the README file contained in the DSP8010 bundle,      -->
7<!--# available at http://www.dmtf.org/standards/redfish                                   -->
8<!--# Copyright 2014-2020 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/RedfishExtensions_v1.xml">
21    <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
22    <edmx:Include Namespace="Validation.v1_0_0" Alias="Validation"/>
23  </edmx:Reference>
24  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
25    <edmx:Include Namespace="Resource"/>
26    <edmx:Include Namespace="Resource.v1_0_0"/>
27  </edmx:Reference>
28
29  <edmx:DataServices>
30
31    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry">
32      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
33
34      <EntityType Name="MessageRegistry" BaseType="Resource.v1_0_0.Resource" Abstract="true">
35        <Annotation Term="OData.Description" String="The MessageRegistry schema describes all message registries.  It represents the properties for the message registries themselves."/>
36        <Annotation Term="OData.LongDescription" String="This resource shall represent a message registry for a Redfish implementation."/>
37        <Annotation Term="Capabilities.InsertRestrictions">
38          <Record>
39            <PropertyValue Property="Insertable" Bool="false"/>
40          </Record>
41        </Annotation>
42        <Annotation Term="Capabilities.UpdateRestrictions">
43          <Record>
44            <PropertyValue Property="Updatable" Bool="false"/>
45          </Record>
46        </Annotation>
47        <Annotation Term="Capabilities.DeleteRestrictions">
48          <Record>
49            <PropertyValue Property="Deletable" Bool="false"/>
50          </Record>
51        </Annotation>
52      </EntityType>
53    </Schema>
54
55    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_0_0">
56      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
57      <Annotation Term="Redfish.Release" String="1.0"/>
58
59      <EntityType Name="MessageRegistry" BaseType="MessageRegistry.MessageRegistry">
60        <Property Name="Language" Type="Edm.String" Nullable="false">
61          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
62          <Annotation Term="OData.Description" String="The RFC5646-conformant language code for the message registry."/>
63          <Annotation Term="OData.LongDescription" String="This property shall contain an RFC5646-conformant language code."/>
64          <Annotation Term="Redfish.Required"/>
65        </Property>
66        <Property Name="RegistryPrefix" Type="Edm.String" Nullable="false">
67          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
68          <Annotation Term="OData.Description" String="The single-word prefix that is used in forming and decoding MessageIds."/>
69          <Annotation Term="OData.LongDescription" String="This property shall contain the Redfish Specification-defined prefix used in forming and decoding MessageIds that uniquely identifies all messages that belong to this message registry."/>
70          <Annotation Term="Redfish.Required"/>
71        </Property>
72        <Property Name="RegistryVersion" Type="Edm.String" Nullable="false">
73          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
74          <Annotation Term="OData.Description" String="The message registry version in the middle portion of a MessageId."/>
75          <Annotation Term="OData.LongDescription" String="This property shall contain the version of this message registry."/>
76          <Annotation Term="Validation.Pattern" String="^\d+\.\d+\.\d+$"/>
77          <Annotation Term="Redfish.Required"/>
78        </Property>
79        <Property Name="OwningEntity" Type="Edm.String" Nullable="false">
80          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
81          <Annotation Term="OData.Description" String="The organization or company that publishes this message registry."/>
82          <Annotation Term="OData.LongDescription" String="This property shall represent the publisher of this message registry."/>
83          <Annotation Term="Redfish.Required"/>
84        </Property>
85        <Property Name="Messages" Type="MessageRegistry.v1_0_0.MessageProperty" Nullable="false">
86          <Annotation Term="OData.Description" String="The message keys contained in the message registry."/>
87          <Annotation Term="OData.LongDescription" String="This property shall contain the message keys contained in the message registry.  The message keys are the suffix of the MessageId and shall be unique within this message registry."/>
88          <Annotation Term="Redfish.Required"/>
89        </Property>
90      </EntityType>
91
92      <ComplexType Name="MessageProperty" OpenType="true">
93        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
94        <Annotation Term="OData.Description" String="The message keys contained in the message registry."/>
95        <Annotation Term="OData.LongDescription" String="This type shall contain the message keys contained in the message registry.  The message keys are the suffix of the MessageId and shall be unique within this message registry."/>
96        <Annotation Term="Redfish.DynamicPropertyPatterns">
97          <Collection>
98            <Record>
99              <PropertyValue Property="Pattern" String="[A-Za-z0-9]+"/>
100              <PropertyValue Property="Type" String="MessageRegistry.v1_0_0.Message"/>
101            </Record>
102          </Collection>
103        </Annotation>
104      </ComplexType>
105
106      <ComplexType Name="Message">
107        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
108        <Annotation Term="OData.Description" String="This type represents how a message is defined within the message registry."/>
109        <Annotation Term="OData.LongDescription" String="The type shall represent how a message is defined within a message registry."/>
110        <Property Name="Description" Type="Edm.String" Nullable="false">
111          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
112          <Annotation Term="OData.Description" String="A short description of how and when to use this message."/>
113          <Annotation Term="OData.LongDescription" String="This property shall indicate how and when this message is returned by the Redfish service."/>
114          <Annotation Term="Redfish.Required"/>
115        </Property>
116        <Property Name="Message" Type="Edm.String" Nullable="false">
117          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
118          <Annotation Term="OData.Description" String="The actual message."/>
119          <Annotation Term="OData.LongDescription" String="This property shall contain the message to display.  If a %integer is included in part of the string, it shall represent a string substitution for any MessageArgs that accompany the message, in order."/>
120          <Annotation Term="Redfish.Required"/>
121        </Property>
122        <Property Name="Severity" Type="Edm.String" Nullable="false">
123          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
124          <Annotation Term="OData.Description" String="The severity of the message."/>
125          <Annotation Term="OData.LongDescription" String="This property shall contain the severity of the condition resulting in the message, as defined in the 'Status' clause of the Redfish Specification.  Services can replace the severity defined in the message registry with a value more applicable to the implementation in message payloads and event payloads."/>
126          <Annotation Term="Redfish.Required"/>
127          <Annotation Term="Redfish.Revisions">
128            <Collection>
129              <Record>
130                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
131                <PropertyValue Property="Version" String="v1_4_0"/>
132                <PropertyValue Property="Description" String="This property has been deprecated in favor of MessageSeverity, which ties the values to the enumerations defined for the Health property within Status."/>
133              </Record>
134            </Collection>
135          </Annotation>
136        </Property>
137        <Property Name="NumberOfArgs" Type="Edm.Int64" Nullable="false">
138          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
139          <Annotation Term="OData.Description" String="The number of arguments in the message."/>
140          <Annotation Term="OData.LongDescription" String="This property shall contain the number of arguments that are substituted for the locations marked with %&lt;integer&gt; in the message."/>
141          <Annotation Term="Redfish.Required"/>
142          <Annotation Term="Validation.Minimum" Int="0"/>
143        </Property>
144        <Property Name="ParamTypes" Type="Collection(MessageRegistry.v1_0_0.ParamType)" Nullable="false">
145          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
146          <Annotation Term="OData.Description" String="The MessageArg types, in order, for the message."/>
147          <Annotation Term="OData.LongDescription" String="This property shall contain an ordered array of argument data types that match the data types of the MessageArgs."/>
148        </Property>
149        <Property Name="Resolution" Type="Edm.String" Nullable="false">
150          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
151          <Annotation Term="OData.Description" String="Used to provide suggestions on how to resolve the situation that caused the error."/>
152          <Annotation Term="OData.LongDescription" String="This property shall contain the resolution of the message.  Services can replace the resolution defined in the message registry with a more specific resolution in message payloads."/>
153          <Annotation Term="Redfish.Required"/>
154        </Property>
155        <Property Name="Oem" Type="Resource.Oem" Nullable="false">
156          <Annotation Term="OData.Description" String="The OEM extension property."/>
157          <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."/>
158        </Property>
159      </ComplexType>
160
161      <EnumType Name="ParamType">
162        <Member Name="string">
163          <Annotation Term="OData.Description" String="The argument is a string."/>
164        </Member>
165        <Member Name="number">
166          <Annotation Term="OData.Description" String="The argument is a number."/>
167        </Member>
168      </EnumType>
169    </Schema>
170
171    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_0_2">
172      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
173      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
174      <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_0_0.MessageRegistry"/>
175    </Schema>
176
177    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_0_3">
178      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
179      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
180      <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_0_2.MessageRegistry"/>
181    </Schema>
182
183    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_0_4">
184      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
185      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
186      <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_0_3.MessageRegistry"/>
187    </Schema>
188
189    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_0_5">
190      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
191      <Annotation Term="OData.Description" String="This version was created to add descriptions to various enumerated values."/>
192      <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_0_4.MessageRegistry"/>
193    </Schema>
194
195    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_0_6">
196      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
197      <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/>
198      <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_0_5.MessageRegistry"/>
199    </Schema>
200
201    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_0_7">
202      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
203      <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."/>
204      <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_0_6.MessageRegistry"/>
205    </Schema>
206
207    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_0_8">
208      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
209      <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are not included.  It was also created to update descriptions that this schema defines."/>
210      <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_0_7.MessageRegistry"/>
211    </Schema>
212
213    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_0_9">
214      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
215      <Annotation Term="OData.Description" String="This version was created to clarify that Resolution can be overridden by the service."/>
216      <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_0_8.MessageRegistry"/>
217    </Schema>
218
219    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_0_10">
220      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
221      <Annotation Term="OData.Description" String="This version was created to clarify that Severity and MessageSeverity can be overridden by the service."/>
222      <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_0_9.MessageRegistry"/>
223    </Schema>
224
225    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_1_0">
226      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
227      <Annotation Term="Redfish.Release" String="2017.1"/>
228      <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_0_4.MessageRegistry">
229        <Property Name="Actions" Type="MessageRegistry.v1_1_0.Actions" Nullable="false">
230          <Annotation Term="OData.Description" String="The available actions for this resource."/>
231          <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
232        </Property>
233      </EntityType>
234
235      <ComplexType Name="Actions">
236        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
237        <Annotation Term="OData.Description" String="The available actions for this resource."/>
238        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
239        <Property Name="Oem" Type="MessageRegistry.v1_1_0.OemActions" Nullable="false">
240          <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
241          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
242        </Property>
243      </ComplexType>
244
245      <ComplexType Name="OemActions">
246        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
247        <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
248        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
249      </ComplexType>
250    </Schema>
251
252    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_1_1">
253      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
254      <Annotation Term="OData.Description" String="This version was created to add descriptions to various enumerated values."/>
255      <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_1_0.MessageRegistry"/>
256    </Schema>
257
258    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_1_2">
259      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
260      <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/>
261      <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_1_1.MessageRegistry"/>
262    </Schema>
263
264    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_1_3">
265      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
266      <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."/>
267      <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_1_2.MessageRegistry"/>
268    </Schema>
269
270    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_1_4">
271      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
272      <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are not included.  It was also created to update descriptions that this schema defines."/>
273      <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_1_3.MessageRegistry"/>
274    </Schema>
275
276    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_1_5">
277      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
278      <Annotation Term="OData.Description" String="This version was created to clarify that Resolution can be overridden by the service."/>
279      <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_1_4.MessageRegistry"/>
280    </Schema>
281
282    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_1_6">
283      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
284      <Annotation Term="OData.Description" String="This version was created to clarify that Severity and MessageSeverity can be overridden by the service."/>
285      <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_1_5.MessageRegistry"/>
286    </Schema>
287
288    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_2_0">
289      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
290      <Annotation Term="Redfish.Release" String="2018.2"/>
291      <Annotation Term="OData.Description" String="This version was created to add ClearingLogic to a MessageRegistry."/>
292
293      <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_1_2.MessageRegistry"/>
294
295      <ComplexType Name="Message" BaseType="MessageRegistry.v1_0_0.Message">
296        <Property Name="ClearingLogic" Type="MessageRegistry.v1_2_0.ClearingLogic" Nullable="false">
297          <Annotation Term="OData.Description" String="The clearing logic associated with this message.  The properties within indicate that what messages are cleared by this message as well as under what conditions."/>
298          <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
299        </Property>
300      </ComplexType>
301
302      <ComplexType Name="ClearingLogic">
303        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
304        <Annotation Term="OData.Description" String="The clearing logic associated with this message.  The properties within indicate that what messages are cleared by this message as well as under what conditions."/>
305        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
306        <Property Name="ClearsIf" Type="MessageRegistry.v1_2_0.ClearingType" Nullable="true">
307          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
308          <Annotation Term="OData.Description" String="The condition when the event is cleared."/>
309          <Annotation Term="OData.LongDescription" String="This property shall contain the condition the event is cleared."/>
310        </Property>
311        <Property Name="ClearsMessage" Type="Collection(Edm.String)" Nullable="true">
312          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
313          <Annotation Term="OData.Description" String="The array of MessageIds that this message clears when the other conditions are met."/>
314          <Annotation Term="OData.LongDescription" String="This property shall contain an array of MessageIds that this message clears when the other conditions are met.  The MessageIds shall not include the message registry name or version and shall contain only the MessageId portion.  MessageIds shall not refer to other message registries."/>
315        </Property>
316        <Property Name="ClearsAll" Type="Edm.Boolean" Nullable="true">
317          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
318          <Annotation Term="OData.Description" String="An indication of whether all prior conditions and messages are cleared, provided the ClearsIf condition is met."/>
319          <Annotation Term="OData.LongDescription" String="This property shall indicate whether all prior conditions and messages are cleared, provided the ClearsIf condition is met."/>
320        </Property>
321      </ComplexType>
322
323      <EnumType Name="ClearingType">
324        <Annotation Term="OData.Description" String="The conditions when an event is cleared."/>
325        <Member Name="SameOriginOfCondition">
326          <Annotation Term="OData.Description" String="This enumeration shall describe when the message for an event is cleared by the other messages in the ClearingLogic property, provided the OriginOfCondition for both events are the same."/>
327        </Member>
328      </EnumType>
329    </Schema>
330
331    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_2_1">
332      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
333      <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.  It was also created to add a missing term on ClearingLogic to not allow it to be null."/>
334      <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_2_0.MessageRegistry"/>
335    </Schema>
336
337    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_2_2">
338      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
339      <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are not included.  It was also created to update descriptions that this schema defines."/>
340      <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_2_1.MessageRegistry"/>
341    </Schema>
342
343    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_2_3">
344      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
345      <Annotation Term="OData.Description" String="This version was created to clarify that Resolution can be overridden by the service."/>
346      <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_2_2.MessageRegistry"/>
347    </Schema>
348
349    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_2_4">
350      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
351      <Annotation Term="OData.Description" String="This version was created to clarify that Severity and MessageSeverity can be overridden by the service."/>
352      <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_2_3.MessageRegistry"/>
353    </Schema>
354
355    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_3_0">
356      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
357      <Annotation Term="Redfish.Release" String="2019.1"/>
358      <Annotation Term="OData.Description" String="This version was created to add LongDescription, ArgDescriptions, and ArgLongDescriptions to a message registry.  It also corrected terminology in descriptions to consistently use `argument` instead of `parameter`."/>
359
360      <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_2_1.MessageRegistry"/>
361
362      <ComplexType Name="Message" BaseType="MessageRegistry.v1_2_0.Message">
363        <Property Name="LongDescription" Type="Edm.String">
364          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
365          <Annotation Term="OData.Description" String="The normative language that describes this message's usage."/>
366          <Annotation Term="OData.LongDescription" String="This property shall contain the normative language that describes this message's usage in a Redfish implementation."/>
367        </Property>
368        <Property Name="ArgDescriptions" Type="Collection(Edm.String)">
369          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
370          <Annotation Term="OData.Description" String="The MessageArg descriptions, in order, used for this message."/>
371          <Annotation Term="OData.LongDescription" String="This property shall contain an ordered array of text describing each argument used as substitution in the message."/>
372        </Property>
373        <Property Name="ArgLongDescriptions" Type="Collection(Edm.String)">
374          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
375          <Annotation Term="OData.Description" String="The MessageArg normative descriptions, in order, used for this message."/>
376          <Annotation Term="OData.LongDescription" String="This property shall contain an ordered array of normative language for each argument used as substitution in the message."/>
377        </Property>
378      </ComplexType>
379    </Schema>
380
381    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_3_1">
382      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
383      <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are not included.  It was also created to update descriptions that this schema defines."/>
384      <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_3_0.MessageRegistry"/>
385    </Schema>
386
387    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_3_2">
388      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
389      <Annotation Term="OData.Description" String="This version was created to clarify that Resolution can be overridden by the service."/>
390      <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_3_1.MessageRegistry"/>
391    </Schema>
392
393    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_3_3">
394      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
395      <Annotation Term="OData.Description" String="This version was created to clarify that Severity and MessageSeverity can be overridden by the service."/>
396      <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_3_2.MessageRegistry"/>
397    </Schema>
398
399    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_4_0">
400      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
401      <Annotation Term="Redfish.Release" String="2020.1"/>
402      <Annotation Term="OData.Description" String="This version was created to deprecate the Severity property and replace it with the MessageSeverity property, in order to tie the values to those used for the Health property within Status."/>
403
404      <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_3_1.MessageRegistry"/>
405
406      <ComplexType Name="Message" BaseType="MessageRegistry.v1_3_0.Message">
407        <Property Name="MessageSeverity" Type="Resource.Health">
408          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
409          <Annotation Term="OData.Description" String="The severity of the message."/>
410          <Annotation Term="OData.LongDescription" String="This property shall contain the severity of the message.  Services can replace the severity defined in the message registry with a value more applicable to the implementation in message payloads and event payloads."/>
411          <Annotation Term="Redfish.Required"/>
412        </Property>
413      </ComplexType>
414    </Schema>
415
416    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_4_1">
417      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
418      <Annotation Term="OData.Description" String="This version was created to clarify that Resolution can be overridden by the service."/>
419      <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_4_0.MessageRegistry"/>
420    </Schema>
421
422    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_4_2">
423      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
424      <Annotation Term="OData.Description" String="This version was created to clarify that Severity and MessageSeverity can be overridden by the service."/>
425      <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_4_1.MessageRegistry"/>
426    </Schema>
427
428  </edmx:DataServices>
429</edmx:Edmx>
430