1<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################       -->
4<!--# Redfish Schema:  EventService v1.7.0                                                 -->
5<!--#                                                                                      -->
6<!--# For a detailed change log, see the README file contained in the DSP8010 bundle,      -->
7<!--# available at http://www.dmtf.org/standards/redfish                                   -->
8<!--# Copyright 2014-2020 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."/>
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."/>
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."/>
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."/>
100        </Parameter>
101        <Parameter Name="Message" Type="Edm.String">
102          <Annotation Term="OData.Description" String="The human-readable message for the event to add."/>
103          <Annotation Term="OData.LongDescription" String="This parameter shall have the same semantics as the Message property in the Event schema for Redfish."/>
104        </Parameter>
105        <Parameter Name="MessageId" Type="Edm.String" Nullable="false">
106          <Annotation Term="OData.Description" String="The MessageId for the event to add."/>
107          <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."/>
108        </Parameter>
109        <Parameter Name="MessageArgs" Type="Collection(Edm.String)">
110          <Annotation Term="OData.Description" String="An array of message arguments for the event to add."/>
111          <Annotation Term="OData.LongDescription" String="This parameter shall have the same semantics as the MessageArgs property in the Event schema for Redfish."/>
112        </Parameter>
113        <Parameter Name="OriginOfCondition" Type="Edm.String">
114          <Annotation Term="OData.Description" String="The URL in the OriginOfCondition property of the event to add.  It is not a reference object."/>
115          <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."/>
116          <Annotation Term="OData.IsURL"/>
117        </Parameter>
118        <Parameter Name="EventGroupId" Type="Edm.Int64">
119          <Annotation Term="OData.Description" String="The group identifier for the event."/>
120          <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."/>
121          <Annotation Term="Redfish.Revisions">
122            <Collection>
123              <Record>
124                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
125                <PropertyValue Property="Version" String="v1_3_0"/>
126              </Record>
127            </Collection>
128          </Annotation>
129        </Parameter>
130      </Action>
131    </Schema>
132
133    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_0_0">
134      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
135      <Annotation Term="Redfish.Release" String="1.0"/>
136
137      <EntityType Name="EventService" BaseType="EventService.EventService">
138        <Property Name="ServiceEnabled" Type="Edm.Boolean">
139          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
140          <Annotation Term="OData.Description" String="An indication of whether this service is enabled."/>
141          <Annotation Term="OData.LongDescription" String="This property shall indicate whether this service is enabled."/>
142        </Property>
143        <Property Name="DeliveryRetryAttempts" Type="Edm.Int64" Nullable="false">
144          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
145          <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."/>
146          <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."/>
147        </Property>
148        <Property Name="DeliveryRetryIntervalSeconds" Type="Edm.Int64" Nullable="false">
149          <Annotation Term="Measures.Unit" String="s"/>
150          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
151          <Annotation Term="OData.Description" String="The interval, in seconds, between retry attempts for sending any event."/>
152          <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."/>
153        </Property>
154        <Property Name="EventTypesForSubscription" Type="Collection(Event.EventType)" Nullable="false">
155          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
156          <Annotation Term="OData.Description" String="The types of events to which a client can subscribe."/>
157          <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."/>
158          <Annotation Term="Redfish.Revisions">
159            <Collection>
160              <Record>
161                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
162                <PropertyValue Property="Version" String="v1_3_0"/>
163                <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."/>
164              </Record>
165            </Collection>
166          </Annotation>
167        </Property>
168        <Property Name="Actions" Type="EventService.v1_0_0.Actions" Nullable="false">
169          <Annotation Term="OData.Description" String="The available actions for this resource."/>
170          <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
171        </Property>
172        <NavigationProperty Name="Subscriptions" Type="EventDestinationCollection.EventDestinationCollection" ContainsTarget="true" Nullable="false">
173          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
174          <Annotation Term="OData.Description" String="The link to a collection of event destinations."/>
175          <Annotation Term="OData.LongDescription" String="This property shall contain the link to a resource collection of type EventDestinationCollection."/>
176          <Annotation Term="OData.AutoExpandReferences"/>
177        </NavigationProperty>
178        <Property Name="Status" Type="Resource.Status" Nullable="false">
179          <Annotation Term="OData.Description" String="The status and health of the resource and its subordinate or dependent resources."/>
180          <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
181        </Property>
182      </EntityType>
183
184      <ComplexType Name="Actions">
185        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
186        <Annotation Term="OData.Description" String="The available actions for this resource."/>
187        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
188        <Property Name="Oem" Type="EventService.v1_0_0.OemActions" Nullable="false">
189          <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
190          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
191        </Property>
192      </ComplexType>
193
194      <ComplexType Name="OemActions">
195        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
196        <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
197        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
198      </ComplexType>
199    </Schema>
200
201    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_0_2">
202      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
203      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
204      <EntityType Name="EventService" BaseType="EventService.v1_0_0.EventService"/>
205    </Schema>
206
207    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_0_3">
208      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
209      <Annotation Term="OData.Description" String="This version was created to add explicit permissions annotations to all properties for clarity."/>
210      <EntityType Name="EventService" BaseType="EventService.v1_0_2.EventService"/>
211    </Schema>
212
213    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_0_4">
214      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
215      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
216      <EntityType Name="EventService" BaseType="EventService.v1_0_3.EventService"/>
217    </Schema>
218
219    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_0_5">
220      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
221      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated.  In this case, DeliveryRetryAttempts description was updated."/>
222      <EntityType Name="EventService" BaseType="EventService.v1_0_4.EventService"/>
223    </Schema>
224
225    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_0_6">
226      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
227      <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."/>
228      <EntityType Name="EventService" BaseType="EventService.v1_0_5.EventService"/>
229    </Schema>
230
231    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_0_7">
232      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
233      <Annotation Term="OData.Description" String="This version was created to change DeliveryRetryAttempts and DeliveryRetryIntervalSeconds properties to be writable."/>
234      <EntityType Name="EventService" BaseType="EventService.v1_0_6.EventService"/>
235    </Schema>
236
237    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_0_8">
238      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
239      <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."/>
240      <EntityType Name="EventService" BaseType="EventService.v1_0_7.EventService"/>
241    </Schema>
242
243    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_0_9">
244      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
245      <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."/>
246      <EntityType Name="EventService" BaseType="EventService.v1_0_8.EventService"/>
247    </Schema>
248
249    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_0_10">
250      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
251      <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."/>
252      <EntityType Name="EventService" BaseType="EventService.v1_0_9.EventService"/>
253    </Schema>
254
255    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_0_11">
256      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
257      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
258      <EntityType Name="EventService" BaseType="EventService.v1_0_10.EventService"/>
259    </Schema>
260
261    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_0_12">
262      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
263      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
264      <EntityType Name="EventService" BaseType="EventService.v1_0_11.EventService"/>
265    </Schema>
266
267    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_1_0">
268      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
269      <Annotation Term="Redfish.Release" String="2018.1"/>
270
271      <EntityType Name="EventService" BaseType="EventService.v1_0_7.EventService">
272        <Property Name="ServerSentEventUri" Type="Edm.String" Nullable="false">
273          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
274          <Annotation Term="OData.Description" String="The link to a URI for receiving Server-Sent Event representations for the events that this service generates."/>
275          <Annotation Term="OData.LongDescription" String="This property shall contain a URI that specifies an HTML5 Server-Sent Event-conformant endpoint."/>
276          <Annotation Term="OData.IsURL"/>
277        </Property>
278      </EntityType>
279    </Schema>
280
281    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_1_1">
282      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
283      <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."/>
284      <EntityType Name="EventService" BaseType="EventService.v1_1_0.EventService"/>
285    </Schema>
286
287    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_1_2">
288      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
289      <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."/>
290      <EntityType Name="EventService" BaseType="EventService.v1_1_1.EventService"/>
291    </Schema>
292
293    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_1_3">
294      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
295      <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."/>
296      <EntityType Name="EventService" BaseType="EventService.v1_1_2.EventService"/>
297    </Schema>
298
299    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_1_4">
300      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
301      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
302      <EntityType Name="EventService" BaseType="EventService.v1_1_3.EventService"/>
303    </Schema>
304
305    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_1_5">
306      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
307      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
308      <EntityType Name="EventService" BaseType="EventService.v1_1_4.EventService"/>
309    </Schema>
310
311    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_2_0">
312      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
313      <Annotation Term="Redfish.Release" String="2018.2"/>
314      <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."/>
315
316      <EntityType Name="EventService" BaseType="EventService.v1_1_1.EventService">
317        <Property Name="RegistryPrefixes" Type="Collection(Edm.String)">
318          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
319          <Annotation Term="OData.Description" String="The list of the prefixes of the message registries that can be used for the RegistryPrefix property on a subscription.  If this property is absent or contains an empty array, the service does not support RegistryPrefix-based subscriptions."/>
320          <Annotation Term="OData.LongDescription" String="This property shall contain the array of the prefixes of the message registries that shall be allowed for an event subscription."/>
321        </Property>
322        <Property Name="ResourceTypes" Type="Collection(Edm.String)">
323          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
324          <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."/>
325          <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."/>
326        </Property>
327        <Property Name="SubordinateResourcesSupported" Type="Edm.Boolean">
328          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
329          <Annotation Term="OData.Description" String="An indication of whether the service supports the SubordinateResource property on both event subscriptions and generated events."/>
330          <Annotation Term="OData.LongDescription" String="This property shall indicate whether the service supports the SubordinateResource property on both event subscriptions and generated events."/>
331        </Property>
332        <Property Name="EventFormatTypes" Type="Collection(EventDestination.EventFormatType)">
333          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
334          <Annotation Term="OData.Description" String="The content types of the message that this service can send to the event destination."/>
335          <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`."/>
336        </Property>
337        <Property Name="SSEFilterPropertiesSupported" Type="EventService.v1_2_0.SSEFilterPropertiesSupported" Nullable="false">
338          <Annotation Term="OData.Description" String="The set of properties that are supported in the `$filter` query parameter for the ServerSentEventUri."/>
339          <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."/>
340        </Property>
341      </EntityType>
342
343      <ComplexType Name="SSEFilterPropertiesSupported">
344        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
345        <Annotation Term="OData.Description" String="The set of properties that are supported in the `$filter` query parameter for the ServerSentEventUri."/>
346        <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."/>
347        <Property Name="EventType" Type="Edm.Boolean" Nullable="false">
348          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
349          <Annotation Term="OData.Description" String="An indication of whether the service supports filtering by the EventType property."/>
350          <Annotation Term="OData.LongDescription" String="This property shall indicate whether this service supports filtering by the EventType property."/>
351          <Annotation Term="Redfish.Revisions">
352            <Collection>
353              <Record>
354                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
355                <PropertyValue Property="Version" String="v1_3_0"/>
356                <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."/>
357              </Record>
358            </Collection>
359          </Annotation>
360        </Property>
361        <Property Name="MetricReportDefinition" Type="Edm.Boolean" Nullable="false">
362          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
363          <Annotation Term="OData.Description" String="An indication of whether the service supports filtering by the MetricReportDefinition property."/>
364          <Annotation Term="OData.LongDescription" String="This property shall indicate whether this service supports filtering by the MetricReportDefinition property."/>
365        </Property>
366        <Property Name="RegistryPrefix" Type="Edm.Boolean" Nullable="false">
367          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
368          <Annotation Term="OData.Description" String="An indication of whether the service supports filtering by the RegistryPrefix property."/>
369          <Annotation Term="OData.LongDescription" String="This property shall indicate whether this service supports filtering by the RegistryPrefix property."/>
370        </Property>
371        <Property Name="ResourceType" Type="Edm.Boolean" Nullable="false">
372          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
373          <Annotation Term="OData.Description" String="An indication of whether the service supports filtering by the ResourceType property."/>
374          <Annotation Term="OData.LongDescription" String="This property shall indicate whether this service supports filtering by the ResourceType property."/>
375        </Property>
376        <Property Name="EventFormatType" Type="Edm.Boolean" Nullable="false">
377          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
378          <Annotation Term="OData.Description" String="An indication of whether the service supports filtering by the EventFormatType property."/>
379          <Annotation Term="OData.LongDescription" String="This property shall indicate whether this service supports filtering by the EventFormatType property."/>
380        </Property>
381        <Property Name="MessageId" Type="Edm.Boolean" Nullable="false">
382          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
383          <Annotation Term="OData.Description" String="An indication of whether the service supports filtering by the MessageId property."/>
384          <Annotation Term="OData.LongDescription" String="This property shall indicate whether this service supports filtering by the MessageId property."/>
385        </Property>
386        <Property Name="OriginResource" Type="Edm.Boolean" Nullable="false">
387          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
388          <Annotation Term="OData.Description" String="An indication of whether the service supports filtering by the OriginResource property."/>
389          <Annotation Term="OData.LongDescription" String="This property shall indicate whether this service supports filtering by the OriginResource property."/>
390        </Property>
391      </ComplexType>
392
393      <EnumType Name="EventFormatType">
394        <Member Name="Event">
395          <Annotation Term="OData.Description" String="The subscription destination receives JSON bodies of type Event."/>
396        </Member>
397        <Member Name="MetricReport">
398          <Annotation Term="OData.Description" String="The subscription destination receives JSON bodies of type MetricReport."/>
399        </Member>
400      </EnumType>
401    </Schema>
402
403    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_2_1">
404      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
405      <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."/>
406      <EntityType Name="EventService" BaseType="EventService.v1_2_0.EventService"/>
407    </Schema>
408
409    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_2_2">
410      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
411      <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."/>
412      <EntityType Name="EventService" BaseType="EventService.v1_2_1.EventService"/>
413    </Schema>
414
415    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_2_3">
416      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
417      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
418      <EntityType Name="EventService" BaseType="EventService.v1_2_2.EventService"/>
419    </Schema>
420
421    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_2_4">
422      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
423      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
424      <EntityType Name="EventService" BaseType="EventService.v1_2_3.EventService"/>
425    </Schema>
426
427    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_3_0">
428      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
429      <Annotation Term="Redfish.Release" String="2019.1"/>
430      <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 updated to deprecate the EventType parameter in SubmitTestEvent, and add the EventGroupId parameter in SubmitTestEvent."/>
431
432      <EntityType Name="EventService" BaseType="EventService.v1_2_1.EventService"/>
433    </Schema>
434
435    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_3_1">
436      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
437      <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."/>
438      <EntityType Name="EventService" BaseType="EventService.v1_3_0.EventService"/>
439    </Schema>
440
441    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_3_2">
442      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
443      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
444      <EntityType Name="EventService" BaseType="EventService.v1_3_1.EventService"/>
445    </Schema>
446
447    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_3_3">
448      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
449      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
450      <EntityType Name="EventService" BaseType="EventService.v1_3_2.EventService"/>
451    </Schema>
452
453    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_4_0">
454      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
455      <Annotation Term="Redfish.Release" String="2019.2"/>
456
457      <EntityType Name="EventService" BaseType="EventService.v1_3_0.EventService"/>
458
459      <ComplexType Name="SSEFilterPropertiesSupported" BaseType="EventService.v1_2_0.SSEFilterPropertiesSupported">
460        <Property Name="SubordinateResources" Type="Edm.Boolean" Nullable="false">
461          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
462          <Annotation Term="OData.Description" String="An indication of whether the service supports filtering by the SubordinateResources property."/>
463          <Annotation Term="OData.LongDescription" String="This property shall indicate whether this service supports filtering by the SubordinateResources property."/>
464        </Property>
465      </ComplexType>
466    </Schema>
467
468    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_4_1">
469      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
470      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
471      <EntityType Name="EventService" BaseType="EventService.v1_4_0.EventService"/>
472    </Schema>
473
474    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_4_2">
475      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
476      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
477      <EntityType Name="EventService" BaseType="EventService.v1_4_1.EventService"/>
478    </Schema>
479
480    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_5_0">
481      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
482      <Annotation Term="Redfish.Release" String="2019.3"/>
483
484      <EntityType Name="EventService" BaseType="EventService.v1_4_0.EventService">
485        <Property Name="SMTP" Type="EventService.v1_5_0.SMTP" Nullable="false">
486          <Annotation Term="OData.Description" String="Settings for SMTP event delivery."/>
487          <Annotation Term="OData.LongDescription" String="This property shall contain settings for SMTP event delivery."/>
488        </Property>
489      </EntityType>
490
491      <ComplexType Name="SMTP">
492        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
493        <Annotation Term="OData.Description" String="Settings for SMTP event delivery."/>
494        <Annotation Term="OData.LongDescription" String="This type shall contain settings for SMTP event delivery."/>
495        <Property Name="ServiceEnabled" Type="Edm.Boolean">
496          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
497          <Annotation Term="OData.Description" String="An indication if SMTP for event delivery is enabled."/>
498          <Annotation Term="OData.LongDescription" String="This property shall indicate if SMTP for event delivery is enabled."/>
499        </Property>
500        <Property Name="Port" Type="Edm.Int64">
501          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
502          <Annotation Term="OData.Description" String="The destination SMTP port."/>
503          <Annotation Term="OData.LongDescription" String="This property shall contain the destination port for the SMTP server."/>
504          <Annotation Term="Validation.Minimum" Int="0"/>
505          <Annotation Term="Validation.Maximum" Int="65535"/>
506        </Property>
507        <Property Name="ServerAddress" Type="Edm.String">
508          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
509          <Annotation Term="OData.Description" String="The address of the SMTP server."/>
510          <Annotation Term="OData.LongDescription" String="This property shall contain the address of the SMTP server for outgoing email."/>
511        </Property>
512        <Property Name="FromAddress" Type="Edm.String">
513          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
514          <Annotation Term="OData.Description" String="The 'from' email address of the outgoing email."/>
515          <Annotation Term="OData.LongDescription" String="This property shall contain the email address to use for the 'from' field in an outgoing email."/>
516        </Property>
517        <Property Name="ConnectionProtocol" Type="EventService.v1_5_0.SMTPConnectionProtocol">
518          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
519          <Annotation Term="OData.Description" String="The connection type to the outgoing SMTP server."/>
520          <Annotation Term="OData.LongDescription" String="This property shall contain the connection type to the outgoing SMTP server."/>
521        </Property>
522        <Property Name="Authentication" Type="EventService.v1_5_0.SMTPAuthenticationMethods">
523          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
524          <Annotation Term="OData.Description" String="The authentication method for the SMTP server."/>
525          <Annotation Term="OData.LongDescription" String="This property shall contain the authentication method for the SMTP server."/>
526        </Property>
527        <Property Name="Username" Type="Edm.String">
528          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
529          <Annotation Term="OData.Description" String="The username for authentication with the SMTP server."/>
530          <Annotation Term="OData.LongDescription" String="This property shall contain the username for authentication with the SMTP server."/>
531        </Property>
532        <Property Name="Password" Type="Edm.String">
533          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
534          <Annotation Term="OData.Description" String="The password for authentication with the SMTP server.  The value is `null` in responses."/>
535          <Annotation Term="OData.LongDescription" String="This property shall contain the password for authentication with the SMTP server.  The value shall be `null` in responses."/>
536        </Property>
537      </ComplexType>
538
539      <EnumType Name="SMTPConnectionProtocol">
540        <Member Name="None">
541          <Annotation Term="OData.Description" String="Clear text."/>
542          <Annotation Term="OData.LongDescription" String="This value shall indicate the connection is in clear text."/>
543        </Member>
544        <Member Name="AutoDetect">
545          <Annotation Term="OData.Description" String="Auto-detect."/>
546          <Annotation Term="OData.LongDescription" String="This value shall indicate the connection is auto-detected."/>
547        </Member>
548        <Member Name="StartTLS">
549          <Annotation Term="OData.Description" String="StartTLS."/>
550          <Annotation Term="OData.LongDescription" String="This value shall indicate the connection conforms to the RFC3207-defined StartTLS extension."/>
551        </Member>
552        <Member Name="TLS_SSL">
553          <Annotation Term="OData.Description" String="TLS/SSL."/>
554          <Annotation Term="OData.LongDescription" String="This value shall indicate the connection is TLS/SSL."/>
555        </Member>
556      </EnumType>
557
558      <EnumType Name="SMTPAuthenticationMethods">
559        <Member Name="None">
560          <Annotation Term="OData.Description" String="No authentication."/>
561          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication is not required."/>
562        </Member>
563        <Member Name="AutoDetect">
564          <Annotation Term="OData.Description" String="Auto-detect."/>
565          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication is auto-detected."/>
566        </Member>
567        <Member Name="Plain">
568          <Annotation Term="OData.Description" String="PLAIN authentication."/>
569          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication conforms to the RFC4954-defined AUTH PLAIN mechanism."/>
570        </Member>
571        <Member Name="Login">
572          <Annotation Term="OData.Description" String="LOGIN authentication."/>
573          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication conforms to the RFC4954-defined AUTH LOGIN mechanism."/>
574          <Annotation Term="Redfish.Revisions">
575            <Collection>
576              <Record>
577                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
578                <PropertyValue Property="Version" String="v1_7_0"/>
579                <PropertyValue Property="Description" String="This value has been deprecated in favor of `Plain`, which supersedes the LOGIN authentication method for SASL."/>
580              </Record>
581            </Collection>
582          </Annotation>
583        </Member>
584        <Member Name="CRAM_MD5">
585          <Annotation Term="OData.Description" String="CRAM-MD5 authentication."/>
586          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication conforms to the RFC4954-defined AUTH CRAM-MD5 mechanism."/>
587        </Member>
588      </EnumType>
589    </Schema>
590
591    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_5_1">
592      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
593      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
594      <EntityType Name="EventService" BaseType="EventService.v1_5_0.EventService"/>
595    </Schema>
596
597    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_5_2">
598      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
599      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
600      <EntityType Name="EventService" BaseType="EventService.v1_5_1.EventService"/>
601    </Schema>
602
603    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_6_0">
604      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
605      <Annotation Term="Redfish.Release" String="2020.1"/>
606
607      <EntityType Name="EventService" BaseType="EventService.v1_5_1.EventService">
608        <Property Name="IncludeOriginOfConditionSupported" Type="Edm.Boolean">
609          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
610          <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."/>
611          <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."/>
612        </Property>
613      </EntityType>
614    </Schema>
615
616    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_6_1">
617      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
618      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
619      <EntityType Name="EventService" BaseType="EventService.v1_6_0.EventService"/>
620    </Schema>
621
622    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="EventService.v1_7_0">
623      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
624      <Annotation Term="Redfish.Release" String="2020.2"/>
625      <Annotation Term="OData.Description" String="This version was created to deprecate the `Login` enumeration in SMTPAuthenticationMethods."/>
626
627      <EntityType Name="EventService" BaseType="EventService.v1_6_1.EventService"/>
628    </Schema>
629
630  </edmx:DataServices>
631</edmx:Edmx>
632