1<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################       -->
4<!--# Redfish Schema:  LogEntry v1.16.0                                                    -->
5<!--#                                                                                      -->
6<!--# For a detailed change log, see the README file contained in the DSP8010 bundle,      -->
7<!--# available at http://www.dmtf.org/standards/redfish                                   -->
8<!--# Copyright 2014-2023 DMTF.                                                            -->
9<!--# For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright -->
10<!--################################################################################       -->
11<!---->
12<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0">
13
14  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Core.V1.xml">
15    <edmx:Include Namespace="Org.OData.Core.V1" Alias="OData"/>
16  </edmx:Reference>
17  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Capabilities.V1.xml">
18    <edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="Capabilities"/>
19  </edmx:Reference>
20  <edmx:Reference Uri="http://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/ResolutionStep_v1.xml">
35    <edmx:Include Namespace="ResolutionStep"/>
36  </edmx:Reference>
37
38  <edmx:DataServices>
39
40    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry">
41      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
42
43      <EntityType Name="LogEntry" BaseType="Resource.v1_0_0.Resource" Abstract="true">
44        <Annotation Term="OData.Description" String="The LogEntry schema defines the record format for a log.  It is designed for Redfish event logs, OEM-specific log formats, and the IPMI System Event Log (SEL).  The EntryType field indicates the type of log and the resource includes several additional properties dependent on the EntryType."/>
45        <Annotation Term="OData.LongDescription" String="This resource shall represent the log format for log services in a Redfish implementation."/>
46        <Annotation Term="Capabilities.InsertRestrictions">
47          <Record>
48            <PropertyValue Property="Insertable" Bool="false"/>
49          </Record>
50        </Annotation>
51        <Annotation Term="Capabilities.UpdateRestrictions">
52          <Record>
53            <PropertyValue Property="Updatable" Bool="true"/>
54          </Record>
55        </Annotation>
56        <Annotation Term="Capabilities.DeleteRestrictions">
57          <Record>
58            <PropertyValue Property="Deletable" Bool="true"/>
59            <Annotation Term="OData.Description" String="Some implementations might allow the deletion of individual log entries."/>
60          </Record>
61        </Annotation>
62        <Annotation Term="Redfish.Uris">
63          <Collection>
64            <String>/redfish/v1/Managers/{ManagerId}/LogServices/{LogServiceId}/Entries/{LogEntryId}</String>
65            <String>/redfish/v1/Systems/{ComputerSystemId}/LogServices/{LogServiceId}/Entries/{LogEntryId}</String>
66            <String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/LogServices/{LogServiceId}/Entries/{LogEntryId}</String>
67            <String>/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/LogServices/{LogServiceId}/Entries/{LogEntryId}</String>
68            <String>/redfish/v1/Chassis/{ChassisId}/LogServices/{LogServiceId}/Entries/{LogEntryId}</String>
69            <String>/redfish/v1/JobService/Log/Entries/{LogEntryId}</String>
70            <String>/redfish/v1/TelemetryService/LogService/Entries/{LogEntryId}</String>
71            <String>/redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}/DeviceLog/Entries/{LogEntryId}</String>
72            <String>/redfish/v1/Chassis/{ChassisId}/PCIeDevices/{PCIeDeviceId}/CXLLogicalDevices/{CXLLogicalDeviceId}/DeviceLog/Entries/{LogEntryId}</String>
73          </Collection>
74        </Annotation>
75      </EntityType>
76    </Schema>
77
78    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_0_0">
79      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
80      <Annotation Term="Redfish.Release" String="1.0"/>
81
82      <EntityType Name="LogEntry" BaseType="LogEntry.LogEntry">
83        <Property Name="Severity" Type="LogEntry.v1_0_0.EventSeverity">
84          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
85          <Annotation Term="OData.Description" String="The severity of the log entry."/>
86          <Annotation Term="OData.LongDescription" String="This property shall contain the severity of the condition that created the log entry.  If EntryType contains `Event`, services can replace the value defined in the message registry with a value more applicable to the implementation."/>
87        </Property>
88        <Property Name="Created" Type="Edm.DateTimeOffset" Nullable="false">
89          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
90          <Annotation Term="OData.Description" String="The date and time when the log entry was created."/>
91          <Annotation Term="OData.LongDescription" String="This property shall contain the date and time when the log entry was created."/>
92        </Property>
93        <Property Name="EntryType" Type="LogEntry.v1_0_0.LogEntryType" Nullable="false">
94          <Annotation Term="Redfish.RequiredOnCreate"/>
95          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
96          <Annotation Term="OData.Description" String="The type of log entry."/>
97          <Annotation Term="OData.LongDescription" String="This property shall represent the type of log entry.  If the resource represents an IPMI SEL entry, the value shall contain `SEL`.  If the resource represents a Redfish event log entry, the value shall contain `Event`.  If the resource represents a CXL event record, the value shall contain `CXL`.  If the resource represents an OEM log entry format, the value shall contain `Oem`."/>
98          <Annotation Term="Redfish.Required"/>
99        </Property>
100        <Property Name="OemRecordFormat" Type="Edm.String">
101          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
102          <Annotation Term="OData.Description" String="The OEM-specific format of the entry.  If the entry type is `Oem`, this property contains more information about the record format from the OEM."/>
103          <Annotation Term="OData.LongDescription" String="This property shall represent the OEM-specific format of the entry.  This property shall be required if the EntryType value is `Oem`."/>
104        </Property>
105        <Property Name="EntryCode" Type="LogEntry.v1_0_0.LogEntryCode">
106          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
107          <Annotation Term="OData.Description" String="The entry code for the log entry if the entry type is `SEL`."/>
108          <Annotation Term="OData.LongDescription" String="This property shall contain the entry code for the log entry if the EntryType is `SEL`.  Tables 42-1 and 42-2 of the IPMI Specification v2.0 revision 1.1 describe these enumerations."/>
109        </Property>
110        <Property Name="SensorType" Type="LogEntry.v1_0_0.SensorType">
111          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
112          <Annotation Term="OData.Description" String="The sensor type to which the log entry pertains if the entry type is `SEL`."/>
113          <Annotation Term="OData.LongDescription" String="This property shall contain the sensor type to which the log entry pertains if the entry type is `SEL`.  Table 42-3, Sensor Type Codes, in the IPMI Specification v2.0 revision 1.1 describes these enumerations."/>
114        </Property>
115        <Property Name="SensorNumber" Type="Edm.Int64">
116          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
117          <Annotation Term="OData.Description" String="The IPMI-defined sensor number."/>
118          <Annotation Term="OData.LongDescription" String="This property shall contain the IPMI sensor number if the value of the EntryType property is `SEL`.  This property should not appear in the resource for other values of EntryType."/>
119        </Property>
120        <Property Name="Message" Type="Edm.String">
121          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
122          <Annotation Term="OData.Description" String="The message of the log entry.  This property decodes from the entry type.  If the entry type is `Event`, this property contains a message.  If the entry type is `SEL`, this property contains an SEL-specific message.  If the entry type is `CXL`, this property contains a CXL event record.  Otherwise, this property contains an OEM-specific log entry.  In most cases, this property contains the actual log entry."/>
123          <Annotation Term="OData.LongDescription" String="This property shall contain the message of the log entry.  This property decodes from the entry type.  If the entry type is `Event`, this property contains a message.  If the entry type is `SEL`, this property contains an SEL-specific message, following the format specified in Table 32-1, SEL Event Records, in the IPMI Specification v2.0 revision 1.1.  If the entry type is `CXL`, this property contains the CXL event record as a string of hex bytes in the pattern `^([a-fA-F0-9]{2})+$`.  Otherwise, this property contains an OEM-specific log entry.  In most cases, this property contains the actual log entry."/>
124        </Property>
125        <Property Name="MessageId" Type="Edm.String" Nullable="false">
126          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
127          <Annotation Term="OData.Description" String="The MessageId, event data, or OEM-specific information.  This property decodes from the entry type.  If the entry type is `Event`, this property contains a Redfish Specification-defined MessageId.  If the entry type is `SEL`, this property contains the Event Data.  Otherwise, this property contains OEM-specific information."/>
128          <Annotation Term="OData.LongDescription" String="This property shall contain the MessageId, event data, or OEM-specific information.  This property decodes from the entry type.  If the entry type is `Event`, this property contains a Redfish Specification-defined MessageId property of the event.  If the entry type is `SEL`, the format should follow the pattern `^0[xX](([a-fA-F]|[0-9]){2}){4}$`, which results in a string in the form '0xNNaabbcc', where 'NN' is the EventDir/EventType byte, 'aa' is the Event Data 1 byte, 'bb' is Event Data 2 byte, 'cc' is Event Data 3 byte, corresponding with bytes 13-16 in the IPMI SEL Event Record.  If the entry type is `CXL`, this property shall not be present.  Otherwise, this property contains OEM-specific information."/>
129        </Property>
130        <Property Name="MessageArgs" Type="Collection(Edm.String)" Nullable="false">
131          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
132          <Annotation Term="OData.Description" String="An array of message arguments that are substituted for the arguments in the message when looked up in the message registry."/>
133          <Annotation Term="OData.LongDescription" String="This property shall contain an array of message arguments that are substituted for the arguments in the message when looked up in the message registry.  It has the same semantics as the MessageArgs property in the Redfish MessageRegistry schema.  If the corresponding ParamType value contains `number`, the service shall convert the number to a string representation of the number."/>
134        </Property>
135        <Property Name="Links" Type="LogEntry.v1_0_0.Links" Nullable="false">
136          <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
137          <Annotation Term="OData.LongDescription" String="This property shall contain links to resources that are related to but are not contained by, or subordinate to, this resource."/>
138        </Property>
139      </EntityType>
140
141      <ComplexType Name="Links" BaseType="Resource.Links">
142        <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
143        <Annotation Term="OData.LongDescription" String="This Redfish Specification-described type shall contain links to resources that are related to but are not contained by, or subordinate to, this resource."/>
144        <NavigationProperty Name="OriginOfCondition" Type="Resource.Item" Nullable="false">
145          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
146          <Annotation Term="OData.Description" String="The link to the resource that caused the log entry."/>
147          <Annotation Term="OData.LongDescription" String="This property shall contain a link to the resource that caused the log entry.  For log entries that represent the creation or deletion of a resource, this property should reference the created or deleted resource and not the collection that contains the resource."/>
148          <Annotation Term="OData.AutoExpandReferences"/>
149        </NavigationProperty>
150      </ComplexType>
151
152      <EnumType Name="EventSeverity">
153        <Member Name="OK">
154          <Annotation Term="OData.Description" String="Informational or operating normally."/>
155        </Member>
156        <Member Name="Warning">
157          <Annotation Term="OData.Description" String="A condition that requires attention."/>
158        </Member>
159        <Member Name="Critical">
160          <Annotation Term="OData.Description" String="A critical condition that requires immediate attention."/>
161        </Member>
162      </EnumType>
163
164      <EnumType Name="LogEntryType">
165        <Member Name="Event">
166          <Annotation Term="OData.Description" String="A Redfish-defined message."/>
167        </Member>
168        <Member Name="SEL">
169          <Annotation Term="OData.Description" String="A legacy IPMI System Event Log (SEL) entry."/>
170        </Member>
171        <Member Name="Oem">
172          <Annotation Term="OData.Description" String="An entry in an OEM-defined format."/>
173        </Member>
174        <Member Name="CXL">
175          <Annotation Term="OData.Description" String="A CXL log entry."/>
176          <Annotation Term="Redfish.Revisions">
177            <Collection>
178              <Record>
179                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
180                <PropertyValue Property="Version" String="v1_14_0"/>
181              </Record>
182            </Collection>
183          </Annotation>
184        </Member>
185      </EnumType>
186
187      <TypeDefinition Name="LogEntryCode" UnderlyingType="Edm.String">
188        <Annotation Term="Redfish.Enumeration">
189          <Collection>
190            <Record>
191              <PropertyValue Property="Member" String="Assert"/>
192              <Annotation Term="OData.Description" String="The condition has been asserted."/>
193            </Record>
194            <Record>
195              <PropertyValue Property="Member" String="Deassert"/>
196              <Annotation Term="OData.Description" String="The condition has been deasserted."/>
197            </Record>
198            <Record>
199              <PropertyValue Property="Member" String="Lower Non-critical - going low"/>
200              <Annotation Term="OData.Description" String="The reading crossed the Lower Non-critical threshold while going low."/>
201            </Record>
202            <Record>
203              <PropertyValue Property="Member" String="Lower Non-critical - going high"/>
204              <Annotation Term="OData.Description" String="The reading crossed the Lower Non-critical threshold while going high."/>
205            </Record>
206            <Record>
207              <PropertyValue Property="Member" String="Lower Critical - going low"/>
208              <Annotation Term="OData.Description" String="The reading crossed the Lower Critical threshold while going low."/>
209            </Record>
210            <Record>
211              <PropertyValue Property="Member" String="Lower Critical - going high"/>
212              <Annotation Term="OData.Description" String="The reading crossed the Lower Critical threshold while going high."/>
213            </Record>
214            <Record>
215              <PropertyValue Property="Member" String="Lower Non-recoverable - going low"/>
216              <Annotation Term="OData.Description" String="The reading crossed the Lower Non-recoverable threshold while going low."/>
217            </Record>
218            <Record>
219              <PropertyValue Property="Member" String="Lower Non-recoverable - going high"/>
220              <Annotation Term="OData.Description" String="The reading crossed the Lower Non-recoverable threshold while going high."/>
221            </Record>
222            <Record>
223              <PropertyValue Property="Member" String="Upper Non-critical - going low"/>
224              <Annotation Term="OData.Description" String="The reading crossed the Upper Non-critical threshold while going low."/>
225            </Record>
226            <Record>
227              <PropertyValue Property="Member" String="Upper Non-critical - going high"/>
228              <Annotation Term="OData.Description" String="The reading crossed the Upper Non-critical threshold while going high."/>
229            </Record>
230            <Record>
231              <PropertyValue Property="Member" String="Upper Critical - going low"/>
232              <Annotation Term="OData.Description" String="The reading crossed the Upper Critical threshold while going low."/>
233            </Record>
234            <Record>
235              <PropertyValue Property="Member" String="Upper Critical - going high"/>
236              <Annotation Term="OData.Description" String="The reading crossed the Upper Critical threshold while going high."/>
237            </Record>
238            <Record>
239              <PropertyValue Property="Member" String="Upper Non-recoverable - going low"/>
240              <Annotation Term="OData.Description" String="The reading crossed the Upper Non-recoverable threshold while going low."/>
241            </Record>
242            <Record>
243              <PropertyValue Property="Member" String="Upper Non-recoverable - going high"/>
244              <Annotation Term="OData.Description" String="The reading crossed the Upper Non-recoverable threshold while going high."/>
245            </Record>
246            <Record>
247              <PropertyValue Property="Member" String="Transition to Idle"/>
248              <Annotation Term="OData.Description" String="The state transitioned to idle."/>
249            </Record>
250            <Record>
251              <PropertyValue Property="Member" String="Transition to Active"/>
252              <Annotation Term="OData.Description" String="The state transitioned to active."/>
253            </Record>
254            <Record>
255              <PropertyValue Property="Member" String="Transition to Busy"/>
256              <Annotation Term="OData.Description" String="The state transitioned to busy."/>
257            </Record>
258            <Record>
259              <PropertyValue Property="Member" String="State Deasserted"/>
260              <Annotation Term="OData.Description" String="The state has been deasserted."/>
261            </Record>
262            <Record>
263              <PropertyValue Property="Member" String="State Asserted"/>
264              <Annotation Term="OData.Description" String="The state has been asserted."/>
265            </Record>
266            <Record>
267              <PropertyValue Property="Member" String="Predictive Failure deasserted"/>
268              <Annotation Term="OData.Description" String="A Predictive Failure is no longer present."/>
269            </Record>
270            <Record>
271              <PropertyValue Property="Member" String="Predictive Failure asserted"/>
272              <Annotation Term="OData.Description" String="A Predictive Failure has been detected."/>
273            </Record>
274            <Record>
275              <PropertyValue Property="Member" String="Limit Not Exceeded"/>
276              <Annotation Term="OData.Description" String="A limit has not been exceeded."/>
277            </Record>
278            <Record>
279              <PropertyValue Property="Member" String="Limit Exceeded"/>
280              <Annotation Term="OData.Description" String="A limit has been exceeded."/>
281            </Record>
282            <Record>
283              <PropertyValue Property="Member" String="Performance Met"/>
284              <Annotation Term="OData.Description" String="Performance meets expectations."/>
285            </Record>
286            <Record>
287              <PropertyValue Property="Member" String="Performance Lags"/>
288              <Annotation Term="OData.Description" String="Performance does not meet expectations."/>
289            </Record>
290            <Record>
291              <PropertyValue Property="Member" String="Transition to OK"/>
292              <Annotation Term="OData.Description" String="A state has changed to OK."/>
293            </Record>
294            <Record>
295              <PropertyValue Property="Member" String="Transition to Non-Critical from OK"/>
296              <Annotation Term="OData.Description" String="A state has changed to Non-Critical from OK."/>
297            </Record>
298            <Record>
299              <PropertyValue Property="Member" String="Transition to Critical from less severe"/>
300              <Annotation Term="OData.Description" String="A state has changed to Critical from less severe."/>
301            </Record>
302            <Record>
303              <PropertyValue Property="Member" String="Transition to Non-recoverable from less severe"/>
304              <Annotation Term="OData.Description" String="A state has changed to Non-recoverable from less severe."/>
305            </Record>
306            <Record>
307              <PropertyValue Property="Member" String="Transition to Non-Critical from more severe"/>
308              <Annotation Term="OData.Description" String="A state has changed to Non-Critical from more severe."/>
309            </Record>
310            <Record>
311              <PropertyValue Property="Member" String="Transition to Critical from Non-recoverable"/>
312              <Annotation Term="OData.Description" String="A state has changed to Critical from Non-recoverable."/>
313            </Record>
314            <Record>
315              <PropertyValue Property="Member" String="Transition to Non-recoverable"/>
316              <Annotation Term="OData.Description" String="A state has changed to Non-recoverable."/>
317            </Record>
318            <Record>
319              <PropertyValue Property="Member" String="Monitor"/>
320              <Annotation Term="OData.Description" String="A monitor event."/>
321            </Record>
322            <Record>
323              <PropertyValue Property="Member" String="Informational"/>
324              <Annotation Term="OData.Description" String="An informational event."/>
325            </Record>
326            <Record>
327              <PropertyValue Property="Member" String="Device Removed / Device Absent"/>
328              <Annotation Term="OData.Description" String="A device has been removed or is absent."/>
329            </Record>
330            <Record>
331              <PropertyValue Property="Member" String="Device Inserted / Device Present"/>
332              <Annotation Term="OData.Description" String="A device has been inserted or is present."/>
333            </Record>
334            <Record>
335              <PropertyValue Property="Member" String="Device Disabled"/>
336              <Annotation Term="OData.Description" String="A device has been disabled."/>
337            </Record>
338            <Record>
339              <PropertyValue Property="Member" String="Device Enabled"/>
340              <Annotation Term="OData.Description" String="A device has been enabled."/>
341            </Record>
342            <Record>
343              <PropertyValue Property="Member" String="Transition to Running"/>
344              <Annotation Term="OData.Description" String="A state has transitioned to Running."/>
345            </Record>
346            <Record>
347              <PropertyValue Property="Member" String="Transition to In Test"/>
348              <Annotation Term="OData.Description" String="A state has transitioned to In Test."/>
349            </Record>
350            <Record>
351              <PropertyValue Property="Member" String="Transition to Power Off"/>
352              <Annotation Term="OData.Description" String="A state has transitioned to Power Off."/>
353            </Record>
354            <Record>
355              <PropertyValue Property="Member" String="Transition to On Line"/>
356              <Annotation Term="OData.Description" String="A state has transitioned to On Line."/>
357            </Record>
358            <Record>
359              <PropertyValue Property="Member" String="Transition to Off Line"/>
360              <Annotation Term="OData.Description" String="A state has transitioned to Off Line."/>
361            </Record>
362            <Record>
363              <PropertyValue Property="Member" String="Transition to Off Duty"/>
364              <Annotation Term="OData.Description" String="A state has transitioned to Off Duty."/>
365            </Record>
366            <Record>
367              <PropertyValue Property="Member" String="Transition to Degraded"/>
368              <Annotation Term="OData.Description" String="A state has transitioned to Degraded."/>
369            </Record>
370            <Record>
371              <PropertyValue Property="Member" String="Transition to Power Save"/>
372              <Annotation Term="OData.Description" String="A state has transitioned to Power Save."/>
373            </Record>
374            <Record>
375              <PropertyValue Property="Member" String="Install Error"/>
376              <Annotation Term="OData.Description" String="An install error has been detected."/>
377            </Record>
378            <Record>
379              <PropertyValue Property="Member" String="Fully Redundant"/>
380              <Annotation Term="OData.Description" String="Indicates that full redundancy has been regained."/>
381            </Record>
382            <Record>
383              <PropertyValue Property="Member" String="Redundancy Lost"/>
384              <Annotation Term="OData.Description" String="Entered any non-redundant state, including Non-redundant: Insufficient Resources."/>
385            </Record>
386            <Record>
387              <PropertyValue Property="Member" String="Redundancy Degraded"/>
388              <Annotation Term="OData.Description" String="Redundancy still exists, but at less than full level."/>
389            </Record>
390            <Record>
391              <PropertyValue Property="Member" String="Non-redundant:Sufficient Resources from Redundant"/>
392              <Annotation Term="OData.Description" String="Redundancy has been lost but unit is functioning with minimum resources needed for normal operation."/>
393            </Record>
394            <Record>
395              <PropertyValue Property="Member" String="Non-redundant:Sufficient Resources from Insufficient Resources"/>
396              <Annotation Term="OData.Description" String="Unit has regained minimum resources needed for normal operation."/>
397            </Record>
398            <Record>
399              <PropertyValue Property="Member" String="Non-redundant:Insufficient Resources"/>
400              <Annotation Term="OData.Description" String="Unit is non-redundant and has insufficient resources to maintain normal operation."/>
401            </Record>
402            <Record>
403              <PropertyValue Property="Member" String="Redundancy Degraded from Fully Redundant"/>
404              <Annotation Term="OData.Description" String="Unit has lost some redundant resource(s) but is still in a redundant state."/>
405            </Record>
406            <Record>
407              <PropertyValue Property="Member" String="Redundancy Degraded from Non-redundant"/>
408              <Annotation Term="OData.Description" String="Unit has regained some resource(s) and is redundant but not fully redundant."/>
409            </Record>
410            <Record>
411              <PropertyValue Property="Member" String="D0 Power State"/>
412              <Annotation Term="OData.Description" String="The ACPI-defined D0 power state."/>
413            </Record>
414            <Record>
415              <PropertyValue Property="Member" String="D1 Power State"/>
416              <Annotation Term="OData.Description" String="The ACPI-defined D1 power state."/>
417            </Record>
418            <Record>
419              <PropertyValue Property="Member" String="D2 Power State"/>
420              <Annotation Term="OData.Description" String="The ACPI-defined D2 power state."/>
421            </Record>
422            <Record>
423              <PropertyValue Property="Member" String="D3 Power State"/>
424              <Annotation Term="OData.Description" String="The ACPI-defined D3 power state."/>
425            </Record>
426            <Record>
427              <PropertyValue Property="Member" String="OEM"/>
428              <Annotation Term="OData.Description" String="An OEM-defined event."/>
429              <Annotation Term="Redfish.Revisions">
430                <Collection>
431                  <Record>
432                    <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
433                    <PropertyValue Property="Version" String="v1_3_0"/>
434                  </Record>
435                </Collection>
436              </Annotation>
437            </Record>
438          </Collection>
439        </Annotation>
440      </TypeDefinition>
441
442      <TypeDefinition Name="SensorType" UnderlyingType="Edm.String">
443        <Annotation Term="Redfish.Enumeration">
444          <Collection>
445            <Record>
446              <PropertyValue Property="Member" String="Platform Security Violation Attempt"/>
447              <Annotation Term="OData.Description" String="A platform security sensor."/>
448            </Record>
449            <Record>
450              <PropertyValue Property="Member" String="Temperature"/>
451              <Annotation Term="OData.Description" String="A temperature sensor."/>
452            </Record>
453            <Record>
454              <PropertyValue Property="Member" String="Voltage"/>
455              <Annotation Term="OData.Description" String="A voltage sensor."/>
456            </Record>
457            <Record>
458              <PropertyValue Property="Member" String="Current"/>
459              <Annotation Term="OData.Description" String="A current sensor."/>
460            </Record>
461            <Record>
462              <PropertyValue Property="Member" String="Fan"/>
463              <Annotation Term="OData.Description" String="A fan sensor."/>
464            </Record>
465            <Record>
466              <PropertyValue Property="Member" String="Physical Chassis Security"/>
467              <Annotation Term="OData.Description" String="A physical security sensor."/>
468            </Record>
469            <Record>
470              <PropertyValue Property="Member" String="Processor"/>
471              <Annotation Term="OData.Description" String="A sensor for a processor."/>
472            </Record>
473            <Record>
474              <PropertyValue Property="Member" String="Power Supply / Converter"/>
475              <Annotation Term="OData.Description" String="A sensor for a power supply or DC-to-DC converter."/>
476            </Record>
477            <Record>
478              <PropertyValue Property="Member" String="PowerUnit"/>
479              <Annotation Term="OData.Description" String="A sensor for a power unit."/>
480            </Record>
481            <Record>
482              <PropertyValue Property="Member" String="CoolingDevice"/>
483              <Annotation Term="OData.Description" String="A sensor for a cooling device."/>
484            </Record>
485            <Record>
486              <PropertyValue Property="Member" String="Other Units-based Sensor"/>
487              <Annotation Term="OData.Description" String="A sensor for a miscellaneous analog sensor."/>
488            </Record>
489            <Record>
490              <PropertyValue Property="Member" String="Memory"/>
491              <Annotation Term="OData.Description" String="A sensor for a memory device."/>
492            </Record>
493            <Record>
494              <PropertyValue Property="Member" String="Drive Slot/Bay"/>
495              <Annotation Term="OData.Description" String="A sensor for a drive slot or bay."/>
496            </Record>
497            <Record>
498              <PropertyValue Property="Member" String="POST Memory Resize"/>
499              <Annotation Term="OData.Description" String="A sensor for a POST memory resize event."/>
500            </Record>
501            <Record>
502              <PropertyValue Property="Member" String="System Firmware Progress"/>
503              <Annotation Term="OData.Description" String="A sensor for a system firmware progress event."/>
504            </Record>
505            <Record>
506              <PropertyValue Property="Member" String="Event Logging Disabled"/>
507              <Annotation Term="OData.Description" String="A sensor for the event log."/>
508            </Record>
509            <Record>
510              <PropertyValue Property="Member" String="System Event"/>
511              <Annotation Term="OData.Description" String="A sensor for a system event."/>
512            </Record>
513            <Record>
514              <PropertyValue Property="Member" String="Critical Interrupt"/>
515              <Annotation Term="OData.Description" String="A sensor for a critical interrupt event."/>
516            </Record>
517            <Record>
518              <PropertyValue Property="Member" String="Button/Switch"/>
519              <Annotation Term="OData.Description" String="A sensor for a button or switch."/>
520            </Record>
521            <Record>
522              <PropertyValue Property="Member" String="Module/Board"/>
523              <Annotation Term="OData.Description" String="A sensor for a module or board."/>
524            </Record>
525            <Record>
526              <PropertyValue Property="Member" String="Microcontroller/Coprocessor"/>
527              <Annotation Term="OData.Description" String="A sensor for a microcontroller or coprocessor."/>
528            </Record>
529            <Record>
530              <PropertyValue Property="Member" String="Add-in Card"/>
531              <Annotation Term="OData.Description" String="A sensor for an add-in card."/>
532            </Record>
533            <Record>
534              <PropertyValue Property="Member" String="Chassis"/>
535              <Annotation Term="OData.Description" String="A sensor for a chassis."/>
536            </Record>
537            <Record>
538              <PropertyValue Property="Member" String="ChipSet"/>
539              <Annotation Term="OData.Description" String="A sensor for a chipset."/>
540            </Record>
541            <Record>
542              <PropertyValue Property="Member" String="Other FRU"/>
543              <Annotation Term="OData.Description" String="A sensor for another type of FRU."/>
544            </Record>
545            <Record>
546              <PropertyValue Property="Member" String="Cable/Interconnect"/>
547              <Annotation Term="OData.Description" String="A sensor for a cable or interconnect device type."/>
548            </Record>
549            <Record>
550              <PropertyValue Property="Member" String="Terminator"/>
551              <Annotation Term="OData.Description" String="A sensor for a terminator."/>
552            </Record>
553            <Record>
554              <PropertyValue Property="Member" String="SystemBoot/Restart"/>
555              <Annotation Term="OData.Description" String="A sensor for a system boot or restart event."/>
556            </Record>
557            <Record>
558              <PropertyValue Property="Member" String="Boot Error"/>
559              <Annotation Term="OData.Description" String="A sensor for a boot error event."/>
560            </Record>
561            <Record>
562              <PropertyValue Property="Member" String="BaseOSBoot/InstallationStatus"/>
563              <Annotation Term="OData.Description" String="A sensor for a base OS boot or installation status event."/>
564            </Record>
565            <Record>
566              <PropertyValue Property="Member" String="OS Stop/Shutdown"/>
567              <Annotation Term="OData.Description" String="A sensor for an OS stop or shutdown event."/>
568            </Record>
569            <Record>
570              <PropertyValue Property="Member" String="Slot/Connector"/>
571              <Annotation Term="OData.Description" String="A sensor for a slot or connector."/>
572            </Record>
573            <Record>
574              <PropertyValue Property="Member" String="System ACPI PowerState"/>
575              <Annotation Term="OData.Description" String="A sensor for an ACPI power state event."/>
576            </Record>
577            <Record>
578              <PropertyValue Property="Member" String="Watchdog"/>
579              <Annotation Term="OData.Description" String="A sensor for a watchdog event."/>
580            </Record>
581            <Record>
582              <PropertyValue Property="Member" String="Platform Alert"/>
583              <Annotation Term="OData.Description" String="A sensor for a platform alert event."/>
584            </Record>
585            <Record>
586              <PropertyValue Property="Member" String="Entity Presence"/>
587              <Annotation Term="OData.Description" String="A sensor for an entity presence event."/>
588            </Record>
589            <Record>
590              <PropertyValue Property="Member" String="Monitor ASIC/IC"/>
591              <Annotation Term="OData.Description" String="A sensor for a monitor ASIC or IC."/>
592            </Record>
593            <Record>
594              <PropertyValue Property="Member" String="LAN"/>
595              <Annotation Term="OData.Description" String="A sensor for a LAN device."/>
596            </Record>
597            <Record>
598              <PropertyValue Property="Member" String="Management Subsystem Health"/>
599              <Annotation Term="OData.Description" String="A sensor for a management subsystem health event."/>
600            </Record>
601            <Record>
602              <PropertyValue Property="Member" String="Battery"/>
603              <Annotation Term="OData.Description" String="A sensor for a battery."/>
604            </Record>
605            <Record>
606              <PropertyValue Property="Member" String="Session Audit"/>
607              <Annotation Term="OData.Description" String="A sensor for a session audit event."/>
608            </Record>
609            <Record>
610              <PropertyValue Property="Member" String="Version Change"/>
611              <Annotation Term="OData.Description" String="A sensor for a version change event."/>
612            </Record>
613            <Record>
614              <PropertyValue Property="Member" String="FRUState"/>
615              <Annotation Term="OData.Description" String="A sensor for a FRU state event."/>
616            </Record>
617            <Record>
618              <PropertyValue Property="Member" String="OEM"/>
619              <Annotation Term="OData.Description" String="An OEM-defined sensor."/>
620              <Annotation Term="Redfish.Revisions">
621                <Collection>
622                  <Record>
623                    <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
624                    <PropertyValue Property="Version" String="v1_3_0"/>
625                  </Record>
626                </Collection>
627              </Annotation>
628            </Record>
629          </Collection>
630        </Annotation>
631      </TypeDefinition>
632    </Schema>
633
634    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_0_2">
635      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
636      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
637      <EntityType Name="LogEntry" BaseType="LogEntry.v1_0_0.LogEntry"/>
638    </Schema>
639
640    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_0_3">
641      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
642      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
643      <EntityType Name="LogEntry" BaseType="LogEntry.v1_0_2.LogEntry"/>
644    </Schema>
645
646    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_0_4">
647      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
648      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
649      <EntityType Name="LogEntry" BaseType="LogEntry.v1_0_3.LogEntry"/>
650    </Schema>
651
652    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_0_5">
653      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
654      <Annotation Term="OData.Description" String="This version was created to add descriptions to various enumerated values."/>
655      <EntityType Name="LogEntry" BaseType="LogEntry.v1_0_4.LogEntry"/>
656    </Schema>
657
658    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_0_6">
659      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
660      <Annotation Term="OData.Description" String="This version was created to correct the description for EntryType.  It was also 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 descriptions for many properties."/>
661      <EntityType Name="LogEntry" BaseType="LogEntry.v1_0_5.LogEntry"/>
662    </Schema>
663
664    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_0_7">
665      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
666      <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation."/>
667      <EntityType Name="LogEntry" BaseType="LogEntry.v1_0_6.LogEntry"/>
668    </Schema>
669
670    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_0_8">
671      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
672      <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."/>
673      <EntityType Name="LogEntry" BaseType="LogEntry.v1_0_7.LogEntry"/>
674    </Schema>
675
676    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_0_9">
677      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
678      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
679      <EntityType Name="LogEntry" BaseType="LogEntry.v1_0_8.LogEntry"/>
680    </Schema>
681
682    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_0_10">
683      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
684      <Annotation Term="OData.Description" String="This version was created to add the Event Type/Direction byte of the IPMI SEL to MessageId."/>
685      <EntityType Name="LogEntry" BaseType="LogEntry.v1_0_9.LogEntry"/>
686    </Schema>
687
688    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_0_11">
689      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
690      <Annotation Term="OData.Description" String="This version was created to clarify references to the IPMI Specification in the descriptions of EntryCode, SensorType, and Message."/>
691      <EntityType Name="LogEntry" BaseType="LogEntry.v1_0_10.LogEntry"/>
692    </Schema>
693
694    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_0_12">
695      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
696      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
697      <EntityType Name="LogEntry" BaseType="LogEntry.v1_0_11.LogEntry"/>
698    </Schema>
699
700    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_0_13">
701      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
702      <Annotation Term="OData.Description" String="This version was created to correct the description of SensorNumber such that it only applies to SEL log entry types."/>
703      <EntityType Name="LogEntry" BaseType="LogEntry.v1_0_12.LogEntry"/>
704    </Schema>
705
706    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_0_14">
707      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
708      <Annotation Term="OData.Description" String="This version was created to specify 64-bit integers in OpenAPI."/>
709      <EntityType Name="LogEntry" BaseType="LogEntry.v1_0_13.LogEntry"/>
710    </Schema>
711
712    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_0_15">
713      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
714      <Annotation Term="OData.Description" String="This version was created to clarify the usage of OriginOfCondition for creation and deletion events."/>
715      <EntityType Name="LogEntry" BaseType="LogEntry.v1_0_14.LogEntry"/>
716    </Schema>
717
718    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_0_16">
719      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
720      <Annotation Term="OData.Description" String="This version was created to improve the description of message argument-related properties by explaining that number-type arguments are converted to strings prior to their consumption in a message."/>
721      <EntityType Name="LogEntry" BaseType="LogEntry.v1_0_15.LogEntry"/>
722    </Schema>
723
724    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_0_17">
725      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
726      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
727      <EntityType Name="LogEntry" BaseType="LogEntry.v1_0_16.LogEntry"/>
728    </Schema>
729
730    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_1_16">
731      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
732      <Annotation Term="OData.Description" String="This version was created to update descriptions for EntryType, Message, and MessageId to account for the new `CXL` value for EntryType."/>
733      <EntityType Name="LogEntry" BaseType="LogEntry.v1_0_15.LogEntry"/>
734    </Schema>
735
736    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_1_17">
737      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
738      <Annotation Term="OData.Description" String="This version was created to clarify that Severity can be overridden by the service."/>
739      <EntityType Name="LogEntry" BaseType="LogEntry.v1_1_16.LogEntry"/>
740    </Schema>
741
742    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_1_18">
743      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
744      <Annotation Term="OData.Description" String="This version was created to improve the description of message argument-related properties by explaining that number-type arguments are converted to strings prior to their consumption in a message."/>
745      <EntityType Name="LogEntry" BaseType="LogEntry.v1_1_17.LogEntry"/>
746    </Schema>
747
748    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_1_19">
749      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
750      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
751      <EntityType Name="LogEntry" BaseType="LogEntry.v1_1_18.LogEntry"/>
752    </Schema>
753
754    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_1_0">
755      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
756      <Annotation Term="Redfish.Release" String="2016.2"/>
757
758      <EntityType Name="LogEntry" BaseType="LogEntry.v1_0_2.LogEntry">
759        <Property Name="EventType" Type="Event.EventType" Nullable="false">
760          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
761          <Annotation Term="OData.Description" String="The type of event recorded in this log."/>
762          <Annotation Term="OData.LongDescription" String="If present, this LogEntry records an event and the value shall indicate the type of event."/>
763          <Annotation Term="Redfish.Revisions">
764            <Collection>
765              <Record>
766                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
767                <PropertyValue Property="Version" String="v1_4_0"/>
768                <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."/>
769              </Record>
770            </Collection>
771          </Annotation>
772        </Property>
773        <Property Name="EventId" Type="Edm.String" Nullable="false">
774          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
775          <Annotation Term="OData.Description" String="The unique instance identifier for an event."/>
776          <Annotation Term="OData.LongDescription" String="If present, this LogEntry records an Event and the value shall indicate a unique identifier for the event, the format of which is implementation dependent."/>
777        </Property>
778        <Property Name="EventTimestamp" Type="Edm.DateTimeOffset" Nullable="false">
779          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
780          <Annotation Term="OData.Description" String="The date and time when the event occurred."/>
781          <Annotation Term="OData.LongDescription" String="If present, this LogEntry records an event and the value shall contain the date and time when the event occurred."/>
782        </Property>
783      </EntityType>
784    </Schema>
785
786    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_1_1">
787      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
788      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
789      <EntityType Name="LogEntry" BaseType="LogEntry.v1_1_0.LogEntry"/>
790    </Schema>
791
792    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_1_2">
793      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
794      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
795      <EntityType Name="LogEntry" BaseType="LogEntry.v1_1_1.LogEntry"/>
796    </Schema>
797
798    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_1_3">
799      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
800      <Annotation Term="OData.Description" String="This version was created to change EventType to use the unversioned definition.  It was also created to add descriptions to various enumeration values."/>
801      <EntityType Name="LogEntry" BaseType="LogEntry.v1_1_2.LogEntry"/>
802    </Schema>
803
804    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_1_4">
805      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
806      <Annotation Term="OData.Description" String="This version was created to correct the description for EntryType.  It was also 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 descriptions for many properties."/>
807      <EntityType Name="LogEntry" BaseType="LogEntry.v1_1_3.LogEntry"/>
808    </Schema>
809
810    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_1_5">
811      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
812      <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation."/>
813      <EntityType Name="LogEntry" BaseType="LogEntry.v1_1_4.LogEntry"/>
814    </Schema>
815
816    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_1_6">
817      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
818      <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."/>
819      <EntityType Name="LogEntry" BaseType="LogEntry.v1_1_5.LogEntry"/>
820    </Schema>
821
822    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_1_7">
823      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
824      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
825      <EntityType Name="LogEntry" BaseType="LogEntry.v1_1_6.LogEntry"/>
826    </Schema>
827
828    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_1_8">
829      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
830      <Annotation Term="OData.Description" String="This version was created to add the Event Type/Direction byte of the IPMI SEL to MessageId."/>
831      <EntityType Name="LogEntry" BaseType="LogEntry.v1_1_7.LogEntry"/>
832    </Schema>
833
834    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_1_9">
835      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
836      <Annotation Term="OData.Description" String="This version was created to clarify references to the IPMI Specification in the descriptions of EntryCode, SensorType, and Message."/>
837      <EntityType Name="LogEntry" BaseType="LogEntry.v1_1_8.LogEntry"/>
838    </Schema>
839
840    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_1_10">
841      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
842      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
843      <EntityType Name="LogEntry" BaseType="LogEntry.v1_1_9.LogEntry"/>
844    </Schema>
845
846    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_1_11">
847      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
848      <Annotation Term="OData.Description" String="This version was created to correct the description of SensorNumber such that it only applies to SEL log entry types."/>
849      <EntityType Name="LogEntry" BaseType="LogEntry.v1_1_10.LogEntry"/>
850    </Schema>
851
852    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_1_12">
853      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
854      <Annotation Term="OData.Description" String="This version was created to specify 64-bit integers in OpenAPI."/>
855      <EntityType Name="LogEntry" BaseType="LogEntry.v1_1_11.LogEntry"/>
856    </Schema>
857
858    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_1_13">
859      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
860      <Annotation Term="OData.Description" String="This version was created to clarify the usage of OriginOfCondition for creation and deletion events."/>
861      <EntityType Name="LogEntry" BaseType="LogEntry.v1_1_12.LogEntry"/>
862    </Schema>
863
864    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_1_14">
865      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
866      <Annotation Term="OData.Description" String="This version was created to update descriptions for EntryType, Message, and MessageId to account for the new `CXL` value for EntryType."/>
867      <EntityType Name="LogEntry" BaseType="LogEntry.v1_1_13.LogEntry"/>
868    </Schema>
869
870    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_1_15">
871      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
872      <Annotation Term="OData.Description" String="This version was created to clarify that Severity can be overridden by the service."/>
873      <EntityType Name="LogEntry" BaseType="LogEntry.v1_1_14.LogEntry"/>
874    </Schema>
875
876    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_2_0">
877      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
878      <Annotation Term="Redfish.Release" String="2017.1"/>
879
880      <EntityType Name="LogEntry" BaseType="LogEntry.v1_1_2.LogEntry">
881        <Property Name="Actions" Type="LogEntry.v1_2_0.Actions" Nullable="false">
882          <Annotation Term="OData.Description" String="The available actions for this resource."/>
883          <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
884        </Property>
885      </EntityType>
886
887      <ComplexType Name="Actions">
888        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
889        <Annotation Term="OData.Description" String="The available actions for this resource."/>
890        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
891        <Property Name="Oem" Type="LogEntry.v1_2_0.OemActions" Nullable="false">
892          <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
893          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
894        </Property>
895      </ComplexType>
896
897      <ComplexType Name="OemActions">
898        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
899        <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
900        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
901      </ComplexType>
902    </Schema>
903
904    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_2_1">
905      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
906      <Annotation Term="OData.Description" String="This version was created to change EventType to use the unversioned definition.  It was also created to add descriptions to various enumeration values."/>
907      <EntityType Name="LogEntry" BaseType="LogEntry.v1_2_0.LogEntry"/>
908    </Schema>
909
910    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_2_2">
911      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
912      <Annotation Term="OData.Description" String="This version was created to correct the description for EntryType.  It was also 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 descriptions for many properties."/>
913      <EntityType Name="LogEntry" BaseType="LogEntry.v1_2_1.LogEntry"/>
914    </Schema>
915
916    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_2_3">
917      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
918      <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation."/>
919      <EntityType Name="LogEntry" BaseType="LogEntry.v1_2_2.LogEntry"/>
920    </Schema>
921
922    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_2_4">
923      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
924      <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."/>
925      <EntityType Name="LogEntry" BaseType="LogEntry.v1_2_3.LogEntry"/>
926    </Schema>
927
928    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_2_5">
929      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
930      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
931      <EntityType Name="LogEntry" BaseType="LogEntry.v1_2_4.LogEntry"/>
932    </Schema>
933
934    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_2_6">
935      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
936      <Annotation Term="OData.Description" String="This version was created to add the Event Type/Direction byte of the IPMI SEL to MessageId."/>
937      <EntityType Name="LogEntry" BaseType="LogEntry.v1_2_5.LogEntry"/>
938    </Schema>
939
940    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_2_7">
941      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
942      <Annotation Term="OData.Description" String="This version was created to clarify references to the IPMI Specification in the descriptions of EntryCode, SensorType, and Message."/>
943      <EntityType Name="LogEntry" BaseType="LogEntry.v1_2_6.LogEntry"/>
944    </Schema>
945
946    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_2_8">
947      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
948      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
949      <EntityType Name="LogEntry" BaseType="LogEntry.v1_2_7.LogEntry"/>
950    </Schema>
951
952    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_2_9">
953      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
954      <Annotation Term="OData.Description" String="This version was created to correct the description of SensorNumber such that it only applies to SEL log entry types."/>
955      <EntityType Name="LogEntry" BaseType="LogEntry.v1_2_8.LogEntry"/>
956    </Schema>
957
958    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_2_10">
959      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
960      <Annotation Term="OData.Description" String="This version was created to specify 64-bit integers in OpenAPI."/>
961      <EntityType Name="LogEntry" BaseType="LogEntry.v1_2_9.LogEntry"/>
962    </Schema>
963
964    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_2_11">
965      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
966      <Annotation Term="OData.Description" String="This version was created to clarify the usage of OriginOfCondition for creation and deletion events."/>
967      <EntityType Name="LogEntry" BaseType="LogEntry.v1_2_10.LogEntry"/>
968    </Schema>
969
970    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_2_12">
971      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
972      <Annotation Term="OData.Description" String="This version was created to update descriptions for EntryType, Message, and MessageId to account for the new `CXL` value for EntryType."/>
973      <EntityType Name="LogEntry" BaseType="LogEntry.v1_2_11.LogEntry"/>
974    </Schema>
975
976    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_2_13">
977      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
978      <Annotation Term="OData.Description" String="This version was created to clarify that Severity can be overridden by the service."/>
979      <EntityType Name="LogEntry" BaseType="LogEntry.v1_2_12.LogEntry"/>
980    </Schema>
981
982    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_2_14">
983      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
984      <Annotation Term="OData.Description" String="This version was created to improve the description of message argument-related properties by explaining that number-type arguments are converted to strings prior to their consumption in a message."/>
985      <EntityType Name="LogEntry" BaseType="LogEntry.v1_2_13.LogEntry"/>
986    </Schema>
987
988    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_2_15">
989      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
990      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
991      <EntityType Name="LogEntry" BaseType="LogEntry.v1_2_14.LogEntry"/>
992    </Schema>
993
994    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_3_0">
995      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
996      <Annotation Term="Redfish.Release" String="2017.3"/>
997      <Annotation Term="OData.Description" String="This version was created to add OEM enumerations for legacy IPMI log implementations."/>
998
999      <EntityType Name="LogEntry" BaseType="LogEntry.v1_2_1.LogEntry">
1000        <Property Name="OemLogEntryCode" Type="Edm.String">
1001          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1002          <Annotation Term="OData.Description" String="The OEM-specific entry code, if the LogEntryCode type is `OEM`."/>
1003          <Annotation Term="OData.LongDescription" String="This property shall represent the OEM-specific Log Entry Code type of the Entry.  This property shall only be present if EntryType is `SEL` and LogEntryCode is `OEM`."/>
1004        </Property>
1005        <Property Name="OemSensorType" Type="Edm.String">
1006          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1007          <Annotation Term="OData.Description" String="The OEM-specific sensor type if the sensor type is `OEM`."/>
1008          <Annotation Term="OData.LongDescription" String="This property shall represent the OEM-specific sensor type of the entry.  This property shall only be used if EntryType is `SEL` and SensorType is `OEM`."/>
1009        </Property>
1010      </EntityType>
1011    </Schema>
1012
1013    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_3_1">
1014      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1015      <Annotation Term="OData.Description" String="This version was created to correct the description for EntryType.  It was also 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 descriptions for many properties."/>
1016      <EntityType Name="LogEntry" BaseType="LogEntry.v1_3_0.LogEntry"/>
1017    </Schema>
1018
1019    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_3_2">
1020      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1021      <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation."/>
1022      <EntityType Name="LogEntry" BaseType="LogEntry.v1_3_1.LogEntry"/>
1023    </Schema>
1024
1025    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_3_3">
1026      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1027      <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."/>
1028      <EntityType Name="LogEntry" BaseType="LogEntry.v1_3_2.LogEntry"/>
1029    </Schema>
1030
1031    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_3_4">
1032      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1033      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
1034      <EntityType Name="LogEntry" BaseType="LogEntry.v1_3_3.LogEntry"/>
1035    </Schema>
1036
1037    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_3_5">
1038      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1039      <Annotation Term="OData.Description" String="This version was created to add the Event Type/Direction byte of the IPMI SEL to MessageId."/>
1040      <EntityType Name="LogEntry" BaseType="LogEntry.v1_3_4.LogEntry"/>
1041    </Schema>
1042
1043    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_3_6">
1044      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1045      <Annotation Term="OData.Description" String="This version was created to clarify references to the IPMI Specification in the descriptions of EntryCode, SensorType, and Message."/>
1046      <EntityType Name="LogEntry" BaseType="LogEntry.v1_3_5.LogEntry"/>
1047    </Schema>
1048
1049    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_3_7">
1050      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1051      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1052      <EntityType Name="LogEntry" BaseType="LogEntry.v1_3_6.LogEntry"/>
1053    </Schema>
1054
1055    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_3_8">
1056      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1057      <Annotation Term="OData.Description" String="This version was created to correct the description of SensorNumber such that it only applies to SEL log entry types."/>
1058      <EntityType Name="LogEntry" BaseType="LogEntry.v1_3_7.LogEntry"/>
1059    </Schema>
1060
1061    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_3_9">
1062      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1063      <Annotation Term="OData.Description" String="This version was created to specify 64-bit integers in OpenAPI."/>
1064      <EntityType Name="LogEntry" BaseType="LogEntry.v1_3_8.LogEntry"/>
1065    </Schema>
1066
1067    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_3_10">
1068      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1069      <Annotation Term="OData.Description" String="This version was created to clarify the usage of OriginOfCondition for creation and deletion events."/>
1070      <EntityType Name="LogEntry" BaseType="LogEntry.v1_3_9.LogEntry"/>
1071    </Schema>
1072
1073    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_3_11">
1074      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1075      <Annotation Term="OData.Description" String="This version was created to update descriptions for EntryType, Message, and MessageId to account for the new `CXL` value for EntryType."/>
1076      <EntityType Name="LogEntry" BaseType="LogEntry.v1_3_10.LogEntry"/>
1077    </Schema>
1078
1079    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_3_12">
1080      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1081      <Annotation Term="OData.Description" String="This version was created to clarify that Severity can be overridden by the service."/>
1082      <EntityType Name="LogEntry" BaseType="LogEntry.v1_3_11.LogEntry"/>
1083    </Schema>
1084
1085    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_3_13">
1086      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1087      <Annotation Term="OData.Description" String="This version was created to improve the description of message argument-related properties by explaining that number-type arguments are converted to strings prior to their consumption in a message."/>
1088      <EntityType Name="LogEntry" BaseType="LogEntry.v1_3_12.LogEntry"/>
1089    </Schema>
1090
1091    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_3_14">
1092      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1093      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1094      <EntityType Name="LogEntry" BaseType="LogEntry.v1_3_13.LogEntry"/>
1095    </Schema>
1096
1097    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_4_0">
1098      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1099      <Annotation Term="Redfish.Release" String="2018.2"/>
1100      <Annotation Term="OData.Description" String="This version was created to deprecate EventType and to add EventGroupId in the case the log is used for Events."/>
1101
1102      <EntityType Name="LogEntry" BaseType="LogEntry.v1_3_1.LogEntry">
1103        <Property Name="EventGroupId" Type="Edm.Int64">
1104          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1105          <Annotation Term="OData.Description" String="An identifier that correlates events with the same cause."/>
1106          <Annotation Term="OData.LongDescription" String="This property shall indicate that events are related and shall have the same value in the case where multiple event messages are produced by the same root cause.  Implementations shall use separate values for events with separate root cause.  There shall not be ordering of events implied by this property's value."/>
1107        </Property>
1108      </EntityType>
1109    </Schema>
1110
1111    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_4_1">
1112      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1113      <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation."/>
1114      <EntityType Name="LogEntry" BaseType="LogEntry.v1_4_0.LogEntry"/>
1115    </Schema>
1116
1117    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_4_2">
1118      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1119      <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."/>
1120      <EntityType Name="LogEntry" BaseType="LogEntry.v1_4_1.LogEntry"/>
1121    </Schema>
1122
1123    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_4_3">
1124      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1125      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
1126      <EntityType Name="LogEntry" BaseType="LogEntry.v1_4_2.LogEntry"/>
1127    </Schema>
1128
1129    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_4_4">
1130      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1131      <Annotation Term="OData.Description" String="This version was created to add the Event Type/Direction byte of the IPMI SEL to MessageId."/>
1132      <EntityType Name="LogEntry" BaseType="LogEntry.v1_4_3.LogEntry"/>
1133    </Schema>
1134
1135    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_4_5">
1136      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1137      <Annotation Term="OData.Description" String="This version was created to clarify references to the IPMI Specification in the descriptions of EntryCode, SensorType, and Message."/>
1138      <EntityType Name="LogEntry" BaseType="LogEntry.v1_4_4.LogEntry"/>
1139    </Schema>
1140
1141    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_4_6">
1142      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1143      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1144      <EntityType Name="LogEntry" BaseType="LogEntry.v1_4_5.LogEntry"/>
1145    </Schema>
1146
1147    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_4_7">
1148      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1149      <Annotation Term="OData.Description" String="This version was created to correct the description of SensorNumber such that it only applies to SEL log entry types."/>
1150      <EntityType Name="LogEntry" BaseType="LogEntry.v1_4_6.LogEntry"/>
1151    </Schema>
1152
1153    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_4_8">
1154      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1155      <Annotation Term="OData.Description" String="This version was created to specify 64-bit integers in OpenAPI."/>
1156      <EntityType Name="LogEntry" BaseType="LogEntry.v1_4_7.LogEntry"/>
1157    </Schema>
1158
1159    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_4_9">
1160      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1161      <Annotation Term="OData.Description" String="This version was created to clarify the usage of OriginOfCondition for creation and deletion events."/>
1162      <EntityType Name="LogEntry" BaseType="LogEntry.v1_4_8.LogEntry"/>
1163    </Schema>
1164
1165    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_4_10">
1166      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1167      <Annotation Term="OData.Description" String="This version was created to update descriptions for EntryType, Message, and MessageId to account for the new `CXL` value for EntryType."/>
1168      <EntityType Name="LogEntry" BaseType="LogEntry.v1_4_9.LogEntry"/>
1169    </Schema>
1170
1171    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_4_11">
1172      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1173      <Annotation Term="OData.Description" String="This version was created to clarify that Severity can be overridden by the service."/>
1174      <EntityType Name="LogEntry" BaseType="LogEntry.v1_4_10.LogEntry"/>
1175    </Schema>
1176
1177    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_4_12">
1178      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1179      <Annotation Term="OData.Description" String="This version was created to improve the description of message argument-related properties by explaining that number-type arguments are converted to strings prior to their consumption in a message."/>
1180      <EntityType Name="LogEntry" BaseType="LogEntry.v1_4_11.LogEntry"/>
1181    </Schema>
1182
1183    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_4_13">
1184      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1185      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1186      <EntityType Name="LogEntry" BaseType="LogEntry.v1_4_12.LogEntry"/>
1187    </Schema>
1188
1189    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_5_0">
1190      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1191      <Annotation Term="Redfish.Release" String="2019.3"/>
1192      <Annotation Term="OData.Description" String="This version was created to add the GeneratorId property."/>
1193
1194      <EntityType Name="LogEntry" BaseType="LogEntry.v1_4_4.LogEntry">
1195        <Property Name="GeneratorId" Type="Edm.String">
1196          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1197          <Annotation Term="OData.Description" String="An identifier of the device that has generated the IPMI SEL Event Record."/>
1198          <Annotation Term="OData.LongDescription" String="If EntryType is `SEL`, this property shall contain the 'Generator ID' field of the IPMI SEL Event Record.  If EntryType is not `SEL`, this property should not be present."/>
1199          <Annotation Term="Validation.Pattern" String="^0[xX](([a-fA-F]|[0-9]){2}){2}$"/>
1200        </Property>
1201      </EntityType>
1202    </Schema>
1203
1204    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_5_1">
1205      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1206      <Annotation Term="OData.Description" String="This version was created to clarify references to the IPMI Specification in the descriptions of EntryCode, SensorType, and Message."/>
1207      <EntityType Name="LogEntry" BaseType="LogEntry.v1_5_0.LogEntry"/>
1208    </Schema>
1209
1210    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_5_2">
1211      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1212      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1213      <EntityType Name="LogEntry" BaseType="LogEntry.v1_5_1.LogEntry"/>
1214    </Schema>
1215
1216    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_5_3">
1217      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1218      <Annotation Term="OData.Description" String="This version was created to correct the description of SensorNumber such that it only applies to SEL log entry types."/>
1219      <EntityType Name="LogEntry" BaseType="LogEntry.v1_5_2.LogEntry"/>
1220    </Schema>
1221
1222    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_5_4">
1223      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1224      <Annotation Term="OData.Description" String="This version was created to specify 64-bit integers in OpenAPI."/>
1225      <EntityType Name="LogEntry" BaseType="LogEntry.v1_5_3.LogEntry"/>
1226    </Schema>
1227
1228    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_5_5">
1229      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1230      <Annotation Term="OData.Description" String="This version was created to clarify the usage of OriginOfCondition for creation and deletion events."/>
1231      <EntityType Name="LogEntry" BaseType="LogEntry.v1_5_4.LogEntry"/>
1232    </Schema>
1233
1234    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_5_6">
1235      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1236      <Annotation Term="OData.Description" String="This version was created to update descriptions for EntryType, Message, and MessageId to account for the new `CXL` value for EntryType."/>
1237      <EntityType Name="LogEntry" BaseType="LogEntry.v1_5_5.LogEntry"/>
1238    </Schema>
1239
1240    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_5_7">
1241      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1242      <Annotation Term="OData.Description" String="This version was created to clarify that Severity can be overridden by the service."/>
1243      <EntityType Name="LogEntry" BaseType="LogEntry.v1_5_6.LogEntry"/>
1244    </Schema>
1245
1246    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_5_8">
1247      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1248      <Annotation Term="OData.Description" String="This version was created to improve the description of message argument-related properties by explaining that number-type arguments are converted to strings prior to their consumption in a message."/>
1249      <EntityType Name="LogEntry" BaseType="LogEntry.v1_5_7.LogEntry"/>
1250    </Schema>
1251
1252    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_5_9">
1253      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1254      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1255      <EntityType Name="LogEntry" BaseType="LogEntry.v1_5_8.LogEntry"/>
1256    </Schema>
1257
1258    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_6_0">
1259      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1260      <Annotation Term="Redfish.Release" String="2020.1"/>
1261      <Annotation Term="OData.Description" String="This version was created to add the Modified property."/>
1262
1263      <EntityType Name="LogEntry" BaseType="LogEntry.v1_5_1.LogEntry">
1264        <Property Name="Modified" Type="Edm.DateTimeOffset" Nullable="false">
1265          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1266          <Annotation Term="OData.Description" String="The date and time when the log entry was last modified."/>
1267          <Annotation Term="OData.LongDescription" String="This property shall contain the date and time when the log entry was last modified.  This property shall not appear if the log entry has not been modified since it was created."/>
1268        </Property>
1269      </EntityType>
1270    </Schema>
1271
1272    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_6_1">
1273      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1274      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1275      <EntityType Name="LogEntry" BaseType="LogEntry.v1_6_0.LogEntry"/>
1276    </Schema>
1277
1278    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_6_2">
1279      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1280      <Annotation Term="OData.Description" String="This version was created to correct the description of SensorNumber such that it only applies to SEL log entry types."/>
1281      <EntityType Name="LogEntry" BaseType="LogEntry.v1_6_1.LogEntry"/>
1282    </Schema>
1283
1284    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_6_3">
1285      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1286      <Annotation Term="OData.Description" String="This version was created to specify 64-bit integers in OpenAPI."/>
1287      <EntityType Name="LogEntry" BaseType="LogEntry.v1_6_2.LogEntry"/>
1288    </Schema>
1289
1290    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_6_4">
1291      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1292      <Annotation Term="OData.Description" String="This version was created to clarify the usage of OriginOfCondition for creation and deletion events."/>
1293      <EntityType Name="LogEntry" BaseType="LogEntry.v1_6_3.LogEntry"/>
1294    </Schema>
1295
1296    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_6_5">
1297      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1298      <Annotation Term="OData.Description" String="This version was created to update descriptions for EntryType, Message, and MessageId to account for the new `CXL` value for EntryType."/>
1299      <EntityType Name="LogEntry" BaseType="LogEntry.v1_6_4.LogEntry"/>
1300    </Schema>
1301
1302    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_6_6">
1303      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1304      <Annotation Term="OData.Description" String="This version was created to clarify that Severity can be overridden by the service."/>
1305      <EntityType Name="LogEntry" BaseType="LogEntry.v1_6_5.LogEntry"/>
1306    </Schema>
1307
1308    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_6_7">
1309      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1310      <Annotation Term="OData.Description" String="This version was created to improve the description of message argument-related properties by explaining that number-type arguments are converted to strings prior to their consumption in a message."/>
1311      <EntityType Name="LogEntry" BaseType="LogEntry.v1_6_6.LogEntry"/>
1312    </Schema>
1313
1314    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_6_8">
1315      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1316      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1317      <EntityType Name="LogEntry" BaseType="LogEntry.v1_6_7.LogEntry"/>
1318    </Schema>
1319
1320    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_7_0">
1321      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1322      <Annotation Term="Redfish.Release" String="2020.3"/>
1323      <Annotation Term="OData.Description" String="This version was created to add AdditionalDataSizeBytes, AdditionalDataURI, and DiagnosticDataType properties."/>
1324
1325      <EntityType Name="LogEntry" BaseType="LogEntry.v1_6_2.LogEntry">
1326        <Property Name="AdditionalDataSizeBytes" Type="Edm.Int64">
1327          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1328          <Annotation Term="OData.Description" String="The size of the additional data for this log entry."/>
1329          <Annotation Term="OData.LongDescription" String="This property shall contain the size of the additional data retrieved from the URI specified by the AdditionalDataURI property for this log entry."/>
1330          <Annotation Term="Measures.Unit" String="By"/>
1331        </Property>
1332        <Property Name="AdditionalDataURI" Type="Edm.String">
1333          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1334          <Annotation Term="OData.Description" String="The URI at which to access the additional data for this log entry, such as diagnostic data, image captures, or other files."/>
1335          <Annotation Term="OData.LongDescription" String="This property shall contain the URI at which to access the additional data for this log entry, using the Redfish protocol and authentication methods.  If both DiagnosticData and AdditionalDataURI are present, DiagnosticData shall contain the Base64-encoding of the data retrieved from the URI specified by the AdditionalDataURI property."/>
1336          <Annotation Term="OData.IsURL"/>
1337        </Property>
1338        <Property Name="DiagnosticDataType" Type="LogEntry.v1_7_0.LogDiagnosticDataTypes">
1339          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1340          <Annotation Term="OData.Description" String="The type of data available in the DiagnosticData property or retrieved from the URI specified by the AdditionalDataURI property."/>
1341          <Annotation Term="OData.LongDescription" String="This property shall contain the type of data available in the DiagnosticData property or retrieved from the URI specified by the AdditionalDataURI property."/>
1342        </Property>
1343        <Property Name="OEMDiagnosticDataType" Type="Edm.String">
1344          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1345          <Annotation Term="OData.Description" String="The OEM-defined type of data available in the DiagnosticData property or retrieved from the URI specified by the AdditionalDataURI property."/>
1346          <Annotation Term="OData.LongDescription" String="This property shall contain the OEM-defined type of data available in the DiagnosticData property or retrieved from the URI specified by the AdditionalDataURI property.  This property shall be present if DiagnosticDataType is `OEM`."/>
1347        </Property>
1348      </EntityType>
1349
1350      <EnumType Name="LogDiagnosticDataTypes">
1351        <Member Name="Manager">
1352          <Annotation Term="OData.Description" String="Manager diagnostic data."/>
1353        </Member>
1354        <Member Name="PreOS">
1355          <Annotation Term="OData.Description" String="Pre-OS diagnostic data."/>
1356        </Member>
1357        <Member Name="OS">
1358          <Annotation Term="OData.Description" String="Operating system (OS) diagnostic data."/>
1359        </Member>
1360        <Member Name="OEM">
1361          <Annotation Term="OData.Description" String="OEM diagnostic data."/>
1362        </Member>
1363        <Member Name="CPER">
1364          <Annotation Term="OData.Description" String="UEFI Common Platform Error Record."/>
1365          <Annotation Term="OData.LongDescription" String="This value shall indicate the data provided at the URI specified by the AdditionalDataURI property is a complete UEFI Specification-defined Common Platform Error Record.  The CPER data shall contain a Record Header and at least one Section as defined by the UEFI Specification."/>
1366          <Annotation Term="Redfish.Revisions">
1367            <Collection>
1368              <Record>
1369                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
1370                <PropertyValue Property="Version" String="v1_10_0"/>
1371              </Record>
1372            </Collection>
1373          </Annotation>
1374        </Member>
1375        <Member Name="CPERSection">
1376          <Annotation Term="OData.Description" String="A Section of a UEFI Common Platform Error Record."/>
1377          <Annotation Term="OData.LongDescription" String="This value shall indicate the data provided at the URI specified by the AdditionalDataURI property is a single Section of a UEFI Specification-defined Common Platform Error Record.  The CPER data shall contain one Section as defined by the UEFI Specification, with no Record Header."/>
1378          <Annotation Term="Redfish.Revisions">
1379            <Collection>
1380              <Record>
1381                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
1382                <PropertyValue Property="Version" String="v1_10_0"/>
1383              </Record>
1384            </Collection>
1385          </Annotation>
1386        </Member>
1387      </EnumType>
1388    </Schema>
1389
1390    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_7_1">
1391      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1392      <Annotation Term="OData.Description" String="This version was created to specify 64-bit integers in OpenAPI."/>
1393      <EntityType Name="LogEntry" BaseType="LogEntry.v1_7_0.LogEntry"/>
1394    </Schema>
1395
1396    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_7_2">
1397      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1398      <Annotation Term="OData.Description" String="This version was created to clarify the usage of OriginOfCondition for creation and deletion events.  It was also created to clarify that DiagnosticDataType refers to the data located at the AdditionalDataURI."/>
1399      <EntityType Name="LogEntry" BaseType="LogEntry.v1_7_1.LogEntry"/>
1400    </Schema>
1401
1402    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_7_3">
1403      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1404      <Annotation Term="OData.Description" String="This version was created to update descriptions for EntryType, Message, and MessageId to account for the new `CXL` value for EntryType."/>
1405      <EntityType Name="LogEntry" BaseType="LogEntry.v1_7_2.LogEntry"/>
1406    </Schema>
1407
1408    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_7_4">
1409      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1410      <Annotation Term="OData.Description" String="This version was created to update descriptions for AdditionalDataSizeBytes, AdditionalDataURI, DiagnosticDataType, and OEMDiagnosticDataType to match updates for the new DiagnosticData property.  It was also created to clarify that Severity can be overridden by the service."/>
1411      <EntityType Name="LogEntry" BaseType="LogEntry.v1_7_3.LogEntry"/>
1412    </Schema>
1413
1414    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_7_5">
1415      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1416      <Annotation Term="OData.Description" String="This version was created to improve the description of message argument-related properties by explaining that number-type arguments are converted to strings prior to their consumption in a message."/>
1417      <EntityType Name="LogEntry" BaseType="LogEntry.v1_7_4.LogEntry"/>
1418    </Schema>
1419
1420    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_7_6">
1421      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1422      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1423      <EntityType Name="LogEntry" BaseType="LogEntry.v1_7_5.LogEntry"/>
1424    </Schema>
1425
1426    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_8_0">
1427      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1428      <Annotation Term="Redfish.Release" String="2020.4"/>
1429      <Annotation Term="OData.Description" String="This version was created to add the Resolved property."/>
1430
1431      <EntityType Name="LogEntry" BaseType="LogEntry.v1_7_1.LogEntry">
1432        <Property Name="Resolved" Type="Edm.Boolean">
1433          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1434          <Annotation Term="OData.Description" String="Indicates if the cause of the log entry has been resolved or repaired."/>
1435          <Annotation Term="OData.LongDescription" String="This property shall contain an indication if the cause of the log entry has been resolved or repaired.  The value `true` shall indicate if the cause of the log entry has been resolved or repaired.  This property shall contain the value `false` if the log entry is still active.  The value `false` shall be the initial state.  Clients should ignore this property if Severity contains `OK`."/>
1436        </Property>
1437      </EntityType>
1438    </Schema>
1439
1440    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_8_1">
1441      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1442      <Annotation Term="OData.Description" String="This version was created to clarify the usage of OriginOfCondition for creation and deletion events.  It was also created to clarify that DiagnosticDataType refers to the data located at the AdditionalDataURI."/>
1443      <EntityType Name="LogEntry" BaseType="LogEntry.v1_8_0.LogEntry"/>
1444    </Schema>
1445
1446    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_8_2">
1447      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1448      <Annotation Term="OData.Description" String="This version was created to update descriptions for EntryType, Message, and MessageId to account for the new `CXL` value for EntryType."/>
1449      <EntityType Name="LogEntry" BaseType="LogEntry.v1_8_1.LogEntry"/>
1450    </Schema>
1451
1452    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_8_3">
1453      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1454      <Annotation Term="OData.Description" String="This version was created to update descriptions for AdditionalDataSizeBytes, AdditionalDataURI, DiagnosticDataType, and OEMDiagnosticDataType to match updates for the new DiagnosticData property.  It was also created to clarify that Severity can be overridden by the service."/>
1455      <EntityType Name="LogEntry" BaseType="LogEntry.v1_8_2.LogEntry"/>
1456    </Schema>
1457
1458    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_8_4">
1459      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1460      <Annotation Term="OData.Description" String="This version was created to improve the description of message argument-related properties by explaining that number-type arguments are converted to strings prior to their consumption in a message.  It was also created to clarify the Resolved property should be ignored if Severity contains `OK`."/>
1461      <EntityType Name="LogEntry" BaseType="LogEntry.v1_8_3.LogEntry"/>
1462    </Schema>
1463
1464    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_8_5">
1465      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1466      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1467      <EntityType Name="LogEntry" BaseType="LogEntry.v1_8_4.LogEntry"/>
1468    </Schema>
1469
1470    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_9_0">
1471      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1472      <Annotation Term="Redfish.Release" String="2021.1"/>
1473      <Annotation Term="OData.Description" String="This version was created to add the ServiceProviderNotified and Resolution properties."/>
1474
1475      <EntityType Name="LogEntry" BaseType="LogEntry.v1_8_0.LogEntry">
1476        <Property Name="ServiceProviderNotified" Type="Edm.Boolean">
1477          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1478          <Annotation Term="OData.Description" String="Indicates if the log entry has been sent to the service provider."/>
1479          <Annotation Term="OData.LongDescription" String="This property shall contain an indication if the log entry has been sent to the service provider."/>
1480        </Property>
1481        <Property Name="Resolution" Type="Edm.String" Nullable="false">
1482          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1483          <Annotation Term="OData.Description" String="Used to provide suggestions on how to resolve the situation that caused the log entry."/>
1484          <Annotation Term="OData.LongDescription" String="This property shall contain the resolution of the log entry.  Services should replace the resolution defined in the message registry with a more specific resolution in a log entry."/>
1485        </Property>
1486      </EntityType>
1487    </Schema>
1488
1489    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_9_1">
1490      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1491      <Annotation Term="OData.Description" String="This version was created to update the description for Resolution to recommend that an appropriate resolution is used."/>
1492      <EntityType Name="LogEntry" BaseType="LogEntry.v1_9_0.LogEntry"/>
1493    </Schema>
1494
1495    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_9_2">
1496      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1497      <Annotation Term="OData.Description" String="This version was created to clarify the usage of OriginOfCondition for creation and deletion events.  It was also created to clarify that DiagnosticDataType refers to the data located at the AdditionalDataURI."/>
1498      <EntityType Name="LogEntry" BaseType="LogEntry.v1_9_1.LogEntry"/>
1499    </Schema>
1500
1501    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_9_3">
1502      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1503      <Annotation Term="OData.Description" String="This version was created to update descriptions for EntryType, Message, and MessageId to account for the new `CXL` value for EntryType."/>
1504      <EntityType Name="LogEntry" BaseType="LogEntry.v1_9_2.LogEntry"/>
1505    </Schema>
1506
1507    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_9_4">
1508      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1509      <Annotation Term="OData.Description" String="This version was created to update descriptions for AdditionalDataSizeBytes, AdditionalDataURI, DiagnosticDataType, and OEMDiagnosticDataType to match updates for the new DiagnosticData property.  It was also created to clarify that Severity can be overridden by the service."/>
1510      <EntityType Name="LogEntry" BaseType="LogEntry.v1_9_3.LogEntry"/>
1511    </Schema>
1512
1513    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_9_5">
1514      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1515      <Annotation Term="OData.Description" String="This version was created to improve the description of message argument-related properties by explaining that number-type arguments are converted to strings prior to their consumption in a message.  It was also created to clarify the Resolved property should be ignored if Severity contains `OK`."/>
1516      <EntityType Name="LogEntry" BaseType="LogEntry.v1_9_4.LogEntry"/>
1517    </Schema>
1518
1519    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_9_6">
1520      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1521      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1522      <EntityType Name="LogEntry" BaseType="LogEntry.v1_9_5.LogEntry"/>
1523    </Schema>
1524
1525    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_10_0">
1526      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1527      <Annotation Term="Redfish.Release" String="2021.3"/>
1528      <Annotation Term="OData.Description" String="This version was created to add `CPER` and `CPERSection` to LogDiagnosticDataTypes."/>
1529
1530      <EntityType Name="LogEntry" BaseType="LogEntry.v1_9_0.LogEntry"/>
1531    </Schema>
1532
1533    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_10_1">
1534      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1535      <Annotation Term="OData.Description" String="This version was created to update the description for Resolution to recommend that an appropriate resolution is used."/>
1536      <EntityType Name="LogEntry" BaseType="LogEntry.v1_10_0.LogEntry"/>
1537    </Schema>
1538
1539    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_10_2">
1540      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1541      <Annotation Term="OData.Description" String="This version was created to clarify the usage of OriginOfCondition for creation and deletion events.  It was also created to clarify that DiagnosticDataType refers to the data located at the AdditionalDataURI."/>
1542      <EntityType Name="LogEntry" BaseType="LogEntry.v1_10_1.LogEntry"/>
1543    </Schema>
1544
1545    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_10_3">
1546      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1547      <Annotation Term="OData.Description" String="This version was created to update descriptions for EntryType, Message, and MessageId to account for the new `CXL` value for EntryType."/>
1548      <EntityType Name="LogEntry" BaseType="LogEntry.v1_10_2.LogEntry"/>
1549    </Schema>
1550
1551    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_10_4">
1552      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1553      <Annotation Term="OData.Description" String="This version was created to update descriptions for AdditionalDataSizeBytes, AdditionalDataURI, DiagnosticDataType, and OEMDiagnosticDataType to match updates for the new DiagnosticData property.  It was also created to clarify that Severity can be overridden by the service."/>
1554      <EntityType Name="LogEntry" BaseType="LogEntry.v1_10_3.LogEntry"/>
1555    </Schema>
1556
1557    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_10_5">
1558      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1559      <Annotation Term="OData.Description" String="This version was created to improve the description of message argument-related properties by explaining that number-type arguments are converted to strings prior to their consumption in a message.  It was also created to clarify the Resolved property should be ignored if Severity contains `OK`."/>
1560      <EntityType Name="LogEntry" BaseType="LogEntry.v1_10_4.LogEntry"/>
1561    </Schema>
1562
1563    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_10_6">
1564      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1565      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1566      <EntityType Name="LogEntry" BaseType="LogEntry.v1_10_5.LogEntry"/>
1567    </Schema>
1568
1569    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_11_0">
1570      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1571      <Annotation Term="Redfish.Release" String="2021.4"/>
1572
1573      <EntityType Name="LogEntry" BaseType="LogEntry.v1_10_1.LogEntry">
1574        <Property Name="Originator" Type="Edm.String" Nullable="false">
1575          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1576          <Annotation Term="OData.Description" String="The source of the log entry."/>
1577          <Annotation Term="OData.LongDescription" String="This property shall contain the source of the log entry."/>
1578        </Property>
1579        <Property Name="OriginatorType" Type="LogEntry.v1_11_0.OriginatorTypes" Nullable="false">
1580          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1581          <Annotation Term="OData.Description" String="The type of originator data."/>
1582          <Annotation Term="OData.LongDescription" String="This property shall contain the type of originator data."/>
1583        </Property>
1584      </EntityType>
1585
1586      <EnumType Name="OriginatorTypes">
1587        <Member Name="Client">
1588          <Annotation Term="OData.Description" String="A client of the service created this log entry."/>
1589        </Member>
1590        <Member Name="Internal">
1591          <Annotation Term="OData.Description" String="A process running on the service created this log entry."/>
1592        </Member>
1593        <Member Name="SupportingService">
1594          <Annotation Term="OData.Description" String="A process not running on the service but running on a supporting service, such as RDE implementations, UEFI, or host processes, created this log entry."/>
1595        </Member>
1596      </EnumType>
1597    </Schema>
1598
1599    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_11_1">
1600      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1601      <Annotation Term="OData.Description" String="This version was created to clarify the usage of OriginOfCondition for creation and deletion events.  It was also created to clarify that DiagnosticDataType refers to the data located at the AdditionalDataURI."/>
1602      <EntityType Name="LogEntry" BaseType="LogEntry.v1_11_0.LogEntry"/>
1603    </Schema>
1604
1605    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_11_2">
1606      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1607      <Annotation Term="OData.Description" String="This version was created to update descriptions for EntryType, Message, and MessageId to account for the new `CXL` value for EntryType."/>
1608      <EntityType Name="LogEntry" BaseType="LogEntry.v1_11_1.LogEntry"/>
1609    </Schema>
1610
1611    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_11_3">
1612      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1613      <Annotation Term="OData.Description" String="This version was created to update descriptions for AdditionalDataSizeBytes, AdditionalDataURI, DiagnosticDataType, and OEMDiagnosticDataType to match updates for the new DiagnosticData property.  It was also created to clarify that Severity can be overridden by the service."/>
1614      <EntityType Name="LogEntry" BaseType="LogEntry.v1_11_2.LogEntry"/>
1615    </Schema>
1616
1617    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_11_4">
1618      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1619      <Annotation Term="OData.Description" String="This version was created to improve the description of message argument-related properties by explaining that number-type arguments are converted to strings prior to their consumption in a message.  It was also created to clarify the Resolved property should be ignored if Severity contains `OK`."/>
1620      <EntityType Name="LogEntry" BaseType="LogEntry.v1_11_3.LogEntry"/>
1621    </Schema>
1622
1623    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_11_5">
1624      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1625      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1626      <EntityType Name="LogEntry" BaseType="LogEntry.v1_11_4.LogEntry"/>
1627    </Schema>
1628
1629    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_12_0">
1630      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1631      <Annotation Term="Redfish.Release" String="2022.1"/>
1632
1633      <EntityType Name="LogEntry" BaseType="LogEntry.v1_11_1.LogEntry"/>
1634
1635      <ComplexType Name="Links" BaseType="LogEntry.v1_0_0.Links">
1636        <NavigationProperty Name="RelatedItem" Type="Collection(Resource.Item)">
1637          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1638          <Annotation Term="OData.Description" String="An array of links to resources associated with this log entry."/>
1639          <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to resources that are related to this log entry.  It shall not contain links to LogEntry resources.  RelatedLogEntries is used to reference related log entries.  This property shall not contain the value of the OriginOfCondition property."/>
1640          <Annotation Term="OData.AutoExpandReferences"/>
1641        </NavigationProperty>
1642        <NavigationProperty Name="RelatedLogEntries" Type="Collection(LogEntry.LogEntry)">
1643          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1644          <Annotation Term="OData.Description" String="An array of links to other log entries that are related to this log entry."/>
1645          <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to resources of type LogEntry in this or other log services that are related to this log entry."/>
1646          <Annotation Term="OData.AutoExpandReferences"/>
1647        </NavigationProperty>
1648      </ComplexType>
1649    </Schema>
1650
1651    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_12_1">
1652      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1653      <Annotation Term="OData.Description" String="This version was created to update descriptions for EntryType, Message, and MessageId to account for the new `CXL` value for EntryType."/>
1654      <EntityType Name="LogEntry" BaseType="LogEntry.v1_12_0.LogEntry"/>
1655    </Schema>
1656
1657    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_12_2">
1658      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1659      <Annotation Term="OData.Description" String="This version was created to update descriptions for AdditionalDataSizeBytes, AdditionalDataURI, DiagnosticDataType, and OEMDiagnosticDataType to match updates for the new DiagnosticData property.  It was also created to clarify that Severity can be overridden by the service."/>
1660      <EntityType Name="LogEntry" BaseType="LogEntry.v1_12_1.LogEntry"/>
1661    </Schema>
1662
1663    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_12_3">
1664      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1665      <Annotation Term="OData.Description" String="This version was created to improve the description of message argument-related properties by explaining that number-type arguments are converted to strings prior to their consumption in a message.  It was also created to clarify the Resolved property should be ignored if Severity contains `OK`."/>
1666      <EntityType Name="LogEntry" BaseType="LogEntry.v1_12_2.LogEntry"/>
1667    </Schema>
1668
1669    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_12_4">
1670      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1671      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1672      <EntityType Name="LogEntry" BaseType="LogEntry.v1_12_3.LogEntry"/>
1673    </Schema>
1674
1675    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_13_0">
1676      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1677      <Annotation Term="Redfish.Release" String="2022.2"/>
1678
1679      <EntityType Name="LogEntry" BaseType="LogEntry.v1_12_0.LogEntry">
1680        <Property Name="SpecificEventExistsInGroup" Type="Edm.Boolean" Nullable="false">
1681          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1682          <Annotation Term="OData.Description" String="Indicates this log entry is equivalent to a more specific log entry within the same EventGroupId."/>
1683          <Annotation Term="OData.LongDescription" String="This property shall indicate that this log entry is equivalent to another log entry, with a more specific definition, within the same EventGroupId.  For example, the `DriveFailed` message from the Storage Device Message Registry is more specific than the `ResourceStatusChangedCritical` message from the Resource Event Message Registry, when both occur with the same EventGroupId.  This property shall contain `true` if a more specific event is available, and shall contain `false` if no equivalent event exists in the same EventGroupId.  If this property is absent, the value shall be assumed to be `false`."/>
1684        </Property>
1685      </EntityType>
1686    </Schema>
1687
1688    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_13_1">
1689      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1690      <Annotation Term="OData.Description" String="This version was created to update descriptions for EntryType, Message, and MessageId to account for the new `CXL` value for EntryType."/>
1691      <EntityType Name="LogEntry" BaseType="LogEntry.v1_13_0.LogEntry"/>
1692    </Schema>
1693
1694    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_13_2">
1695      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1696      <Annotation Term="OData.Description" String="This version was created to update descriptions for AdditionalDataSizeBytes, AdditionalDataURI, DiagnosticDataType, and OEMDiagnosticDataType to match updates for the new DiagnosticData property.  It was also created to clarify that Severity can be overridden by the service."/>
1697      <EntityType Name="LogEntry" BaseType="LogEntry.v1_13_1.LogEntry"/>
1698    </Schema>
1699
1700    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_13_3">
1701      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1702      <Annotation Term="OData.Description" String="This version was created to improve the description of message argument-related properties by explaining that number-type arguments are converted to strings prior to their consumption in a message.  It was also created to clarify the Resolved property should be ignored if Severity contains `OK`."/>
1703      <EntityType Name="LogEntry" BaseType="LogEntry.v1_13_2.LogEntry"/>
1704    </Schema>
1705
1706    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_13_4">
1707      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1708      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1709      <EntityType Name="LogEntry" BaseType="LogEntry.v1_13_3.LogEntry"/>
1710    </Schema>
1711
1712    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_14_0">
1713      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1714      <Annotation Term="Redfish.Release" String="2022.3"/>
1715      <Annotation Term="OData.Description" String="This version was created to add `CXL` to LogEntryType."/>
1716
1717      <EntityType Name="LogEntry" BaseType="LogEntry.v1_13_1.LogEntry">
1718        <Property Name="OverflowErrorCount" Type="Edm.Int64" Nullable="false">
1719          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1720          <Annotation Term="OData.Description" String="The count of overflow errors that occurred after this log entry."/>
1721          <Annotation Term="OData.LongDescription" String="This property shall contain the count of overflow errors that occurred after this log entry.  If this log entry is the most recent log entry in the log service, this property shall not be present if no overflow errors occurred after the time of this log entry.  If this log entry is not the most recent log entry in the log service, this property shall not be present if no overflow errors occurred between the time of this log entry and the time of the next log entry."/>
1722        </Property>
1723        <Property Name="FirstOverflowTimestamp" Type="Edm.DateTimeOffset" Nullable="false">
1724          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1725          <Annotation Term="OData.Description" String="The timestamp of the first overflow captured after this log entry."/>
1726          <Annotation Term="OData.LongDescription" String="This property shall contain the timestamp of the first overflow captured after this log entry.  If this log entry is the most recent log entry in the log service, this property shall not be present if no overflow errors occurred after the time of this log entry.  If this log entry is not the most recent log entry in the log service, this property shall not be present if no overflow errors occurred between the time of this log entry and the time of the next log entry."/>
1727        </Property>
1728        <Property Name="LastOverflowTimestamp" Type="Edm.DateTimeOffset" Nullable="false">
1729          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1730          <Annotation Term="OData.Description" String="The timestamp of the last overflow captured after this log entry."/>
1731          <Annotation Term="OData.LongDescription" String="This property shall contain the timestamp of the last overflow captured after this log entry.  If this log entry is the most recent log entry in the log service, this property shall not be present if no overflow errors occurred after the time of this log entry.  If this log entry is not the most recent log entry in the log service, this property shall not be present if no overflow errors occurred between the time of this log entry and the time of the next log entry."/>
1732        </Property>
1733        <Property Name="CXLEntryType" Type="LogEntry.v1_14_0.CXLEntryType" Nullable="false">
1734          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1735          <Annotation Term="OData.Description" String="The specific CXL entry type."/>
1736          <Annotation Term="OData.LongDescription" String="This property shall contain the specific CXL entry type.  This property shall only be present if EntryType contains `CXL`."/>
1737        </Property>
1738        <Property Name="Persistency" Type="Edm.Boolean" Nullable="false">
1739          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1740          <Annotation Term="OData.Description" String="Indicates whether the log entry is persistent across a cold reset of the device."/>
1741          <Annotation Term="OData.LongDescription" String="This property shall indicate whether the log entry is persistent across a cold reset of the device."/>
1742        </Property>
1743      </EntityType>
1744
1745      <EnumType Name="CXLEntryType">
1746        <Member Name="DynamicCapacity">
1747          <Annotation Term="OData.Description" String="A CXL Dynamic Capacity log entry."/>
1748        </Member>
1749        <Member Name="Informational">
1750          <Annotation Term="OData.Description" String="A CXL informational log entry."/>
1751        </Member>
1752        <Member Name="Warning">
1753          <Annotation Term="OData.Description" String="A CXL warning log entry."/>
1754        </Member>
1755        <Member Name="Failure">
1756          <Annotation Term="OData.Description" String="A CXL failure log entry."/>
1757        </Member>
1758        <Member Name="Fatal">
1759          <Annotation Term="OData.Description" String="A CXL fatal log entry."/>
1760        </Member>
1761      </EnumType>
1762    </Schema>
1763
1764    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_14_1">
1765      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1766      <Annotation Term="OData.Description" String="This version was created to update descriptions for AdditionalDataSizeBytes, AdditionalDataURI, DiagnosticDataType, and OEMDiagnosticDataType to match updates for the new DiagnosticData property.  It was also created to clarify that Severity can be overridden by the service."/>
1767      <EntityType Name="LogEntry" BaseType="LogEntry.v1_14_0.LogEntry"/>
1768    </Schema>
1769
1770    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_14_2">
1771      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1772      <Annotation Term="OData.Description" String="This version was created to improve the description of message argument-related properties by explaining that number-type arguments are converted to strings prior to their consumption in a message.  It was also created to clarify the Resolved property should be ignored if Severity contains `OK`."/>
1773      <EntityType Name="LogEntry" BaseType="LogEntry.v1_14_1.LogEntry"/>
1774    </Schema>
1775
1776    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_14_3">
1777      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1778      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1779      <EntityType Name="LogEntry" BaseType="LogEntry.v1_14_2.LogEntry"/>
1780    </Schema>
1781
1782    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_15_0">
1783      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1784      <Annotation Term="Redfish.Release" String="2023.1"/>
1785
1786      <EntityType Name="LogEntry" BaseType="LogEntry.v1_14_1.LogEntry">
1787        <Property Name="CPER" Type="LogEntry.v1_15_0.CPER" Nullable="false">
1788          <Annotation Term="OData.Description" String="Details for a CPER section or record associated with this log entry."/>
1789          <Annotation Term="OData.LongDescription" String="This property shall contain the details for a CPER section or record that is the source of this log entry."/>
1790        </Property>
1791        <Property Name="DiagnosticData" Type="Edm.String">
1792          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1793          <Annotation Term="OData.Description" String="A Base64-encoded set of diagnostic data associated with this log entry."/>
1794          <Annotation Term="OData.LongDescription" String="This property shall contain a Base64-encoded string that represents diagnostic data associated with this log entry.  The contents shall depend on the value of the DiagnosticDataType property.  The length of the value should not exceed 4 KB.  Larger diagnostic data payloads should omit this property and use the AdditionalDataURI property to reference the data.  If both DiagnosticData and AdditionalDataURI are present, DiagnosticData shall contain the Base64-encoding of the data retrieved from the URI specified by the AdditionalDataURI property."/>
1795        </Property>
1796      </EntityType>
1797
1798      <ComplexType Name="CPER">
1799        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
1800        <Annotation Term="OData.Description" String="Details for a CPER section or record associated with a log entry."/>
1801        <Annotation Term="OData.LongDescription" String="This object shall contain the details for a CPER section or record that is the source of a log entry."/>
1802        <Property Name="NotificationType" Type="Edm.Guid">
1803          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1804          <Annotation Term="OData.Description" String="The CPER Notification Type for a CPER record."/>
1805          <Annotation Term="OData.LongDescription" String="This property shall contain the CPER Notification Type for a CPER record that corresponds to the contents of the DiagnosticData property or data retrieved from the URI specified by the AdditionalDataURI property.  This property shall only be present if DiagnosticDataType contains `CPER`."/>
1806        </Property>
1807        <Property Name="SectionType" Type="Edm.Guid">
1808          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
1809          <Annotation Term="OData.Description" String="The CPER Section Type."/>
1810          <Annotation Term="OData.LongDescription" String="This property shall contain the CPER Section Type for a CPER section that corresponds to the contents of the DiagnosticData property or data retrieved from the URI specified by the AdditionalDataURI property.  This property shall only be present if DiagnosticDataType contains `CPERSection`."/>
1811        </Property>
1812        <Property Name="Oem" Type="Resource.Oem" Nullable="false">
1813          <Annotation Term="OData.Description" String="The OEM extension property."/>
1814          <Annotation Term="OData.LongDescription" String="This property shall contain the OEM extensions.  All values for properties contained in this object shall conform to the Redfish Specification-described requirements."/>
1815        </Property>
1816      </ComplexType>
1817    </Schema>
1818
1819    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_15_1">
1820      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1821      <Annotation Term="OData.Description" String="This version was created to improve the description of message argument-related properties by explaining that number-type arguments are converted to strings prior to their consumption in a message.  It was also created to clarify the Resolved property should be ignored if Severity contains `OK`."/>
1822      <EntityType Name="LogEntry" BaseType="LogEntry.v1_15_0.LogEntry"/>
1823    </Schema>
1824
1825    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_15_2">
1826      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1827      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1828      <EntityType Name="LogEntry" BaseType="LogEntry.v1_15_1.LogEntry"/>
1829    </Schema>
1830
1831    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogEntry.v1_16_0">
1832      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1833      <Annotation Term="Redfish.Release" String="2023.3"/>
1834
1835      <EntityType Name="LogEntry" BaseType="LogEntry.v1_15_2.LogEntry">
1836        <Property Name="ResolutionSteps" Type="Collection(ResolutionStep.ResolutionStep)" Nullable="false">
1837          <Annotation Term="OData.Description" String="The list of recommended steps to resolve the cause of the log entry."/>
1838          <Annotation Term="OData.LongDescription" String="This property shall contain an array of recommended steps to resolve the cause of the log entry.  This property shall not be present if the Severity property contains `OK`.  A client can stop executing the resolution steps once the Resolved property resource contains `true` or the Health property in the associated resource referenced by the OriginOfCondition property contains `OK`."/>
1839        </Property>
1840      </EntityType>
1841    </Schema>
1842
1843  </edmx:DataServices>
1844</edmx:Edmx>
1845