1<?xml version="1.0" encoding="UTF-8"?> 2<!----> 3<!--################################################################################ --> 4<!--# Redfish Schema: MessageRegistry v1.6.3 --> 5<!--# --> 6<!--# For a detailed change log, see the README file contained in the DSP8010 bundle, --> 7<!--# available at http://www.dmtf.org/standards/redfish --> 8<!--# Copyright 2014-2024 DMTF. --> 9<!--# For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright --> 10<!--################################################################################ --> 11<!----> 12<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0"> 13 14 <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Core.V1.xml"> 15 <edmx:Include Namespace="Org.OData.Core.V1" Alias="OData"/> 16 </edmx:Reference> 17 <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Capabilities.V1.xml"> 18 <edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="Capabilities"/> 19 </edmx:Reference> 20 <edmx:Reference Uri="http://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 <Annotation Term="Redfish.Language" String="en"/> 34 35 <EntityType Name="MessageRegistry" BaseType="Resource.v1_0_0.Resource" Abstract="true"> 36 <Annotation Term="OData.Description" String="The `MessageRegistry` schema describes all message registries. It represents the properties for the message registries themselves."/> 37 <Annotation Term="OData.LongDescription" String="This resource shall represent a message registry for a Redfish implementation."/> 38 <Annotation Term="Capabilities.InsertRestrictions"> 39 <Record> 40 <PropertyValue Property="Insertable" Bool="false"/> 41 </Record> 42 </Annotation> 43 <Annotation Term="Capabilities.UpdateRestrictions"> 44 <Record> 45 <PropertyValue Property="Updatable" Bool="false"/> 46 </Record> 47 </Annotation> 48 <Annotation Term="Capabilities.DeleteRestrictions"> 49 <Record> 50 <PropertyValue Property="Deletable" Bool="false"/> 51 </Record> 52 </Annotation> 53 </EntityType> 54 </Schema> 55 56 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_0_0"> 57 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 58 <Annotation Term="Redfish.Release" String="1.0"/> 59 60 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.MessageRegistry"> 61 <Property Name="Language" Type="Edm.String" Nullable="false"> 62 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 63 <Annotation Term="OData.Description" String="The RFC5646-conformant language code for the message registry."/> 64 <Annotation Term="OData.LongDescription" String="This property shall contain an RFC5646-conformant language code."/> 65 <Annotation Term="Redfish.Required"/> 66 </Property> 67 <Property Name="RegistryPrefix" Type="Edm.String" Nullable="false"> 68 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 69 <Annotation Term="OData.Description" String="The single-word prefix that is used in forming and decoding `MessageId` values."/> 70 <Annotation Term="OData.LongDescription" String="This property shall contain the Redfish Specification-defined prefix used in forming and decoding `MessageId` values that uniquely identifies all messages that belong to this message registry."/> 71 <Annotation Term="Redfish.Required"/> 72 </Property> 73 <Property Name="RegistryVersion" Type="Edm.String" Nullable="false"> 74 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 75 <Annotation Term="OData.Description" String="The message registry version in the middle portion of a `MessageId`."/> 76 <Annotation Term="OData.LongDescription" String="This property shall contain the version of this message registry."/> 77 <Annotation Term="Validation.Pattern" String="^\d+\.\d+\.\d+$"/> 78 <Annotation Term="Redfish.Required"/> 79 </Property> 80 <Property Name="OwningEntity" Type="Edm.String" Nullable="false"> 81 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 82 <Annotation Term="OData.Description" String="The organization or company that publishes this message registry."/> 83 <Annotation Term="OData.LongDescription" String="This property shall represent the publisher of this message registry."/> 84 <Annotation Term="Redfish.Required"/> 85 </Property> 86 <Property Name="Messages" Type="MessageRegistry.v1_0_0.MessageProperty" Nullable="false"> 87 <Annotation Term="OData.Description" String="The message keys contained in the message registry."/> 88 <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."/> 89 <Annotation Term="Redfish.Required"/> 90 </Property> 91 </EntityType> 92 93 <ComplexType Name="MessageProperty" OpenType="true"> 94 <Annotation Term="OData.AdditionalProperties" Bool="false"/> 95 <Annotation Term="OData.Description" String="The message keys contained in the message registry."/> 96 <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."/> 97 <Annotation Term="Redfish.DynamicPropertyPatterns"> 98 <Collection> 99 <Record> 100 <PropertyValue Property="Pattern" String="[A-Za-z0-9]+"/> 101 <PropertyValue Property="Type" String="MessageRegistry.v1_0_0.Message"/> 102 </Record> 103 </Collection> 104 </Annotation> 105 </ComplexType> 106 107 <ComplexType Name="Message"> 108 <Annotation Term="OData.AdditionalProperties" Bool="false"/> 109 <Annotation Term="OData.Description" String="This type represents how a message is defined within the message registry."/> 110 <Annotation Term="OData.LongDescription" String="The type shall represent how a message is defined within a message registry."/> 111 <Property Name="Description" Type="Edm.String" Nullable="false"> 112 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 113 <Annotation Term="OData.Description" String="A short description of how and when to use this message."/> 114 <Annotation Term="OData.LongDescription" String="This property shall indicate how and when this message is returned by the Redfish service."/> 115 <Annotation Term="Redfish.Required"/> 116 </Property> 117 <Property Name="Message" Type="Edm.String" Nullable="false"> 118 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 119 <Annotation Term="OData.Description" String="The actual message."/> 120 <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."/> 121 <Annotation Term="Redfish.Required"/> 122 </Property> 123 <Property Name="Severity" Type="Edm.String" Nullable="false"> 124 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 125 <Annotation Term="OData.Description" String="The severity of the message."/> 126 <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."/> 127 <Annotation Term="Redfish.Required"/> 128 <Annotation Term="Redfish.Revisions"> 129 <Collection> 130 <Record> 131 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/> 132 <PropertyValue Property="Version" String="v1_4_0"/> 133 <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`."/> 134 </Record> 135 </Collection> 136 </Annotation> 137 </Property> 138 <Property Name="NumberOfArgs" Type="Edm.Int64" Nullable="false"> 139 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 140 <Annotation Term="OData.Description" String="The number of arguments in the message."/> 141 <Annotation Term="OData.LongDescription" String="This property shall contain the number of arguments that are substituted for the locations marked with %<integer> in the message."/> 142 <Annotation Term="Redfish.Required"/> 143 <Annotation Term="Validation.Minimum" Int="0"/> 144 </Property> 145 <Property Name="ParamTypes" Type="Collection(MessageRegistry.v1_0_0.ParamType)" Nullable="false"> 146 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 147 <Annotation Term="OData.Description" String="The data types of the message arguments, prior to conversion to strings for inclusion in a message."/> 148 <Annotation Term="OData.LongDescription" String="This property shall contain an ordered array of the data types of the values in `MessageArgs`, prior to their conversion to strings for inclusion in a message."/> 149 </Property> 150 <Property Name="Resolution" Type="Edm.String" Nullable="false"> 151 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 152 <Annotation Term="OData.Description" String="Used to provide suggestions on how to resolve the situation that caused the error."/> 153 <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."/> 154 <Annotation Term="Redfish.Required"/> 155 </Property> 156 <Property Name="Oem" Type="Resource.Oem" Nullable="false"> 157 <Annotation Term="OData.Description" String="The OEM extension property."/> 158 <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."/> 159 </Property> 160 </ComplexType> 161 162 <EnumType Name="ParamType"> 163 <Member Name="string"> 164 <Annotation Term="OData.Description" String="The argument is a string."/> 165 </Member> 166 <Member Name="number"> 167 <Annotation Term="OData.Description" String="The argument is a number converted to a string."/> 168 </Member> 169 </EnumType> 170 </Schema> 171 172 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_0_2"> 173 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 174 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/> 175 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_0_0.MessageRegistry"/> 176 </Schema> 177 178 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_0_3"> 179 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 180 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/> 181 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_0_2.MessageRegistry"/> 182 </Schema> 183 184 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_0_4"> 185 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 186 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/> 187 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_0_3.MessageRegistry"/> 188 </Schema> 189 190 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_0_5"> 191 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 192 <Annotation Term="OData.Description" String="This version was created to add descriptions to various enumerated values."/> 193 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_0_4.MessageRegistry"/> 194 </Schema> 195 196 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_0_6"> 197 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 198 <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."/> 199 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_0_5.MessageRegistry"/> 200 </Schema> 201 202 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_0_7"> 203 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 204 <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."/> 205 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_0_6.MessageRegistry"/> 206 </Schema> 207 208 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_0_8"> 209 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 210 <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."/> 211 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_0_7.MessageRegistry"/> 212 </Schema> 213 214 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_0_9"> 215 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 216 <Annotation Term="OData.Description" String="This version was created to clarify that `Resolution` can be overridden by the service."/> 217 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_0_8.MessageRegistry"/> 218 </Schema> 219 220 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_0_10"> 221 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 222 <Annotation Term="OData.Description" String="This version was created to clarify that `Severity` and `MessageSeverity` can be overridden by the service."/> 223 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_0_9.MessageRegistry"/> 224 </Schema> 225 226 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_0_11"> 227 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 228 <Annotation Term="OData.Description" String="This version was created to improve the description of message argument-related properties by explaining that number-type arguments are converted to strings prior to their consumption in a message."/> 229 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_0_10.MessageRegistry"/> 230 </Schema> 231 232 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_0_12"> 233 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 234 <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references. It was also created to correct various typographical errors."/> 235 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_0_11.MessageRegistry"/> 236 </Schema> 237 238 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_1_0"> 239 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 240 <Annotation Term="Redfish.Release" String="2017.1"/> 241 242 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_0_4.MessageRegistry"> 243 <Property Name="Actions" Type="MessageRegistry.v1_1_0.Actions" Nullable="false"> 244 <Annotation Term="OData.Description" String="The available actions for this resource."/> 245 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/> 246 </Property> 247 </EntityType> 248 249 <ComplexType Name="Actions"> 250 <Annotation Term="OData.AdditionalProperties" Bool="false"/> 251 <Annotation Term="OData.Description" String="The available actions for this resource."/> 252 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/> 253 <Property Name="Oem" Type="MessageRegistry.v1_1_0.OemActions" Nullable="false"> 254 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/> 255 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/> 256 </Property> 257 </ComplexType> 258 259 <ComplexType Name="OemActions"> 260 <Annotation Term="OData.AdditionalProperties" Bool="true"/> 261 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/> 262 <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/> 263 </ComplexType> 264 </Schema> 265 266 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_1_1"> 267 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 268 <Annotation Term="OData.Description" String="This version was created to add descriptions to various enumerated values."/> 269 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_1_0.MessageRegistry"/> 270 </Schema> 271 272 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_1_2"> 273 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 274 <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."/> 275 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_1_1.MessageRegistry"/> 276 </Schema> 277 278 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_1_3"> 279 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 280 <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."/> 281 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_1_2.MessageRegistry"/> 282 </Schema> 283 284 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_1_4"> 285 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 286 <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."/> 287 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_1_3.MessageRegistry"/> 288 </Schema> 289 290 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_1_5"> 291 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 292 <Annotation Term="OData.Description" String="This version was created to clarify that `Resolution` can be overridden by the service."/> 293 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_1_4.MessageRegistry"/> 294 </Schema> 295 296 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_1_6"> 297 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 298 <Annotation Term="OData.Description" String="This version was created to clarify that `Severity` and `MessageSeverity` can be overridden by the service."/> 299 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_1_5.MessageRegistry"/> 300 </Schema> 301 302 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_1_7"> 303 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 304 <Annotation Term="OData.Description" String="This version was created to improve the description of message argument-related properties by explaining that number-type arguments are converted to strings prior to their consumption in a message."/> 305 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_1_6.MessageRegistry"/> 306 </Schema> 307 308 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_1_8"> 309 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 310 <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references. It was also created to correct various typographical errors."/> 311 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_1_7.MessageRegistry"/> 312 </Schema> 313 314 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_2_0"> 315 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 316 <Annotation Term="Redfish.Release" String="2018.2"/> 317 318 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_1_2.MessageRegistry"/> 319 320 <ComplexType Name="Message" BaseType="MessageRegistry.v1_0_0.Message"> 321 <Property Name="ClearingLogic" Type="MessageRegistry.v1_2_0.ClearingLogic" Nullable="false"> 322 <Annotation Term="OData.Description" String="The clearing logic associated with this message. The properties within indicate the events, specified by message keys for other messages in this registry, that are cleared by this message with optional conditions."/> 323 <Annotation Term="OData.LongDescription" String="This property shall contain the clearing logic associated with this message. Clearing in this context deasserts the event rather than removes the event from a log."/> 324 </Property> 325 </ComplexType> 326 327 <ComplexType Name="ClearingLogic"> 328 <Annotation Term="OData.AdditionalProperties" Bool="false"/> 329 <Annotation Term="OData.Description" String="The clearing logic associated with a message. The properties within indicate the events, specified by message keys for other messages in this registry, that are cleared by a message with optional conditions."/> 330 <Annotation Term="OData.LongDescription" String="This type shall contain the clearing logic associated with a message."/> 331 <Property Name="ClearsIf" Type="MessageRegistry.v1_2_0.ClearingType"> 332 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 333 <Annotation Term="OData.Description" String="The condition required to clear the logged events specified by other properties in this object when this message is received."/> 334 <Annotation Term="OData.LongDescription" String="This property shall contain the condition required to clear the logged events specified by other properties in this object when this message is received. If not present, no condition is checked prior to clearing logged events when this message is received."/> 335 </Property> 336 <Property Name="ClearsMessage" Type="Collection(Edm.String)"> 337 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 338 <Annotation Term="OData.Description" String="An array of message keys for logged events that are cleared when this message is received. If conditional properties are present, such as the `ClearsIf` property, the specified conditions are required to clear the logged events with these message keys."/> 339 <Annotation Term="OData.LongDescription" String="This property shall contain an array of message keys for logged events that are cleared when this message is received. If conditional properties are present, such as the `ClearsIf` property, the specified conditions shall be required to clear the logged events with these message keys. This property shall contain message keys, without message registry names and versions, as defined in the 'MessageId format' clause of the Redfish Specification. This property shall not reference message keys in other message registries."/> 340 </Property> 341 <Property Name="ClearsAll" Type="Edm.Boolean"> 342 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 343 <Annotation Term="OData.Description" String="Indicates whether all logged events containing messages from this message registry are cleared when this message is received. If conditional properties are present, such as the `ClearsIf` property, the specified conditions shall be required to clear the logged events."/> 344 <Annotation Term="OData.LongDescription" String="This property shall indicate whether all logged events containing messages from this message registry are cleared when this message is received. If conditional properties are present, such as the `ClearsIf` property, the specified conditions are required to clear the logged events."/> 345 </Property> 346 </ComplexType> 347 348 <EnumType Name="ClearingType"> 349 <Member Name="SameOriginOfCondition"> 350 <Annotation Term="OData.Description" String="Indicates that a logged event is cleared by a message if the `OriginOfCondition` for both events are the same."/> 351 <Annotation Term="OData.LongDescription" String="This value shall indicate that a logged event is cleared by a message if the `OriginOfCondition` for both events are the same."/> 352 </Member> 353 </EnumType> 354 </Schema> 355 356 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_2_1"> 357 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 358 <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`."/> 359 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_2_0.MessageRegistry"/> 360 </Schema> 361 362 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_2_2"> 363 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 364 <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."/> 365 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_2_1.MessageRegistry"/> 366 </Schema> 367 368 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_2_3"> 369 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 370 <Annotation Term="OData.Description" String="This version was created to clarify that `Resolution` can be overridden by the service."/> 371 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_2_2.MessageRegistry"/> 372 </Schema> 373 374 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_2_4"> 375 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 376 <Annotation Term="OData.Description" String="This version was created to clarify that `Severity` and `MessageSeverity` can be overridden by the service."/> 377 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_2_3.MessageRegistry"/> 378 </Schema> 379 380 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_2_5"> 381 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 382 <Annotation Term="OData.Description" String="This version was created to improve the description of message argument-related properties by explaining that number-type arguments are converted to strings prior to their consumption in a message. It was also created to remove normative language from non-normative descriptions."/> 383 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_2_4.MessageRegistry"/> 384 </Schema> 385 386 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_2_6"> 387 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 388 <Annotation Term="OData.Description" String="This version was created to improve clearing logic descriptions. It was also created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references. It was also created to correct various typographical errors."/> 389 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_2_5.MessageRegistry"/> 390 </Schema> 391 392 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_3_0"> 393 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 394 <Annotation Term="Redfish.Release" String="2019.1"/> 395 396 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_2_1.MessageRegistry"/> 397 398 <ComplexType Name="Message" BaseType="MessageRegistry.v1_2_0.Message"> 399 <Property Name="LongDescription" Type="Edm.String"> 400 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 401 <Annotation Term="OData.Description" String="The normative language that describes this message's usage."/> 402 <Annotation Term="OData.LongDescription" String="This property shall contain the normative language that describes this message's usage in a Redfish implementation."/> 403 </Property> 404 <Property Name="ArgDescriptions" Type="Collection(Edm.String)"> 405 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 406 <Annotation Term="OData.Description" String="The `MessageArgs` descriptions, in order, used for this message."/> 407 <Annotation Term="OData.LongDescription" String="This property shall contain an ordered array of text describing each argument used as substitution in the message."/> 408 </Property> 409 <Property Name="ArgLongDescriptions" Type="Collection(Edm.String)"> 410 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 411 <Annotation Term="OData.Description" String="The `MessageArgs` normative descriptions, in order, used for this message."/> 412 <Annotation Term="OData.LongDescription" String="This property shall contain an ordered array of normative language for each argument used as substitution in the message."/> 413 </Property> 414 </ComplexType> 415 </Schema> 416 417 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_3_1"> 418 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 419 <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."/> 420 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_3_0.MessageRegistry"/> 421 </Schema> 422 423 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_3_2"> 424 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 425 <Annotation Term="OData.Description" String="This version was created to clarify that `Resolution` can be overridden by the service."/> 426 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_3_1.MessageRegistry"/> 427 </Schema> 428 429 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_3_3"> 430 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 431 <Annotation Term="OData.Description" String="This version was created to clarify that `Severity` and `MessageSeverity` can be overridden by the service."/> 432 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_3_2.MessageRegistry"/> 433 </Schema> 434 435 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_3_4"> 436 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 437 <Annotation Term="OData.Description" String="This version was created to improve the description of message argument-related properties by explaining that number-type arguments are converted to strings prior to their consumption in a message. It was also created to remove normative language from non-normative descriptions."/> 438 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_3_3.MessageRegistry"/> 439 </Schema> 440 441 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_3_5"> 442 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 443 <Annotation Term="OData.Description" String="This version was created to improve clearing logic descriptions. It was also created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references. It was also created to correct various typographical errors."/> 444 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_3_4.MessageRegistry"/> 445 </Schema> 446 447 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_4_0"> 448 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 449 <Annotation Term="Redfish.Release" String="2020.1"/> 450 <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`."/> 451 452 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_3_1.MessageRegistry"/> 453 454 <ComplexType Name="Message" BaseType="MessageRegistry.v1_3_0.Message"> 455 <Property Name="MessageSeverity" Type="Resource.Health"> 456 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 457 <Annotation Term="OData.Description" String="The severity of the message."/> 458 <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."/> 459 <Annotation Term="Redfish.Required"/> 460 </Property> 461 </ComplexType> 462 </Schema> 463 464 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_4_1"> 465 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 466 <Annotation Term="OData.Description" String="This version was created to clarify that `Resolution` can be overridden by the service."/> 467 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_4_0.MessageRegistry"/> 468 </Schema> 469 470 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_4_2"> 471 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 472 <Annotation Term="OData.Description" String="This version was created to clarify that `Severity` and `MessageSeverity` can be overridden by the service."/> 473 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_4_1.MessageRegistry"/> 474 </Schema> 475 476 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_4_3"> 477 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 478 <Annotation Term="OData.Description" String="This version was created to improve the description of message argument-related properties by explaining that number-type arguments are converted to strings prior to their consumption in a message. It was also created to remove normative language from non-normative descriptions."/> 479 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_4_2.MessageRegistry"/> 480 </Schema> 481 482 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_4_4"> 483 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 484 <Annotation Term="OData.Description" String="This version was created to improve clearing logic descriptions. It was also created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references. It was also created to correct various typographical errors."/> 485 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_4_3.MessageRegistry"/> 486 </Schema> 487 488 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_5_0"> 489 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 490 <Annotation Term="Redfish.Release" String="2021.3"/> 491 <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`."/> 492 493 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_4_2.MessageRegistry"/> 494 495 <ComplexType Name="Message" BaseType="MessageRegistry.v1_4_0.Message"> 496 <Property Name="VersionAdded" Type="Edm.String"> 497 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 498 <Annotation Term="Validation.Pattern" String="^\d+\.\d+\.\d+$"/> 499 <Annotation Term="OData.Description" String="The registry version which added this message."/> 500 <Annotation Term="OData.LongDescription" String="This property shall contain the version of the message registry when the message was added. This property shall not appear for messages created at version `1.0.0` of a message registry."/> 501 </Property> 502 <Property Name="Deprecated" Type="Edm.String"> 503 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 504 <Annotation Term="OData.Description" String="The reason the message has been deprecated."/> 505 <Annotation Term="OData.LongDescription" String="This property shall indicate that a message is deprecated. The value of the string should explain the deprecation, including reference to a new message or messages to be used. The message can be supported in new and existing implementations, but usage in new implementations is discouraged. Deprecated messages are likely to be removed in a future major version of the message registry. The `ReplacedBy` property may be used to provide a reference to a replacement message definition."/> 506 </Property> 507 <Property Name="VersionDeprecated" Type="Edm.String"> 508 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 509 <Annotation Term="Validation.Pattern" String="^\d+\.\d+\.\d+$"/> 510 <Annotation Term="OData.Description" String="The registry version when the message was deprecated."/> 511 <Annotation Term="OData.LongDescription" String="This property shall contain the version of the registry when the message was deprecated. This property shall not appear if the message has not been deprecated."/> 512 </Property> 513 </ComplexType> 514 </Schema> 515 516 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_5_1"> 517 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 518 <Annotation Term="OData.Description" String="This version was created to improve the description of message argument-related properties by explaining that number-type arguments are converted to strings prior to their consumption in a message. It was also created to remove normative language from non-normative descriptions."/> 519 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_5_0.MessageRegistry"/> 520 </Schema> 521 522 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_5_2"> 523 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 524 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 525 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_5_1.MessageRegistry"/> 526 </Schema> 527 528 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_5_3"> 529 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 530 <Annotation Term="OData.Description" String="This version was created to improve clearing logic descriptions. It was also created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references. It was also created to correct various typographical errors."/> 531 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_5_2.MessageRegistry"/> 532 </Schema> 533 534 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_6_0"> 535 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 536 <Annotation Term="Redfish.Release" String="2022.3"/> 537 538 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_5_0.MessageRegistry"/> 539 540 <ComplexType Name="Message" BaseType="MessageRegistry.v1_5_0.Message"> 541 <Property Name="ReplacedBy" Type="Edm.String"> 542 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 543 <Annotation Term="Validation.Pattern" String="^[A-Z]\w+\.[A-Z]\w+$"/> 544 <Annotation Term="OData.Description" String="The message identifier that replaces this message."/> 545 <Annotation Term="OData.LongDescription" String="This property shall contain the message registry and message key, in the `MessageRegistryPrefix.MessageKey` format, that identifies the message that replaces this message. This property may be used to indicate replacement for a deprecated message, including cases where a standardized version replaces an OEM-created message."/> 546 </Property> 547 <Property Name="MapsToGeneralMessages" Type="Collection(Edm.String)"> 548 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 549 <Annotation Term="Validation.Pattern" String="^[A-Z]\w+\.[A-Z]\w+$"/> 550 <Annotation Term="OData.Description" String="The general or less-specific messages related to this message."/> 551 <Annotation Term="OData.LongDescription" String="This property shall indicate that this message maps to general or less-specific messages that duplicates information about the condition that generated this message. Services may issue the referenced messages along with this message to provide consistency for clients. The array shall contain `MessageRegistryPrefix.MessageKey` formatted values that describe the message registry and message key used to identify the messages."/> 552 </Property> 553 </ComplexType> 554 </Schema> 555 556 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_6_1"> 557 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 558 <Annotation Term="OData.Description" String="This version was created to improve the description of message argument-related properties by explaining that number-type arguments are converted to strings prior to their consumption in a message. It was also created to remove normative language from non-normative descriptions."/> 559 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_6_0.MessageRegistry"/> 560 </Schema> 561 562 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_6_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="MessageRegistry" BaseType="MessageRegistry.v1_6_1.MessageRegistry"/> 566 </Schema> 567 568 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="MessageRegistry.v1_6_3"> 569 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 570 <Annotation Term="OData.Description" String="This version was created to improve clearing logic descriptions. It was also created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references. It was also created to correct various typographical errors."/> 571 <EntityType Name="MessageRegistry" BaseType="MessageRegistry.v1_6_2.MessageRegistry"/> 572 </Schema> 573 574 </edmx:DataServices> 575</edmx:Edmx> 576