1<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################       -->
4<!--# Redfish Schema:  EventService v1.10.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-2023 DMTF.                                                            -->
9<!--# For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright -->
10<!--################################################################################       -->
11<!---->
12<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0">
13
14  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Core.V1.xml">
15    <edmx:Include Namespace="Org.OData.Core.V1" Alias="OData"/>
16  </edmx:Reference>
17  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Capabilities.V1.xml">
18    <edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="Capabilities"/>
19  </edmx:Reference>
20  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Measures.V1.xml">
21    <edmx:Include Namespace="Org.OData.Measures.V1" Alias="Measures"/>
22  </edmx:Reference>
23  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
24    <edmx:Include Namespace="Resource"/>
25    <edmx:Include Namespace="Resource.v1_0_0"/>
26  </edmx:Reference>
27  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
28    <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
29    <edmx:Include Namespace="Validation.v1_0_0" Alias="Validation"/>
30  </edmx:Reference>
31  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Event_v1.xml">
32    <edmx:Include Namespace="Event"/>
33  </edmx:Reference>
34  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/EventDestinationCollection_v1.xml">
35    <edmx:Include Namespace="EventDestinationCollection"/>
36  </edmx:Reference>
37  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/EventDestination_v1.xml">
38    <edmx:Include Namespace="EventDestination"/>
39  </edmx:Reference>
40
41  <edmx:DataServices>
42
43    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService">
44      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
45
46      <EntityType Name="EventService" BaseType="Resource.v1_0_0.Resource" Abstract="true">
47        <Annotation Term="OData.Description" String="The EventService schema contains properties for managing event subscriptions and generates the events sent to subscribers.  The resource has links to the actual collection of subscriptions, which are called event destinations."/>
48        <Annotation Term="OData.LongDescription" String="This resource shall represent an event service for a Redfish implementation."/>
49        <Annotation Term="Capabilities.InsertRestrictions">
50          <Record>
51            <PropertyValue Property="Insertable" Bool="false"/>
52          </Record>
53        </Annotation>
54        <Annotation Term="Capabilities.UpdateRestrictions">
55          <Record>
56            <PropertyValue Property="Updatable" Bool="true"/>
57            <Annotation Term="OData.Description" String="The event service can be updated to enable and disable the service."/>
58          </Record>
59        </Annotation>
60        <Annotation Term="Capabilities.DeleteRestrictions">
61          <Record>
62            <PropertyValue Property="Deletable" Bool="false"/>
63          </Record>
64        </Annotation>
65        <Annotation Term="Redfish.Uris">
66          <Collection>
67            <String>/redfish/v1/EventService</String>
68          </Collection>
69        </Annotation>
70      </EntityType>
71
72      <Action Name="SubmitTestEvent" IsBound="true">
73        <Annotation Term="OData.Description" String="This action generates a test event."/>
74        <Annotation Term="OData.LongDescription" String="This action shall add a test event to the event service with the event data specified in the action parameters.  Then, this message should be sent to any appropriate event destinations."/>
75        <Parameter Name="EventService" Type="EventService.v1_0_0.Actions"/>
76        <Parameter Name="EventType" Type="Event.EventType">
77          <Annotation Term="OData.Description" String="The type for the event to add."/>
78          <Annotation Term="OData.LongDescription" String="This parameter shall contain the property name for which the following allowable values apply.  If not provided by the client, the resulting event should not contain the EventType property."/>
79          <Annotation Term="Redfish.Revisions">
80            <Collection>
81              <Record>
82                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
83                <PropertyValue Property="Version" String="v1_3_0"/>
84                <PropertyValue Property="Description" String="This parameter 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."/>
85              </Record>
86            </Collection>
87          </Annotation>
88        </Parameter>
89        <Parameter Name="EventId" Type="Edm.String">
90          <Annotation Term="OData.Description" String="The ID for the event to add."/>
91          <Annotation Term="OData.LongDescription" String="This parameter shall have the same semantics as the EventId property in the Event schema for Redfish.  A service can ignore this value and replace it with its own.  If not provided by the client, the resulting event may contain a service-defined EventId property."/>
92        </Parameter>
93        <Parameter Name="EventTimestamp" Type="Edm.DateTimeOffset">
94          <Annotation Term="OData.Description" String="The date and time for the event to add."/>
95          <Annotation Term="OData.LongDescription" String="This parameter shall contain the date and time for the event to add and have the same semantics as the EventTimestamp property in the Event schema for Redfish.  If not provided by the client, the resulting event should not contain the EventTimestamp property."/>
96        </Parameter>
97        <Parameter Name="Severity" Type="Edm.String">
98          <Annotation Term="OData.Description" String="The severity for the event to add."/>
99          <Annotation Term="OData.LongDescription" String="This parameter shall contain the severity for the event to add and have the same semantics as the Severity property in the Event schema for Redfish.  If not provided by the client, the resulting event should not contain the Severity property."/>
100        </Parameter>
101        <Parameter Name="MessageSeverity" Type="Resource.Health">
102          <Annotation Term="OData.Description" String="The severity for the event to add."/>
103          <Annotation Term="OData.LongDescription" String="This property shall contain the severity for the event to add and have the same semantics as the MessageSeverity property in the Event schema for Redfish.  If not provided by the client, the resulting event should not contain the MessageSeverity property."/>
104          <Annotation Term="Redfish.Revisions">
105            <Collection>
106              <Record>
107                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
108                <PropertyValue Property="Version" String="v1_10_0"/>
109              </Record>
110            </Collection>
111          </Annotation>
112        </Parameter>
113        <Parameter Name="Message" Type="Edm.String">
114          <Annotation Term="OData.Description" String="The human-readable message for the event to add."/>
115          <Annotation Term="OData.LongDescription" String="This parameter shall have the same semantics as the Message property in the Event schema for Redfish.  If not provided by the client, the resulting event should not contain the Message property."/>
116        </Parameter>
117        <Parameter Name="MessageId" Type="Edm.String" Nullable="false">
118          <Annotation Term="OData.Description" String="The MessageId for the event to add."/>
119          <Annotation Term="OData.LongDescription" String="This parameter shall contain the MessageId for the event to add and have the same semantics as the MessageId property in the Event schema for Redfish.  Services should accept arbitrary values for this parameter that match that match the defined pattern."/>
120          <Annotation Term="Validation.Pattern" String="^\w+\.\d+\.\d+\.\w+$"/>
121        </Parameter>
122        <Parameter Name="MessageArgs" Type="Collection(Edm.String)">
123          <Annotation Term="OData.Description" String="An array of message arguments for the event to add."/>
124          <Annotation Term="OData.LongDescription" String="This parameter shall have the same semantics as the MessageArgs property in the Event schema for Redfish.  If not provided by the client, the resulting event should not contain the MessageArgs property."/>
125        </Parameter>
126        <Parameter Name="OriginOfCondition" Type="Edm.String">
127          <Annotation Term="OData.Description" String="The URL in the OriginOfCondition property of the event to add.  It is not a reference object."/>
128          <Annotation Term="OData.LongDescription" String="This parameter shall be a string that represents the URL contained by the OriginOfCondition property in the Event schema for Redfish.  If not provided by the client, the resulting event should not contain the OriginOfCondition property."/>
129          <Annotation Term="OData.IsURL"/>
130        </Parameter>
131        <Parameter Name="EventGroupId" Type="Edm.Int64">
132          <Annotation Term="OData.Description" String="The group identifier for the event."/>
133          <Annotation Term="OData.LongDescription" String="The parameter shall contain the group identifier for the event.  It has the same semantics as the EventGroupId property in the Event schema for Redfish.  If not provided by the client, the resulting event should not contain the EventGroupId property."/>
134          <Annotation Term="Redfish.Revisions">
135            <Collection>
136              <Record>
137                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
138                <PropertyValue Property="Version" String="v1_3_0"/>
139              </Record>
140            </Collection>
141          </Annotation>
142        </Parameter>
143      </Action>
144
145      <Action Name="TestEventSubscription" IsBound="true">
146        <Annotation Term="OData.Description" String="This action generates a test event using the pre-defined test message."/>
147        <Annotation Term="OData.LongDescription" String="This action shall send an event containing the TestMessage message from the Resource Event Message Registry to all appropriate event destinations."/>
148        <Parameter Name="EventService" Type="EventService.v1_0_0.Actions"/>
149        <Annotation Term="Redfish.Revisions">
150          <Collection>
151            <Record>
152              <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
153              <PropertyValue Property="Version" String="v1_10_0"/>
154            </Record>
155          </Collection>
156        </Annotation>
157      </Action>
158    </Schema>
159
160    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_0_0">
161      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
162      <Annotation Term="Redfish.Release" String="1.0"/>
163
164      <EntityType Name="EventService" BaseType="EventService.EventService">
165        <Property Name="ServiceEnabled" Type="Edm.Boolean">
166          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
167          <Annotation Term="OData.Description" String="An indication of whether this service is enabled.  If `false`, events are no longer published, new SSE connections cannot be established, and existing SSE connections are terminated."/>
168          <Annotation Term="OData.LongDescription" String="This property shall indicate whether this service is enabled.  If `false`, events are no longer published, new SSE connections cannot be established, and existing SSE connections are terminated."/>
169        </Property>
170        <Property Name="DeliveryRetryAttempts" Type="Edm.Int64" Nullable="false">
171          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
172          <Annotation Term="OData.Description" String="The number of times that the POST of an event is retried before the subscription terminates.  This retry occurs at the service level, which means that the HTTP POST to the event destination fails with an HTTP `4XX` or `5XX` status code or an HTTP timeout occurs this many times before the event destination subscription terminates."/>
173          <Annotation Term="OData.LongDescription" String="This property shall contain the number of times that the POST of an event is retried before the subscription terminates.  This retry occurs at the service level, which means that the HTTP POST to the event destination fails with an HTTP `4XX` or `5XX` status code or an HTTP timeout occurs this many times before the event destination subscription terminates."/>
174        </Property>
175        <Property Name="DeliveryRetryIntervalSeconds" Type="Edm.Int64" Nullable="false">
176          <Annotation Term="Measures.Unit" String="s"/>
177          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
178          <Annotation Term="OData.Description" String="The interval, in seconds, between retry attempts for sending any event."/>
179          <Annotation Term="OData.LongDescription" String="This property shall contain the interval, in seconds, between the retry attempts for any event sent to the subscription destination."/>
180        </Property>
181        <Property Name="EventTypesForSubscription" Type="Collection(Event.EventType)" Nullable="false">
182          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
183          <Annotation Term="OData.Description" String="The types of events to which a client can subscribe."/>
184          <Annotation Term="OData.LongDescription" String="This property shall contain the types of events to which a client can subscribe.  The semantics associated with the enumeration values are defined in the Redfish Specification."/>
185          <Annotation Term="Redfish.Revisions">
186            <Collection>
187              <Record>
188                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
189                <PropertyValue Property="Version" String="v1_3_0"/>
190                <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."/>
191              </Record>
192            </Collection>
193          </Annotation>
194        </Property>
195        <Property Name="Actions" Type="EventService.v1_0_0.Actions" Nullable="false">
196          <Annotation Term="OData.Description" String="The available actions for this resource."/>
197          <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
198        </Property>
199        <NavigationProperty Name="Subscriptions" Type="EventDestinationCollection.EventDestinationCollection" ContainsTarget="true" Nullable="false">
200          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
201          <Annotation Term="OData.Description" String="The link to a collection of event destinations."/>
202          <Annotation Term="OData.LongDescription" String="This property shall contain the link to a resource collection of type EventDestinationCollection."/>
203          <Annotation Term="OData.AutoExpandReferences"/>
204        </NavigationProperty>
205        <Property Name="Status" Type="Resource.Status" Nullable="false">
206          <Annotation Term="OData.Description" String="The status and health of the resource and its subordinate or dependent resources."/>
207          <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
208        </Property>
209      </EntityType>
210
211      <ComplexType Name="Actions">
212        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
213        <Annotation Term="OData.Description" String="The available actions for this resource."/>
214        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
215        <Property Name="Oem" Type="EventService.v1_0_0.OemActions" Nullable="false">
216          <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
217          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
218        </Property>
219      </ComplexType>
220
221      <ComplexType Name="OemActions">
222        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
223        <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
224        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
225      </ComplexType>
226    </Schema>
227
228    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_0_2">
229      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
230      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
231      <EntityType Name="EventService" BaseType="EventService.v1_0_0.EventService"/>
232    </Schema>
233
234    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_0_3">
235      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
236      <Annotation Term="OData.Description" String="This version was created to add explicit permissions annotations to all properties for clarity."/>
237      <EntityType Name="EventService" BaseType="EventService.v1_0_2.EventService"/>
238    </Schema>
239
240    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_0_4">
241      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
242      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
243      <EntityType Name="EventService" BaseType="EventService.v1_0_3.EventService"/>
244    </Schema>
245
246    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_0_5">
247      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
248      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated.  In this case, DeliveryRetryAttempts description was updated."/>
249      <EntityType Name="EventService" BaseType="EventService.v1_0_4.EventService"/>
250    </Schema>
251
252    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_0_6">
253      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
254      <Annotation Term="OData.Description" String="This version was created to change EventType to use the unversioned definition.  It was also created to correct the short and long descriptions in the defined actions."/>
255      <EntityType Name="EventService" BaseType="EventService.v1_0_5.EventService"/>
256    </Schema>
257
258    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_0_7">
259      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
260      <Annotation Term="OData.Description" String="This version was created to change DeliveryRetryAttempts and DeliveryRetryIntervalSeconds properties to be writable."/>
261      <EntityType Name="EventService" BaseType="EventService.v1_0_6.EventService"/>
262    </Schema>
263
264    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_0_8">
265      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
266      <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.  It was also created to clarify the OriginOfCondition parameter in the SubmitTestEvent action."/>
267      <EntityType Name="EventService" BaseType="EventService.v1_0_7.EventService"/>
268    </Schema>
269
270    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_0_9">
271      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
272      <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/>
273      <EntityType Name="EventService" BaseType="EventService.v1_0_8.EventService"/>
274    </Schema>
275
276    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_0_10">
277      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
278      <Annotation Term="OData.Description" String="This version was created to remove the required term on most parameters in SubmitTestEvent.  It was also created to update the description of DeliveryRetryAttempts.  It was also created to update descriptions that this schema defines."/>
279      <EntityType Name="EventService" BaseType="EventService.v1_0_9.EventService"/>
280    </Schema>
281
282    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_0_11">
283      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
284      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
285      <EntityType Name="EventService" BaseType="EventService.v1_0_10.EventService"/>
286    </Schema>
287
288    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_0_12">
289      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
290      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
291      <EntityType Name="EventService" BaseType="EventService.v1_0_11.EventService"/>
292    </Schema>
293
294    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_0_13">
295      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
296      <Annotation Term="OData.Description" String="This version was created to specify 64-bit integers in OpenAPI."/>
297      <EntityType Name="EventService" BaseType="EventService.v1_0_12.EventService"/>
298    </Schema>
299
300    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_0_14">
301      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
302      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of the event service when it is disabled."/>
303      <EntityType Name="EventService" BaseType="EventService.v1_0_13.EventService"/>
304    </Schema>
305
306    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_0_15">
307      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
308      <Annotation Term="OData.Description" String="This version was created to clarify behavior of the SubmitTestEvent action when parameters are not provided by the client."/>
309      <EntityType Name="EventService" BaseType="EventService.v1_0_14.EventService"/>
310    </Schema>
311
312    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_0_16">
313      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
314      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
315      <EntityType Name="EventService" BaseType="EventService.v1_0_15.EventService"/>
316    </Schema>
317
318    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_1_0">
319      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
320      <Annotation Term="Redfish.Release" String="2018.1"/>
321
322      <EntityType Name="EventService" BaseType="EventService.v1_0_7.EventService">
323        <Property Name="ServerSentEventUri" Type="Edm.String" Nullable="false">
324          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
325          <Annotation Term="OData.Description" String="The link to a URI for receiving Server-Sent Event representations for the events that this service generates."/>
326          <Annotation Term="OData.LongDescription" String="This property shall contain a URI that specifies an HTML5 Server-Sent Event-conformant endpoint."/>
327          <Annotation Term="OData.IsURL"/>
328        </Property>
329      </EntityType>
330    </Schema>
331
332    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_1_1">
333      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
334      <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number.  It was also created to clarify the OriginOfCondition parameter in the SubmitTestEvent action."/>
335      <EntityType Name="EventService" BaseType="EventService.v1_1_0.EventService"/>
336    </Schema>
337
338    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_1_2">
339      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
340      <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/>
341      <EntityType Name="EventService" BaseType="EventService.v1_1_1.EventService"/>
342    </Schema>
343
344    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_1_3">
345      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
346      <Annotation Term="OData.Description" String="This version was created to remove the required term on most parameters in SubmitTestEvent.  It was also created to update the description of DeliveryRetryAttempts.  It was also created to update descriptions that this schema defines."/>
347      <EntityType Name="EventService" BaseType="EventService.v1_1_2.EventService"/>
348    </Schema>
349
350    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_1_4">
351      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
352      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
353      <EntityType Name="EventService" BaseType="EventService.v1_1_3.EventService"/>
354    </Schema>
355
356    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_1_5">
357      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
358      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
359      <EntityType Name="EventService" BaseType="EventService.v1_1_4.EventService"/>
360    </Schema>
361
362    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_1_6">
363      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
364      <Annotation Term="OData.Description" String="This version was created to specify 64-bit integers in OpenAPI."/>
365      <EntityType Name="EventService" BaseType="EventService.v1_1_5.EventService"/>
366    </Schema>
367
368    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_1_7">
369      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
370      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of the event service when it is disabled."/>
371      <EntityType Name="EventService" BaseType="EventService.v1_1_6.EventService"/>
372    </Schema>
373
374    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_1_8">
375      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
376      <Annotation Term="OData.Description" String="This version was created to clarify behavior of the SubmitTestEvent action when parameters are not provided by the client."/>
377      <EntityType Name="EventService" BaseType="EventService.v1_1_7.EventService"/>
378    </Schema>
379
380    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_1_9">
381      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
382      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
383      <EntityType Name="EventService" BaseType="EventService.v1_1_8.EventService"/>
384    </Schema>
385
386    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_2_0">
387      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
388      <Annotation Term="Redfish.Release" String="2018.2"/>
389      <Annotation Term="OData.Description" String="This version was created to add the RegistryPrefix, ResourceType, and SubordinateResources methods of eventing.  It was also created to add SSEFilterPropertiesSupported."/>
390
391      <EntityType Name="EventService" BaseType="EventService.v1_1_1.EventService">
392        <Property Name="RegistryPrefixes" Type="Collection(Edm.String)">
393          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
394          <Annotation Term="OData.Description" String="The list of the prefixes of the message registries that can be used for the RegistryPrefixes or ExcludeRegistryPrefixes properties on a subscription.  If this property is absent or contains an empty array, the service does not support RegistryPrefix-based subscriptions."/>
395          <Annotation Term="OData.LongDescription" String="This property shall contain the array of the prefixes of the message registries that shall be allowed or excluded for an event subscription."/>
396        </Property>
397        <Property Name="ResourceTypes" Type="Collection(Edm.String)">
398          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
399          <Annotation Term="OData.Description" String="The list of @odata.type values, or schema names, that can be specified in the ResourceTypes array in a subscription.  If this property is absent or contains an empty array, the service does not support resource type-based subscriptions."/>
400          <Annotation Term="OData.LongDescription" String="This property shall specify an array of the valid @odata.type values that can be used for an event subscription."/>
401        </Property>
402        <Property Name="SubordinateResourcesSupported" Type="Edm.Boolean">
403          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
404          <Annotation Term="OData.Description" String="An indication of whether the service supports the SubordinateResources property on both event subscriptions and generated events."/>
405          <Annotation Term="OData.LongDescription" String="This property shall indicate whether the service supports the SubordinateResources property on both event subscriptions and generated events."/>
406        </Property>
407        <Property Name="EventFormatTypes" Type="Collection(EventDestination.EventFormatType)">
408          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
409          <Annotation Term="OData.Description" String="The content types of the message that this service can send to the event destination."/>
410          <Annotation Term="OData.LongDescription" String="This property shall contain the content types of the message that this service can send to the event destination.  If this property is not present, the EventFormatType shall be assumed to be `Event`."/>
411        </Property>
412        <Property Name="SSEFilterPropertiesSupported" Type="EventService.v1_2_0.SSEFilterPropertiesSupported" Nullable="false">
413          <Annotation Term="OData.Description" String="The set of properties that are supported in the `$filter` query parameter for the ServerSentEventUri."/>
414          <Annotation Term="OData.LongDescription" String="This property shall contain the properties that are supported in the `$filter` query parameter for the URI indicated by the ServerSentEventUri property, as described by the Redfish Specification."/>
415        </Property>
416      </EntityType>
417
418      <ComplexType Name="SSEFilterPropertiesSupported">
419        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
420        <Annotation Term="OData.Description" String="The set of properties that are supported in the `$filter` query parameter for the ServerSentEventUri."/>
421        <Annotation Term="OData.LongDescription" String="The type shall contain a set of properties that are supported in the `$filter` query parameter for the URI indicated by the ServerSentEventUri property, as described by the Redfish Specification."/>
422        <Property Name="EventType" Type="Edm.Boolean" Nullable="false">
423          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
424          <Annotation Term="OData.Description" String="An indication of whether the service supports filtering by the EventTypes property."/>
425          <Annotation Term="OData.LongDescription" String="This property shall indicate whether this service supports filtering by the EventTypes property."/>
426          <Annotation Term="Redfish.Revisions">
427            <Collection>
428              <Record>
429                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
430                <PropertyValue Property="Version" String="v1_3_0"/>
431                <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."/>
432              </Record>
433            </Collection>
434          </Annotation>
435        </Property>
436        <Property Name="MetricReportDefinition" Type="Edm.Boolean" Nullable="false">
437          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
438          <Annotation Term="OData.Description" String="An indication of whether the service supports filtering by the MetricReportDefinitions property."/>
439          <Annotation Term="OData.LongDescription" String="This property shall indicate whether this service supports filtering by the MetricReportDefinitions property."/>
440        </Property>
441        <Property Name="RegistryPrefix" Type="Edm.Boolean" Nullable="false">
442          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
443          <Annotation Term="OData.Description" String="An indication of whether the service supports filtering by the RegistryPrefixes property."/>
444          <Annotation Term="OData.LongDescription" String="This property shall indicate whether this service supports filtering by the RegistryPrefixes property."/>
445        </Property>
446        <Property Name="ResourceType" Type="Edm.Boolean" Nullable="false">
447          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
448          <Annotation Term="OData.Description" String="An indication of whether the service supports filtering by the ResourceTypes property."/>
449          <Annotation Term="OData.LongDescription" String="This property shall indicate whether this service supports filtering by the ResourceTypes property."/>
450        </Property>
451        <Property Name="EventFormatType" Type="Edm.Boolean" Nullable="false">
452          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
453          <Annotation Term="OData.Description" String="An indication of whether the service supports filtering by the EventFormatType property."/>
454          <Annotation Term="OData.LongDescription" String="This property shall indicate whether this service supports filtering by the EventFormatType property."/>
455        </Property>
456        <Property Name="MessageId" Type="Edm.Boolean" Nullable="false">
457          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
458          <Annotation Term="OData.Description" String="An indication of whether the service supports filtering by the MessageIds property."/>
459          <Annotation Term="OData.LongDescription" String="This property shall indicate whether this service supports filtering by the MessageIds property."/>
460        </Property>
461        <Property Name="OriginResource" Type="Edm.Boolean" Nullable="false">
462          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
463          <Annotation Term="OData.Description" String="An indication of whether the service supports filtering by the OriginResources property."/>
464          <Annotation Term="OData.LongDescription" String="This property shall indicate whether this service supports filtering by the OriginResources property."/>
465        </Property>
466      </ComplexType>
467    </Schema>
468
469    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_2_1">
470      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
471      <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that URI properties use the uri-reference format."/>
472      <EntityType Name="EventService" BaseType="EventService.v1_2_0.EventService"/>
473    </Schema>
474
475    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_2_2">
476      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
477      <Annotation Term="OData.Description" String="This version was created to remove the required term on most parameters in SubmitTestEvent.  It was also created to update the description of DeliveryRetryAttempts.  It was also created to update descriptions that this schema defines."/>
478      <EntityType Name="EventService" BaseType="EventService.v1_2_1.EventService"/>
479    </Schema>
480
481    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_2_3">
482      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
483      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
484      <EntityType Name="EventService" BaseType="EventService.v1_2_2.EventService"/>
485    </Schema>
486
487    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_2_4">
488      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
489      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
490      <EntityType Name="EventService" BaseType="EventService.v1_2_3.EventService"/>
491    </Schema>
492
493    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_2_5">
494      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
495      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
496      <EntityType Name="EventService" BaseType="EventService.v1_2_4.EventService"/>
497    </Schema>
498
499    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_2_6">
500      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
501      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of the event service when it is disabled."/>
502      <EntityType Name="EventService" BaseType="EventService.v1_2_5.EventService"/>
503    </Schema>
504
505    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_2_7">
506      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
507      <Annotation Term="OData.Description" String="This version was created to correct filter property references in EventDestination."/>
508      <EntityType Name="EventService" BaseType="EventService.v1_2_6.EventService"/>
509    </Schema>
510
511    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_2_8">
512      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
513      <Annotation Term="OData.Description" String="This version was created to clarify behavior of the SubmitTestEvent action when parameters are not provided by the client."/>
514      <EntityType Name="EventService" BaseType="EventService.v1_2_7.EventService"/>
515    </Schema>
516
517    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_2_9">
518      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
519      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
520      <EntityType Name="EventService" BaseType="EventService.v1_2_8.EventService"/>
521    </Schema>
522
523    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_3_0">
524      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
525      <Annotation Term="Redfish.Release" String="2019.1"/>
526      <Annotation Term="OData.Description" String="This version was created to deprecate the EventTypesForSubscription and SSEFilterPropertiesSupported\EventType properties.  It was also created to update the description of the RegistryPrefix property.  It was also created to deprecate the EventType parameter in SubmitTestEvent, and add the EventGroupId parameter in SubmitTestEvent."/>
527
528      <EntityType Name="EventService" BaseType="EventService.v1_2_1.EventService"/>
529    </Schema>
530
531    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_3_1">
532      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
533      <Annotation Term="OData.Description" String="This version was created to remove the required term on most parameters in SubmitTestEvent.  It was also created to update the description of DeliveryRetryAttempts.  It was also created to update descriptions that this schema defines."/>
534      <EntityType Name="EventService" BaseType="EventService.v1_3_0.EventService"/>
535    </Schema>
536
537    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_3_2">
538      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
539      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
540      <EntityType Name="EventService" BaseType="EventService.v1_3_1.EventService"/>
541    </Schema>
542
543    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_3_3">
544      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
545      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
546      <EntityType Name="EventService" BaseType="EventService.v1_3_2.EventService"/>
547    </Schema>
548
549    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_3_4">
550      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
551      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
552      <EntityType Name="EventService" BaseType="EventService.v1_3_3.EventService"/>
553    </Schema>
554
555    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_3_5">
556      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
557      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of the event service when it is disabled."/>
558      <EntityType Name="EventService" BaseType="EventService.v1_3_4.EventService"/>
559    </Schema>
560
561    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_3_6">
562      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
563      <Annotation Term="OData.Description" String="This version was created to correct filter property references in EventDestination."/>
564      <EntityType Name="EventService" BaseType="EventService.v1_3_5.EventService"/>
565    </Schema>
566
567    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_3_7">
568      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
569      <Annotation Term="OData.Description" String="This version was created to clarify behavior of the SubmitTestEvent action when parameters are not provided by the client."/>
570      <EntityType Name="EventService" BaseType="EventService.v1_3_6.EventService"/>
571    </Schema>
572
573    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_3_8">
574      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
575      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
576      <EntityType Name="EventService" BaseType="EventService.v1_3_7.EventService"/>
577    </Schema>
578
579    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_4_0">
580      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
581      <Annotation Term="Redfish.Release" String="2019.2"/>
582
583      <EntityType Name="EventService" BaseType="EventService.v1_3_0.EventService"/>
584
585      <ComplexType Name="SSEFilterPropertiesSupported" BaseType="EventService.v1_2_0.SSEFilterPropertiesSupported">
586        <Property Name="SubordinateResources" Type="Edm.Boolean" Nullable="false">
587          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
588          <Annotation Term="OData.Description" String="An indication of whether the service supports filtering by the SubordinateResources property."/>
589          <Annotation Term="OData.LongDescription" String="This property shall indicate whether this service supports filtering by the SubordinateResources property."/>
590        </Property>
591      </ComplexType>
592    </Schema>
593
594    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_4_1">
595      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
596      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
597      <EntityType Name="EventService" BaseType="EventService.v1_4_0.EventService"/>
598    </Schema>
599
600    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_4_2">
601      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
602      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
603      <EntityType Name="EventService" BaseType="EventService.v1_4_1.EventService"/>
604    </Schema>
605
606    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_4_3">
607      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
608      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
609      <EntityType Name="EventService" BaseType="EventService.v1_4_2.EventService"/>
610    </Schema>
611
612    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_4_5">
613      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
614      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of the event service when it is disabled."/>
615      <EntityType Name="EventService" BaseType="EventService.v1_4_3.EventService"/>
616    </Schema>
617
618    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_4_6">
619      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
620      <Annotation Term="OData.Description" String="This version was created to correct filter property references in EventDestination."/>
621      <EntityType Name="EventService" BaseType="EventService.v1_4_5.EventService"/>
622    </Schema>
623
624    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_4_7">
625      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
626      <Annotation Term="OData.Description" String="This version was created to clarify behavior of the SubmitTestEvent action when parameters are not provided by the client."/>
627      <EntityType Name="EventService" BaseType="EventService.v1_4_6.EventService"/>
628    </Schema>
629
630    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_4_8">
631      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
632      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
633      <EntityType Name="EventService" BaseType="EventService.v1_4_7.EventService"/>
634    </Schema>
635
636    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_5_0">
637      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
638      <Annotation Term="Redfish.Release" String="2019.3"/>
639
640      <EntityType Name="EventService" BaseType="EventService.v1_4_0.EventService">
641        <Property Name="SMTP" Type="EventService.v1_5_0.SMTP" Nullable="false">
642          <Annotation Term="OData.Description" String="Settings for SMTP event delivery."/>
643          <Annotation Term="OData.LongDescription" String="This property shall contain settings for SMTP event delivery."/>
644        </Property>
645      </EntityType>
646
647      <ComplexType Name="SMTP">
648        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
649        <Annotation Term="OData.Description" String="Settings for SMTP event delivery."/>
650        <Annotation Term="OData.LongDescription" String="This type shall contain settings for SMTP event delivery."/>
651        <Property Name="ServiceEnabled" Type="Edm.Boolean">
652          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
653          <Annotation Term="OData.Description" String="An indication if SMTP for event delivery is enabled."/>
654          <Annotation Term="OData.LongDescription" String="This property shall indicate if SMTP for event delivery is enabled."/>
655        </Property>
656        <Property Name="Port" Type="Edm.Int64">
657          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
658          <Annotation Term="OData.Description" String="The destination SMTP port."/>
659          <Annotation Term="OData.LongDescription" String="This property shall contain the destination port for the SMTP server."/>
660          <Annotation Term="Validation.Minimum" Int="0"/>
661          <Annotation Term="Validation.Maximum" Int="65535"/>
662        </Property>
663        <Property Name="ServerAddress" Type="Edm.String">
664          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
665          <Annotation Term="OData.Description" String="The address of the SMTP server."/>
666          <Annotation Term="OData.LongDescription" String="This property shall contain the address of the SMTP server for outgoing email."/>
667        </Property>
668        <Property Name="FromAddress" Type="Edm.String">
669          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
670          <Annotation Term="OData.Description" String="The 'from' email address of the outgoing email."/>
671          <Annotation Term="OData.LongDescription" String="This property shall contain the email address to use for the 'from' field in an outgoing email."/>
672        </Property>
673        <Property Name="ConnectionProtocol" Type="EventService.v1_5_0.SMTPConnectionProtocol">
674          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
675          <Annotation Term="OData.Description" String="The connection type to the outgoing SMTP server."/>
676          <Annotation Term="OData.LongDescription" String="This property shall contain the connection type to the outgoing SMTP server."/>
677        </Property>
678        <Property Name="Authentication" Type="EventService.v1_5_0.SMTPAuthenticationMethods">
679          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
680          <Annotation Term="OData.Description" String="The authentication method for the SMTP server."/>
681          <Annotation Term="OData.LongDescription" String="This property shall contain the authentication method for the SMTP server."/>
682        </Property>
683        <Property Name="Username" Type="Edm.String">
684          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
685          <Annotation Term="OData.Description" String="The username for authentication with the SMTP server."/>
686          <Annotation Term="OData.LongDescription" String="This property shall contain the username for authentication with the SMTP server."/>
687        </Property>
688        <Property Name="Password" Type="Edm.String">
689          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Write"/>
690          <Annotation Term="OData.Description" String="The password for authentication with the SMTP server.  The value is `null` in responses."/>
691          <Annotation Term="OData.LongDescription" String="This property shall contain the password for authentication with the SMTP server.  The value shall be `null` in responses."/>
692        </Property>
693      </ComplexType>
694
695      <EnumType Name="SMTPConnectionProtocol">
696        <Member Name="None">
697          <Annotation Term="OData.Description" String="Clear text."/>
698          <Annotation Term="OData.LongDescription" String="This value shall indicate the connection is in clear text."/>
699        </Member>
700        <Member Name="AutoDetect">
701          <Annotation Term="OData.Description" String="Auto-detect."/>
702          <Annotation Term="OData.LongDescription" String="This value shall indicate the connection is auto-detected."/>
703        </Member>
704        <Member Name="StartTLS">
705          <Annotation Term="OData.Description" String="StartTLS."/>
706          <Annotation Term="OData.LongDescription" String="This value shall indicate the connection conforms to the RFC3207-defined StartTLS extension."/>
707        </Member>
708        <Member Name="TLS_SSL">
709          <Annotation Term="OData.Description" String="TLS/SSL."/>
710          <Annotation Term="OData.LongDescription" String="This value shall indicate the connection is TLS/SSL."/>
711        </Member>
712      </EnumType>
713
714      <EnumType Name="SMTPAuthenticationMethods">
715        <Member Name="None">
716          <Annotation Term="OData.Description" String="No authentication."/>
717          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication is not required."/>
718        </Member>
719        <Member Name="AutoDetect">
720          <Annotation Term="OData.Description" String="Auto-detect."/>
721          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication is auto-detected."/>
722        </Member>
723        <Member Name="Plain">
724          <Annotation Term="OData.Description" String="PLAIN authentication."/>
725          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication conforms to the RFC4954-defined AUTH PLAIN mechanism."/>
726        </Member>
727        <Member Name="Login">
728          <Annotation Term="OData.Description" String="LOGIN authentication."/>
729          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication conforms to the RFC4954-defined AUTH LOGIN mechanism."/>
730          <Annotation Term="Redfish.Revisions">
731            <Collection>
732              <Record>
733                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
734                <PropertyValue Property="Version" String="v1_7_0"/>
735                <PropertyValue Property="Description" String="This value has been deprecated in favor of `Plain`, which supersedes the LOGIN authentication method for SASL."/>
736              </Record>
737            </Collection>
738          </Annotation>
739        </Member>
740        <Member Name="CRAM_MD5">
741          <Annotation Term="OData.Description" String="CRAM-MD5 authentication."/>
742          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication conforms to the RFC4954-defined AUTH CRAM-MD5 mechanism."/>
743        </Member>
744      </EnumType>
745    </Schema>
746
747    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_5_1">
748      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
749      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
750      <EntityType Name="EventService" BaseType="EventService.v1_5_0.EventService"/>
751    </Schema>
752
753    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_5_2">
754      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
755      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
756      <EntityType Name="EventService" BaseType="EventService.v1_5_1.EventService"/>
757    </Schema>
758
759    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_5_3">
760      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
761      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
762      <EntityType Name="EventService" BaseType="EventService.v1_5_2.EventService"/>
763    </Schema>
764
765    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_5_4">
766      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
767      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of the event service when it is disabled."/>
768      <EntityType Name="EventService" BaseType="EventService.v1_5_3.EventService"/>
769    </Schema>
770
771    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_5_5">
772      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
773      <Annotation Term="OData.Description" String="This version was created to correct filter property references in EventDestination."/>
774      <EntityType Name="EventService" BaseType="EventService.v1_5_4.EventService"/>
775    </Schema>
776
777    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_5_6">
778      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
779      <Annotation Term="OData.Description" String="This version was created to mark properties with values containing sensitive data as write-only."/>
780      <EntityType Name="EventService" BaseType="EventService.v1_5_5.EventService"/>
781    </Schema>
782
783    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_5_7">
784      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
785      <Annotation Term="OData.Description" String="This version was created to clarify behavior of the SubmitTestEvent action when parameters are not provided by the client."/>
786      <EntityType Name="EventService" BaseType="EventService.v1_5_6.EventService"/>
787    </Schema>
788
789    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_5_8">
790      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
791      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
792      <EntityType Name="EventService" BaseType="EventService.v1_5_7.EventService"/>
793    </Schema>
794
795    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_6_0">
796      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
797      <Annotation Term="Redfish.Release" String="2020.1"/>
798
799      <EntityType Name="EventService" BaseType="EventService.v1_5_1.EventService">
800        <Property Name="IncludeOriginOfConditionSupported" Type="Edm.Boolean">
801          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
802          <Annotation Term="OData.Description" String="An indication of whether the service supports including the resource payload of the origin of condition in the event payload."/>
803          <Annotation Term="OData.LongDescription" String="This property shall indicate whether the service supports including the resource payload of the origin of condition in the event payload.  If `true`, event subscriptions are allowed to specify the IncludeOriginOfCondition property."/>
804        </Property>
805      </EntityType>
806    </Schema>
807
808    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_6_1">
809      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
810      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
811      <EntityType Name="EventService" BaseType="EventService.v1_6_0.EventService"/>
812    </Schema>
813
814    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_6_2">
815      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
816      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
817      <EntityType Name="EventService" BaseType="EventService.v1_6_1.EventService"/>
818    </Schema>
819
820    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_6_3">
821      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
822      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of the event service when it is disabled."/>
823      <EntityType Name="EventService" BaseType="EventService.v1_6_2.EventService"/>
824    </Schema>
825
826    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_6_4">
827      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
828      <Annotation Term="OData.Description" String="This version was created to correct filter property references in EventDestination."/>
829      <EntityType Name="EventService" BaseType="EventService.v1_6_3.EventService"/>
830    </Schema>
831
832    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_6_5">
833      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
834      <Annotation Term="OData.Description" String="This version was created to mark properties with values containing sensitive data as write-only."/>
835      <EntityType Name="EventService" BaseType="EventService.v1_6_4.EventService"/>
836    </Schema>
837
838    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_6_6">
839      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
840      <Annotation Term="OData.Description" String="This version was created to clarify behavior of the SubmitTestEvent action when parameters are not provided by the client."/>
841      <EntityType Name="EventService" BaseType="EventService.v1_6_5.EventService"/>
842    </Schema>
843
844    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_6_7">
845      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
846      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
847      <EntityType Name="EventService" BaseType="EventService.v1_6_6.EventService"/>
848    </Schema>
849
850    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_7_0">
851      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
852      <Annotation Term="Redfish.Release" String="2020.2"/>
853      <Annotation Term="OData.Description" String="This version was created to deprecate the `Login` enumeration in SMTPAuthenticationMethods."/>
854
855      <EntityType Name="EventService" BaseType="EventService.v1_6_1.EventService"/>
856    </Schema>
857
858    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_7_1">
859      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
860      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
861      <EntityType Name="EventService" BaseType="EventService.v1_7_0.EventService"/>
862    </Schema>
863
864    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_7_2">
865      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
866      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of the event service when it is disabled."/>
867      <EntityType Name="EventService" BaseType="EventService.v1_7_1.EventService"/>
868    </Schema>
869
870    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_7_3">
871      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
872      <Annotation Term="OData.Description" String="This version was created to correct filter property references in EventDestination."/>
873      <EntityType Name="EventService" BaseType="EventService.v1_7_2.EventService"/>
874    </Schema>
875
876    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_7_4">
877      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
878      <Annotation Term="OData.Description" String="This version was created to mark properties with values containing sensitive data as write-only."/>
879      <EntityType Name="EventService" BaseType="EventService.v1_7_3.EventService"/>
880    </Schema>
881
882    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_7_5">
883      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
884      <Annotation Term="OData.Description" String="This version was created to clarify behavior of the SubmitTestEvent action when parameters are not provided by the client."/>
885      <EntityType Name="EventService" BaseType="EventService.v1_7_4.EventService"/>
886    </Schema>
887
888    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_7_6">
889      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
890      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
891      <EntityType Name="EventService" BaseType="EventService.v1_7_5.EventService"/>
892    </Schema>
893
894    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_8_0">
895      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
896      <Annotation Term="Redfish.Release" String="2022.1"/>
897
898      <EntityType Name="EventService" BaseType="EventService.v1_7_3.EventService">
899        <Property Name="ExcludeRegistryPrefix" Type="Edm.Boolean" Nullable="false">
900          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
901          <Annotation Term="OData.Description" String="An indication of whether the service supports filtering by the ExcludeRegistryPrefixes property."/>
902          <Annotation Term="OData.LongDescription" String="This property shall indicate whether this service supports filtering by the ExcludeRegistryPrefixes property."/>
903        </Property>
904        <Property Name="ExcludeMessageId" Type="Edm.Boolean" Nullable="false">
905          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
906          <Annotation Term="OData.Description" String="An indication of whether the service supports filtering by the ExcludeMessageIds property."/>
907          <Annotation Term="OData.LongDescription" String="This property shall indicate whether this service supports filtering by the ExcludeMessageIds property."/>
908        </Property>
909      </EntityType>
910    </Schema>
911
912    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_8_1">
913      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
914      <Annotation Term="OData.Description" String="This version was created to mark properties with values containing sensitive data as write-only."/>
915      <EntityType Name="EventService" BaseType="EventService.v1_8_0.EventService"/>
916    </Schema>
917
918    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_8_2">
919      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
920      <Annotation Term="OData.Description" String="This version was created to clarify behavior of the SubmitTestEvent action when parameters are not provided by the client."/>
921      <EntityType Name="EventService" BaseType="EventService.v1_8_1.EventService"/>
922    </Schema>
923
924    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_8_3">
925      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
926      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
927      <EntityType Name="EventService" BaseType="EventService.v1_8_2.EventService"/>
928    </Schema>
929
930    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_9_0">
931      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
932      <Annotation Term="Redfish.Release" String="2022.3"/>
933
934      <EntityType Name="EventService" BaseType="EventService.v1_8_1.EventService">
935        <Property Name="Severities" Type="Collection(Resource.Health)">
936          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
937          <Annotation Term="OData.Description" String="The list of severities that can be specified in the Severities array in a subscription."/>
938          <Annotation Term="OData.LongDescription" String="This property shall specify an array of the allowable severities that can be used for an event subscription.  If this property is absent or contains an empty array, the service does not support severity-based subscriptions."/>
939        </Property>
940      </EntityType>
941
942      <ComplexType Name="SMTP" BaseType="EventService.v1_5_0.SMTP">
943        <Property Name="PasswordSet" Type="Edm.Boolean" Nullable="false">
944          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
945          <Annotation Term="OData.Description" String="Indicates if the Password property is set."/>
946          <Annotation Term="OData.LongDescription" String="This property shall contain `true` if a valid value was provided for the Password property.  Otherwise, the property shall contain `false`."/>
947        </Property>
948      </ComplexType>
949    </Schema>
950
951    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_9_1">
952      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
953      <Annotation Term="OData.Description" String="This version was created to clarify behavior of the SubmitTestEvent action when parameters are not provided by the client."/>
954      <EntityType Name="EventService" BaseType="EventService.v1_9_0.EventService"/>
955    </Schema>
956
957    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_9_2">
958      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
959      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
960      <EntityType Name="EventService" BaseType="EventService.v1_9_1.EventService"/>
961    </Schema>
962
963    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_10_0">
964      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
965      <Annotation Term="Redfish.Release" String="2023.1"/>
966      <Annotation Term="OData.Description" String="This version was created to add the MessageSeverity parameter to the SubmitTestEvent action.  It was also created to add the TestEventSubscription action."/>
967
968      <EntityType Name="EventService" BaseType="EventService.v1_9_1.EventService"/>
969    </Schema>
970
971    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_10_1">
972      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
973      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
974      <EntityType Name="EventService" BaseType="EventService.v1_10_0.EventService"/>
975    </Schema>
976
977  </edmx:DataServices>
978</edmx:Edmx>
979