blob: a4d1e33af1a7d68697ab128c55e6ae884c801203 [file] [log] [blame]
Jason M. Billsea4aa752018-06-05 13:29:11 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################ -->
Marri Devender Raod45d2d02019-01-21 10:11:34 -06004<!--# Redfish Schema: Event v1.3.1-->
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 -->
Ed Tanous530520e2019-01-02 13:41:37 -08008<!--# Copyright 2014-2018 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">
35 <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 occurs. This resource contains data about event(s), including descriptions, severity and MessageId reference to a Message Registry that can be accessed for further information."/>
36 <Annotation Term="OData.LongDescription" String="This resource shall be used to represent an event 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
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"/>
60 <PropertyValue Property="Description" String="Starting Redfish Spec 1.6, subscriptions are based on RegistryId and ResourceType and not EventType."/>
61 </Record>
62 </Collection>
63 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -070064 <Member Name="StatusChange">
65 <Annotation Term="OData.Description" String="The status of this resource has changed."/>
66 </Member>
67 <Member Name="ResourceUpdated">
68 <Annotation Term="OData.Description" String="The value of this resource has been updated."/>
69 </Member>
70 <Member Name="ResourceAdded">
71 <Annotation Term="OData.Description" String="A resource has been added."/>
72 </Member>
73 <Member Name="ResourceRemoved">
74 <Annotation Term="OData.Description" String="A resource has been removed."/>
75 </Member>
76 <Member Name="Alert">
77 <Annotation Term="OData.Description" String="A condition exists which requires attention."/>
78 </Member>
Ed Tanous530520e2019-01-02 13:41:37 -080079 <Member Name="MetricReport">
80 <Annotation Term="OData.Description" String="A metric report managed by the Telemetry Service is being sent."/>
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>
Jason M. Billsea4aa752018-06-05 13:29:11 -070091 </EnumType>
92
93 </Schema>
94
95 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_0_0">
96 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060097 <Annotation Term="Redfish.Release" String="1.0"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070098
99 <EntityType Name="Event" BaseType="Event.Event">
100 <NavigationProperty Name="Events" Type="Collection(Event.v1_0_0.EventRecord)" ContainsTarget="true">
101 <Annotation Term="OData.Description" String="Each event in this array has a set of properties that describe the event. Since this is an array, more than one event can be sent simultaneously."/>
102 <Annotation Term="OData.LongDescription" String="The value of this resource shall be an array of Event objects used to represent the occurrence of one or more events."/>
103 <Annotation Term="Redfish.Required"/>
104 <Annotation Term="OData.AutoExpand"/>
105 </NavigationProperty>
106 </EntityType>
107
Jason M. Billsea4aa752018-06-05 13:29:11 -0700108 <EntityType Name="EventRecord" BaseType="Resource.v1_0_0.ReferenceableMember">
109 <Property Name="EventType" Type="Event.EventType" Nullable="false">
110 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
111 <Annotation Term="OData.Description" String="This indicates the type of event sent, according to the definitions in the EventService."/>
112 <Annotation Term="OData.LongDescription" String="The value of this property shall indicate the type of event as defined in the EventService schema."/>
113 <Annotation Term="Redfish.Required"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600114 <Annotation Term="Redfish.Revisions">
115 <Collection>
116 <Record>
117 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
118 <PropertyValue Property="Version" String="v1_3_0"/>
119 <PropertyValue Property="Description" String="This property has been deprecated. Starting Redfish Spec 1.6 (Event 1.3), subscriptions are based on RegistryId and ResourceType and not EventType."/>
120 </Record>
121 </Collection>
122 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700123 </Property>
124 <Property Name="EventId" Type="Edm.String" Nullable="false">
125 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
126 <Annotation Term="OData.Description" String="This is a unique instance identifier of an event."/>
127 <Annotation Term="OData.LongDescription" String="The value of this property shall indicate a unique identifier for the event, the format of which is implementation dependent."/>
128 </Property>
129 <Property Name="EventTimestamp" Type="Edm.DateTimeOffset" Nullable="false">
130 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
131 <Annotation Term="OData.Description" String="This is time the event occurred."/>
132 <Annotation Term="OData.LongDescription" String="The value of 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."/>
133 </Property>
134 <Property Name="Severity" Type="Edm.String" Nullable="false">
135 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
136 <Annotation Term="OData.Description" String="This is the severity of the event."/>
137 <Annotation Term="OData.LongDescription" String="The value of this property shall be the severity of the event, as defined in the Status section of the Redfish specification."/>
138 </Property>
139 <Property Name="Message" Type="Edm.String" Nullable="false">
140 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
141 <Annotation Term="OData.Description" String="This is the human readable message, if provided."/>
142 <Annotation Term="OData.LongDescription" String="This property shall contain an optional human readable message."/>
143 </Property>
144 <Property Name="MessageId" Type="Edm.String" Nullable="false">
145 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
146 <Annotation Term="OData.Description" String="This is the key for this message which can be used to look up the message in a message registry."/>
147 <Annotation Term="OData.LongDescription" String="This property shall be a key into message registry as described in the Redfish specification."/>
148 <Annotation Term="Validation.Pattern" String="^[A-Za-z0-9]+\.\d+\.\d+\.[A-Za-z0-9.]+$"/>
149 <Annotation Term="Redfish.Required"/>
150 </Property>
151 <Property Name="MessageArgs" Type="Collection(Edm.String)" Nullable="false">
152 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
153 <Annotation Term="OData.Description" String="This array of message arguments are substituted for the arguments in the message when looked up in the message registry."/>
154 <Annotation Term="OData.LongDescription" String="This property has the same semantics as the MessageArgs property in the Event schema for Redfish."/>
155 </Property>
156 <Property Name="Context" Type="Edm.String" Nullable="false">
157 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
158 <Annotation Term="OData.Description" String="A context can be supplied at subscription time. This property is the context value supplied by the subscriber."/>
159 <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 -0600160 <Annotation Term="Redfish.Revisions">
161 <Collection>
162 <Record>
163 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
164 <PropertyValue Property="Version" String="v1_1_0"/>
165 <PropertyValue Property="Description" String="Events are triggered independently from subscriptions to those events. This property has been Deprecated in favor of Context found at the root level of the object."/>
166 </Record>
167 </Collection>
168 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700169 </Property>
170 <NavigationProperty Name="OriginOfCondition" Type="Resource.Item" Nullable="false">
171 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
172 <Annotation Term="OData.Description" String="This indicates the resource that originated the condition that caused the event to be generated."/>
173 <Annotation Term="OData.LongDescription" String="The value of this property shall contain a pointer consistent with JSON pointer syntax to the resource that caused the event to be generated."/>
174 <Annotation Term="OData.AutoExpandReferences"/>
175 </NavigationProperty>
176 </EntityType>
177 </Schema>
178
179 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_0_2">
180 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
181 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
182 <EntityType Name="Event" BaseType="Event.v1_0_0.Event"/>
183 </Schema>
184
185 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_0_3">
186 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
187 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
188 <EntityType Name="Event" BaseType="Event.v1_0_2.Event"/>
189 </Schema>
190
191 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_0_4">
192 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
193 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
194 <EntityType Name="Event" BaseType="Event.v1_0_3.Event"/>
195 </Schema>
196
197 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_0_5">
198 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
199 <Annotation Term="OData.Description" String="This version was created to remove the Nullable facet on NavigationProperties of type Collection."/>
200 <EntityType Name="Event" BaseType="Event.v1_0_4.Event"/>
201 </Schema>
202
203 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_0_6">
204 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
205 <Annotation Term="OData.Description" String="This version was created to deprecate the versioned definition of EventType to use an unversioned definition."/>
206 <EntityType Name="Event" BaseType="Event.v1_0_5.Event"/>
207 </Schema>
208
Ed Tanous530520e2019-01-02 13:41:37 -0800209 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_0_7">
210 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
211 <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."/>
212 <EntityType Name="Event" BaseType="Event.v1_0_6.Event"/>
213 </Schema>
214
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600215 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_0_8">
216 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
217 <Annotation Term="OData.Description" String="This version was created to make use of the new Revisions annotation."/>
218 <EntityType Name="Event" BaseType="Event.v1_0_7.Event"/>
219 </Schema>
220
Jason M. Billsea4aa752018-06-05 13:29:11 -0700221 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_1_0">
222 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600223 <Annotation Term="Redfish.Release" String="2016.1"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700224 <EntityType Name="Event" BaseType="Event.v1_0_2.Event">
225 <Property Name="Context" Type="Edm.String" Nullable="false">
226 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
227 <Annotation Term="OData.Description" String="A context can be supplied at subscription time. This property is the context value supplied by the subscriber."/>
228 <Annotation Term="OData.LongDescription" String="This property shall contain a client supplied context for the Event Destination to which this event is being sent."/>
229 </Property>
230 </EntityType>
231 </Schema>
232
233 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_1_1">
234 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
235 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
236 <EntityType Name="Event" BaseType="Event.v1_1_0.Event"/>
237 </Schema>
238
239 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_1_2">
240 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
241 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
242 <EntityType Name="Event" BaseType="Event.v1_1_1.Event"/>
243 </Schema>
244
245 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_1_3">
246 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
247 <Annotation Term="OData.Description" String="This version was created to remove the Nullable facet on NavigationProperties of type Collection."/>
248 <EntityType Name="Event" BaseType="Event.v1_1_2.Event"/>
249 </Schema>
250
251 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_1_4">
252 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
253 <Annotation Term="OData.Description" String="This version was created to deprecate the versioned definition of EventType to use an unversioned definition."/>
254 <EntityType Name="Event" BaseType="Event.v1_1_3.Event"/>
255 </Schema>
256
Ed Tanous530520e2019-01-02 13:41:37 -0800257 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_1_5">
258 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
259 <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."/>
260 <EntityType Name="Event" BaseType="Event.v1_1_4.Event"/>
261 </Schema>
262
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600263 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_1_6">
264 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
265 <Annotation Term="OData.Description" String="This version was created to make use of the new Revisions annotation."/>
266 <EntityType Name="Event" BaseType="Event.v1_1_5.Event"/>
267 </Schema>
268
Jason M. Billsea4aa752018-06-05 13:29:11 -0700269 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_2_0">
270 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600271 <Annotation Term="Redfish.Release" String="2017.1"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700272 <EntityType Name="Event" BaseType="Event.v1_1_3.Event">
273 <Property Name="Actions" Type="Event.v1_2_0.Actions" Nullable="false">
274 <Annotation Term="OData.Description" String="The available actions for this resource."/>
275 <Annotation Term="OData.LongDescription" String="The Actions property shall contain the available actions for this resource."/>
276 </Property>
277 </EntityType>
278
279 <EntityType Name="EventRecord" BaseType="Event.v1_0_0.EventRecord">
280 <Property Name="Actions" Type="Event.v1_2_0.EventRecordActions" Nullable="false">
281 <Annotation Term="OData.Description" String="The available actions for this resource."/>
282 <Annotation Term="OData.LongDescription" String="The Actions property shall contain the available actions for this resource."/>
283 </Property>
284 </EntityType>
285
286 <ComplexType Name="Actions">
287 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
288 <Annotation Term="OData.Description" String="The available actions for this resource."/>
289 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800290 <Property Name="Oem" Type="Event.v1_2_0.OemActions" Nullable="false">
291 <Annotation Term="OData.Description" String="This property contains the available OEM specific actions for this resource."/>
292 <Annotation Term="OData.LongDescription" String="This property shall contain any additional OEM actions for this resource."/>
293 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700294 </ComplexType>
295
296 <ComplexType Name="OemActions">
297 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
298 <Annotation Term="OData.Description" String="The available OEM specific actions for this resource."/>
299 <Annotation Term="OData.LongDescription" String="This type shall contain any additional OEM actions for this resource."/>
300 </ComplexType>
301
302 <ComplexType Name="EventRecordActions">
303 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
304 <Annotation Term="OData.Description" String="The available actions for this resource."/>
305 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800306 <Property Name="Oem" Type="Event.v1_2_0.EventRecordOemActions" Nullable="false">
307 <Annotation Term="OData.Description" String="This property contains the available OEM specific actions for this resource."/>
308 <Annotation Term="OData.LongDescription" String="This property shall contain any additional OEM actions for this resource."/>
309 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700310 </ComplexType>
311
312 <ComplexType Name="EventRecordOemActions">
313 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
314 <Annotation Term="OData.Description" String="The available OEM specific actions for this resource."/>
315 <Annotation Term="OData.LongDescription" String="This type shall contain any additional OEM actions for this resource."/>
316 </ComplexType>
317 </Schema>
318
319 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_2_1">
320 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
321 <Annotation Term="OData.Description" String="This version was created to deprecate the versioned definition of EventType to use an unversioned definition."/>
322 <EntityType Name="Event" BaseType="Event.v1_2_0.Event"/>
323 </Schema>
324
Ed Tanous530520e2019-01-02 13:41:37 -0800325 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_2_2">
326 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
327 <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."/>
328 <EntityType Name="Event" BaseType="Event.v1_2_1.Event"/>
329 </Schema>
330
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600331 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_2_3">
332 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
333 <Annotation Term="OData.Description" String="This version was created to make use of the new Revisions annotation."/>
334 <EntityType Name="Event" BaseType="Event.v1_2_2.Event"/>
335 </Schema>
336
Ed Tanous530520e2019-01-02 13:41:37 -0800337 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_3_0">
338 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600339 <Annotation Term="Redfish.Release" String="2018.2"/>
Ed Tanous530520e2019-01-02 13:41:37 -0800340 <Annotation Term="OData.Description" String="This version was created to deprecate EventType and to add the grouping mechanism EventGroupId."/>
341
342 <EntityType Name="Event" BaseType="Event.v1_2_2.Event"/>
343 <EntityType Name="EventRecord" BaseType="Event.v1_2_0.EventRecord">
344 <Property Name="EventGroupId" Type="Edm.Int64" Nullable="false">
345 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
346 <Annotation Term="OData.Description" String="This value is the identifier used to correlate events that came from the same cause."/>
347 <Annotation Term="OData.LongDescription" String="The value of this property shall indicate that events are related and shall have the same value in the case where multiple Event messages are produced by the same root cause. Implementations shall use separate values for events with separate root cause. There shall not be ordering of events implied by the value of this property."/>
348 </Property>
349 </EntityType>
350 </Schema>
351
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600352 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Event.v1_3_1">
353 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
354 <Annotation Term="OData.Description" String="This version was created to make use of the new Revisions annotation."/>
355 <EntityType Name="Event" BaseType="Event.v1_3_0.Event"/>
356 </Schema>
357
Jason M. Billsea4aa752018-06-05 13:29:11 -0700358 </edmx:DataServices>
359</edmx:Edmx>