1<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################       -->
4<!--# Redfish Schema:  LogService v1.6.0                                                   -->
5<!--#                                                                                      -->
6<!--# For a detailed change log, see the README file contained in the DSP8010 bundle,      -->
7<!--# available at http://www.dmtf.org/standards/redfish                                   -->
8<!--# Copyright 2014-2023 DMTF.                                                            -->
9<!--# For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright -->
10<!--################################################################################       -->
11<!---->
12<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0">
13
14  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Core.V1.xml">
15    <edmx:Include Namespace="Org.OData.Core.V1" Alias="OData"/>
16  </edmx:Reference>
17  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Capabilities.V1.xml">
18    <edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="Capabilities"/>
19  </edmx:Reference>
20  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
21    <edmx:Include Namespace="Validation.v1_0_0" Alias="Validation"/>
22    <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
23  </edmx:Reference>
24  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
25    <edmx:Include Namespace="Resource"/>
26    <edmx:Include Namespace="Resource.v1_0_0"/>
27  </edmx:Reference>
28  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/LogEntryCollection_v1.xml">
29    <edmx:Include Namespace="LogEntryCollection"/>
30  </edmx:Reference>
31
32  <edmx:DataServices>
33
34    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService">
35      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
36
37      <EntityType Name="LogService" BaseType="Resource.v1_0_0.Resource" Abstract="true">
38        <Annotation Term="OData.Description" String="The LogService schema contains properties for monitoring and configuring a log service.  When the Id property contains `DeviceLog`, the log contains device-resident log entries that follow the physical device when moved from system-to-system, and not a replication or subset of a system event log."/>
39        <Annotation Term="OData.LongDescription" String="This resource shall represent a log service for a Redfish implementation.  When the Id property contains `DeviceLog`, the log shall contain log entries that migrate with the device."/>
40        <Annotation Term="Capabilities.InsertRestrictions">
41          <Record>
42            <PropertyValue Property="Insertable" Bool="false"/>
43          </Record>
44        </Annotation>
45        <Annotation Term="Capabilities.UpdateRestrictions">
46          <Record>
47            <PropertyValue Property="Updatable" Bool="true"/>
48            <Annotation Term="OData.Description" String="The date and time properties can be updated for a log service."/>
49          </Record>
50        </Annotation>
51        <Annotation Term="Capabilities.DeleteRestrictions">
52          <Record>
53            <PropertyValue Property="Deletable" Bool="false"/>
54          </Record>
55        </Annotation>
56        <Annotation Term="Redfish.Uris">
57          <Collection>
58            <String>/redfish/v1/Managers/{ManagerId}/LogServices/{LogServiceId}</String>
59            <String>/redfish/v1/Systems/{ComputerSystemId}/LogServices/{LogServiceId}</String>
60            <String>/redfish/v1/CompositionService/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/LogServices/{LogServiceId}</String>
61            <String>/redfish/v1/ResourceBlocks/{ResourceBlockId}/Systems/{ComputerSystemId}/LogServices/{LogServiceId}</String>
62            <String>/redfish/v1/Chassis/{ChassisId}/LogServices/{LogServiceId}</String>
63            <String>/redfish/v1/JobService/Log</String>
64            <String>/redfish/v1/TelemetryService/LogService</String>
65            <String>/redfish/v1/Systems/{ComputerSystemId}/Memory/{MemoryId}/DeviceLog</String>
66            <String>/redfish/v1/Chassis/{ChassisId}/PCIeDevices/{PCIeDeviceId}/CXLLogicalDevices/{CXLLogicalDeviceId}/DeviceLog</String>
67          </Collection>
68        </Annotation>
69      </EntityType>
70
71      <Action Name="ClearLog" IsBound="true">
72        <Annotation Term="OData.Description" String="The action to clear the log for this log service."/>
73        <Annotation Term="OData.LongDescription" String="This action shall delete all entries found in the LogEntryCollection resource for this log service."/>
74        <Parameter Name="LogService" Type="LogService.v1_0_0.Actions"/>
75        <Parameter Name="LogEntriesETag" Type="Edm.String">
76          <Annotation Term="OData.Description" String="The ETag of the log entry collection within this log service.  If the provided ETag does not match the current ETag of the log entry collection, the request is rejected."/>
77          <Annotation Term="OData.LongDescription" String="This parameter shall contain the ETag of the LogEntryCollection resource for this log service.  If the client-provided ETag does not match the current ETag of the LogEntryCollection resource for this log service, the service shall return the HTTP 428 (Precondition Required) status code to reject the request."/>
78          <Annotation Term="Redfish.Revisions">
79            <Collection>
80              <Record>
81                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
82                <PropertyValue Property="Version" String="v1_3_0"/>
83              </Record>
84            </Collection>
85          </Annotation>
86        </Parameter>
87      </Action>
88
89      <Action Name="CollectDiagnosticData" IsBound="true">
90        <Annotation Term="OData.Description" String="The action to collect the diagnostic data for the given type.  When the diagnostic data is collected, a new log entry will be created and the additional data referenced by the new log entry will contain the diagnostic data."/>
91        <Annotation Term="OData.LongDescription" String="This action shall collect the diagnostic data for the given type.  The `Location` header in the response shall contain a URI to a resource of type LogEntry that contains the diagnostic data.  The AdditionalDataURI property in the referenced LogEntry resource shall contain the URI to download the diagnostic data."/>
92        <Parameter Name="LogService" Type="LogService.v1_0_0.Actions"/>
93        <Parameter Name="DiagnosticDataType" Type="LogService.v1_2_0.LogDiagnosticDataTypes" Nullable="false">
94          <Annotation Term="OData.Description" String="The type of diagnostic data to collect."/>
95          <Annotation Term="OData.LongDescription" String="This parameter shall contain the type of diagnostic data to collect."/>
96        </Parameter>
97        <Parameter Name="OEMDiagnosticDataType" Type="Edm.String">
98          <Annotation Term="OData.Description" String="The OEM-defined type of diagnostic data to collect."/>
99          <Annotation Term="OData.LongDescription" String="This parameter shall contain the OEM-defined type of diagnostic data to collect.  This parameter shall be required if DiagnosticDataType is `OEM`."/>
100        </Parameter>
101        <Annotation Term="Redfish.Revisions">
102          <Collection>
103            <Record>
104              <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
105              <PropertyValue Property="Version" String="v1_2_0"/>
106            </Record>
107          </Collection>
108        </Annotation>
109        <Parameter Name="TargetURI" Type="Edm.String">
110          <Annotation Term="OData.Description" String="The URI to access when sending the diagnostic data."/>
111          <Annotation Term="OData.LongDescription" String="This parameter shall contain the URI to access when sending the diagnostic data.  If this parameter is not provided by the client, the service shall not send the diagnostic data."/>
112          <Annotation Term="OData.IsURL"/>
113          <Annotation Term="Redfish.Revisions">
114            <Collection>
115              <Record>
116                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
117                <PropertyValue Property="Version" String="v1_6_0"/>
118              </Record>
119            </Collection>
120          </Annotation>
121        </Parameter>
122        <Parameter Name="UserName" Type="Edm.String">
123          <Annotation Term="OData.Description" String="The user name to access the URI specified by the TargetURI parameter."/>
124          <Annotation Term="OData.LongDescription" String="This parameter shall contain the username to access the URI specified by the TargetURI parameter."/>
125          <Annotation Term="Redfish.Revisions">
126            <Collection>
127              <Record>
128                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
129                <PropertyValue Property="Version" String="v1_6_0"/>
130              </Record>
131            </Collection>
132          </Annotation>
133        </Parameter>
134        <Parameter Name="Password" Type="Edm.String">
135          <Annotation Term="OData.Description" String="The password to access the URI specified by the TargetURI parameter."/>
136          <Annotation Term="OData.LongDescription" String="This parameter shall contain the password to access the URI specified by the TargetURI parameter."/>
137          <Annotation Term="Redfish.Revisions">
138            <Collection>
139              <Record>
140                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
141                <PropertyValue Property="Version" String="v1_6_0"/>
142              </Record>
143            </Collection>
144          </Annotation>
145        </Parameter>
146        <Parameter Name="TransferProtocol" Type="LogService.v1_6_0.TransferProtocolType">
147          <Annotation Term="OData.Description" String="The network protocol that the service uses to send the diagnostic data."/>
148          <Annotation Term="OData.LongDescription" String="This parameter shall contain the network protocol that the service uses to send the diagnostic data."/>
149          <Annotation Term="Redfish.Revisions">
150            <Collection>
151              <Record>
152                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
153                <PropertyValue Property="Version" String="v1_6_0"/>
154              </Record>
155            </Collection>
156          </Annotation>
157        </Parameter>
158      </Action>
159
160      <Action Name="PushDiagnosticData" IsBound="true">
161        <Annotation Term="OData.Description" String="The action to push an existing diagnostic data to a target URI."/>
162        <Annotation Term="OData.LongDescription" String="This action shall send an existing diagnostic data to a target URI."/>
163        <Parameter Name="LogService" Type="LogService.v1_0_0.Actions"/>
164        <Parameter Name="AdditionalDataURI" Type="Edm.String" Nullable="false">
165          <Annotation Term="OData.Description" String="The URI of the diagnostic data to transfer to the URI specified by the TargetURI parameter."/>
166          <Annotation Term="OData.LongDescription" String="This parameter shall contain the URI of the diagnostic data to transfer to the URI specified by the TargetURI parameter."/>
167          <Annotation Term="OData.IsURL"/>
168        </Parameter>
169        <Parameter Name="TargetURI" Type="Edm.String" Nullable="false">
170          <Annotation Term="OData.Description" String="The URI to access when sending the diagnostic data."/>
171          <Annotation Term="OData.LongDescription" String="This parameter shall contain the URI to access when sending the diagnostic data."/>
172          <Annotation Term="OData.IsURL"/>
173        </Parameter>
174        <Parameter Name="UserName" Type="Edm.String">
175          <Annotation Term="OData.Description" String="The user name to access the URI specified by the TargetURI parameter."/>
176          <Annotation Term="OData.LongDescription" String="This parameter shall contain the username to access the URI specified by the TargetURI parameter."/>
177        </Parameter>
178        <Parameter Name="Password" Type="Edm.String">
179          <Annotation Term="OData.Description" String="The password to access the URI specified by the TargetURI parameter."/>
180          <Annotation Term="OData.LongDescription" String="This parameter shall contain the password to access the URI specified by the TargetURI parameter."/>
181        </Parameter>
182        <Parameter Name="TransferProtocol" Type="LogService.v1_6_0.TransferProtocolType">
183          <Annotation Term="OData.Description" String="The network protocol that the service uses to send the diagnostic data."/>
184          <Annotation Term="OData.LongDescription" String="This parameter shall contain the network protocol that the service uses to send the diagnostic data."/>
185        </Parameter>
186        <Annotation Term="Redfish.Revisions">
187          <Collection>
188            <Record>
189              <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
190              <PropertyValue Property="Version" String="v1_6_0"/>
191            </Record>
192          </Collection>
193        </Annotation>
194      </Action>
195    </Schema>
196
197    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_0_0">
198      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
199      <Annotation Term="Redfish.Release" String="1.0"/>
200
201      <EntityType Name="LogService" BaseType="LogService.LogService">
202        <Property Name="ServiceEnabled" Type="Edm.Boolean">
203          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
204          <Annotation Term="OData.Description" String="An indication of whether this service is enabled."/>
205          <Annotation Term="OData.LongDescription" String="This property shall indicate whether this service is enabled."/>
206        </Property>
207        <Property Name="MaxNumberOfRecords" Type="Edm.Int64" Nullable="false">
208          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
209          <Annotation Term="OData.Description" String="The maximum number of log entries that this service can have."/>
210          <Annotation Term="OData.LongDescription" String="This property shall contain the maximum number of LogEntry resources in the LogEntryCollection resource for this service."/>
211          <Annotation Term="Validation.Minimum" Int="0"/>
212        </Property>
213        <Property Name="OverWritePolicy" Type="LogService.v1_0_0.OverWritePolicy" Nullable="false">
214          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
215          <Annotation Term="OData.Description" String="The overwrite policy for this service that takes place when the log is full."/>
216          <Annotation Term="OData.LongDescription" String="This property shall indicate the policy of the log service when the MaxNumberOfRecords has been reached."/>
217        </Property>
218        <Property Name="DateTime" Type="Edm.DateTimeOffset">
219          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
220          <Annotation Term="OData.Description" String="The current date and time with UTC offset of the log service."/>
221          <Annotation Term="OData.LongDescription" String="This property shall contain the current date and time with UTC offset of the log service."/>
222        </Property>
223        <Property Name="DateTimeLocalOffset" Type="Edm.String">
224          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
225          <Annotation Term="OData.Description" String="The time offset from UTC that the DateTime property is in `+HH:MM` format."/>
226          <Annotation Term="OData.LongDescription" String="This property shall contain the offset from UTC time that the DateTime property contains.  If both DateTime and DateTimeLocalOffset are provided in modification requests, services shall apply DateTimeLocalOffset after DateTime is applied."/>
227          <Annotation Term="Validation.Pattern" String="^([-+][0-1][0-9]:[0-5][0-9])$"/>
228        </Property>
229        <NavigationProperty Name="Entries" Type="LogEntryCollection.LogEntryCollection" ContainsTarget="true" Nullable="false">
230          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
231          <Annotation Term="OData.Description" String="The link to the log entry collection."/>
232          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource collection of type LogEntryCollection."/>
233          <Annotation Term="OData.AutoExpandReferences"/>
234        </NavigationProperty>
235        <Property Name="Actions" Type="LogService.v1_0_0.Actions" Nullable="false">
236          <Annotation Term="OData.Description" String="The available actions for this resource."/>
237          <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
238        </Property>
239        <Property Name="Status" Type="Resource.Status" Nullable="false">
240          <Annotation Term="OData.Description" String="The status and health of the resource and its subordinate or dependent resources."/>
241          <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
242        </Property>
243      </EntityType>
244
245      <ComplexType Name="Actions">
246        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
247        <Annotation Term="OData.Description" String="The available actions for this resource."/>
248        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
249        <Property Name="Oem" Type="LogService.v1_0_0.OemActions" Nullable="false">
250          <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
251          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
252        </Property>
253      </ComplexType>
254
255      <ComplexType Name="OemActions">
256        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
257        <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
258        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
259      </ComplexType>
260
261      <EnumType Name="OverWritePolicy">
262        <Member Name="Unknown">
263          <Annotation Term="OData.Description" String="The overwrite policy is not known or is undefined."/>
264        </Member>
265        <Member Name="WrapsWhenFull">
266          <Annotation Term="OData.Description" String="When full, new entries to the log overwrite earlier entries."/>
267        </Member>
268        <Member Name="NeverOverWrites">
269          <Annotation Term="OData.Description" String="When full, new entries to the log are discarded."/>
270        </Member>
271      </EnumType>
272    </Schema>
273
274    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_0_2">
275      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
276      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
277      <EntityType Name="LogService" BaseType="LogService.v1_0_0.LogService"/>
278    </Schema>
279
280    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_0_3">
281      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
282      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
283      <EntityType Name="LogService" BaseType="LogService.v1_0_2.LogService"/>
284    </Schema>
285
286    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_0_4">
287      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
288      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
289      <EntityType Name="LogService" BaseType="LogService.v1_0_3.LogService"/>
290    </Schema>
291
292    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_0_5">
293      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
294      <Annotation Term="OData.Description" String="This version was created to correct the short and long descriptions in the defined actions."/>
295      <EntityType Name="LogService" BaseType="LogService.v1_0_4.LogService"/>
296    </Schema>
297
298    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_0_6">
299      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
300      <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/>
301      <EntityType Name="LogService" BaseType="LogService.v1_0_5.LogService"/>
302    </Schema>
303
304    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_0_7">
305      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
306      <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."/>
307      <EntityType Name="LogService" BaseType="LogService.v1_0_6.LogService"/>
308    </Schema>
309
310    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_0_8">
311      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
312      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
313      <EntityType Name="LogService" BaseType="LogService.v1_0_7.LogService"/>
314    </Schema>
315
316    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_0_9">
317      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
318      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
319      <EntityType Name="LogService" BaseType="LogService.v1_0_8.LogService"/>
320    </Schema>
321
322    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_1_0">
323      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
324      <Annotation Term="Redfish.Release" String="2017.3"/>
325      <Annotation Term="OData.Description" String="This version was created to add LogEntryType property."/>
326
327      <EntityType Name="LogService" BaseType="LogService.v1_0_5.LogService">
328        <Property Name="LogEntryType" Type="LogService.v1_1_0.LogEntryTypes">
329          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
330          <Annotation Term="OData.Description" String="The format of the log entries."/>
331          <Annotation Term="OData.LongDescription" String="This property shall contain the value for the EntryType property of all LogEntry resources contained in the LogEntryCollection resource for this log service.  If the service cannot determine or guarantee a single EntryType value for all LogEntry resources, this property shall contain the value `Multiple`."/>
332        </Property>
333      </EntityType>
334
335      <EnumType Name="LogEntryTypes">
336        <Member Name="Event">
337          <Annotation Term="OData.Description" String="The log contains Redfish-defined messages."/>
338        </Member>
339        <Member Name="SEL">
340          <Annotation Term="OData.Description" String="The log contains legacy IPMI System Event Log (SEL) entries."/>
341        </Member>
342        <Member Name="Multiple">
343          <Annotation Term="OData.Description" String="The log contains multiple log entry types and, therefore, the log service cannot guarantee a single entry type."/>
344        </Member>
345        <Member Name="OEM">
346          <Annotation Term="OData.Description" String="The log contains entries in an OEM-defined format."/>
347        </Member>
348        <Member Name="CXL">
349          <Annotation Term="OData.Description" String="The log contains CXL log entries."/>
350          <Annotation Term="Redfish.Revisions">
351            <Collection>
352              <Record>
353                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
354                <PropertyValue Property="Version" String="v1_5_0"/>
355              </Record>
356            </Collection>
357          </Annotation>
358        </Member>
359      </EnumType>
360    </Schema>
361
362    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_1_1">
363      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
364      <Annotation Term="OData.Description" String="This version was created to force the regeneration of JSON Schema so that OData properties are marked as required, and integer properties are marked as integer rather than number."/>
365      <EntityType Name="LogService" BaseType="LogService.v1_1_0.LogService"/>
366    </Schema>
367
368    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_1_2">
369      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
370      <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."/>
371      <EntityType Name="LogService" BaseType="LogService.v1_1_1.LogService"/>
372    </Schema>
373
374    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_1_3">
375      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
376      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
377      <EntityType Name="LogService" BaseType="LogService.v1_1_2.LogService"/>
378    </Schema>
379
380    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_1_4">
381      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
382      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
383      <EntityType Name="LogService" BaseType="LogService.v1_1_3.LogService"/>
384    </Schema>
385
386    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_2_0">
387      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
388      <Annotation Term="Redfish.Release" String="2020.3"/>
389      <Annotation Term="OData.Description" String="This version was created to add local syslog support and the CollectDiagnosticData action."/>
390
391      <EntityType Name="LogService" BaseType="LogService.v1_1_3.LogService">
392        <Property Name="SyslogFilters" Type="Collection(LogService.v1_2_0.SyslogFilter)">
393          <Annotation Term="OData.Description" String="A list of syslog message filters to be logged locally."/>
394          <Annotation Term="OData.LongDescription" String="This property shall describe all desired syslog messages to be logged locally.  If this property contains an empty array, all messages shall be logged."/>
395        </Property>
396      </EntityType>
397
398      <ComplexType Name="SyslogFilter">
399        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
400        <Annotation Term="OData.Description" String="A syslog filter."/>
401        <Annotation Term="OData.LongDescription" String="This type shall contain the filter for a syslog message.  The filter shall describe the desired syslog message to be enabled locally."/>
402        <Property Name="LowestSeverity" Type="LogService.v1_2_0.SyslogSeverity">
403          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
404          <Annotation Term="OData.Description" String="The lowest severity level message that will be logged."/>
405          <Annotation Term="OData.LongDescription" String="This property shall contain the lowest syslog severity level that will be logged.  The service shall log all messages equal to or greater than the value in this property.  The value `All` shall indicate all severities."/>
406        </Property>
407        <Property Name="LogFacilities" Type="Collection(LogService.v1_2_0.SyslogFacility)">
408          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
409          <Annotation Term="OData.Description" String="The types of programs that can log messages."/>
410          <Annotation Term="OData.LongDescription" String="This property shall contain the types of programs that can log messages.  If this property contains an empty array or is absent, all facilities shall be indicated."/>
411        </Property>
412      </ComplexType>
413
414      <EnumType Name="SyslogSeverity">
415        <Annotation Term="OData.Description" String="The syslog severity is an application-specific rating used to describe the urgency of the message."/>
416        <Annotation Term="OData.LongDescription" String="This type shall specify the syslog severity levels as an application-specific rating used to describe the urgency of the message.  `Emergency` should be reserved for messages indicating the system is unusable and `Debug` should only be used when debugging a program.  Severity values are described in RFC5424."/>
417        <Member Name="Emergency">
418          <Annotation Term="OData.Description" String="A panic condition."/>
419        </Member>
420        <Member Name="Alert">
421          <Annotation Term="OData.Description" String="A condition that should be corrected immediately, such as a corrupted system database."/>
422        </Member>
423        <Member Name="Critical">
424          <Annotation Term="OData.Description" String="Hard device errors."/>
425        </Member>
426        <Member Name="Error">
427          <Annotation Term="OData.Description" String="An Error."/>
428        </Member>
429        <Member Name="Warning">
430          <Annotation Term="OData.Description" String="A Warning."/>
431        </Member>
432        <Member Name="Notice">
433          <Annotation Term="OData.Description" String="Conditions that are not error conditions, but that might require special handling."/>
434        </Member>
435        <Member Name="Informational">
436          <Annotation Term="OData.Description" String="Informational only."/>
437        </Member>
438        <Member Name="Debug">
439          <Annotation Term="OData.Description" String="Messages that contain information normally of use only when debugging a program."/>
440        </Member>
441        <Member Name="All">
442          <Annotation Term="OData.Description" String="A message of any severity."/>
443        </Member>
444      </EnumType>
445
446      <EnumType Name="SyslogFacility">
447        <Annotation Term="OData.Description" String="The syslog facility code is an enumeration of program types."/>
448        <Annotation Term="OData.LongDescription" String="This type shall specify the syslog facility codes as program types.  Facility values are described in the RFC5424."/>
449         <Member Name="Kern">
450          <Annotation Term="OData.Description" String="Kernel messages."/>
451        </Member>
452        <Member Name="User">
453          <Annotation Term="OData.Description" String="User-level messages."/>
454        </Member>
455        <Member Name="Mail">
456          <Annotation Term="OData.Description" String="Mail system."/>
457        </Member>
458        <Member Name="Daemon">
459          <Annotation Term="OData.Description" String="System daemons."/>
460        </Member>
461        <Member Name="Auth">
462          <Annotation Term="OData.Description" String="Security/authentication messages."/>
463        </Member>
464        <Member Name="Syslog">
465          <Annotation Term="OData.Description" String="Messages generated internally by syslogd."/>
466        </Member>
467        <Member Name="LPR">
468          <Annotation Term="OData.Description" String="Line printer subsystem."/>
469        </Member>
470        <Member Name="News">
471          <Annotation Term="OData.Description" String="Network news subsystem."/>
472        </Member>
473        <Member Name="UUCP">
474          <Annotation Term="OData.Description" String="UUCP subsystem."/>
475        </Member>
476        <Member Name="Cron">
477          <Annotation Term="OData.Description" String="Clock daemon."/>
478        </Member>
479        <Member Name="Authpriv">
480          <Annotation Term="OData.Description" String="Security/authentication messages."/>
481        </Member>
482        <Member Name="FTP">
483          <Annotation Term="OData.Description" String="FTP daemon."/>
484        </Member>
485        <Member Name="NTP">
486          <Annotation Term="OData.Description" String="NTP subsystem."/>
487        </Member>
488        <Member Name="Security">
489          <Annotation Term="OData.Description" String="Log audit."/>
490        </Member>
491        <Member Name="Console">
492          <Annotation Term="OData.Description" String="Log alert."/>
493        </Member>
494        <Member Name="SolarisCron">
495          <Annotation Term="OData.Description" String="Scheduling daemon."/>
496        </Member>
497        <Member Name="Local0">
498          <Annotation Term="OData.Description" String="Locally used facility 0."/>
499        </Member>
500        <Member Name="Local1">
501          <Annotation Term="OData.Description" String="Locally used facility 1."/>
502        </Member>
503        <Member Name="Local2">
504          <Annotation Term="OData.Description" String="Locally used facility 2."/>
505        </Member>
506        <Member Name="Local3">
507          <Annotation Term="OData.Description" String="Locally used facility 3."/>
508        </Member>
509        <Member Name="Local4">
510          <Annotation Term="OData.Description" String="Locally used facility 4."/>
511        </Member>
512        <Member Name="Local5">
513          <Annotation Term="OData.Description" String="Locally used facility 5."/>
514        </Member>
515        <Member Name="Local6">
516          <Annotation Term="OData.Description" String="Locally used facility 6."/>
517        </Member>
518        <Member Name="Local7">
519          <Annotation Term="OData.Description" String="Locally used facility 7."/>
520        </Member>
521      </EnumType>
522
523      <EnumType Name="LogDiagnosticDataTypes">
524        <Member Name="Manager">
525          <Annotation Term="OData.Description" String="Manager diagnostic data."/>
526        </Member>
527        <Member Name="PreOS">
528          <Annotation Term="OData.Description" String="Pre-OS diagnostic data."/>
529        </Member>
530        <Member Name="OS">
531          <Annotation Term="OData.Description" String="Operating system (OS) diagnostic data."/>
532        </Member>
533        <Member Name="OEM">
534          <Annotation Term="OData.Description" String="OEM diagnostic data."/>
535        </Member>
536      </EnumType>
537    </Schema>
538
539    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_2_1">
540      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
541      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
542      <EntityType Name="LogService" BaseType="LogService.v1_2_0.LogService"/>
543    </Schema>
544
545    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_2_2">
546      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
547      <Annotation Term="OData.Description" String="This version was created to add behavioral descriptions to the CollectDiagnosticData action."/>
548      <EntityType Name="LogService" BaseType="LogService.v1_2_1.LogService"/>
549    </Schema>
550
551    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_2_3">
552      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
553      <Annotation Term="OData.Description" String="This version was created to remove normative language from non-normative descriptions."/>
554      <EntityType Name="LogService" BaseType="LogService.v1_2_2.LogService"/>
555    </Schema>
556
557    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_3_0">
558      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
559      <Annotation Term="Redfish.Release" String="2021.2"/>
560      <Annotation Term="OData.Description" String="This version was created to add the LogEntriesETag parameter to the ClearLog action."/>
561
562      <EntityType Name="LogService" BaseType="LogService.v1_2_1.LogService">
563        <Property Name="AutoDSTEnabled" Type="Edm.Boolean" Nullable="false">
564          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
565          <Annotation Term="OData.Description" String="An indication of whether the log service is configured for automatic Daylight Saving Time (DST) adjustment."/>
566          <Annotation Term="OData.LongDescription" String="This property shall indicate whether the log service is configured for automatic Daylight Saving Time (DST) adjustment.  DST adjustment shall not modify the timestamp of existing log entries."/>
567        </Property>
568      </EntityType>
569    </Schema>
570
571    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_3_1">
572      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
573      <Annotation Term="OData.Description" String="This version was created to add behavioral descriptions to the CollectDiagnosticData action."/>
574      <EntityType Name="LogService" BaseType="LogService.v1_3_0.LogService"/>
575    </Schema>
576
577    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_3_2">
578      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
579      <Annotation Term="OData.Description" String="This version was created to remove normative language from non-normative descriptions."/>
580      <EntityType Name="LogService" BaseType="LogService.v1_3_1.LogService"/>
581    </Schema>
582
583    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_4_0">
584      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
585      <Annotation Term="Redfish.Release" String="2022.3"/>
586
587      <EntityType Name="LogService" BaseType="LogService.v1_3_1.LogService">
588        <Property Name="LogPurposes" Type="Collection(LogService.v1_4_0.LogPurpose)">
589          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
590          <Annotation Term="OData.Description" String="The purposes of the log."/>
591          <Annotation Term="OData.LongDescription" String="This property shall contain the purposes of the log."/>
592        </Property>
593        <Property Name="OEMLogPurpose" Type="Edm.String">
594          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
595          <Annotation Term="OData.Description" String="The OEM-specified purpose of the log if LogPurposes contains `OEM`."/>
596          <Annotation Term="OData.LongDescription" String="This property shall contain the OEM-specified purpose of the log if LogPurposes contains `OEM`."/>
597        </Property>
598        <Property Name="Persistency" Type="Edm.Boolean" Nullable="false">
599          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
600          <Annotation Term="OData.Description" String="Indicates whether the log service is persistent across a cold reset."/>
601          <Annotation Term="OData.LongDescription" String="This property shall indicate whether the log service is persistent across a cold reset of the device."/>
602        </Property>
603        <Property Name="Overflow" Type="Edm.Boolean" Nullable="false">
604          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
605          <Annotation Term="OData.Description" String="Indicates whether the log service has overflowed."/>
606          <Annotation Term="OData.LongDescription" String="This property shall indicate whether the log service has overflowed and is no longer able to store new logs."/>
607        </Property>
608      </EntityType>
609
610      <EnumType Name="LogPurpose">
611        <Member Name="Diagnostic">
612          <Annotation Term="OData.Description" String="The log provides information for diagnosing hardware or software issues, such as error conditions, sensor threshold trips, or exception cases."/>
613        </Member>
614        <Member Name="Operations">
615          <Annotation Term="OData.Description" String="The log provides information about management operations that have a significant impact on the system, such as firmware updates, system resets, and storage volume creation."/>
616        </Member>
617        <Member Name="Security">
618          <Annotation Term="OData.Description" String="The log provides security-related information such as authentication, authorization, and data access logging required for security audits."/>
619        </Member>
620        <Member Name="Telemetry">
621          <Annotation Term="OData.Description" String="The log provides telemetry history, typically collected on a regular basis."/>
622        </Member>
623        <Member Name="ExternalEntity">
624          <Annotation Term="OData.Description" String="The log exposes log entries provided by external entities, such as external users, system firmware, operating systems, or management applications."/>
625        </Member>
626        <Member Name="OEM">
627          <Annotation Term="OData.Description" String="The log is used for an OEM-defined purpose."/>
628        </Member>
629      </EnumType>
630    </Schema>
631
632    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_4_1">
633      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
634      <Annotation Term="OData.Description" String="This version was created to remove normative language from non-normative descriptions."/>
635      <EntityType Name="LogService" BaseType="LogService.v1_4_0.LogService"/>
636    </Schema>
637
638    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_5_0">
639      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
640      <Annotation Term="Redfish.Release" String="2023.2"/>
641      <Annotation Term="OData.Description" String="This version was created to add `CXL` to LogEntryType."/>
642
643      <EntityType Name="LogService" BaseType="LogService.v1_4_0.LogService"/>
644    </Schema>
645
646    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_5_1">
647      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
648      <Annotation Term="OData.Description" String="This version was created to remove normative language from non-normative descriptions."/>
649      <EntityType Name="LogService" BaseType="LogService.v1_5_0.LogService"/>
650    </Schema>
651
652    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="LogService.v1_6_0">
653      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
654      <Annotation Term="Redfish.Release" String="2023.3"/>
655      <Annotation Term="OData.Description" String="This version was created to add optional properties to the CollectDiagnosticData action to push diagnostic data to a remote URI.  It was also created to add the PushDiagnosticData action."/>
656
657      <EntityType Name="LogService" BaseType="LogService.v1_5_1.LogService"/>
658
659      <EnumType Name="TransferProtocolType">
660        <Member Name="CIFS">
661          <Annotation Term="OData.Description" String="Common Internet File System (CIFS)."/>
662        </Member>
663        <Member Name="FTP">
664          <Annotation Term="OData.Description" String="File Transfer Protocol (FTP)."/>
665        </Member>
666        <Member Name="SFTP">
667          <Annotation Term="OData.Description" String="Secure File Transfer Protocol (SFTP)."/>
668        </Member>
669        <Member Name="HTTP">
670          <Annotation Term="OData.Description" String="Hypertext Transfer Protocol (HTTP)."/>
671        </Member>
672        <Member Name="HTTPS">
673          <Annotation Term="OData.Description" String="Hypertext Transfer Protocol Secure (HTTPS)."/>
674        </Member>
675        <Member Name="NFS">
676          <Annotation Term="OData.Description" String="Network File System (NFS)."/>
677        </Member>
678        <Member Name="SCP">
679          <Annotation Term="OData.Description" String="Secure Copy Protocol (SCP)."/>
680        </Member>
681        <Member Name="TFTP">
682          <Annotation Term="OData.Description" String="Trivial File Transfer Protocol (TFTP)."/>
683        </Member>
684        <Member Name="OEM">
685          <Annotation Term="OData.Description" String="A manufacturer-defined protocol."/>
686        </Member>
687      </EnumType>
688    </Schema>
689
690  </edmx:DataServices>
691</edmx:Edmx>
692