1<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################       -->
4<!--# Redfish Schema:  EventDestination v1.14.0                                            -->
5<!--#                                                                                      -->
6<!--# For a detailed change log, see the README file contained in the DSP8010 bundle,      -->
7<!--# available at http://www.dmtf.org/standards/redfish                                   -->
8<!--# Copyright 2014-2023 DMTF.                                                            -->
9<!--# For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright -->
10<!--################################################################################       -->
11<!---->
12<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0">
13
14  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Core.V1.xml">
15    <edmx:Include Namespace="Org.OData.Core.V1" Alias="OData"/>
16  </edmx:Reference>
17  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Capabilities.V1.xml">
18    <edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="Capabilities"/>
19  </edmx:Reference>
20  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/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  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Event_v1.xml">
29    <edmx:Include Namespace="Event"/>
30  </edmx:Reference>
31  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/MetricReportDefinition_v1.xml">
32    <edmx:Include Namespace="MetricReportDefinition"/>
33  </edmx:Reference>
34  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/CertificateCollection_v1.xml">
35    <edmx:Include Namespace="CertificateCollection"/>
36  </edmx:Reference>
37
38  <edmx:DataServices>
39
40    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination">
41      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
42
43      <EntityType Name="EventDestination" BaseType="Resource.v1_0_0.Resource" Abstract="true">
44        <Annotation Term="OData.Description" String="The EventDestination schema defines the target of an event subscription, including the event types and context to provide to the target in the event payload."/>
45        <Annotation Term="OData.LongDescription" String="This resource shall represent the target of an event subscription, including the event types and context to provide to the target in the event payload."/>
46        <Annotation Term="Capabilities.InsertRestrictions">
47          <Record>
48            <PropertyValue Property="Insertable" Bool="false"/>
49          </Record>
50        </Annotation>
51        <Annotation Term="Capabilities.UpdateRestrictions">
52          <Record>
53            <PropertyValue Property="Updatable" Bool="true"/>
54            <Annotation Term="OData.Description" String="Writable properties, such as Context, can be updated for an event destination."/>
55          </Record>
56        </Annotation>
57        <Annotation Term="Capabilities.DeleteRestrictions">
58          <Record>
59            <PropertyValue Property="Deletable" Bool="true"/>
60            <Annotation Term="OData.Description" String="When client no longer needs to receive event notifications, it can delete an event destination."/>
61          </Record>
62        </Annotation>
63        <Annotation Term="Redfish.Uris">
64          <Collection>
65            <String>/redfish/v1/EventService/Subscriptions/{EventDestinationId}</String>
66          </Collection>
67        </Annotation>
68      </EntityType>
69
70      <Action Name="SuspendSubscription" IsBound="true">
71        <Annotation Term="OData.Description" String="This action suspends an event subscription."/>
72        <Annotation Term="OData.LongDescription" String="This action shall suspend an event subscription.  No events shall be sent to the event destination until invocation of the ResumeSubscription action.  The value of the State property within Status shall contain `Disabled` for a suspended subscription.  The service may buffer events while the subscription is suspended."/>
73        <Parameter Name="EventDestination" Type="EventDestination.v1_2_0.Actions"/>
74        <Annotation Term="Redfish.Revisions">
75          <Collection>
76            <Record>
77              <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
78              <PropertyValue Property="Version" String="v1_12_0"/>
79            </Record>
80          </Collection>
81        </Annotation>
82      </Action>
83
84      <Action Name="ResumeSubscription" IsBound="true">
85        <Annotation Term="OData.Description" String="This action resumes a suspended event subscription."/>
86        <Annotation Term="OData.LongDescription" String="This action shall resume a suspended event subscription, which affects the subscription status.  The service may deliver buffered events when the subscription is resumed."/>
87        <Parameter Name="EventDestination" Type="EventDestination.v1_2_0.Actions"/>
88        <Parameter Name="DeliverBufferedEventDuration" Type="Edm.Duration">
89          <Annotation Term="OData.Description" String="The maximum age of buffered events that should be delivered when resuming the subscription."/>
90          <Annotation Term="OData.LongDescription" String="This parameter shall indicate the event age of any buffered or otherwise undelivered events that shall be delivered to this event destination when the subscription is resumed.  The service shall deliver any available, previously undelivered event that was created within the duration specified.  A value that equates to zero time, such as `PT0S`, shall indicate that no previously undelivered events shall be sent.  If undelivered events within the duration may have been discarded due to a lack of buffer space, the service should send the EventBufferExceeded message from the Base Message Registry.  If the client does not provide this parameter, the service shall apply an implementation-specific duration."/>
91          <Annotation Term="Redfish.Revisions">
92            <Collection>
93              <Record>
94                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
95                <PropertyValue Property="Version" String="v1_12_0"/>
96              </Record>
97            </Collection>
98          </Annotation>
99        </Parameter>
100      </Action>
101
102      <EnumType Name="EventFormatType">
103        <Annotation Term="Redfish.Revisions">
104          <Collection>
105            <Record>
106              <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
107              <PropertyValue Property="Version" String="v1_4_0"/>
108            </Record>
109          </Collection>
110        </Annotation>
111        <Member Name="Event">
112          <Annotation Term="OData.Description" String="The subscription destination receives an event payload."/>
113          <Annotation Term="OData.LongDescription" String="The subscription destination shall receive an event payload as defined by the value of the Protocol property."/>
114        </Member>
115        <Member Name="MetricReport">
116          <Annotation Term="OData.Description" String="The subscription destination receives a metric report."/>
117          <Annotation Term="OData.LongDescription" String="The subscription destination shall receive a metric report payload as defined by the value of the Protocol property."/>
118        </Member>
119      </EnumType>
120    </Schema>
121
122    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_0">
123      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
124      <Annotation Term="Redfish.Release" String="1.0"/>
125
126      <EntityType Name="EventDestination" BaseType="EventDestination.EventDestination">
127        <Property Name="Destination" Type="Edm.String" Nullable="false">
128          <Annotation Term="Redfish.RequiredOnCreate"/>
129          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
130          <Annotation Term="OData.Description" String="The URI of the destination event receiver."/>
131          <Annotation Term="OData.LongDescription" String="This property shall contain a URI to the destination where the events are sent.  If Protocol is `SMTP`, the URI shall follow the RFC6068-described format.  SNMP URIs shall be consistent with RFC4088.  Specifically, for SNMPv3, if a username is specified in the SNMP URI, the SNMPv3 authentication and encryption configuration associated with that user shall be utilized in the SNMPv3 traps.  Syslog URIs shall be consistent with RFC3986 and contain the scheme `syslog://`.  Server-sent event destinations shall be in the form `redfish-sse://ip:port` where `ip` and `port` are the IP address and the port of the client with the open SSE connection.  For other URIs, such as HTTP or HTTPS, they shall be consistent with RFC3986."/>
132          <Annotation Term="OData.IsURL"/>
133        </Property>
134        <Property Name="EventTypes" Type="Collection(Event.EventType)" Nullable="false">
135          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
136          <Annotation Term="OData.Description" String="The types of events that are sent to the destination."/>
137          <Annotation Term="OData.LongDescription" String="This property shall contain an array that contains the types of events that shall be sent to the destination.  To specify that a client is subscribing for metric reports, the EventTypes property should include 'MetricReport'.  If the subscription does not include this property, the service shall use a single element with a default of `Other`."/>
138          <Annotation Term="Redfish.Revisions">
139            <Collection>
140              <Record>
141                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
142                <PropertyValue Property="Version" String="v1_5_0"/>
143                <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.  Use EventFormatType to create subscriptions for metric reports.  If the subscription does not include this property, the service shall use a single element with a default of `Other`."/>
144              </Record>
145            </Collection>
146          </Annotation>
147        </Property>
148        <Property Name="Context" Type="Edm.String">
149          <Annotation Term="Redfish.Required"/>
150          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
151          <Annotation Term="OData.Description" String="A client-supplied string that is stored with the event destination subscription."/>
152          <Annotation Term="OData.LongDescription" String="This property shall contain a client-supplied context that remains with the connection through the connection's lifetime."/>
153        </Property>
154        <Property Name="Protocol" Type="EventDestination.v1_0_0.EventDestinationProtocol" Nullable="false">
155          <Annotation Term="Redfish.RequiredOnCreate"/>
156          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
157          <Annotation Term="OData.Description" String="The protocol type of the event connection."/>
158          <Annotation Term="OData.LongDescription" String="This property shall contain the protocol type that the event uses to send the event to the destination.  A `Redfish` value shall indicate that the event type shall adhere to the type defined in the Redfish Specification."/>
159        </Property>
160        <Property Name="HttpHeaders" Type="Collection(EventDestination.v1_0_0.HttpHeaderProperty)" Nullable="false">
161          <Annotation Term="OData.Description" String="An array of settings for HTTP headers, such as authorization information.  This array is `null` or an empty array in responses.  An empty array is the preferred return value on read operations."/>
162          <Annotation Term="OData.LongDescription" String="This property shall contain an array of objects consisting of the names and values of the HTTP headers to include with every event POST to the event destination.  This object shall be `null` or an empty array in responses.  An empty array is the preferred return value in responses."/>
163        </Property>
164      </EntityType>
165
166      <EnumType Name="EventDestinationProtocol">
167        <Member Name="Redfish">
168          <Annotation Term="OData.Description" String="The destination follows the Redfish Specification for event notifications."/>
169          <Annotation Term="OData.LongDescription" String="This value shall indicate the destination follows the Redfish Specification for event notifications.  Destinations requesting EventFormatType of `Event` shall receive a Redfish resource of type Event.  Destinations requesting EventFormatType of `MetricReport` shall receive a Redfish resource of type MetricReport."/>
170        </Member>
171        <Member Name="Kafka">
172          <Annotation Term="OData.Description" String="The destination follows the Kafka protocol for event notifications."/>
173          <Annotation Term="OData.LongDescription" String="This value shall indicate the destination follows the Apache-defined Kafka protocol as defined by the Kafka Protocol Guide.  The Context property shall contain the Kafka topic of the destination broker."/>
174          <Annotation Term="Redfish.Revisions">
175            <Collection>
176              <Record>
177                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
178                <PropertyValue Property="Version" String="v1_13_0"/>
179              </Record>
180            </Collection>
181          </Annotation>
182        </Member>
183        <Member Name="SNMPv1">
184          <Annotation Term="OData.Description" String="The destination follows the SNMPv1 protocol for event notifications."/>
185          <Annotation Term="OData.LongDescription" String="This value shall indicate the destination follows the RFC1157-defined SNMPv1 protocol."/>
186          <Annotation Term="Redfish.Revisions">
187            <Collection>
188              <Record>
189                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
190                <PropertyValue Property="Version" String="v1_7_0"/>
191              </Record>
192            </Collection>
193          </Annotation>
194        </Member>
195        <Member Name="SNMPv2c">
196          <Annotation Term="OData.Description" String="The destination follows the SNMPv2c protocol for event notifications."/>
197          <Annotation Term="OData.LongDescription" String="This value shall indicate the destination follows the SNMPv2c protocol as defined by RFC1441 and RFC1452."/>
198          <Annotation Term="Redfish.Revisions">
199            <Collection>
200              <Record>
201                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
202                <PropertyValue Property="Version" String="v1_7_0"/>
203              </Record>
204            </Collection>
205          </Annotation>
206        </Member>
207        <Member Name="SNMPv3">
208          <Annotation Term="OData.Description" String="The destination follows the SNMPv3 protocol for event notifications."/>
209          <Annotation Term="OData.LongDescription" String="This value shall indicate the destination follows the SNMPv3 protocol as defined by RFC3411 and RFC3418."/>
210          <Annotation Term="Redfish.Revisions">
211            <Collection>
212              <Record>
213                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
214                <PropertyValue Property="Version" String="v1_7_0"/>
215              </Record>
216            </Collection>
217          </Annotation>
218        </Member>
219        <Member Name="SMTP">
220          <Annotation Term="OData.Description" String="The destination follows the SMTP specification for event notifications."/>
221          <Annotation Term="OData.LongDescription" String="This value shall indicate the destination follows the RFC5321-defined SMTP specification."/>
222          <Annotation Term="Redfish.Revisions">
223            <Collection>
224              <Record>
225                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
226                <PropertyValue Property="Version" String="v1_7_0"/>
227              </Record>
228            </Collection>
229          </Annotation>
230        </Member>
231        <Member Name="SyslogTLS">
232          <Annotation Term="OData.Description" String="The destination follows syslog TLS-based transport for event notifications."/>
233          <Annotation Term="OData.LongDescription" String="This value shall indicate the destination follows the TLS-based transport for syslog as defined in RFC5424."/>
234          <Annotation Term="Redfish.Revisions">
235            <Collection>
236              <Record>
237                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
238                <PropertyValue Property="Version" String="v1_9_0"/>
239              </Record>
240            </Collection>
241          </Annotation>
242        </Member>
243        <Member Name="SyslogTCP">
244          <Annotation Term="OData.Description" String="The destination follows syslog TCP-based transport for event notifications."/>
245          <Annotation Term="OData.LongDescription" String="This value shall indicate the destination follows the TCP-based transport for syslog as defined in RFC6587."/>
246          <Annotation Term="Redfish.Revisions">
247            <Collection>
248              <Record>
249                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
250                <PropertyValue Property="Version" String="v1_9_0"/>
251              </Record>
252            </Collection>
253          </Annotation>
254        </Member>
255        <Member Name="SyslogUDP">
256          <Annotation Term="OData.Description" String="The destination follows syslog UDP-based transport for event notifications."/>
257          <Annotation Term="OData.LongDescription" String="This value shall indicate the destination follows the UDP-based transport for syslog as defined in RFC5424."/>
258          <Annotation Term="Redfish.Revisions">
259            <Collection>
260              <Record>
261                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
262                <PropertyValue Property="Version" String="v1_9_0"/>
263              </Record>
264            </Collection>
265          </Annotation>
266        </Member>
267        <Member Name="SyslogRELP">
268          <Annotation Term="OData.Description" String="The destination follows syslog RELP for event notifications."/>
269          <Annotation Term="OData.LongDescription" String="This value shall indicate the destination follows the Reliable Event Logging Protocol (RELP) transport for syslog as defined by www.rsyslog.com."/>
270          <Annotation Term="Redfish.Revisions">
271            <Collection>
272              <Record>
273                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
274                <PropertyValue Property="Version" String="v1_9_0"/>
275              </Record>
276            </Collection>
277          </Annotation>
278        </Member>
279        <Member Name="OEM">
280          <Annotation Term="OData.Description" String="The destination follows an OEM protocol for event notifications."/>
281          <Annotation Term="OData.LongDescription" String="This value shall indicate an OEM-specific protocol.  The OEMProtocol property shall contain the specific OEM event destination protocol."/>
282          <Annotation Term="Redfish.Revisions">
283            <Collection>
284              <Record>
285                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
286                <PropertyValue Property="Version" String="v1_9_0"/>
287              </Record>
288            </Collection>
289          </Annotation>
290        </Member>
291      </EnumType>
292
293      <ComplexType Name="HttpHeaderProperty">
294        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
295        <Annotation Term="OData.Description" String="The HTTP header value is the property value.  The header name is the property name."/>
296        <Annotation Term="OData.LongDescription" String="This type shall contain the HTTP header name and value to include with every event POST to the event destination."/>
297        <Annotation Term="Redfish.DynamicPropertyPatterns">
298          <Collection>
299            <Record>
300              <PropertyValue Property="Pattern" String="^[^:\\s]+$"/>
301              <PropertyValue Property="Type" String="Edm.String"/>
302            </Record>
303          </Collection>
304        </Annotation>
305      </ComplexType>
306    </Schema>
307
308    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_2">
309      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
310      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
311      <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_0.EventDestination"/>
312    </Schema>
313
314    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_3">
315      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
316      <Annotation Term="OData.Description" String="This version was created to add explicit permissions annotations to all properties for clarity."/>
317      <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_2.EventDestination"/>
318    </Schema>
319
320    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_4">
321      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
322      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
323      <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_3.EventDestination"/>
324    </Schema>
325
326    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_5">
327      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
328      <Annotation Term="OData.Description" String="This version was created to change EventType to use the unversioned definition.  It was also created to add descriptions to various enumerated values."/>
329      <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_4.EventDestination"/>
330    </Schema>
331
332    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_6">
333      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
334      <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."/>
335      <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_5.EventDestination"/>
336    </Schema>
337
338    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_7">
339      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
340      <Annotation Term="OData.Description" String="This version was created to update the descriptions for HttpHeaders.  It was also created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/>
341      <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_6.EventDestination"/>
342    </Schema>
343
344    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_8">
345      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
346      <Annotation Term="OData.Description" String="This version was created to update the descriptions for HttpHeaders.  It was also created to update descriptions that this schema defines."/>
347      <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_7.EventDestination"/>
348    </Schema>
349
350    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_9">
351      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
352      <Annotation Term="OData.Description" String="This version was created to improve the descriptions for EventFormatType and EventDestinationProtocol."/>
353      <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_8.EventDestination"/>
354    </Schema>
355
356    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_10">
357      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
358      <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
359      <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_9.EventDestination"/>
360    </Schema>
361
362    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_11">
363      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
364      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
365      <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_10.EventDestination"/>
366    </Schema>
367
368    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_0_12">
369      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
370      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
371      <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_11.EventDestination"/>
372    </Schema>
373
374    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_0">
375      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
376      <Annotation Term="Redfish.Release" String="2016.2"/>
377
378      <EntityType Name="EventDestination" BaseType="EventDestination.v1_0_2.EventDestination">
379        <NavigationProperty Name="OriginResources" Type="Collection(Resource.ItemOrCollection)">
380          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
381          <Annotation Term="OData.Description" String="The array of resources for which the service sends only related events."/>
382          <Annotation Term="OData.LongDescription" String="This property shall specify an array of resources, resource collections, or referenceable members that are the only allowable values for the OriginOfCondition property within an event that the service sends to the subscriber.  Events with an OriginOfCondition that is not contained in this array, and is not subordinate to members of this array if SubordinateResources contains the value `true`, shall not be sent to the subscriber.  If this property is an empty array or is absent, no filtering based upon the URI of the OriginOfCondition of an event is performed."/>
383        </NavigationProperty>
384        <Property Name="MessageIds" Type="Collection(Edm.String)">
385          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
386          <Annotation Term="OData.Description" String="The list of MessageIds that are sent to this event destination."/>
387          <Annotation Term="OData.LongDescription" String="This property shall contain an array of MessageIds that are the allowable values for the MessageId property within an event sent to the subscriber.  The MessageId should be in the `MessageRegistryPrefix.MessageKey` format.  If included, the MessageId major and minor version details should be ignored.  Events with a MessageId that is not contained in this array and is not from a message registry contained in RegistryPrefixes shall not be sent to the subscriber.  If this property is an empty array or is absent, no inclusive filtering based upon the MessageId of an event is performed."/>
388        </Property>
389      </EntityType>
390    </Schema>
391
392    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_1">
393      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
394      <Annotation Term="OData.Description" String="This version was created to add explicit permissions annotations to all properties for clarity."/>
395      <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_0.EventDestination"/>
396    </Schema>
397
398    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_2">
399      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
400      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
401      <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_1.EventDestination"/>
402    </Schema>
403
404    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_3">
405      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
406      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
407      <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_2.EventDestination"/>
408    </Schema>
409
410    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_4">
411      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
412      <Annotation Term="OData.Description" String="This version was created to change EventType to use the unversioned definition.  It was also created to add descriptions to various enumerated values."/>
413      <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_3.EventDestination"/>
414    </Schema>
415
416    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_5">
417      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
418      <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."/>
419      <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_4.EventDestination"/>
420    </Schema>
421
422    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_6">
423      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
424      <Annotation Term="OData.Description" String="This version was created to update the descriptions for HttpHeaders.  It was also created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/>
425      <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_5.EventDestination"/>
426    </Schema>
427
428    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_7">
429      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
430      <Annotation Term="OData.Description" String="This version was created to update the descriptions for HttpHeaders.  It was also created to update descriptions that this schema defines."/>
431      <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_6.EventDestination"/>
432    </Schema>
433
434    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_8">
435      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
436      <Annotation Term="OData.Description" String="This version was created to improve the descriptions for EventFormatType and EventDestinationProtocol."/>
437      <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_7.EventDestination"/>
438    </Schema>
439
440    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_9">
441      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
442      <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
443      <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_8.EventDestination"/>
444    </Schema>
445
446    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_10">
447      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
448      <Annotation Term="OData.Description" String="This version was created to clarify the format of the MessageId in the MessageIds property."/>
449      <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_9.EventDestination"/>
450    </Schema>
451
452    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_11">
453      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
454      <Annotation Term="OData.Description" String="This version was created to make the format terminology of MessageId values consistent with the Redfish Specification and other schemas."/>
455      <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_10.EventDestination"/>
456    </Schema>
457
458    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_1_12">
459      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
460      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
461      <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_11.EventDestination"/>
462    </Schema>
463
464    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_2_0">
465      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
466      <Annotation Term="Redfish.Release" String="2017.1"/>
467
468      <EntityType Name="EventDestination" BaseType="EventDestination.v1_1_2.EventDestination">
469        <Property Name="Actions" Type="EventDestination.v1_2_0.Actions" Nullable="false">
470          <Annotation Term="OData.Description" String="The available actions for this resource."/>
471          <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
472        </Property>
473      </EntityType>
474
475      <ComplexType Name="Actions">
476        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
477        <Annotation Term="OData.Description" String="The available actions for this resource."/>
478        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
479        <Property Name="Oem" Type="EventDestination.v1_2_0.OemActions" Nullable="false">
480          <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
481          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
482        </Property>
483      </ComplexType>
484
485      <ComplexType Name="OemActions">
486        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
487        <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
488        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
489      </ComplexType>
490    </Schema>
491
492    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_2_1">
493      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
494      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
495      <EntityType Name="EventDestination" BaseType="EventDestination.v1_2_0.EventDestination"/>
496    </Schema>
497
498    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_2_2">
499      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
500      <Annotation Term="OData.Description" String="This version was created to change EventType to use the unversioned definition.  It was also created to add descriptions to various enumerated values."/>
501      <EntityType Name="EventDestination" BaseType="EventDestination.v1_2_1.EventDestination"/>
502    </Schema>
503
504    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_2_3">
505      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
506      <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."/>
507      <EntityType Name="EventDestination" BaseType="EventDestination.v1_2_2.EventDestination"/>
508    </Schema>
509
510    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_2_4">
511      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
512      <Annotation Term="OData.Description" String="This version was created to update the descriptions for HttpHeaders.  It was also created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/>
513      <EntityType Name="EventDestination" BaseType="EventDestination.v1_2_3.EventDestination"/>
514    </Schema>
515
516    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_2_5">
517      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
518      <Annotation Term="OData.Description" String="This version was created to update the descriptions for HttpHeaders.  It was also created to update descriptions that this schema defines."/>
519      <EntityType Name="EventDestination" BaseType="EventDestination.v1_2_4.EventDestination"/>
520    </Schema>
521
522    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_2_6">
523      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
524      <Annotation Term="OData.Description" String="This version was created to improve the descriptions for EventFormatType and EventDestinationProtocol."/>
525      <EntityType Name="EventDestination" BaseType="EventDestination.v1_2_5.EventDestination"/>
526    </Schema>
527
528    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_2_7">
529      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
530      <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
531      <EntityType Name="EventDestination" BaseType="EventDestination.v1_2_6.EventDestination"/>
532    </Schema>
533
534    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_2_8">
535      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
536      <Annotation Term="OData.Description" String="This version was created to clarify the format of the MessageId in the MessageIds property."/>
537      <EntityType Name="EventDestination" BaseType="EventDestination.v1_2_7.EventDestination"/>
538    </Schema>
539
540    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_2_9">
541      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
542      <Annotation Term="OData.Description" String="This version was created to make the format terminology of MessageId values consistent with the Redfish Specification and other schemas."/>
543      <EntityType Name="EventDestination" BaseType="EventDestination.v1_2_8.EventDestination"/>
544    </Schema>
545
546    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_2_10">
547      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
548      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
549      <EntityType Name="EventDestination" BaseType="EventDestination.v1_2_9.EventDestination"/>
550    </Schema>
551
552    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_3_0">
553      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
554      <Annotation Term="Redfish.Release" String="2018.1"/>
555
556      <EntityType Name="EventDestination" BaseType="EventDestination.v1_2_2.EventDestination">
557        <Property Name="SubscriptionType" Type="EventDestination.v1_3_0.SubscriptionType">
558          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
559          <Annotation Term="OData.Description" String="The subscription type for events."/>
560          <Annotation Term="OData.LongDescription" String="This property shall indicate the type of subscription for events.  If this property is not present, the SubscriptionType shall be assumed to be RedfishEvent."/>
561          <Annotation Term="Redfish.Required"/>
562        </Property>
563      </EntityType>
564
565      <EnumType Name="SubscriptionType">
566        <Member Name="RedfishEvent">
567          <Annotation Term="OData.Description" String="The subscription follows the Redfish Specification for event notifications.  To send an event notification, a service sends an HTTP POST to the subscriber's destination URI."/>
568        </Member>
569        <Member Name="SSE">
570          <Annotation Term="OData.Description" String="The subscription follows the HTML5 server-sent event definition for event notifications."/>
571        </Member>
572        <Member Name="SNMPTrap">
573          <Annotation Term="OData.Description" String="The subscription follows the various versions of SNMP Traps for event notifications."/>
574          <Annotation Term="OData.LongDescription" String="This value shall indicate the subscription follows the various versions of SNMP Traps for event notifications.  Protocol shall specify the appropriate version of SNMP."/>
575          <Annotation Term="Redfish.Revisions">
576            <Collection>
577              <Record>
578                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
579                <PropertyValue Property="Version" String="v1_7_0"/>
580              </Record>
581            </Collection>
582          </Annotation>
583        </Member>
584        <Member Name="SNMPInform">
585          <Annotation Term="OData.Description" String="The subscription follows versions 2 and 3 of SNMP Inform for event notifications."/>
586          <Annotation Term="OData.LongDescription" String="This value shall indicate the subscription follows versions 2 and 3 of SNMP Inform for event notifications.  Protocol shall specify the appropriate version of SNMP."/>
587          <Annotation Term="Redfish.Revisions">
588            <Collection>
589              <Record>
590                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
591                <PropertyValue Property="Version" String="v1_7_0"/>
592              </Record>
593            </Collection>
594          </Annotation>
595        </Member>
596        <Member Name="Syslog">
597          <Annotation Term="OData.Description" String="The subscription sends syslog messages for event notifications."/>
598          <Annotation Term="OData.LongDescription" String="This value shall indicate the subscription forwards syslog messages to the event destination.  Protocol shall specify the appropriate syslog protocol."/>
599          <Annotation Term="Redfish.Revisions">
600            <Collection>
601              <Record>
602                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
603                <PropertyValue Property="Version" String="v1_9_0"/>
604              </Record>
605            </Collection>
606          </Annotation>
607        </Member>
608        <Member Name="OEM">
609          <Annotation Term="OData.Description" String="The subscription is an OEM subscription."/>
610          <Annotation Term="OData.LongDescription" String="This value shall indicate an OEM subscription type.  The OEMSubscriptionType property shall contain the specific OEM subscription type."/>
611          <Annotation Term="Redfish.Revisions">
612            <Collection>
613              <Record>
614                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
615                <PropertyValue Property="Version" String="v1_9_0"/>
616              </Record>
617            </Collection>
618          </Annotation>
619        </Member>
620      </EnumType>
621    </Schema>
622
623    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_3_1">
624      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
625      <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."/>
626      <EntityType Name="EventDestination" BaseType="EventDestination.v1_3_0.EventDestination"/>
627    </Schema>
628
629    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_3_2">
630      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
631      <Annotation Term="OData.Description" String="This version was created to update the descriptions for HttpHeaders.  It was also created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/>
632      <EntityType Name="EventDestination" BaseType="EventDestination.v1_3_1.EventDestination"/>
633    </Schema>
634
635    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_3_3">
636      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
637      <Annotation Term="OData.Description" String="This version was created to update the descriptions for HttpHeaders.  It was also created to update descriptions that this schema defines."/>
638      <EntityType Name="EventDestination" BaseType="EventDestination.v1_3_2.EventDestination"/>
639    </Schema>
640
641    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_3_4">
642      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
643      <Annotation Term="OData.Description" String="This version was created to improve the descriptions for EventFormatType and EventDestinationProtocol."/>
644      <EntityType Name="EventDestination" BaseType="EventDestination.v1_3_3.EventDestination"/>
645    </Schema>
646
647    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_3_5">
648      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
649      <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
650      <EntityType Name="EventDestination" BaseType="EventDestination.v1_3_4.EventDestination"/>
651    </Schema>
652
653    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_3_6">
654      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
655      <Annotation Term="OData.Description" String="This version was created to clarify the format of the MessageId in the MessageIds property."/>
656      <EntityType Name="EventDestination" BaseType="EventDestination.v1_3_5.EventDestination"/>
657    </Schema>
658
659    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_3_7">
660      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
661      <Annotation Term="OData.Description" String="This version was created to make the format terminology of MessageId values consistent with the Redfish Specification and other schemas."/>
662      <EntityType Name="EventDestination" BaseType="EventDestination.v1_3_6.EventDestination"/>
663    </Schema>
664
665    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_3_8">
666      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
667      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
668      <EntityType Name="EventDestination" BaseType="EventDestination.v1_3_7.EventDestination"/>
669    </Schema>
670
671    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_4_0">
672      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
673      <Annotation Term="Redfish.Release" String="2018.2"/>
674      <Annotation Term="OData.Description" String="This version was created to add the RegistryPrefix, ResourceType and SubordinateResources method of eventing."/>
675
676      <EntityType Name="EventDestination" BaseType="EventDestination.v1_3_0.EventDestination">
677        <Property Name="RegistryPrefixes" Type="Collection(Edm.String)">
678          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
679          <Annotation Term="OData.Description" String="The list of prefixes for the message registries that contain the MessageIds that are sent to this event destination."/>
680          <Annotation Term="OData.LongDescription" String="This property shall contain an array the prefixes of message registries that contain the MessageIds that are the allowable values for the MessageId property within an event sent to the subscriber.  Events with a MessageId that is not from a message registry contained in this array and is not contained by MessageIds shall not be sent to the subscriber.  If this property is an empty array or is absent, no inclusive filtering based upon message registry of the MessageId of an event is performed."/>
681        </Property>
682        <Property Name="ResourceTypes" Type="Collection(Edm.String)">
683          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
684          <Annotation Term="OData.Description" String="The list of resource type values (schema names) that correspond to the OriginOfCondition.  The version and full namespace should not be specified."/>
685          <Annotation Term="OData.LongDescription" String="This property shall specify an array of resource type values that contain the allowable resource types for the resource referenced by the OriginOfCondition property.  Events with the resource type of the resource referenced by the OriginOfCondition property that is not contained in this array shall not be sent to the subscriber.  If this property is an empty array or is absent, no filtering based upon the resource type of the OriginOfCondition of an event is performed.  This property shall contain only the general namespace for the type and not the versioned value.  For example, it shall not contain `Task.v1_2_0.Task` and instead shall contain `Task`.  To specify that a client is subscribing to metric reports, the EventTypes property should include `MetricReport`."/>
686        </Property>
687        <Property Name="SubordinateResources" Type="Edm.Boolean">
688          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
689          <Annotation Term="OData.Description" String="An indication of whether the subscription is for events in the OriginResources array and its subordinate resources.  If `true` and the OriginResources array is specified, the subscription is for events in the OriginResources array and its subordinate resources.  Note that resources associated through the Links section are not considered subordinate.  If `false` and the OriginResources array is specified, the subscription is for events in the OriginResources array only.  If the OriginResources array is not present, this property has no relevance."/>
690          <Annotation Term="OData.LongDescription" String="This property shall indicate whether the subscription is for events in the OriginResources array and its subordinate resources.  If `true` and the OriginResources array is specified, the subscription is for events in the OriginResources array and its subordinate resources.  Note that resources associated through the Links section are not considered subordinate.  If `false` and the OriginResources array is specified, the subscription shall be for events in the OriginResources array only.  If the OriginResources array is not present, this property shall have no relevance."/>
691        </Property>
692        <Property Name="EventFormatType" Type="EventDestination.EventFormatType">
693          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
694          <Annotation Term="OData.Description" String="The content types of the message that are sent to the EventDestination."/>
695          <Annotation Term="OData.LongDescription" String="This property shall indicate the content types of the message that this service sends to the EventDestination.  If this property is not present, the EventFormatType shall be assumed to be Event."/>
696        </Property>
697      </EntityType>
698    </Schema>
699
700    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_4_1">
701      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
702      <Annotation Term="OData.Description" String="This version was created to update the descriptions for HttpHeaders.  It was also created to force the regeneration of JSON Schema so that URI properties use the uri-reference format.  It was also created to update the descriptions for EventTypes and ResourceTypes, regarding MetricReports."/>
703      <EntityType Name="EventDestination" BaseType="EventDestination.v1_4_0.EventDestination"/>
704    </Schema>
705
706    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_4_2">
707      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
708      <Annotation Term="OData.Description" String="This version was created to update the descriptions for HttpHeaders.  It was also created to update descriptions that this schema defines."/>
709      <EntityType Name="EventDestination" BaseType="EventDestination.v1_4_1.EventDestination"/>
710    </Schema>
711
712    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_4_3">
713      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
714      <Annotation Term="OData.Description" String="This version was created to improve the descriptions for EventFormatType and EventDestinationProtocol."/>
715      <EntityType Name="EventDestination" BaseType="EventDestination.v1_4_2.EventDestination"/>
716    </Schema>
717
718    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_4_4">
719      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
720      <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
721      <EntityType Name="EventDestination" BaseType="EventDestination.v1_4_3.EventDestination"/>
722    </Schema>
723
724    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_4_5">
725      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
726      <Annotation Term="OData.Description" String="This version was created to clarify the format of the MessageId in the MessageIds property."/>
727      <EntityType Name="EventDestination" BaseType="EventDestination.v1_4_4.EventDestination"/>
728    </Schema>
729
730    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_4_6">
731      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
732      <Annotation Term="OData.Description" String="This version was created to make the format terminology of MessageId values consistent with the Redfish Specification and other schemas."/>
733      <EntityType Name="EventDestination" BaseType="EventDestination.v1_4_5.EventDestination"/>
734    </Schema>
735
736    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_4_7">
737      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
738      <Annotation Term="OData.Description" String="This version was created to remove normative language from non-normative descriptions."/>
739      <EntityType Name="EventDestination" BaseType="EventDestination.v1_4_6.EventDestination"/>
740    </Schema>
741
742    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_4_8">
743      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
744      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
745      <EntityType Name="EventDestination" BaseType="EventDestination.v1_4_7.EventDestination"/>
746    </Schema>
747
748    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_5_0">
749      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
750      <Annotation Term="Redfish.Release" String="2019.1"/>
751      <Annotation Term="OData.Description" String="This version was created to deprecate the EventTypes property."/>
752
753      <EntityType Name="EventDestination" BaseType="EventDestination.v1_4_1.EventDestination"/>
754    </Schema>
755
756    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_5_1">
757      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
758      <Annotation Term="OData.Description" String="This version was created to update the descriptions for HttpHeaders.  It was also created to update descriptions that this schema defines."/>
759      <EntityType Name="EventDestination" BaseType="EventDestination.v1_5_0.EventDestination"/>
760    </Schema>
761
762    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_5_2">
763      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
764      <Annotation Term="OData.Description" String="This version was created to improve the descriptions for EventFormatType and EventDestinationProtocol."/>
765      <EntityType Name="EventDestination" BaseType="EventDestination.v1_5_1.EventDestination"/>
766    </Schema>
767
768    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_5_3">
769      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
770      <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
771      <EntityType Name="EventDestination" BaseType="EventDestination.v1_5_2.EventDestination"/>
772    </Schema>
773
774    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_5_4">
775      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
776      <Annotation Term="OData.Description" String="This version was created to clarify the format of the MessageId in the MessageIds property."/>
777      <EntityType Name="EventDestination" BaseType="EventDestination.v1_5_3.EventDestination"/>
778    </Schema>
779
780    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_5_5">
781      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
782      <Annotation Term="OData.Description" String="This version was created to make the format terminology of MessageId values consistent with the Redfish Specification and other schemas."/>
783      <EntityType Name="EventDestination" BaseType="EventDestination.v1_5_4.EventDestination"/>
784    </Schema>
785
786    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_5_6">
787      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
788      <Annotation Term="OData.Description" String="This version was created to remove normative language from non-normative descriptions."/>
789      <EntityType Name="EventDestination" BaseType="EventDestination.v1_5_5.EventDestination"/>
790    </Schema>
791
792    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_5_7">
793      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
794      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
795      <EntityType Name="EventDestination" BaseType="EventDestination.v1_5_6.EventDestination"/>
796    </Schema>
797
798    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_6_0">
799      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
800      <Annotation Term="Redfish.Release" String="2019.2"/>
801      <Annotation Term="OData.Description" String="This version was created to add DeliveryRetryPolicy."/>
802
803      <EntityType Name="EventDestination" BaseType="EventDestination.v1_5_0.EventDestination">
804        <Property Name="DeliveryRetryPolicy" Type="EventDestination.v1_6_0.DeliveryRetryPolicy">
805          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
806          <Annotation Term="OData.Description" String="The subscription delivery retry policy for events, where the subscription type is RedfishEvent."/>
807          <Annotation Term="OData.LongDescription" String="This property shall indicate the subscription delivery retry policy for events where the subscription type is RedfishEvent."/>
808        </Property>
809        <Property Name="Status" Type="Resource.Status" Nullable="false">
810          <Annotation Term="OData.Description" String="The status and health of the resource and its subordinate or dependent resources."/>
811          <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
812        </Property>
813        <NavigationProperty Name="MetricReportDefinitions" Type="Collection(MetricReportDefinition.MetricReportDefinition)">
814          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
815          <Annotation Term="OData.Description" String="A list of metric report definitions for which the service only sends related metric reports.  If this property is absent or the array is empty, metric reports that originate from any metric report definition are sent to the subscriber."/>
816          <Annotation Term="OData.LongDescription" String="This property shall specify an array of metric report definitions that are the only allowable generators of metric reports for this subscription.  Metric reports originating from metric report definitions not contained in this array shall not be sent to the subscriber.  If this property is absent or the array is empty, the service shall send metric reports originating from any metric report definition to the subscriber."/>
817        </NavigationProperty>
818      </EntityType>
819
820      <EnumType Name="DeliveryRetryPolicy">
821        <Member Name="TerminateAfterRetries">
822          <Annotation Term="OData.Description" String="The subscription is terminated after the maximum number of retries is reached."/>
823          <Annotation Term="OData.LongDescription" String="This value shall indicate the subscription is terminated after the maximum number of retries is reached, specified by the DeliveryRetryAttempts property in the event service."/>
824        </Member>
825        <Member Name="SuspendRetries">
826          <Annotation Term="OData.Description" String="The subscription is suspended after the maximum number of retries is reached."/>
827          <Annotation Term="OData.LongDescription" String="This value shall indicate the subscription is suspended after the maximum number of retries is reached, specified by the DeliveryRetryAttempts property in the event service.  The value of the State property within Status shall contain `Disabled` for a suspended subscription."/>
828        </Member>
829        <Member Name="RetryForever">
830          <Annotation Term="OData.Description" String="The subscription is not suspended or terminated, and attempts at delivery of future events continues regardless of the number of retries."/>
831          <Annotation Term="OData.LongDescription" String="This value shall indicate the subscription is not suspended or terminated, and attempts at delivery of future events shall continue regardless of the number of retries.  The interval between retries remains constant and is specified by the DeliveryRetryIntervalSeconds property in the event service."/>
832        </Member>
833        <Member Name="RetryForeverWithBackoff">
834          <Annotation Term="OData.Description" String="The subscription is not suspended or terminated, and attempts at delivery of future events continues regardless of the number of retries, but issued over time according to a service-defined backoff algorithm."/>
835          <Annotation Term="OData.LongDescription" String="This value shall indicate the subscription is not suspended or terminated, and attempts at delivery of future events shall continue regardless of the number of retries.  Retry attempts are issued over time according to a service-defined backoff algorithm.  The backoff algorithm may insert an increasing amount of delay between retry attempts and may reach a maximum."/>
836          <Annotation Term="Redfish.Revisions">
837            <Collection>
838              <Record>
839                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
840                <PropertyValue Property="Version" String="v1_10_0"/>
841              </Record>
842            </Collection>
843          </Annotation>
844        </Member>
845      </EnumType>
846    </Schema>
847
848    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_6_1">
849      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
850      <Annotation Term="OData.Description" String="This version was created to correct typographic errors in DeliveryRetryPolicy."/>
851      <EntityType Name="EventDestination" BaseType="EventDestination.v1_6_0.EventDestination"/>
852    </Schema>
853
854    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_6_2">
855      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
856      <Annotation Term="OData.Description" String="This version was created to improve the descriptions for EventFormatType and EventDestinationProtocol.  It was also created to allow for a service to select its own DeliveryRetryPolicy if not specified by the client."/>
857      <EntityType Name="EventDestination" BaseType="EventDestination.v1_6_1.EventDestination"/>
858    </Schema>
859
860    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_6_3">
861      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
862      <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology."/>
863      <EntityType Name="EventDestination" BaseType="EventDestination.v1_6_2.EventDestination"/>
864    </Schema>
865
866    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_6_4">
867      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
868      <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
869      <EntityType Name="EventDestination" BaseType="EventDestination.v1_6_3.EventDestination"/>
870    </Schema>
871
872    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_6_5">
873      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
874      <Annotation Term="OData.Description" String="This version was created to clarify the format of the MessageId in the MessageIds property."/>
875      <EntityType Name="EventDestination" BaseType="EventDestination.v1_6_4.EventDestination"/>
876    </Schema>
877
878    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_6_6">
879      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
880      <Annotation Term="OData.Description" String="This version was created to make the format terminology of MessageId values consistent with the Redfish Specification and other schemas."/>
881      <EntityType Name="EventDestination" BaseType="EventDestination.v1_6_5.EventDestination"/>
882    </Schema>
883
884    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_6_7">
885      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
886      <Annotation Term="OData.Description" String="This version was created to remove normative language from non-normative descriptions."/>
887      <EntityType Name="EventDestination" BaseType="EventDestination.v1_6_6.EventDestination"/>
888    </Schema>
889
890    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_6_8">
891      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
892      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
893      <EntityType Name="EventDestination" BaseType="EventDestination.v1_6_7.EventDestination"/>
894    </Schema>
895
896    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_7_0">
897      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
898      <Annotation Term="Redfish.Release" String="2019.3"/>
899      <Annotation Term="OData.Description" String="This version was created to add SMTP and SNMP to EventDestinationProtocol, and SNMP to SubscriptionType."/>
900
901      <EntityType Name="EventDestination" BaseType="EventDestination.v1_6_0.EventDestination">
902        <Property Name="SNMP" Type="EventDestination.v1_7_0.SNMPSettings" Nullable="false">
903          <Annotation Term="OData.Description" String="Settings for an SNMP event destination."/>
904          <Annotation Term="OData.LongDescription" String="This property shall contain the settings for an SNMP event destination."/>
905        </Property>
906      </EntityType>
907
908      <ComplexType Name="SNMPSettings">
909        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
910        <Annotation Term="OData.Description" String="Settings for an SNMP event destination."/>
911        <Annotation Term="OData.LongDescription" String="This type shall contain the settings for an SNMP event destination."/>
912        <Property Name="TrapCommunity" Type="Edm.String">
913          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Write"/>
914          <Annotation Term="OData.Description" String="The SNMP trap community string."/>
915          <Annotation Term="OData.LongDescription" String="This property shall contain the SNMP trap community string.  The value shall be `null` in responses."/>
916        </Property>
917        <Property Name="AuthenticationKey" Type="Edm.String">
918          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Write"/>
919          <Annotation Term="OData.Description" String="The secret authentication key for SNMPv3."/>
920          <Annotation Term="OData.LongDescription" String="This property shall contain the key for SNMPv3 authentication.  The value shall be `null` in responses.  This property accepts a passphrase or a hex-encoded key.  If the string starts with `Passphrase:`, the remainder of the string shall be the passphrase and shall be converted to the key as described in the 'Password to Key Algorithm' section of RFC3414.  If the string starts with `Hex:`, then the remainder of the string shall be the key encoded in hexadecimal notation.  If the string starts with neither, the full string shall be a passphrase and shall be converted to the key as described in the 'Password to Key Algorithm' section of RFC3414.  The passphrase can contain any printable characters except for the double quotation mark."/>
921          <Annotation Term="Validation.Pattern" String="(^[ !#-~]+$)|(^Passphrase:[ ^[ !#-~]+$)|(^Hex:[0-9A-Fa-f]{24,96})|(^\*+$)"/>
922        </Property>
923        <Property Name="AuthenticationProtocol" Type="EventDestination.v1_7_0.SNMPAuthenticationProtocols">
924          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
925          <Annotation Term="OData.Description" String="The authentication protocol for SNMPv3."/>
926          <Annotation Term="OData.LongDescription" String="This property shall contain the SNMPv3 authentication protocol."/>
927        </Property>
928        <Property Name="EncryptionKey" Type="Edm.String">
929          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Write"/>
930          <Annotation Term="OData.Description" String="The secret authentication key for SNMPv3."/>
931          <Annotation Term="OData.LongDescription" String="This property shall contain the key for SNMPv3 encryption.  The value shall be `null` in responses.  This property accepts a passphrase or a hex-encoded key.  If the string starts with `Passphrase:`, the remainder of the string shall be the passphrase and shall be converted to the key as described in the 'Password to Key Algorithm' section of RFC3414.  If the string starts with `Hex:`, then the remainder of the string shall be the key encoded in hexadecimal notation.  If the string starts with neither, the full string shall be a passphrase and shall be converted to the key as described in the 'Password to Key Algorithm' section of RFC3414.  The passphrase can contain any printable characters except for the double quotation mark."/>
932          <Annotation Term="Validation.Pattern" String="(^[A-Za-z0-9]+$)|(^\*+$)"/>
933        </Property>
934        <Property Name="EncryptionProtocol" Type="EventDestination.v1_7_0.SNMPEncryptionProtocols">
935          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
936          <Annotation Term="OData.Description" String="The encryption protocol for SNMPv3."/>
937          <Annotation Term="OData.LongDescription" String="This property shall contain the SNMPv3 encryption protocol."/>
938        </Property>
939      </ComplexType>
940
941      <EnumType Name="SNMPAuthenticationProtocols">
942        <Member Name="None">
943          <Annotation Term="OData.Description" String="No authentication."/>
944          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication is not required."/>
945        </Member>
946        <Member Name="CommunityString">
947          <Annotation Term="OData.Description" String="Trap community string authentication."/>
948          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication using SNMP community strings and the value of TrapCommunity."/>
949        </Member>
950        <Member Name="HMAC_MD5">
951          <Annotation Term="OData.Description" String="HMAC-MD5-96 authentication."/>
952          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication conforms to the RFC3414-defined HMAC-MD5-96 authentication protocol."/>
953        </Member>
954        <Member Name="HMAC_SHA96">
955          <Annotation Term="OData.Description" String="HMAC-SHA-96 authentication."/>
956          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication conforms to the RFC3414-defined HMAC-SHA-96 authentication protocol."/>
957        </Member>
958        <Member Name="HMAC128_SHA224">
959          <Annotation Term="OData.Description" String="HMAC-128-SHA-224 authentication."/>
960          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication for SNMPv3 access conforms to the RFC7860-defined usmHMAC128SHA224AuthProtocol."/>
961          <Annotation Term="Redfish.Revisions">
962            <Collection>
963              <Record>
964                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
965                <PropertyValue Property="Version" String="v1_10_0"/>
966              </Record>
967            </Collection>
968          </Annotation>
969        </Member>
970        <Member Name="HMAC192_SHA256">
971          <Annotation Term="OData.Description" String="HMAC-192-SHA-256 authentication."/>
972          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication for SNMPv3 access conforms to the RFC7860-defined usmHMAC192SHA256AuthProtocol."/>
973          <Annotation Term="Redfish.Revisions">
974            <Collection>
975              <Record>
976                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
977                <PropertyValue Property="Version" String="v1_10_0"/>
978              </Record>
979            </Collection>
980          </Annotation>
981        </Member>
982        <Member Name="HMAC256_SHA384">
983          <Annotation Term="OData.Description" String="HMAC-256-SHA-384 authentication."/>
984          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication for SNMPv3 access conforms to the RFC7860-defined usmHMAC256SHA384AuthProtocol."/>
985          <Annotation Term="Redfish.Revisions">
986            <Collection>
987              <Record>
988                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
989                <PropertyValue Property="Version" String="v1_10_0"/>
990              </Record>
991            </Collection>
992          </Annotation>
993        </Member>
994        <Member Name="HMAC384_SHA512">
995          <Annotation Term="OData.Description" String="HMAC-384-SHA-512 authentication."/>
996          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication for SNMPv3 access conforms to the RFC7860-defined usmHMAC384SHA512AuthProtocol."/>
997          <Annotation Term="Redfish.Revisions">
998            <Collection>
999              <Record>
1000                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
1001                <PropertyValue Property="Version" String="v1_10_0"/>
1002              </Record>
1003            </Collection>
1004          </Annotation>
1005        </Member>
1006      </EnumType>
1007
1008      <EnumType Name="SNMPEncryptionProtocols">
1009        <Member Name="None">
1010          <Annotation Term="OData.Description" String="No encryption."/>
1011          <Annotation Term="OData.LongDescription" String="This value shall indicate there is no encryption."/>
1012        </Member>
1013        <Member Name="CBC_DES">
1014          <Annotation Term="OData.Description" String="CBC-DES encryption."/>
1015          <Annotation Term="OData.LongDescription" String="This value shall indicate encryption conforms to the RFC3414-defined CBC-DES encryption protocol."/>
1016        </Member>
1017        <Member Name="CFB128_AES128">
1018          <Annotation Term="OData.Description" String="CFB128-AES-128 encryption."/>
1019          <Annotation Term="OData.LongDescription" String="This value shall indicate encryption conforms to the RFC3826-defined CFB128-AES-128 encryption protocol."/>
1020        </Member>
1021        <Member Name="CFB128_AES192">
1022          <Annotation Term="OData.Description" String="CFB128-AES-192 encryption."/>
1023          <Annotation Term="OData.LongDescription" String="This value shall indicate encryption conforms to the CFB128-AES-192 encryption protocol, extended from RFC3826."/>
1024          <Annotation Term="Redfish.Revisions">
1025            <Collection>
1026              <Record>
1027                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
1028                <PropertyValue Property="Version" String="v1_14_0"/>
1029              </Record>
1030            </Collection>
1031          </Annotation>
1032        </Member>
1033        <Member Name="CFB128_AES256">
1034          <Annotation Term="OData.Description" String="CFB128-AES-256 encryption."/>
1035          <Annotation Term="OData.LongDescription" String="This value shall indicate encryption conforms to the CFB128-AES-256 encryption protocol, extended from RFC3826."/>
1036          <Annotation Term="Redfish.Revisions">
1037            <Collection>
1038              <Record>
1039                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
1040                <PropertyValue Property="Version" String="v1_14_0"/>
1041              </Record>
1042            </Collection>
1043          </Annotation>
1044        </Member>
1045      </EnumType>
1046    </Schema>
1047
1048    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_7_1">
1049      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1050      <Annotation Term="OData.Description" String="This version was created to correct typographic errors in DeliveryRetryPolicy."/>
1051      <EntityType Name="EventDestination" BaseType="EventDestination.v1_7_0.EventDestination"/>
1052    </Schema>
1053
1054    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_7_2">
1055      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1056      <Annotation Term="OData.Description" String="This version was created to improve the descriptions for EventFormatType and EventDestinationProtocol.  It was also created to correct descriptions and terms for SNMP properties.  It was also created to allow for a service to select its own DeliveryRetryPolicy if not specified by the client."/>
1057      <EntityType Name="EventDestination" BaseType="EventDestination.v1_7_1.EventDestination"/>
1058    </Schema>
1059
1060    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_7_3">
1061      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1062      <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology."/>
1063      <EntityType Name="EventDestination" BaseType="EventDestination.v1_7_2.EventDestination"/>
1064    </Schema>
1065
1066    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_7_4">
1067      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1068      <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
1069      <EntityType Name="EventDestination" BaseType="EventDestination.v1_7_3.EventDestination"/>
1070    </Schema>
1071
1072    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_7_5">
1073      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1074      <Annotation Term="OData.Description" String="This version was created to clarify the format of the MessageId in the MessageIds property."/>
1075      <EntityType Name="EventDestination" BaseType="EventDestination.v1_7_4.EventDestination"/>
1076    </Schema>
1077
1078    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_7_6">
1079      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1080      <Annotation Term="OData.Description" String="This version was created to make the format terminology of MessageId values consistent with the Redfish Specification and other schemas.  It was also created to mark properties with values containing sensitive data as write-only."/>
1081      <EntityType Name="EventDestination" BaseType="EventDestination.v1_7_5.EventDestination"/>
1082    </Schema>
1083
1084    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_7_7">
1085      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1086      <Annotation Term="OData.Description" String="This version was created to remove normative language from non-normative descriptions."/>
1087      <EntityType Name="EventDestination" BaseType="EventDestination.v1_7_6.EventDestination"/>
1088    </Schema>
1089
1090    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_7_8">
1091      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1092      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1093      <EntityType Name="EventDestination" BaseType="EventDestination.v1_7_7.EventDestination"/>
1094    </Schema>
1095
1096    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_8_0">
1097      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1098      <Annotation Term="Redfish.Release" String="2020.1"/>
1099      <Annotation Term="OData.Description" String="This version was created to add the IncludeOriginOfCondition property."/>
1100
1101      <EntityType Name="EventDestination" BaseType="EventDestination.v1_7_0.EventDestination">
1102        <Property Name="IncludeOriginOfCondition" Type="Edm.Boolean">
1103          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1104          <Annotation Term="OData.Description" String="An indication of whether the events subscribed to will also include the entire resource or object referenced by the OriginOfCondition property in the event payload."/>
1105          <Annotation Term="OData.LongDescription" String="This property shall indicate whether the event payload sent to the subscription destination will expand the OriginOfCondition property to include the resource or object referenced by the OriginOfCondition property."/>
1106        </Property>
1107      </EntityType>
1108    </Schema>
1109
1110    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_8_1">
1111      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1112      <Annotation Term="OData.Description" String="This version was created to correct typographic errors in DeliveryRetryPolicy."/>
1113      <EntityType Name="EventDestination" BaseType="EventDestination.v1_8_0.EventDestination"/>
1114    </Schema>
1115
1116    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_8_2">
1117      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1118      <Annotation Term="OData.Description" String="This version was created to improve the descriptions for EventFormatType and EventDestinationProtocol.  It was also created to correct descriptions and terms for SNMP properties.  It was also created to allow for a service to select its own DeliveryRetryPolicy if not specified by the client."/>
1119      <EntityType Name="EventDestination" BaseType="EventDestination.v1_8_1.EventDestination"/>
1120    </Schema>
1121
1122    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_8_3">
1123      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1124      <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology."/>
1125      <EntityType Name="EventDestination" BaseType="EventDestination.v1_8_2.EventDestination"/>
1126    </Schema>
1127
1128    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_8_4">
1129      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1130      <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
1131      <EntityType Name="EventDestination" BaseType="EventDestination.v1_8_3.EventDestination"/>
1132    </Schema>
1133
1134    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_8_5">
1135      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1136      <Annotation Term="OData.Description" String="This version was created to clarify the format of the MessageId in the MessageIds property."/>
1137      <EntityType Name="EventDestination" BaseType="EventDestination.v1_8_4.EventDestination"/>
1138    </Schema>
1139
1140    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_8_6">
1141      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1142      <Annotation Term="OData.Description" String="This version was created to make the format terminology of MessageId values consistent with the Redfish Specification and other schemas.  It was also created to mark properties with values containing sensitive data as write-only."/>
1143      <EntityType Name="EventDestination" BaseType="EventDestination.v1_8_5.EventDestination"/>
1144    </Schema>
1145
1146    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_8_7">
1147      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1148      <Annotation Term="OData.Description" String="This version was created to remove normative language from non-normative descriptions."/>
1149      <EntityType Name="EventDestination" BaseType="EventDestination.v1_8_6.EventDestination"/>
1150    </Schema>
1151
1152    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_8_8">
1153      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1154      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1155      <EntityType Name="EventDestination" BaseType="EventDestination.v1_8_7.EventDestination"/>
1156    </Schema>
1157
1158    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_9_0">
1159      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1160      <Annotation Term="Redfish.Release" String="2020.3"/>
1161
1162      <EntityType Name="EventDestination" BaseType="EventDestination.v1_8_1.EventDestination">
1163        <NavigationProperty Name="Certificates" Type="CertificateCollection.CertificateCollection" ContainsTarget="true" Nullable="false">
1164          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1165          <Annotation Term="OData.Description" String="The link to a collection of server certificates for the server referenced by the Destination property."/>
1166          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource collection of type CertificateCollection that represent the server certificates for the server referenced by the Destination property.  If VerifyCertificate is `true`, services shall compare the certificates in this collection with the certificate obtained during handshaking with the event destination in order to verify the identity of the event destination prior to sending an event.  If the server cannot be verified, the service shall not send the event.  If VerifyCertificate is `false`, the service shall not perform certificate verification with certificates in this collection.  Regardless of the contents of this collection, services may perform additional verification based on other factors, such as the configuration of the SecurityPolicy resource."/>
1167          <Annotation Term="OData.AutoExpandReferences"/>
1168        </NavigationProperty>
1169        <Property Name="VerifyCertificate" Type="Edm.Boolean">
1170          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1171          <Annotation Term="OData.Description" String="An indication of whether the service will verify the certificate of the server referenced by the Destination property prior to sending the event."/>
1172          <Annotation Term="OData.LongDescription" String="This property shall indicate whether the service will verify the certificate of the server referenced by the Destination property prior to sending the event with the certificates found in the collection referenced by the Certificates property.  If this property is not supported by the service or specified by the client in the create request, it shall be assumed to be `false`.  Regardless of the value of this property, services may perform additional verification based on other factors, such as the configuration of the SecurityPolicy resource."/>
1173        </Property>
1174        <Property Name="SyslogFilters" Type="Collection(EventDestination.v1_9_0.SyslogFilter)">
1175          <Annotation Term="OData.Description" String="A list of filters applied to syslog messages before sending to a remote syslog server.  An empty list indicates all syslog messages are sent."/>
1176          <Annotation Term="OData.LongDescription" String="This property shall describe all desired syslog messages to send to a remote syslog server.  If this property contains an empty array or is absent, all messages shall be sent."/>
1177        </Property>
1178        <Property Name="OEMProtocol" Type="Edm.String" Nullable="false">
1179          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1180          <Annotation Term="OData.Description" String="The OEM-defined protocol type of the event connection."/>
1181          <Annotation Term="OData.LongDescription" String="This property shall contain the protocol type that the event uses to send the event to the destination.  This property shall be present if Protocol is `OEM`."/>
1182        </Property>
1183        <Property Name="OEMSubscriptionType" Type="Edm.String" Nullable="false">
1184          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1185          <Annotation Term="OData.Description" String="The OEM-defined subscription type for events."/>
1186          <Annotation Term="OData.LongDescription" String="This property shall indicate the OEM-defined type of subscription for events.  This property shall be present if SubscriptionType is `OEM`."/>
1187        </Property>
1188      </EntityType>
1189
1190      <EnumType Name="SyslogSeverity">
1191        <Annotation Term="OData.Description" String="The syslog severity is an application-specific rating used to describe the urgency of the message."/>
1192        <Annotation Term="OData.LongDescription" String="This type shall specify the syslog severity levels as an application-specific rating used to describe the urgency of the message.  `Emergency` should be reserved for messages indicating the system is unusable and `Debug` should only be used when debugging a program.  Severity values are described in RFC5424."/>
1193        <Member Name="Emergency">
1194          <Annotation Term="OData.Description" String="A panic condition."/>
1195        </Member>
1196        <Member Name="Alert">
1197          <Annotation Term="OData.Description" String="A condition that should be corrected immediately, such as a corrupted system database."/>
1198        </Member>
1199        <Member Name="Critical">
1200          <Annotation Term="OData.Description" String="Hard device errors."/>
1201        </Member>
1202        <Member Name="Error">
1203          <Annotation Term="OData.Description" String="An Error."/>
1204        </Member>
1205        <Member Name="Warning">
1206          <Annotation Term="OData.Description" String="A Warning."/>
1207        </Member>
1208        <Member Name="Notice">
1209          <Annotation Term="OData.Description" String="Conditions that are not error conditions, but that might require special handling."/>
1210        </Member>
1211        <Member Name="Informational">
1212          <Annotation Term="OData.Description" String="Informational only."/>
1213        </Member>
1214        <Member Name="Debug">
1215          <Annotation Term="OData.Description" String="Messages that contain information normally of use only when debugging a program."/>
1216        </Member>
1217        <Member Name="All">
1218          <Annotation Term="OData.Description" String="A message of any severity."/>
1219        </Member>
1220      </EnumType>
1221
1222      <EnumType Name="SyslogFacility">
1223        <Annotation Term="OData.Description" String="The syslog facility code is an enumeration of program types."/>
1224        <Annotation Term="OData.LongDescription" String="This type shall specify the syslog facility codes as program types.  Facility values are described in the RFC5424."/>
1225         <Member Name="Kern">
1226          <Annotation Term="OData.Description" String="Kernel messages."/>
1227        </Member>
1228        <Member Name="User">
1229          <Annotation Term="OData.Description" String="User-level messages."/>
1230        </Member>
1231        <Member Name="Mail">
1232          <Annotation Term="OData.Description" String="Mail system."/>
1233        </Member>
1234        <Member Name="Daemon">
1235          <Annotation Term="OData.Description" String="System daemons."/>
1236        </Member>
1237        <Member Name="Auth">
1238          <Annotation Term="OData.Description" String="Security/authentication messages."/>
1239        </Member>
1240        <Member Name="Syslog">
1241          <Annotation Term="OData.Description" String="Messages generated internally by syslogd."/>
1242        </Member>
1243        <Member Name="LPR">
1244          <Annotation Term="OData.Description" String="Line printer subsystem."/>
1245        </Member>
1246        <Member Name="News">
1247          <Annotation Term="OData.Description" String="Network news subsystem."/>
1248        </Member>
1249        <Member Name="UUCP">
1250          <Annotation Term="OData.Description" String="UUCP subsystem."/>
1251        </Member>
1252        <Member Name="Cron">
1253          <Annotation Term="OData.Description" String="Clock daemon."/>
1254        </Member>
1255        <Member Name="Authpriv">
1256          <Annotation Term="OData.Description" String="Security/authentication messages."/>
1257        </Member>
1258        <Member Name="FTP">
1259          <Annotation Term="OData.Description" String="FTP daemon."/>
1260        </Member>
1261        <Member Name="NTP">
1262          <Annotation Term="OData.Description" String="NTP subsystem."/>
1263        </Member>
1264        <Member Name="Security">
1265          <Annotation Term="OData.Description" String="Log audit."/>
1266        </Member>
1267        <Member Name="Console">
1268          <Annotation Term="OData.Description" String="Log alert."/>
1269        </Member>
1270        <Member Name="SolarisCron">
1271          <Annotation Term="OData.Description" String="Scheduling daemon."/>
1272        </Member>
1273        <Member Name="Local0">
1274          <Annotation Term="OData.Description" String="Locally used facility 0."/>
1275        </Member>
1276        <Member Name="Local1">
1277          <Annotation Term="OData.Description" String="Locally used facility 1."/>
1278        </Member>
1279        <Member Name="Local2">
1280          <Annotation Term="OData.Description" String="Locally used facility 2."/>
1281        </Member>
1282        <Member Name="Local3">
1283          <Annotation Term="OData.Description" String="Locally used facility 3."/>
1284        </Member>
1285        <Member Name="Local4">
1286          <Annotation Term="OData.Description" String="Locally used facility 4."/>
1287        </Member>
1288        <Member Name="Local5">
1289          <Annotation Term="OData.Description" String="Locally used facility 5."/>
1290        </Member>
1291        <Member Name="Local6">
1292          <Annotation Term="OData.Description" String="Locally used facility 6."/>
1293        </Member>
1294        <Member Name="Local7">
1295          <Annotation Term="OData.Description" String="Locally used facility 7."/>
1296        </Member>
1297      </EnumType>
1298
1299      <ComplexType Name="SyslogFilter">
1300        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
1301        <Annotation Term="OData.Description" String="A syslog filter."/>
1302        <Annotation Term="OData.LongDescription" String="This type shall contain the filter for a syslog message.  The filter shall describe the desired syslog message to forward to a remote syslog server."/>
1303        <Property Name="LowestSeverity" Type="EventDestination.v1_9_0.SyslogSeverity">
1304          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1305          <Annotation Term="OData.Description" String="The lowest severity level message that will be forwarded."/>
1306          <Annotation Term="OData.LongDescription" String="This property shall contain the lowest syslog severity level that will be forwarded.  The service shall forward all messages equal to or greater than the value in this property.  The value `All` shall indicate all severities."/>
1307        </Property>
1308        <Property Name="LogFacilities" Type="Collection(EventDestination.v1_9_0.SyslogFacility)">
1309          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1310          <Annotation Term="OData.Description" String="The types of programs that can log messages."/>
1311          <Annotation Term="OData.LongDescription" String="This property shall contain the types of programs that can log messages.  If this property contains an empty array or is absent, all facilities shall be indicated."/>
1312        </Property>
1313      </ComplexType>
1314    </Schema>
1315
1316    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_9_1">
1317      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1318      <Annotation Term="OData.Description" String="This version was created to improve the descriptions for EventFormatType and EventDestinationProtocol.  It was also created to correct descriptions and terms for SNMP properties.  It was also created to allow for a service to select its own DeliveryRetryPolicy if not specified by the client."/>
1319      <EntityType Name="EventDestination" BaseType="EventDestination.v1_9_0.EventDestination"/>
1320    </Schema>
1321
1322    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_9_2">
1323      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1324      <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology."/>
1325      <EntityType Name="EventDestination" BaseType="EventDestination.v1_9_1.EventDestination"/>
1326    </Schema>
1327
1328    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_9_3">
1329      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1330      <Annotation Term="OData.Description" String="This version was created to improve the description of SyslogFilters."/>
1331      <EntityType Name="EventDestination" BaseType="EventDestination.v1_9_2.EventDestination"/>
1332    </Schema>
1333
1334    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_9_4">
1335      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1336      <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
1337      <EntityType Name="EventDestination" BaseType="EventDestination.v1_9_3.EventDestination"/>
1338    </Schema>
1339
1340    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_9_5">
1341      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1342      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of VerifyCertificate when not supported or specified."/>
1343      <EntityType Name="EventDestination" BaseType="EventDestination.v1_9_4.EventDestination"/>
1344    </Schema>
1345
1346    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_9_6">
1347      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1348      <Annotation Term="OData.Description" String="This version was created to clarify the format of the MessageId in the MessageIds property."/>
1349      <EntityType Name="EventDestination" BaseType="EventDestination.v1_9_5.EventDestination"/>
1350    </Schema>
1351
1352    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_9_7">
1353      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1354      <Annotation Term="OData.Description" String="This version was created to clarify that other certificate verification might be performed by the service due to other policies in the service.  It was also created to make the format terminology of MessageId values consistent with the Redfish Specification and other schemas.  It was also created to mark properties with values containing sensitive data as write-only."/>
1355      <EntityType Name="EventDestination" BaseType="EventDestination.v1_9_6.EventDestination"/>
1356    </Schema>
1357
1358    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_9_8">
1359      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1360      <Annotation Term="OData.Description" String="This version was created to remove normative language from non-normative descriptions."/>
1361      <EntityType Name="EventDestination" BaseType="EventDestination.v1_9_7.EventDestination"/>
1362    </Schema>
1363
1364    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_9_9">
1365      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1366      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1367      <EntityType Name="EventDestination" BaseType="EventDestination.v1_9_8.EventDestination"/>
1368    </Schema>
1369
1370    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_10_0">
1371      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1372      <Annotation Term="OData.Description" String="This version was created to add additional SNMP authentication protocols and to provide better description for the authentication and encryption keys.  It also added `RetryForeverWithBackoff` to DeliveryRetryPolicy and long description details to the DeliveryRetryPolicy values."/>
1373      <Annotation Term="Redfish.Release" String="2020.4"/>
1374
1375      <EntityType Name="EventDestination" BaseType="EventDestination.v1_9_1.EventDestination"/>
1376
1377      <ComplexType Name="SNMPSettings" BaseType="EventDestination.v1_7_0.SNMPSettings">
1378        <Property Name="AuthenticationKeySet" Type="Edm.Boolean" Nullable="false">
1379          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1380          <Annotation Term="OData.Description" String="Indicates if the AuthenticationKey property is set."/>
1381          <Annotation Term="OData.LongDescription" String="This property shall contain `true` if a valid value was provided for the AuthenticationKey property.  Otherwise, the property shall contain `false`."/>
1382        </Property>
1383        <Property Name="EncryptionKeySet" Type="Edm.Boolean" Nullable="false">
1384          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1385          <Annotation Term="OData.Description" String="Indicates if the EncryptionKey property is set."/>
1386          <Annotation Term="OData.LongDescription" String="This property shall contain `true` if a valid value was provided for the EncryptionKey property.  Otherwise, the property shall contain `false`."/>
1387        </Property>
1388      </ComplexType>
1389    </Schema>
1390
1391    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_10_1">
1392      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1393      <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology."/>
1394      <EntityType Name="EventDestination" BaseType="EventDestination.v1_10_0.EventDestination"/>
1395    </Schema>
1396
1397    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_10_2">
1398      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1399      <Annotation Term="OData.Description" String="This version was created to improve the description of SyslogFilters."/>
1400      <EntityType Name="EventDestination" BaseType="EventDestination.v1_10_1.EventDestination"/>
1401    </Schema>
1402
1403    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_10_3">
1404      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1405      <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
1406      <EntityType Name="EventDestination" BaseType="EventDestination.v1_10_2.EventDestination"/>
1407    </Schema>
1408
1409    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_10_4">
1410      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1411      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of VerifyCertificate when not supported or specified."/>
1412      <EntityType Name="EventDestination" BaseType="EventDestination.v1_10_3.EventDestination"/>
1413    </Schema>
1414
1415    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_10_5">
1416      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1417      <Annotation Term="OData.Description" String="This version was created to clarify the format of the MessageId in the MessageIds property."/>
1418      <EntityType Name="EventDestination" BaseType="EventDestination.v1_10_4.EventDestination"/>
1419    </Schema>
1420
1421    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_10_6">
1422      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1423      <Annotation Term="OData.Description" String="This version was created to clarify that other certificate verification might be performed by the service due to other policies in the service.  It was also created to make the format terminology of MessageId values consistent with the Redfish Specification and other schemas.  It was also created to mark properties with values containing sensitive data as write-only."/>
1424      <EntityType Name="EventDestination" BaseType="EventDestination.v1_10_5.EventDestination"/>
1425    </Schema>
1426
1427    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_10_7">
1428      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1429      <Annotation Term="OData.Description" String="This version was created to remove normative language from non-normative descriptions."/>
1430      <EntityType Name="EventDestination" BaseType="EventDestination.v1_10_6.EventDestination"/>
1431    </Schema>
1432
1433    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_10_8">
1434      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1435      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1436      <EntityType Name="EventDestination" BaseType="EventDestination.v1_10_7.EventDestination"/>
1437    </Schema>
1438
1439    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_11_0">
1440      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1441      <Annotation Term="Redfish.Release" String="2021.2"/>
1442
1443      <EntityType Name="EventDestination" BaseType="EventDestination.v1_10_2.EventDestination">
1444        <Property Name="SendHeartbeat" Type="Edm.Boolean">
1445          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1446          <Annotation Term="OData.Description" String="Send a heartbeat event periodically to the destination."/>
1447          <Annotation Term="OData.LongDescription" String="This property shall indicate that the service shall periodically send the `RedfishServiceFunctional` message defined in the Heartbeat Event Message Registry to the subscriber.  If this property is not present, no periodic event shall be sent.  This property shall not apply to event destinations if the SubscriptionType property contains the value `SSE`."/>
1448        </Property>
1449        <Property Name="HeartbeatIntervalMinutes" Type="Edm.Int64">
1450          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1451          <Annotation Term="OData.Description" String="Interval for sending heartbeat events to the destination in minutes."/>
1452          <Annotation Term="OData.LongDescription" String="This property shall indicate the interval for sending periodic heartbeat events to the subscriber.  The value shall be the interval, in minutes, between each periodic event.  This property shall not be present if the SendHeartbeat property is not present."/>
1453          <Annotation Term="Validation.Minimum" Int="1"/>
1454          <Annotation Term="Validation.Maximum" Int="65535"/>
1455        </Property>
1456        <NavigationProperty Name="ClientCertificates" Type="CertificateCollection.CertificateCollection" ContainsTarget="true" Nullable="false">
1457          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1458          <Annotation Term="OData.Description" String="The link to a collection of client identity certificates provided to the server referenced by the Destination property."/>
1459          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource collection of type CertificateCollection that represents the client identity certificates that are provided to the server referenced by the Destination property as part of TLS handshaking."/>
1460          <Annotation Term="OData.AutoExpandReferences"/>
1461        </NavigationProperty>
1462      </EntityType>
1463    </Schema>
1464
1465    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_11_1">
1466      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1467      <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Destination property with server-sent events."/>
1468      <EntityType Name="EventDestination" BaseType="EventDestination.v1_11_0.EventDestination"/>
1469    </Schema>
1470
1471    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_11_2">
1472      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1473      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of VerifyCertificate when not supported or specified."/>
1474      <EntityType Name="EventDestination" BaseType="EventDestination.v1_11_1.EventDestination"/>
1475    </Schema>
1476
1477    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_11_3">
1478      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1479      <Annotation Term="OData.Description" String="This version was created to clarify the format of the MessageId in the MessageIds property."/>
1480      <EntityType Name="EventDestination" BaseType="EventDestination.v1_11_2.EventDestination"/>
1481    </Schema>
1482
1483    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_11_4">
1484      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1485      <Annotation Term="OData.Description" String="This version was created to clarify that other certificate verification might be performed by the service due to other policies in the service.  It was also created to make the format terminology of MessageId values consistent with the Redfish Specification and other schemas.  It was also created to mark properties with values containing sensitive data as write-only."/>
1486      <EntityType Name="EventDestination" BaseType="EventDestination.v1_11_3.EventDestination"/>
1487    </Schema>
1488
1489    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_11_5">
1490      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1491      <Annotation Term="OData.Description" String="This version was created to remove normative language from non-normative descriptions."/>
1492      <EntityType Name="EventDestination" BaseType="EventDestination.v1_11_4.EventDestination"/>
1493    </Schema>
1494
1495    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_11_6">
1496      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1497      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1498      <EntityType Name="EventDestination" BaseType="EventDestination.v1_11_5.EventDestination"/>
1499    </Schema>
1500
1501    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_12_0">
1502      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1503      <Annotation Term="Redfish.Release" String="2022.1"/>
1504      <Annotation Term="OData.Description" String="This version was created to add the SuspendSubscription action and to add the DeliverBufferedEvents parameter to the ResumeSubscription action."/>
1505
1506      <EntityType Name="EventDestination" BaseType="EventDestination.v1_11_3.EventDestination">
1507        <Property Name="ExcludeRegistryPrefixes" Type="Collection(Edm.String)">
1508          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1509          <Annotation Term="OData.Description" String="The list of prefixes for the message registries that contain the MessageIds that are not sent to this event destination."/>
1510          <Annotation Term="OData.LongDescription" String="This property shall contain an array of prefixes of excluded message registries that contain the MessageIds that are not allowed values for the MessageId property within an event sent to the subscriber.  Events with a MessageId that is from a message registry contained in this array shall not be sent to the subscriber.  If this property is an empty array or is absent, no exclusive filtering based upon message registry of the MessageId of an event is performed."/>
1511        </Property>
1512        <Property Name="ExcludeMessageIds" Type="Collection(Edm.String)">
1513          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1514          <Annotation Term="OData.Description" String="The list of MessageIds that are not sent to this event destination."/>
1515          <Annotation Term="OData.LongDescription" String="This property shall contain an array of excluded MessageIds that are not allowed values for the MessageId property within an event sent to the subscriber.  The MessageId shall be in the `MessageRegistryPrefix.MessageKey` format.  If included, the MessageId major and minor version details should be ignored.  Events with a MessageId that is contained in this array shall not be sent to the subscriber.  If this property is an empty array or is absent, no exclusive filtering based upon the MessageId of an event is performed."/>
1516        </Property>
1517      </EntityType>
1518    </Schema>
1519
1520    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_12_1">
1521      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1522      <Annotation Term="OData.Description" String="This version was created to clarify that other certificate verification might be performed by the service due to other policies in the service.  It was also created to make the format terminology of MessageId values consistent with the Redfish Specification and other schemas.  It was also created to mark properties with values containing sensitive data as write-only."/>
1523      <EntityType Name="EventDestination" BaseType="EventDestination.v1_12_0.EventDestination"/>
1524    </Schema>
1525
1526    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_12_2">
1527      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1528      <Annotation Term="OData.Description" String="This version was created to correct the regular expression pattern for duration properties in JSON Schema and OpenAPI to not allow for negative values."/>
1529      <EntityType Name="EventDestination" BaseType="EventDestination.v1_12_1.EventDestination"/>
1530    </Schema>
1531
1532    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_12_3">
1533      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1534      <Annotation Term="OData.Description" String="This version was created to remove normative language from non-normative descriptions."/>
1535      <EntityType Name="EventDestination" BaseType="EventDestination.v1_12_2.EventDestination"/>
1536    </Schema>
1537
1538    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_12_4">
1539      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1540      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1541      <EntityType Name="EventDestination" BaseType="EventDestination.v1_12_3.EventDestination"/>
1542    </Schema>
1543
1544    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_13_0">
1545      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1546      <Annotation Term="Redfish.Release" String="2022.3"/>
1547      <Annotation Term="OData.Description" String="This version was created to add `Kafka` to EventDestinationProtocol."/>
1548
1549      <EntityType Name="EventDestination" BaseType="EventDestination.v1_12_1.EventDestination">
1550        <Property Name="Severities" Type="Collection(Resource.Health)">
1551          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1552          <Annotation Term="OData.Description" String="The list of severities that are sent to this event destination."/>
1553          <Annotation Term="OData.LongDescription" String="This property shall contain an array of severities that are the allowable values for the MessageSeverity property within an event sent to the subscriber.  If this property is an empty array or is absent, no filtering based upon the MessageSeverity of an event is performed."/>
1554        </Property>
1555      </EntityType>
1556    </Schema>
1557
1558    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_13_1">
1559      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1560      <Annotation Term="OData.Description" String="This version was created to correct the regular expression pattern for duration properties in JSON Schema and OpenAPI to not allow for negative values."/>
1561      <EntityType Name="EventDestination" BaseType="EventDestination.v1_13_0.EventDestination"/>
1562    </Schema>
1563
1564    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_13_2">
1565      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1566      <Annotation Term="OData.Description" String="This version was created to remove normative language from non-normative descriptions."/>
1567      <EntityType Name="EventDestination" BaseType="EventDestination.v1_13_1.EventDestination"/>
1568    </Schema>
1569
1570    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_13_3">
1571      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1572      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1573      <EntityType Name="EventDestination" BaseType="EventDestination.v1_13_2.EventDestination"/>
1574    </Schema>
1575
1576    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventDestination.v1_14_0">
1577      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1578      <Annotation Term="Redfish.Release" String="2023.3"/>
1579      <Annotation Term="OData.Description" String="This version was created to add `CFB128_AES192` and `CFB128_AES256` to SNMPEncryptionProtocols."/>
1580
1581      <EntityType Name="EventDestination" BaseType="EventDestination.v1_13_3.EventDestination"/>
1582    </Schema>
1583
1584  </edmx:DataServices>
1585</edmx:Edmx>
1586