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