blob: 92007d76fbb640d865a4741a25fa05fc78299734 [file] [log] [blame]
Jason M. Billsea4aa752018-06-05 13:29:11 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################ -->
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -05004<!--# Redfish Schema: Event v1.6.0 -->
Jason M. Billsea4aa752018-06-05 13:29:11 -07005<!--# -->
6<!--# For a detailed change log, see the README file contained in the DSP8010 bundle, -->
7<!--# available at http://www.dmtf.org/standards/redfish -->
Gunnar Millsa778c022020-05-12 12:20:36 -05008<!--# Copyright 2014-2020 DMTF. -->
Jason M. Billsea4aa752018-06-05 13:29:11 -07009<!--# 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="Event">
32 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
33
34 <EntityType Name="Event" BaseType="Resource.v1_0_0.Resource" Abstract="true">
Gunnar Millsa778c022020-05-12 12:20:36 -050035 <Annotation Term="OData.Description" String="The Event schema describes the JSON payload received by an event destination, which has subscribed to event notification, when events occur. This resource contains data about events, including descriptions, severity, and a message identifier to a message registry that can be accessed for further information."/>
36 <Annotation Term="OData.LongDescription" String="This resource contains an event for a Redfish implementation."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070037 <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
54 <EnumType Name="EventType">
Marri Devender Raod45d2d02019-01-21 10:11:34 -060055 <Annotation Term="Redfish.Revisions">
56 <Collection>
57 <Record>
58 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
59 <PropertyValue Property="Version" String="v1_3_0"/>
Ed Tanouscb103132019-10-08 11:34:22 -070060 <PropertyValue Property="Description" String="Starting with Redfish Specification v1.6 (Event v1.3), subscriptions are based on the RegistryPrefix and ResourceType properties and not on the EventType property."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060061 </Record>
62 </Collection>
63 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -070064 <Member Name="StatusChange">
Gunnar Millsa778c022020-05-12 12:20:36 -050065 <Annotation Term="OData.Description" String="The status of a resource has changed."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070066 </Member>
67 <Member Name="ResourceUpdated">
Gunnar Millsa778c022020-05-12 12:20:36 -050068 <Annotation Term="OData.Description" String="A resource has been updated."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070069 </Member>
70 <Member Name="ResourceAdded">
Gunnar Millsa778c022020-05-12 12:20:36 -050071 <Annotation Term="OData.Description" String="A resource has been added."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070072 </Member>
73 <Member Name="ResourceRemoved">
Gunnar Millsa778c022020-05-12 12:20:36 -050074 <Annotation Term="OData.Description" String="A resource has been removed."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070075 </Member>
76 <Member Name="Alert">
Ed Tanouscb103132019-10-08 11:34:22 -070077 <Annotation Term="OData.Description" String="A condition requires attention."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070078 </Member>
Ed Tanous530520e2019-01-02 13:41:37 -080079 <Member Name="MetricReport">
Gunnar Millsa778c022020-05-12 12:20:36 -050080 <Annotation Term="OData.Description" String="The telemetry service is sending a metric report."/>
81 <Annotation Term="OData.LongDescription" String="Events of type `MetricReport` shall be sent to a client in accordance with the MetricReport schema definition."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060082 <Annotation Term="Redfish.Revisions">
83 <Collection>
84 <Record>
85 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
86 <PropertyValue Property="Version" String="v1_3_0"/>
87 </Record>
88 </Collection>
89 </Annotation>
Ed Tanous530520e2019-01-02 13:41:37 -080090 </Member>
Ed Tanouscb103132019-10-08 11:34:22 -070091 <Member Name="Other">
Gunnar Millsa778c022020-05-12 12:20:36 -050092 <Annotation Term="OData.Description" String="Because EventType is deprecated as of Redfish Specification v1.6, the event is based on a registry or resource but not an EventType."/>
93 <Annotation Term="OData.LongDescription" String="Events of type `Other` shall be sent to a client in accordance with subscriptions to RegistryPrefixes or ResourceTypes."/>
Ed Tanouscb103132019-10-08 11:34:22 -070094 <Annotation Term="Redfish.Revisions">
95 <Collection>
96 <Record>
97 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
98 <PropertyValue Property="Version" String="v1_4_0"/>
99 </Record>
100 </Collection>
101 </Annotation>
102 </Member>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700103 </EnumType>
104
105 </Schema>
106
107 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_0_0">
108 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600109 <Annotation Term="Redfish.Release" String="1.0"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700110
111 <EntityType Name="Event" BaseType="Event.Event">
112 <NavigationProperty Name="Events" Type="Collection(Event.v1_0_0.EventRecord)" ContainsTarget="true">
Ed Tanouscb103132019-10-08 11:34:22 -0700113 <Annotation Term="OData.Description" String="Each event in this array has a set of properties that describe the event. Because this is an array, more than one event can be sent simultaneously."/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500114 <Annotation Term="OData.LongDescription" String="This property shall contain an array of objects that represent the occurrence of one or more events."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700115 <Annotation Term="Redfish.Required"/>
116 <Annotation Term="OData.AutoExpand"/>
117 </NavigationProperty>
118 </EntityType>
119
Jason M. Billsea4aa752018-06-05 13:29:11 -0700120 <EntityType Name="EventRecord" BaseType="Resource.v1_0_0.ReferenceableMember">
121 <Property Name="EventType" Type="Event.EventType" Nullable="false">
122 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700123 <Annotation Term="OData.Description" String="The type of event."/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500124 <Annotation Term="OData.LongDescription" String="This property shall indicate the type of event."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700125 <Annotation Term="Redfish.Required"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600126 <Annotation Term="Redfish.Revisions">
127 <Collection>
128 <Record>
129 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
130 <PropertyValue Property="Version" String="v1_3_0"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700131 <PropertyValue Property="Description" String="This property has been deprecated. Starting with Redfish Specification v1.6 (Event v1.3), subscriptions are based on the RegistryPrefix and ResourceType properties and not on the EventType property."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600132 </Record>
133 </Collection>
134 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700135 </Property>
136 <Property Name="EventId" Type="Edm.String" Nullable="false">
137 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700138 <Annotation Term="OData.Description" String="The unique instance identifier of an event."/>
139 <Annotation Term="OData.LongDescription" String="This property shall indicate a unique identifier for the event. The value should be a string of a positive integer, and should be generated in a sequential manner."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700140 </Property>
141 <Property Name="EventTimestamp" Type="Edm.DateTimeOffset" Nullable="false">
142 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700143 <Annotation Term="OData.Description" String="The time the event occurred."/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500144 <Annotation Term="OData.LongDescription" String="This property shall indicate the time the event occurred where the value shall be consistent with the Redfish service time that is also used for the values of the Modified property."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700145 </Property>
146 <Property Name="Severity" Type="Edm.String" Nullable="false">
147 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700148 <Annotation Term="OData.Description" String="The severity of the event."/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500149 <Annotation Term="OData.LongDescription" String="This property shall contain the severity of the event, as defined by the Redfish Specification. Services can replace the value defined in the message registry with a value more applicable to the implementation."/>
Gunnar Mills844b4152020-06-22 12:44:09 -0500150 <Annotation Term="Redfish.Revisions">
151 <Collection>
152 <Record>
153 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
154 <PropertyValue Property="Version" String="v1_5_0"/>
155 <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."/>
156 </Record>
157 </Collection>
158 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700159 </Property>
160 <Property Name="Message" Type="Edm.String" Nullable="false">
161 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700162 <Annotation Term="OData.Description" String="The human-readable event message."/>
163 <Annotation Term="OData.LongDescription" String="This property shall contain a human-readable event message."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700164 </Property>
165 <Property Name="MessageId" Type="Edm.String" Nullable="false">
166 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500167 <Annotation Term="OData.Description" String="The key used to find the message in a message registry."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700168 <Annotation Term="OData.LongDescription" String="This property shall contain a MessageId, as defined in the Redfish Specification."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700169 <Annotation Term="Validation.Pattern" String="^[A-Za-z0-9]+\.\d+\.\d+\.[A-Za-z0-9.]+$"/>
170 <Annotation Term="Redfish.Required"/>
171 </Property>
172 <Property Name="MessageArgs" Type="Collection(Edm.String)" Nullable="false">
173 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500174 <Annotation Term="OData.Description" String="An array of message arguments that are substituted for the arguments in the message when looked up in the message registry."/>
175 <Annotation Term="OData.LongDescription" String="This property shall contain an array of message arguments that are substituted for the arguments in the message when looked up in the message registry. It has the same semantics as the MessageArgs property in the Redfish MessageRegistry schema."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700176 </Property>
177 <Property Name="Context" Type="Edm.String" Nullable="false">
178 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
179 <Annotation Term="OData.Description" String="A context can be supplied at subscription time. This property is the context value supplied by the subscriber."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700180 <Annotation Term="OData.LongDescription" String="This property shall contain a client supplied context for the event destination to which this event is being sent."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600181 <Annotation Term="Redfish.Revisions">
182 <Collection>
183 <Record>
184 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
185 <PropertyValue Property="Version" String="v1_1_0"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500186 <PropertyValue Property="Description" String="Events are triggered independently from subscriptions to those events. This property has been deprecated in favor of the Context property found at the root level of the object."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600187 </Record>
188 </Collection>
189 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700190 </Property>
191 <NavigationProperty Name="OriginOfCondition" Type="Resource.Item" Nullable="false">
192 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500193 <Annotation Term="OData.Description" String="A link to the resource or object that originated the condition that caused the event to be generated."/>
194 <Annotation Term="OData.LongDescription" String="This property shall contain a link to the resource or object that originated the condition that caused the event to be generated. If the event subscription has the IncludeOriginOfCondition property set to `true`, it shall include the entire resource or object referenced by the link."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700195 <Annotation Term="OData.AutoExpandReferences"/>
196 </NavigationProperty>
197 </EntityType>
198 </Schema>
199
200 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_0_2">
201 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700202 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700203 <EntityType Name="Event" BaseType="Event.v1_0_0.Event"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500204 <EntityType Name="EventRecord" BaseType="Event.v1_0_0.EventRecord"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700205 </Schema>
206
207 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_0_3">
208 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700209 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700210 <EntityType Name="Event" BaseType="Event.v1_0_2.Event"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500211 <EntityType Name="EventRecord" BaseType="Event.v1_0_2.EventRecord"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700212 </Schema>
213
214 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_0_4">
215 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700216 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700217 <EntityType Name="Event" BaseType="Event.v1_0_3.Event"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500218 <EntityType Name="EventRecord" BaseType="Event.v1_0_3.EventRecord"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700219 </Schema>
220
221 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_0_5">
222 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700223 <Annotation Term="OData.Description" String="This version was created to remove the Nullable facet on NavigationProperties of the Collection type."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700224 <EntityType Name="Event" BaseType="Event.v1_0_4.Event"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500225 <EntityType Name="EventRecord" BaseType="Event.v1_0_4.EventRecord"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700226 </Schema>
227
228 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_0_6">
229 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700230 <Annotation Term="OData.Description" String="This version deprecates the versioned definition of EventType to use an unversioned definition."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700231 <EntityType Name="Event" BaseType="Event.v1_0_5.Event"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500232 <EntityType Name="EventRecord" BaseType="Event.v1_0_5.EventRecord"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700233 </Schema>
234
Ed Tanous530520e2019-01-02 13:41:37 -0800235 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_0_7">
236 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
237 <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."/>
238 <EntityType Name="Event" BaseType="Event.v1_0_6.Event"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500239 <EntityType Name="EventRecord" BaseType="Event.v1_0_6.EventRecord"/>
Ed Tanous530520e2019-01-02 13:41:37 -0800240 </Schema>
241
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600242 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_0_8">
243 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500244 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600245 <EntityType Name="Event" BaseType="Event.v1_0_7.Event"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500246 <EntityType Name="EventRecord" BaseType="Event.v1_0_7.EventRecord"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600247 </Schema>
248
Ed Tanouscb103132019-10-08 11:34:22 -0700249 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_0_9">
250 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
251 <Annotation Term="OData.Description" String="This version was created to regenerate JSON Schema so that @odata.id is not provided as a property, and so that URI properties use the uri-reference format."/>
252 <EntityType Name="Event" BaseType="Event.v1_0_8.Event"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500253 <EntityType Name="EventRecord" BaseType="Event.v1_0_8.EventRecord"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700254 </Schema>
255
256 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_0_10">
257 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
258 <Annotation Term="OData.Description" String="This version was created to update the description for EventId. It was also created to update descriptions that this schema defines."/>
259 <EntityType Name="Event" BaseType="Event.v1_0_9.Event"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500260 <EntityType Name="EventRecord" BaseType="Event.v1_0_9.EventRecord"/>
261 </Schema>
262
263 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_0_11">
264 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
265 <Annotation Term="OData.Description" String="This version was created to expand the description for OriginOfCondition to show that it can be expanded based on the configuration of the event destination."/>
266 <EntityType Name="Event" BaseType="Event.v1_0_10.Event"/>
267 <EntityType Name="EventRecord" BaseType="Event.v1_0_10.EventRecord"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700268 </Schema>
269
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500270 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_0_12">
271 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
272 <Annotation Term="OData.Description" String="This version was created to clarify that Severity can be overridden by the service."/>
273 <EntityType Name="Event" BaseType="Event.v1_0_11.Event"/>
274 <EntityType Name="EventRecord" BaseType="Event.v1_0_11.EventRecord"/>
275 </Schema>
276
Jason M. Billsea4aa752018-06-05 13:29:11 -0700277 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_1_0">
278 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600279 <Annotation Term="Redfish.Release" String="2016.1"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500280
Jason M. Billsea4aa752018-06-05 13:29:11 -0700281 <EntityType Name="Event" BaseType="Event.v1_0_2.Event">
282 <Property Name="Context" Type="Edm.String" Nullable="false">
283 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
284 <Annotation Term="OData.Description" String="A context can be supplied at subscription time. This property is the context value supplied by the subscriber."/>
Ed Tanouscb103132019-10-08 11:34:22 -0700285 <Annotation Term="OData.LongDescription" String="This property shall contain a client supplied context for the event destination to which this event is being sent."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700286 </Property>
287 </EntityType>
Gunnar Millsa778c022020-05-12 12:20:36 -0500288
289 <EntityType Name="EventRecord" BaseType="Event.v1_0_2.EventRecord"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700290 </Schema>
291
292 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_1_1">
293 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700294 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700295 <EntityType Name="Event" BaseType="Event.v1_1_0.Event"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500296 <EntityType Name="EventRecord" BaseType="Event.v1_1_0.EventRecord"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700297 </Schema>
298
299 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_1_2">
300 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700301 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700302 <EntityType Name="Event" BaseType="Event.v1_1_1.Event"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500303 <EntityType Name="EventRecord" BaseType="Event.v1_1_1.EventRecord"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700304 </Schema>
305
306 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_1_3">
307 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700308 <Annotation Term="OData.Description" String="This version was created to remove the Nullable facet on NavigationProperties of the Collection type."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700309 <EntityType Name="Event" BaseType="Event.v1_1_2.Event"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500310 <EntityType Name="EventRecord" BaseType="Event.v1_1_2.EventRecord"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700311 </Schema>
312
313 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_1_4">
314 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700315 <Annotation Term="OData.Description" String="This version deprecates the versioned definition of EventType to use an unversioned definition."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700316 <EntityType Name="Event" BaseType="Event.v1_1_3.Event"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500317 <EntityType Name="EventRecord" BaseType="Event.v1_1_3.EventRecord"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700318 </Schema>
319
Ed Tanous530520e2019-01-02 13:41:37 -0800320 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_1_5">
321 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
322 <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."/>
323 <EntityType Name="Event" BaseType="Event.v1_1_4.Event"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500324 <EntityType Name="EventRecord" BaseType="Event.v1_1_4.EventRecord"/>
Ed Tanous530520e2019-01-02 13:41:37 -0800325 </Schema>
326
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600327 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_1_6">
328 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500329 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600330 <EntityType Name="Event" BaseType="Event.v1_1_5.Event"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500331 <EntityType Name="EventRecord" BaseType="Event.v1_1_5.EventRecord"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600332 </Schema>
333
Ed Tanouscb103132019-10-08 11:34:22 -0700334 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_1_7">
335 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
336 <Annotation Term="OData.Description" String="This version was created to regenerate JSON Schema so that @odata.id is not provided as a property, and so that URI properties use the uri-reference format."/>
337 <EntityType Name="Event" BaseType="Event.v1_1_6.Event"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500338 <EntityType Name="EventRecord" BaseType="Event.v1_1_6.EventRecord"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700339 </Schema>
340
341 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_1_8">
342 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
343 <Annotation Term="OData.Description" String="This version was created to update the description for EventId. It was also created to update descriptions that this schema defines."/>
344 <EntityType Name="Event" BaseType="Event.v1_1_7.Event"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500345 <EntityType Name="EventRecord" BaseType="Event.v1_1_7.EventRecord"/>
346 </Schema>
347
348 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_1_9">
349 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
350 <Annotation Term="OData.Description" String="This version was created to expand the description for OriginOfCondition to show that it can be expanded based on the configuration of the event destination."/>
351 <EntityType Name="Event" BaseType="Event.v1_1_8.Event"/>
352 <EntityType Name="EventRecord" BaseType="Event.v1_1_8.EventRecord"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700353 </Schema>
354
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500355 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_1_10">
356 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
357 <Annotation Term="OData.Description" String="This version was created to clarify that Severity can be overridden by the service."/>
358 <EntityType Name="Event" BaseType="Event.v1_1_9.Event"/>
359 <EntityType Name="EventRecord" BaseType="Event.v1_1_9.EventRecord"/>
360 </Schema>
361
Jason M. Billsea4aa752018-06-05 13:29:11 -0700362 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_2_0">
363 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600364 <Annotation Term="Redfish.Release" String="2017.1"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500365
Jason M. Billsea4aa752018-06-05 13:29:11 -0700366 <EntityType Name="Event" BaseType="Event.v1_1_3.Event">
367 <Property Name="Actions" Type="Event.v1_2_0.Actions" Nullable="false">
Gunnar Millsa778c022020-05-12 12:20:36 -0500368 <Annotation Term="OData.Description" String="The available actions for this resource."/>
369 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700370 </Property>
371 </EntityType>
372
Gunnar Millsa778c022020-05-12 12:20:36 -0500373 <EntityType Name="EventRecord" BaseType="Event.v1_1_3.EventRecord">
Jason M. Billsea4aa752018-06-05 13:29:11 -0700374 <Property Name="Actions" Type="Event.v1_2_0.EventRecordActions" Nullable="false">
Gunnar Millsa778c022020-05-12 12:20:36 -0500375 <Annotation Term="OData.Description" String="The available actions for this resource."/>
376 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700377 </Property>
378 </EntityType>
379
380 <ComplexType Name="Actions">
381 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500382 <Annotation Term="OData.Description" String="The available actions for this resource."/>
383 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800384 <Property Name="Oem" Type="Event.v1_2_0.OemActions" Nullable="false">
Gunnar Millsa778c022020-05-12 12:20:36 -0500385 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
386 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800387 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700388 </ComplexType>
389
390 <ComplexType Name="OemActions">
391 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500392 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
393 <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700394 </ComplexType>
395
396 <ComplexType Name="EventRecordActions">
397 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500398 <Annotation Term="OData.Description" String="The available actions for this resource."/>
399 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800400 <Property Name="Oem" Type="Event.v1_2_0.EventRecordOemActions" Nullable="false">
Gunnar Millsa778c022020-05-12 12:20:36 -0500401 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
402 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800403 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700404 </ComplexType>
405
406 <ComplexType Name="EventRecordOemActions">
407 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500408 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
409 <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700410 </ComplexType>
411 </Schema>
412
413 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_2_1">
414 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700415 <Annotation Term="OData.Description" String="This version deprecates the versioned definition of EventType to use an unversioned definition."/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700416 <EntityType Name="Event" BaseType="Event.v1_2_0.Event"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500417 <EntityType Name="EventRecord" BaseType="Event.v1_2_0.EventRecord"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700418 </Schema>
419
Ed Tanous530520e2019-01-02 13:41:37 -0800420 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_2_2">
421 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
422 <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."/>
423 <EntityType Name="Event" BaseType="Event.v1_2_1.Event"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500424 <EntityType Name="EventRecord" BaseType="Event.v1_2_1.EventRecord"/>
Ed Tanous530520e2019-01-02 13:41:37 -0800425 </Schema>
426
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600427 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_2_3">
428 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500429 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600430 <EntityType Name="Event" BaseType="Event.v1_2_2.Event"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500431 <EntityType Name="EventRecord" BaseType="Event.v1_2_2.EventRecord"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600432 </Schema>
433
Ed Tanouscb103132019-10-08 11:34:22 -0700434 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_2_4">
435 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
436 <Annotation Term="OData.Description" String="This version was created to regenerate JSON Schema so that @odata.id is not provided as a property, and so that URI properties use the uri-reference format."/>
437 <EntityType Name="Event" BaseType="Event.v1_2_3.Event"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500438 <EntityType Name="EventRecord" BaseType="Event.v1_2_3.EventRecord"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700439 </Schema>
440
441 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_2_5">
442 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
443 <Annotation Term="OData.Description" String="This version was created to update the description for EventId. It was also created to update descriptions that this schema defines."/>
444 <EntityType Name="Event" BaseType="Event.v1_2_4.Event"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500445 <EntityType Name="EventRecord" BaseType="Event.v1_2_4.EventRecord"/>
446 </Schema>
447
448 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_2_6">
449 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
450 <Annotation Term="OData.Description" String="This version was created to expand the description for OriginOfCondition to show that it can be expanded based on the configuration of the event destination."/>
451 <EntityType Name="Event" BaseType="Event.v1_2_5.Event"/>
452 <EntityType Name="EventRecord" BaseType="Event.v1_2_5.EventRecord"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700453 </Schema>
454
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500455 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_2_7">
456 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
457 <Annotation Term="OData.Description" String="This version was created to clarify that Severity can be overridden by the service."/>
458 <EntityType Name="Event" BaseType="Event.v1_2_6.Event"/>
459 <EntityType Name="EventRecord" BaseType="Event.v1_2_6.EventRecord"/>
460 </Schema>
461
Ed Tanous530520e2019-01-02 13:41:37 -0800462 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_3_0">
463 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600464 <Annotation Term="Redfish.Release" String="2018.2"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700465 <Annotation Term="OData.Description" String="This version deprecates EventType and to add the grouping mechanism EventGroupId."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800466
467 <EntityType Name="Event" BaseType="Event.v1_2_2.Event"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500468
469 <EntityType Name="EventRecord" BaseType="Event.v1_2_2.EventRecord">
Ed Tanous530520e2019-01-02 13:41:37 -0800470 <Property Name="EventGroupId" Type="Edm.Int64" Nullable="false">
471 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700472 <Annotation Term="OData.Description" String="The identifier that correlates events with the same root cause. If `0`, no other event is related to this event."/>
473 <Annotation Term="OData.LongDescription" String="This property shall indicate that events are related and shall have the same value when multiple event messages are produced by the same root cause. Implementations shall use separate values for events with a separate root cause. This property value shall not imply an ordering of events. The `0` value shall indicate that this event is not grouped with any other event."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800474 </Property>
475 </EntityType>
476 </Schema>
477
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600478 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_3_1">
479 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500480 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600481 <EntityType Name="Event" BaseType="Event.v1_3_0.Event"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500482 <EntityType Name="EventRecord" BaseType="Event.v1_3_0.EventRecord"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600483 </Schema>
484
Ed Tanouscb103132019-10-08 11:34:22 -0700485 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_3_2">
486 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
487 <Annotation Term="OData.Description" String="This version was created to regenerate JSON Schema so that @odata.id is not provided as a property, and so that URI properties use the uri-reference format."/>
488 <EntityType Name="Event" BaseType="Event.v1_3_1.Event"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500489 <EntityType Name="EventRecord" BaseType="Event.v1_3_1.EventRecord"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700490 </Schema>
491
492 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_3_3">
493 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
494 <Annotation Term="OData.Description" String="This version was created to update the description for EventId and EventGroupId. It was also created to update descriptions that this schema defines."/>
495 <EntityType Name="Event" BaseType="Event.v1_3_2.Event"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500496 <EntityType Name="EventRecord" BaseType="Event.v1_3_2.EventRecord"/>
497 </Schema>
498
499 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_3_4">
500 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
501 <Annotation Term="OData.Description" String="This version was created to expand the description for OriginOfCondition to show that it can be expanded based on the configuration of the event destination."/>
502 <EntityType Name="Event" BaseType="Event.v1_3_3.Event"/>
503 <EntityType Name="EventRecord" BaseType="Event.v1_3_3.EventRecord"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700504 </Schema>
505
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500506 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_3_5">
507 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
508 <Annotation Term="OData.Description" String="This version was created to clarify that Severity can be overridden by the service."/>
509 <EntityType Name="Event" BaseType="Event.v1_3_4.Event"/>
510 <EntityType Name="EventRecord" BaseType="Event.v1_3_4.EventRecord"/>
511 </Schema>
512
Ed Tanouscb103132019-10-08 11:34:22 -0700513 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_4_0">
514 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
515 <Annotation Term="Redfish.Release" String="2019.1"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500516 <Annotation Term="OData.Description" String="This version was created to add the value `Other` to EventType."/>
517
Ed Tanouscb103132019-10-08 11:34:22 -0700518 <EntityType Name="Event" BaseType="Event.v1_3_2.Event"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500519
520 <EntityType Name="EventRecord" BaseType="Event.v1_3_2.EventRecord"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700521 </Schema>
522
523 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_4_1">
524 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
525 <Annotation Term="OData.Description" String="This version was created to update the description for EventId and EventGroupId. It was also created to update descriptions that this schema defines."/>
526 <EntityType Name="Event" BaseType="Event.v1_4_0.Event"/>
Gunnar Millsa778c022020-05-12 12:20:36 -0500527 <EntityType Name="EventRecord" BaseType="Event.v1_4_0.EventRecord"/>
528 </Schema>
529
530 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_4_2">
531 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
532 <Annotation Term="OData.Description" String="This version was created to expand the description for OriginOfCondition to show that it can be expanded based on the configuration of the event destination."/>
533 <EntityType Name="Event" BaseType="Event.v1_4_1.Event"/>
534 <EntityType Name="EventRecord" BaseType="Event.v1_4_1.EventRecord"/>
Ed Tanouscb103132019-10-08 11:34:22 -0700535 </Schema>
536
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500537 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_4_3">
538 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
539 <Annotation Term="OData.Description" String="This version was created to clarify that Severity can be overridden by the service."/>
540 <EntityType Name="Event" BaseType="Event.v1_4_2.Event"/>
541 <EntityType Name="EventRecord" BaseType="Event.v1_4_2.EventRecord"/>
542 </Schema>
543
Gunnar Mills844b4152020-06-22 12:44:09 -0500544 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_5_0">
545 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
546 <Annotation Term="Redfish.Release" String="2020.2"/>
547 <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."/>
548
549 <EntityType Name="Event" BaseType="Event.v1_4_2.Event"/>
550
551 <EntityType Name="EventRecord" BaseType="Event.v1_4_2.EventRecord">
552 <Property Name="MessageSeverity" Type="Resource.Health">
553 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
554 <Annotation Term="OData.Description" String="The severity of the message in this event."/>
Asmitha Karunanithic8ccb772020-09-22 10:56:46 -0500555 <Annotation Term="OData.LongDescription" String="This property shall contain the severity of the message in this event. Services can replace the value defined in the message registry with a value more applicable to the implementation."/>
556 </Property>
557 </EntityType>
558 </Schema>
559
560 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_5_1">
561 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
562 <Annotation Term="OData.Description" String="This version was created to clarify that MessageSeverity and Severity can be overridden by the service."/>
563 <EntityType Name="Event" BaseType="Event.v1_5_0.Event"/>
564 <EntityType Name="EventRecord" BaseType="Event.v1_5_0.EventRecord"/>
565 </Schema>
566
567 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_6_0">
568 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
569 <Annotation Term="Redfish.Release" String="2020.3"/>
570
571 <EntityType Name="Event" BaseType="Event.v1_5_1.Event"/>
572
573 <EntityType Name="EventRecord" BaseType="Event.v1_5_1.EventRecord">
574 <Property Name="SpecificEventExistsInGroup" Type="Edm.Boolean" Nullable="false">
575 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
576 <Annotation Term="OData.Description" String="Indicates this event is equivalent to a more specific event in this Event Group."/>
577 <Annotation Term="OData.LongDescription" String="This property shall indicate that the event is equivalent to another event, with a more specific definition, within the same EventGroupId. For example, the `DriveFailed` message from the Storage Device Message Registry is more specific than the `ResourceStatusChangedCritical` message from the Resource Event Message Registry, when both occur with the same EventGroupId. This property shall contain `true` if a more specific event is available, and shall contain `false` if no equivalent event exists in the same EventGroupId. If this property is absent, the value shall be assumed to be `false`."/>
Gunnar Mills844b4152020-06-22 12:44:09 -0500578 </Property>
579 </EntityType>
580 </Schema>
581
Jason M. Billsea4aa752018-06-05 13:29:11 -0700582 </edmx:DataServices>
583</edmx:Edmx>