1720c9898SEd Tanous<?xml version="1.0" encoding="UTF-8"?>
2720c9898SEd Tanous<!---->
3720c9898SEd Tanous<!--################################################################################       -->
4*f2a8e57eSGunnar Mills<!--# Redfish Schema:  Settings v1.4.0                                                     -->
5720c9898SEd Tanous<!--#                                                                                      -->
6720c9898SEd Tanous<!--# For a detailed change log, see the README file contained in the DSP8010 bundle,      -->
7720c9898SEd Tanous<!--# available at http://www.dmtf.org/standards/redfish                                   -->
8*f2a8e57eSGunnar Mills<!--# Copyright 2014-2024 DMTF.                                                            -->
9720c9898SEd Tanous<!--# For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright -->
10720c9898SEd Tanous<!--################################################################################       -->
11720c9898SEd Tanous<!---->
12720c9898SEd Tanous<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0">
13720c9898SEd Tanous
14720c9898SEd Tanous  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Core.V1.xml">
15720c9898SEd Tanous    <edmx:Include Namespace="Org.OData.Core.V1" Alias="OData"/>
16720c9898SEd Tanous  </edmx:Reference>
17720c9898SEd Tanous  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Measures.V1.xml">
18720c9898SEd Tanous    <edmx:Include Namespace="Org.OData.Measures.V1" Alias="Measures"/>
19720c9898SEd Tanous  </edmx:Reference>
20720c9898SEd Tanous  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
21720c9898SEd Tanous    <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
22720c9898SEd Tanous    <edmx:Include Namespace="Validation.v1_0_0" Alias="Validation"/>
23720c9898SEd Tanous  </edmx:Reference>
24720c9898SEd Tanous  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
25720c9898SEd Tanous    <edmx:Include Namespace="Resource"/>
26720c9898SEd Tanous  </edmx:Reference>
27720c9898SEd Tanous  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Message_v1.xml">
28720c9898SEd Tanous    <edmx:Include Namespace="Message"/>
29720c9898SEd Tanous  </edmx:Reference>
30720c9898SEd Tanous
31720c9898SEd Tanous  <edmx:DataServices>
32720c9898SEd Tanous
33720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings">
34720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
35*f2a8e57eSGunnar Mills      <Annotation Term="Redfish.Language" String="en"/>
36720c9898SEd Tanous
37720c9898SEd Tanous      <ComplexType Name="Settings" Abstract="true"/>
38720c9898SEd Tanous      <ComplexType Name="PreferredApplyTime" Abstract="true"/>
39720c9898SEd Tanous      <ComplexType Name="OperationApplyTimeSupport" Abstract="true"/>
40720c9898SEd Tanous      <ComplexType Name="MaintenanceWindow" Abstract="true"/>
41720c9898SEd Tanous
42720c9898SEd Tanous      <EnumType Name="OperationApplyTime">
43720c9898SEd Tanous        <Annotation Term="Redfish.Revisions">
44720c9898SEd Tanous          <Collection>
45720c9898SEd Tanous            <Record>
46720c9898SEd Tanous              <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
47720c9898SEd Tanous              <PropertyValue Property="Version" String="v1_2_0"/>
48720c9898SEd Tanous            </Record>
49720c9898SEd Tanous          </Collection>
50720c9898SEd Tanous        </Annotation>
51720c9898SEd Tanous        <Member Name="Immediate">
52720c9898SEd Tanous          <Annotation Term="OData.Description" String="The requested operation is applied immediately.  This value might result in an immediate host reset, manager reset, or other side effects."/>
53720c9898SEd Tanous          <Annotation Term="OData.LongDescription" String="This value shall indicate the requested create, delete, or action operation is applied immediately.  This value may result in an immediate host reset, manager reset, or other side effects."/>
54720c9898SEd Tanous        </Member>
55720c9898SEd Tanous        <Member Name="OnReset">
56720c9898SEd Tanous          <Annotation Term="OData.Description" String="The requested operation is applied on a reset."/>
57720c9898SEd Tanous          <Annotation Term="OData.LongDescription" String="This value shall indicate the requested create, delete, or action operation is applied when the system or service is reset."/>
58720c9898SEd Tanous        </Member>
59720c9898SEd Tanous        <Member Name="AtMaintenanceWindowStart">
60720c9898SEd Tanous          <Annotation Term="OData.Description" String="The requested operation is applied within the administrator-specified maintenance window."/>
61*f2a8e57eSGunnar Mills          <Annotation Term="OData.LongDescription" String="This value shall indicate the requested create, delete, or action operation is applied during the maintenance window that the `MaintenanceWindowStartTime` and `MaintenanceWindowDurationInSeconds` properties specify.  A service can complete resets during this maintenance window."/>
62720c9898SEd Tanous        </Member>
63720c9898SEd Tanous        <Member Name="InMaintenanceWindowOnReset">
64720c9898SEd Tanous          <Annotation Term="OData.Description" String="The requested operation is applied after a reset but within the administrator-specified maintenance window."/>
65*f2a8e57eSGunnar Mills          <Annotation Term="OData.LongDescription" String="This value shall indicate the requested create, delete, or action operation is applied during the maintenance window that the `MaintenanceWindowStartTime` and `MaintenanceWindowDurationInSeconds` properties specify, and if a reset occurs within the maintenance window."/>
66720c9898SEd Tanous        </Member>
67720c9898SEd Tanous        <Member Name="OnStartUpdateRequest">
68*f2a8e57eSGunnar Mills          <Annotation Term="OData.Description" String="The requested operation is applied when the `StartUpdate` action of the update service is invoked."/>
69*f2a8e57eSGunnar Mills          <Annotation Term="OData.LongDescription" String="This value shall indicate the requested create, delete, or action operation is applied when the `StartUpdate` action of the update service is invoked."/>
70720c9898SEd Tanous          <Annotation Term="Redfish.Revisions">
71720c9898SEd Tanous            <Collection>
72720c9898SEd Tanous              <Record>
73720c9898SEd Tanous                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
74720c9898SEd Tanous                <PropertyValue Property="Version" String="v1_3_0"/>
75720c9898SEd Tanous              </Record>
76720c9898SEd Tanous            </Collection>
77720c9898SEd Tanous          </Annotation>
78720c9898SEd Tanous        </Member>
79*f2a8e57eSGunnar Mills        <Member Name="OnTargetReset">
80*f2a8e57eSGunnar Mills          <Annotation Term="OData.Description" String="The requested operation is applied when the target is reset.  Targets include devices, services, and systems."/>
81*f2a8e57eSGunnar Mills          <Annotation Term="OData.LongDescription" String="This value shall indicate the requested create, delete, or action operation is applied when the target is reset."/>
82*f2a8e57eSGunnar Mills          <Annotation Term="Redfish.Revisions">
83*f2a8e57eSGunnar Mills            <Collection>
84*f2a8e57eSGunnar Mills              <Record>
85*f2a8e57eSGunnar Mills                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
86*f2a8e57eSGunnar Mills                <PropertyValue Property="Version" String="v1_4_0"/>
87*f2a8e57eSGunnar Mills              </Record>
88*f2a8e57eSGunnar Mills            </Collection>
89*f2a8e57eSGunnar Mills          </Annotation>
90*f2a8e57eSGunnar Mills        </Member>
91720c9898SEd Tanous      </EnumType>
92720c9898SEd Tanous    </Schema>
93720c9898SEd Tanous
94720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings.v1_0_0">
95720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
96720c9898SEd Tanous      <Annotation Term="Redfish.Release" String="1.0"/>
97720c9898SEd Tanous
98720c9898SEd Tanous      <ComplexType Name="Settings" BaseType="Settings.Settings">
99720c9898SEd Tanous        <Annotation Term="OData.Description" String="The resource settings."/>
100720c9898SEd Tanous        <Annotation Term="OData.LongDescription" String="This type shall describe any settings of a resource."/>
101720c9898SEd Tanous        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
102720c9898SEd Tanous        <Property Name="Time" Type="Edm.DateTimeOffset">
103720c9898SEd Tanous          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
104720c9898SEd Tanous          <Annotation Term="OData.Description" String="The time when the settings were applied."/>
105720c9898SEd Tanous          <Annotation Term="OData.LongDescription" String="This property shall indicate the time when the settings were applied to the resource."/>
106720c9898SEd Tanous        </Property>
107720c9898SEd Tanous        <Property Name="ETag" Type="Edm.String">
108720c9898SEd Tanous          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
109720c9898SEd Tanous          <Annotation Term="OData.Description" String="The entity tag (ETag) of the resource to which the settings were applied, after the application."/>
110720c9898SEd Tanous          <Annotation Term="OData.LongDescription" String="This property shall contain the entity tag (ETag) of the resource to which the settings were applied, after the application.  The client can check this value against the ETag of this resource to determine whether the resource had other changes."/>
111720c9898SEd Tanous        </Property>
112720c9898SEd Tanous        <NavigationProperty Name="SettingsObject" Type="Resource.Item" Nullable="false">
113720c9898SEd Tanous          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
114*f2a8e57eSGunnar Mills          <Annotation Term="OData.Description" String="The link to the resource that the client can `PUT` or `PATCH` to modify the resource."/>
115*f2a8e57eSGunnar Mills          <Annotation Term="OData.LongDescription" String="This property shall contain the URI of the resource that the client can `PUT` or `PATCH` to modify the resource."/>
116720c9898SEd Tanous          <Annotation Term="OData.AutoExpandReferences"/>
117720c9898SEd Tanous        </NavigationProperty>
118720c9898SEd Tanous        <Property Name="Messages" Type="Collection(Message.Message)" Nullable="false">
119720c9898SEd Tanous          <Annotation Term="OData.Description" String="An array of messages associated with the settings."/>
120720c9898SEd Tanous          <Annotation Term="OData.LongDescription" String="This property shall contain an array of messages associated with the settings."/>
121720c9898SEd Tanous        </Property>
122720c9898SEd Tanous      </ComplexType>
123720c9898SEd Tanous    </Schema>
124720c9898SEd Tanous
125720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings.v1_0_2">
126720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
127720c9898SEd Tanous      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
128720c9898SEd Tanous      <ComplexType Name="Settings" BaseType="Settings.v1_0_0.Settings"/>
129720c9898SEd Tanous    </Schema>
130720c9898SEd Tanous
131720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings.v1_0_3">
132720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
133720c9898SEd Tanous      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
134720c9898SEd Tanous      <ComplexType Name="Settings" BaseType="Settings.v1_0_2.Settings"/>
135720c9898SEd Tanous    </Schema>
136720c9898SEd Tanous
137720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings.v1_0_4">
138720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
139720c9898SEd Tanous      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
140720c9898SEd Tanous      <ComplexType Name="Settings" BaseType="Settings.v1_0_3.Settings"/>
141720c9898SEd Tanous    </Schema>
142720c9898SEd Tanous
143720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings.v1_0_5">
144720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
145720c9898SEd Tanous      <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."/>
146720c9898SEd Tanous      <ComplexType Name="Settings" BaseType="Settings.v1_0_4.Settings"/>
147720c9898SEd Tanous    </Schema>
148720c9898SEd Tanous
149720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings.v1_0_6">
150720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
151720c9898SEd Tanous      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
152720c9898SEd Tanous      <ComplexType Name="Settings" BaseType="Settings.v1_0_5.Settings"/>
153720c9898SEd Tanous    </Schema>
154720c9898SEd Tanous
155720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings.v1_0_7">
156720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
157720c9898SEd Tanous      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
158720c9898SEd Tanous      <ComplexType Name="Settings" BaseType="Settings.v1_0_6.Settings"/>
159720c9898SEd Tanous    </Schema>
160720c9898SEd Tanous
161*f2a8e57eSGunnar Mills    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings.v1_0_8">
162*f2a8e57eSGunnar Mills      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
163*f2a8e57eSGunnar Mills      <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors."/>
164*f2a8e57eSGunnar Mills      <ComplexType Name="Settings" BaseType="Settings.v1_0_7.Settings"/>
165*f2a8e57eSGunnar Mills    </Schema>
166*f2a8e57eSGunnar Mills
167720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings.v1_1_0">
168720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
169720c9898SEd Tanous      <Annotation Term="Redfish.Release" String="2017.2"/>
170720c9898SEd Tanous
171720c9898SEd Tanous      <ComplexType Name="Settings" BaseType="Settings.v1_0_4.Settings">
172720c9898SEd Tanous        <Property Name="SupportedApplyTimes" Type="Collection(Settings.v1_1_0.ApplyTime)" Nullable="false">
173720c9898SEd Tanous          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
174720c9898SEd Tanous          <Annotation Term="OData.Description" String="The time when the settings can be applied."/>
175720c9898SEd Tanous          <Annotation Term="OData.LongDescription" String="This property shall contain the supported apply time values a client is allowed to request when configuring the settings apply time.  Services that do not support clients configuring the apply time can support this property with a single array member in order to inform the client when the settings will be applied."/>
176720c9898SEd Tanous        </Property>
177720c9898SEd Tanous      </ComplexType>
178720c9898SEd Tanous
179720c9898SEd Tanous      <ComplexType Name="PreferredApplyTime" BaseType="Settings.PreferredApplyTime">
180720c9898SEd Tanous        <Annotation Term="OData.Description" String="The preferred time to apply configuration settings."/>
181720c9898SEd Tanous        <Annotation Term="OData.LongDescription" String="This type shall be specified by client to indicate the preferred time to apply the configuration settings."/>
182720c9898SEd Tanous        <Property Name="ApplyTime" Type="Settings.v1_1_0.ApplyTime" Nullable="false">
183720c9898SEd Tanous          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
184720c9898SEd Tanous          <Annotation Term="OData.Description" String="The time when to apply the settings."/>
185720c9898SEd Tanous          <Annotation Term="OData.LongDescription" String="This property shall indicate when to apply the values in this settings resource."/>
186720c9898SEd Tanous        </Property>
187720c9898SEd Tanous        <Property Name="MaintenanceWindowStartTime" Type="Edm.DateTimeOffset" Nullable="false">
188720c9898SEd Tanous          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
189720c9898SEd Tanous          <Annotation Term="OData.Description" String="The start time of a maintenance window."/>
190*f2a8e57eSGunnar Mills          <Annotation Term="OData.LongDescription" String="This property shall indicate the date and time when the service can start to apply the future configuration as part of a maintenance window.  Services shall provide a default value if not configured by a user.  This property shall be required if the `ApplyTime` property is `AtMaintenanceWindowStart` or `InMaintenanceWindowOnReset`."/>
191720c9898SEd Tanous        </Property>
192720c9898SEd Tanous        <Property Name="MaintenanceWindowDurationInSeconds" Type="Edm.Int64" Nullable="false">
193720c9898SEd Tanous          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
194720c9898SEd Tanous          <Annotation Term="OData.Description" String="The expiry time of maintenance window in seconds."/>
195*f2a8e57eSGunnar Mills          <Annotation Term="OData.LongDescription" String="This property shall indicate the end of the maintenance window as the number of seconds after the time specified by the `MaintenanceWindowStartTime` property.  This property shall be required if the `ApplyTime` property is `AtMaintenanceWindowStart` or `InMaintenanceWindowOnReset`."/>
196720c9898SEd Tanous          <Annotation Term="Validation.Minimum" Int="0"/>
197720c9898SEd Tanous          <Annotation Term="Measures.Unit" String="s"/>
198720c9898SEd Tanous        </Property>
199720c9898SEd Tanous      </ComplexType>
200720c9898SEd Tanous
201720c9898SEd Tanous      <EnumType Name="ApplyTime">
202720c9898SEd Tanous        <Member Name="Immediate">
203720c9898SEd Tanous          <Annotation Term="OData.Description" String="Apply immediately.  This value might result in an immediate host reset, manager reset, or other side effects."/>
204720c9898SEd Tanous          <Annotation Term="OData.LongDescription" String="This value shall indicate the values within the settings resource are applied immediately.  This value may result in an immediate host reset, manager reset, or other side effects."/>
205720c9898SEd Tanous        </Member>
206720c9898SEd Tanous        <Member Name="OnReset">
207720c9898SEd Tanous          <Annotation Term="OData.Description" String="Apply on a reset."/>
208720c9898SEd Tanous          <Annotation Term="OData.LongDescription" String="This value shall indicate the values within settings resource are applied when the system or service is reset."/>
209720c9898SEd Tanous        </Member>
210720c9898SEd Tanous        <Member Name="AtMaintenanceWindowStart">
211720c9898SEd Tanous          <Annotation Term="OData.Description" String="Apply during a maintenance window as specified by an administrator."/>
212*f2a8e57eSGunnar Mills          <Annotation Term="OData.LongDescription" String="This value shall indicate the values within the settings resource are applied during the maintenance window specified by the `MaintenanceWindowStartTime` and `MaintenanceWindowDurationInSeconds` properties.  A service can perform resets during this maintenance window."/>
213720c9898SEd Tanous        </Member>
214720c9898SEd Tanous        <Member Name="InMaintenanceWindowOnReset">
215720c9898SEd Tanous          <Annotation Term="OData.Description" String="Apply after a reset but within maintenance window as specified by an administrator."/>
216*f2a8e57eSGunnar Mills          <Annotation Term="OData.LongDescription" String="This value shall indicate the values within the settings resource are applied during the maintenance window specified by the `MaintenanceWindowStartTime` and `MaintenanceWindowDurationInSeconds` properties, and if a reset occurs within the maintenance window."/>
217720c9898SEd Tanous        </Member>
218720c9898SEd Tanous      </EnumType>
219720c9898SEd Tanous    </Schema>
220720c9898SEd Tanous
221720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings.v1_1_1">
222720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
223720c9898SEd Tanous      <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."/>
224720c9898SEd Tanous      <ComplexType Name="Settings" BaseType="Settings.v1_1_0.Settings"/>
225720c9898SEd Tanous      <ComplexType Name="PreferredApplyTime" BaseType="Settings.v1_1_0.PreferredApplyTime"/>
226720c9898SEd Tanous    </Schema>
227720c9898SEd Tanous
228720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings.v1_1_2">
229720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
230720c9898SEd Tanous      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
231720c9898SEd Tanous      <ComplexType Name="Settings" BaseType="Settings.v1_1_1.Settings"/>
232720c9898SEd Tanous      <ComplexType Name="PreferredApplyTime" BaseType="Settings.v1_1_1.PreferredApplyTime"/>
233720c9898SEd Tanous    </Schema>
234720c9898SEd Tanous
235720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings.v1_1_3">
236720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
237720c9898SEd Tanous      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
238720c9898SEd Tanous      <ComplexType Name="Settings" BaseType="Settings.v1_1_2.Settings"/>
239720c9898SEd Tanous      <ComplexType Name="PreferredApplyTime" BaseType="Settings.v1_1_2.PreferredApplyTime"/>
240720c9898SEd Tanous    </Schema>
241720c9898SEd Tanous
242720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings.v1_1_4">
243720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
244*f2a8e57eSGunnar Mills      <Annotation Term="OData.Description" String="This version was created to clarify the description of `SupportedApplyTimes` to state that having a single member is valid."/>
245720c9898SEd Tanous      <ComplexType Name="Settings" BaseType="Settings.v1_1_3.Settings"/>
246720c9898SEd Tanous      <ComplexType Name="PreferredApplyTime" BaseType="Settings.v1_1_3.PreferredApplyTime"/>
247720c9898SEd Tanous    </Schema>
248720c9898SEd Tanous
249720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings.v1_1_5">
250720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
251720c9898SEd Tanous      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
252720c9898SEd Tanous      <ComplexType Name="Settings" BaseType="Settings.v1_1_4.Settings"/>
253720c9898SEd Tanous      <ComplexType Name="PreferredApplyTime" BaseType="Settings.v1_1_4.PreferredApplyTime"/>
254720c9898SEd Tanous    </Schema>
255720c9898SEd Tanous
256720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings.v1_1_6">
257720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
258*f2a8e57eSGunnar Mills      <Annotation Term="OData.Description" String="This version was created to clarify the default behavior of `MaintenanceWindowStartTime`."/>
259720c9898SEd Tanous      <ComplexType Name="Settings" BaseType="Settings.v1_1_5.Settings"/>
260720c9898SEd Tanous      <ComplexType Name="PreferredApplyTime" BaseType="Settings.v1_1_5.PreferredApplyTime"/>
261720c9898SEd Tanous    </Schema>
262720c9898SEd Tanous
263720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings.v1_1_7">
264720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
265*f2a8e57eSGunnar Mills      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of `Immediate` in `SettingsApplyTime` to allow for side effects."/>
266720c9898SEd Tanous      <ComplexType Name="Settings" BaseType="Settings.v1_1_6.Settings"/>
267720c9898SEd Tanous      <ComplexType Name="PreferredApplyTime" BaseType="Settings.v1_1_6.PreferredApplyTime"/>
268720c9898SEd Tanous    </Schema>
269720c9898SEd Tanous
270*f2a8e57eSGunnar Mills    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings.v1_1_8">
271*f2a8e57eSGunnar Mills      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
272*f2a8e57eSGunnar Mills      <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors."/>
273*f2a8e57eSGunnar Mills      <ComplexType Name="Settings" BaseType="Settings.v1_1_7.Settings"/>
274*f2a8e57eSGunnar Mills      <ComplexType Name="PreferredApplyTime" BaseType="Settings.v1_1_7.PreferredApplyTime"/>
275*f2a8e57eSGunnar Mills    </Schema>
276*f2a8e57eSGunnar Mills
277720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings.v1_2_0">
278720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
279720c9898SEd Tanous      <Annotation Term="Redfish.Release" String="2018.1"/>
280720c9898SEd Tanous
281720c9898SEd Tanous      <ComplexType Name="Settings" BaseType="Settings.v1_1_0.Settings">
282720c9898SEd Tanous        <NavigationProperty Name="MaintenanceWindowResource" Type="Resource.ItemOrCollection" Nullable="false">
283720c9898SEd Tanous          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
284720c9898SEd Tanous          <Annotation Term="OData.Description" String="The location of the maintenance window settings."/>
285*f2a8e57eSGunnar Mills          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource that contains the `@Redfish.MaintenanceWindow` property that governs this resource.  This property should be supported if the `SupportedApplyTimes` property contains `AtMaintenanceWindowStart` or `InMaintenanceWindowOnReset`."/>
286720c9898SEd Tanous        </NavigationProperty>
287720c9898SEd Tanous      </ComplexType>
288720c9898SEd Tanous
289720c9898SEd Tanous      <ComplexType Name="PreferredApplyTime" BaseType="Settings.v1_1_0.PreferredApplyTime"/>
290720c9898SEd Tanous
291720c9898SEd Tanous      <ComplexType Name="OperationApplyTimeSupport" BaseType="Settings.OperationApplyTimeSupport">
292720c9898SEd Tanous        <Annotation Term="OData.Description" String="The client can request a specific apply time of a create, delete, or action operation of a resource."/>
293720c9898SEd Tanous        <Annotation Term="OData.LongDescription" String="This type shall indicate that a client can request a specific apply time of a create, delete, or action operation of a resource."/>
294720c9898SEd Tanous        <Property Name="SupportedValues" Type="Collection(Settings.OperationApplyTime)" Nullable="false">
295720c9898SEd Tanous          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
296720c9898SEd Tanous          <Annotation Term="OData.Description" String="The types of apply times that the client can request when performing a create, delete, or action operation."/>
297720c9898SEd Tanous          <Annotation Term="OData.LongDescription" String="This property shall indicate the types of apply times the client can request when performing a create, delete, or action operation."/>
298720c9898SEd Tanous          <Annotation Term="Redfish.Required"/>
299720c9898SEd Tanous        </Property>
300720c9898SEd Tanous        <Property Name="MaintenanceWindowStartTime" Type="Edm.DateTimeOffset" Nullable="false">
301720c9898SEd Tanous          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
302720c9898SEd Tanous          <Annotation Term="OData.Description" String="The start time of a maintenance window."/>
303*f2a8e57eSGunnar Mills          <Annotation Term="OData.LongDescription" String="This property shall contain the same as the `MaintenanceWindowStartTime` property found in the `MaintenanceWindow` structure on the `MaintenanceWindowResource`.  Services shall provide a default value if not configured by a user.  This property shall be required if the `SupportedValues` property contains `AtMaintenanceWindowStart` or `InMaintenanceWindowOnReset`."/>
304720c9898SEd Tanous        </Property>
305720c9898SEd Tanous        <Property Name="MaintenanceWindowDurationInSeconds" Type="Edm.Int64" Nullable="false">
306720c9898SEd Tanous          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
307720c9898SEd Tanous          <Annotation Term="OData.Description" String="The expiry time of maintenance window in seconds."/>
308*f2a8e57eSGunnar Mills          <Annotation Term="OData.LongDescription" String="This property shall contain the same as the `MaintenanceWindowDurationInSeconds` property found in the `MaintenanceWindow` structure on the `MaintenanceWindowResource`.  This property shall be required if the `SupportedValues` property contains `AtMaintenanceWindowStart` or `InMaintenanceWindowOnReset`."/>
309720c9898SEd Tanous          <Annotation Term="Validation.Minimum" Int="0"/>
310720c9898SEd Tanous          <Annotation Term="Measures.Unit" String="s"/>
311720c9898SEd Tanous        </Property>
312720c9898SEd Tanous        <NavigationProperty Name="MaintenanceWindowResource" Type="Resource.ItemOrCollection" Nullable="false">
313720c9898SEd Tanous          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
314720c9898SEd Tanous          <Annotation Term="OData.Description" String="The location of the maintenance window settings."/>
315*f2a8e57eSGunnar Mills          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource that contains the `@Redfish.MaintenanceWindow` property that governs this resource.  This property shall be required if the `SupportedValues` property contains `AtMaintenanceWindowStart` or `InMaintenanceWindowOnReset`."/>
316720c9898SEd Tanous        </NavigationProperty>
317720c9898SEd Tanous      </ComplexType>
318720c9898SEd Tanous
319720c9898SEd Tanous      <ComplexType Name="MaintenanceWindow" BaseType="Settings.MaintenanceWindow">
320720c9898SEd Tanous        <Annotation Term="OData.Description" String="The maintenance window assignment for applying settings or operations to a resource."/>
321720c9898SEd Tanous        <Annotation Term="OData.LongDescription" String="This type shall indicate that a resource has a maintenance window assignment for applying settings or operations.  Other resources can link to this object to convey a common control surface for the configuration of the maintenance window."/>
322720c9898SEd Tanous        <Property Name="MaintenanceWindowStartTime" Type="Edm.DateTimeOffset" Nullable="false">
323720c9898SEd Tanous          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
324720c9898SEd Tanous          <Annotation Term="OData.Description" String="The start time of a maintenance window."/>
325720c9898SEd Tanous          <Annotation Term="OData.LongDescription" String="This property shall indicate the date and time when the service can start to apply the requested settings or operation as part of a maintenance window.  Services shall provide a default value if not configured by a user."/>
326720c9898SEd Tanous          <Annotation Term="Redfish.Required"/>
327720c9898SEd Tanous        </Property>
328720c9898SEd Tanous        <Property Name="MaintenanceWindowDurationInSeconds" Type="Edm.Int64" Nullable="false">
329720c9898SEd Tanous          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
330720c9898SEd Tanous          <Annotation Term="OData.Description" String="The expiry time of maintenance window in seconds."/>
331*f2a8e57eSGunnar Mills          <Annotation Term="OData.LongDescription" String="This property shall indicate the end of the maintenance window as the number of seconds after the time specified by the `MaintenanceWindowStartTime` property."/>
332720c9898SEd Tanous          <Annotation Term="Validation.Minimum" Int="0"/>
333720c9898SEd Tanous          <Annotation Term="Measures.Unit" String="s"/>
334720c9898SEd Tanous          <Annotation Term="Redfish.Required"/>
335720c9898SEd Tanous        </Property>
336720c9898SEd Tanous      </ComplexType>
337720c9898SEd Tanous    </Schema>
338720c9898SEd Tanous
339720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings.v1_2_1">
340720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
341720c9898SEd Tanous      <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."/>
342720c9898SEd Tanous      <ComplexType Name="Settings" BaseType="Settings.v1_2_0.Settings"/>
343720c9898SEd Tanous      <ComplexType Name="PreferredApplyTime" BaseType="Settings.v1_2_0.PreferredApplyTime"/>
344720c9898SEd Tanous      <ComplexType Name="OperationApplyTimeSupport" BaseType="Settings.v1_2_0.OperationApplyTimeSupport"/>
345720c9898SEd Tanous      <ComplexType Name="MaintenanceWindow" BaseType="Settings.v1_2_0.MaintenanceWindow"/>
346720c9898SEd Tanous    </Schema>
347720c9898SEd Tanous
348720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings.v1_2_2">
349720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
350720c9898SEd Tanous      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
351720c9898SEd Tanous      <ComplexType Name="Settings" BaseType="Settings.v1_2_1.Settings"/>
352720c9898SEd Tanous      <ComplexType Name="PreferredApplyTime" BaseType="Settings.v1_2_1.PreferredApplyTime"/>
353720c9898SEd Tanous      <ComplexType Name="OperationApplyTimeSupport" BaseType="Settings.v1_2_1.OperationApplyTimeSupport"/>
354720c9898SEd Tanous      <ComplexType Name="MaintenanceWindow" BaseType="Settings.v1_2_1.MaintenanceWindow"/>
355720c9898SEd Tanous    </Schema>
356720c9898SEd Tanous
357720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings.v1_2_3">
358720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
359720c9898SEd Tanous      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
360720c9898SEd Tanous      <ComplexType Name="Settings" BaseType="Settings.v1_2_2.Settings"/>
361720c9898SEd Tanous      <ComplexType Name="PreferredApplyTime" BaseType="Settings.v1_2_2.PreferredApplyTime"/>
362720c9898SEd Tanous      <ComplexType Name="OperationApplyTimeSupport" BaseType="Settings.v1_2_2.OperationApplyTimeSupport"/>
363720c9898SEd Tanous      <ComplexType Name="MaintenanceWindow" BaseType="Settings.v1_2_2.MaintenanceWindow"/>
364720c9898SEd Tanous    </Schema>
365720c9898SEd Tanous
366720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings.v1_2_4">
367720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
368*f2a8e57eSGunnar Mills      <Annotation Term="OData.Description" String="This version was created to clarify the description of `SupportedApplyTimes` to state that having a single member is valid."/>
369720c9898SEd Tanous      <ComplexType Name="Settings" BaseType="Settings.v1_2_3.Settings"/>
370720c9898SEd Tanous      <ComplexType Name="PreferredApplyTime" BaseType="Settings.v1_2_3.PreferredApplyTime"/>
371720c9898SEd Tanous      <ComplexType Name="OperationApplyTimeSupport" BaseType="Settings.v1_2_3.OperationApplyTimeSupport"/>
372720c9898SEd Tanous      <ComplexType Name="MaintenanceWindow" BaseType="Settings.v1_2_3.MaintenanceWindow"/>
373720c9898SEd Tanous    </Schema>
374720c9898SEd Tanous
375720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings.v1_2_5">
376720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
377720c9898SEd Tanous      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
378720c9898SEd Tanous      <ComplexType Name="Settings" BaseType="Settings.v1_2_4.Settings"/>
379720c9898SEd Tanous      <ComplexType Name="PreferredApplyTime" BaseType="Settings.v1_2_4.PreferredApplyTime"/>
380720c9898SEd Tanous      <ComplexType Name="OperationApplyTimeSupport" BaseType="Settings.v1_2_4.OperationApplyTimeSupport"/>
381720c9898SEd Tanous      <ComplexType Name="MaintenanceWindow" BaseType="Settings.v1_2_4.MaintenanceWindow"/>
382720c9898SEd Tanous    </Schema>
383720c9898SEd Tanous
384720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings.v1_2_6">
385720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
386*f2a8e57eSGunnar Mills      <Annotation Term="OData.Description" String="This version was created to clarify the default behavior of `MaintenanceWindowStartTime`."/>
387720c9898SEd Tanous      <ComplexType Name="Settings" BaseType="Settings.v1_2_5.Settings"/>
388720c9898SEd Tanous      <ComplexType Name="PreferredApplyTime" BaseType="Settings.v1_2_5.PreferredApplyTime"/>
389720c9898SEd Tanous      <ComplexType Name="OperationApplyTimeSupport" BaseType="Settings.v1_2_5.OperationApplyTimeSupport"/>
390720c9898SEd Tanous      <ComplexType Name="MaintenanceWindow" BaseType="Settings.v1_2_5.MaintenanceWindow"/>
391720c9898SEd Tanous    </Schema>
392720c9898SEd Tanous
393720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings.v1_2_7">
394720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
395*f2a8e57eSGunnar Mills      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of `Immediate` in `SettingsApplyTime` and `OperationApplyTime` to allow for side effects."/>
396720c9898SEd Tanous      <ComplexType Name="Settings" BaseType="Settings.v1_2_6.Settings"/>
397720c9898SEd Tanous      <ComplexType Name="PreferredApplyTime" BaseType="Settings.v1_2_6.PreferredApplyTime"/>
398720c9898SEd Tanous      <ComplexType Name="OperationApplyTimeSupport" BaseType="Settings.v1_2_6.OperationApplyTimeSupport"/>
399720c9898SEd Tanous      <ComplexType Name="MaintenanceWindow" BaseType="Settings.v1_2_6.MaintenanceWindow"/>
400720c9898SEd Tanous    </Schema>
401720c9898SEd Tanous
402*f2a8e57eSGunnar Mills    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings.v1_2_8">
403*f2a8e57eSGunnar Mills      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
404*f2a8e57eSGunnar Mills      <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors."/>
405*f2a8e57eSGunnar Mills      <ComplexType Name="Settings" BaseType="Settings.v1_2_7.Settings"/>
406*f2a8e57eSGunnar Mills      <ComplexType Name="PreferredApplyTime" BaseType="Settings.v1_2_7.PreferredApplyTime"/>
407*f2a8e57eSGunnar Mills      <ComplexType Name="OperationApplyTimeSupport" BaseType="Settings.v1_2_7.OperationApplyTimeSupport"/>
408*f2a8e57eSGunnar Mills      <ComplexType Name="MaintenanceWindow" BaseType="Settings.v1_2_7.MaintenanceWindow"/>
409*f2a8e57eSGunnar Mills    </Schema>
410*f2a8e57eSGunnar Mills
411720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings.v1_3_0">
412720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
413720c9898SEd Tanous      <Annotation Term="Redfish.Release" String="2019.3"/>
414*f2a8e57eSGunnar Mills      <Annotation Term="OData.Description" String="This version was created to add the `OnStartUpdateRequest` value to the `OperationApplyTime` enumeration."/>
415720c9898SEd Tanous
416720c9898SEd Tanous      <ComplexType Name="Settings" BaseType="Settings.v1_2_2.Settings"/>
417720c9898SEd Tanous      <ComplexType Name="PreferredApplyTime" BaseType="Settings.v1_2_2.PreferredApplyTime"/>
418720c9898SEd Tanous      <ComplexType Name="OperationApplyTimeSupport" BaseType="Settings.v1_2_2.OperationApplyTimeSupport"/>
419720c9898SEd Tanous      <ComplexType Name="MaintenanceWindow" BaseType="Settings.v1_2_2.MaintenanceWindow"/>
420720c9898SEd Tanous    </Schema>
421720c9898SEd Tanous
422720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings.v1_3_1">
423720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
424720c9898SEd Tanous      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
425720c9898SEd Tanous      <ComplexType Name="Settings" BaseType="Settings.v1_3_0.Settings"/>
426720c9898SEd Tanous      <ComplexType Name="PreferredApplyTime" BaseType="Settings.v1_3_0.PreferredApplyTime"/>
427720c9898SEd Tanous      <ComplexType Name="OperationApplyTimeSupport" BaseType="Settings.v1_3_0.OperationApplyTimeSupport"/>
428720c9898SEd Tanous      <ComplexType Name="MaintenanceWindow" BaseType="Settings.v1_3_0.MaintenanceWindow"/>
429720c9898SEd Tanous    </Schema>
430720c9898SEd Tanous
431720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings.v1_3_2">
432720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
433*f2a8e57eSGunnar Mills      <Annotation Term="OData.Description" String="This version was created to clarify the description of `SupportedApplyTimes` to state that having a single member is valid."/>
434720c9898SEd Tanous      <ComplexType Name="Settings" BaseType="Settings.v1_3_1.Settings"/>
435720c9898SEd Tanous      <ComplexType Name="PreferredApplyTime" BaseType="Settings.v1_3_1.PreferredApplyTime"/>
436720c9898SEd Tanous      <ComplexType Name="OperationApplyTimeSupport" BaseType="Settings.v1_3_1.OperationApplyTimeSupport"/>
437720c9898SEd Tanous      <ComplexType Name="MaintenanceWindow" BaseType="Settings.v1_3_1.MaintenanceWindow"/>
438720c9898SEd Tanous    </Schema>
439720c9898SEd Tanous
440720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings.v1_3_3">
441720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
442720c9898SEd Tanous      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
443720c9898SEd Tanous      <ComplexType Name="Settings" BaseType="Settings.v1_3_2.Settings"/>
444720c9898SEd Tanous      <ComplexType Name="PreferredApplyTime" BaseType="Settings.v1_3_2.PreferredApplyTime"/>
445720c9898SEd Tanous      <ComplexType Name="OperationApplyTimeSupport" BaseType="Settings.v1_3_2.OperationApplyTimeSupport"/>
446720c9898SEd Tanous      <ComplexType Name="MaintenanceWindow" BaseType="Settings.v1_3_2.MaintenanceWindow"/>
447720c9898SEd Tanous    </Schema>
448720c9898SEd Tanous
449720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings.v1_3_4">
450720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
451*f2a8e57eSGunnar Mills      <Annotation Term="OData.Description" String="This version was created to clarify the default behavior of `MaintenanceWindowStartTime`."/>
452720c9898SEd Tanous      <ComplexType Name="Settings" BaseType="Settings.v1_3_3.Settings"/>
453720c9898SEd Tanous      <ComplexType Name="PreferredApplyTime" BaseType="Settings.v1_3_3.PreferredApplyTime"/>
454720c9898SEd Tanous      <ComplexType Name="OperationApplyTimeSupport" BaseType="Settings.v1_3_3.OperationApplyTimeSupport"/>
455720c9898SEd Tanous      <ComplexType Name="MaintenanceWindow" BaseType="Settings.v1_3_3.MaintenanceWindow"/>
456720c9898SEd Tanous    </Schema>
457720c9898SEd Tanous
458720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings.v1_3_5">
459720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
460*f2a8e57eSGunnar Mills      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of `Immediate` in `SettingsApplyTime` and `OperationApplyTime` to allow for side effects."/>
461720c9898SEd Tanous      <ComplexType Name="Settings" BaseType="Settings.v1_3_4.Settings"/>
462720c9898SEd Tanous      <ComplexType Name="PreferredApplyTime" BaseType="Settings.v1_3_4.PreferredApplyTime"/>
463720c9898SEd Tanous      <ComplexType Name="OperationApplyTimeSupport" BaseType="Settings.v1_3_4.OperationApplyTimeSupport"/>
464720c9898SEd Tanous      <ComplexType Name="MaintenanceWindow" BaseType="Settings.v1_3_4.MaintenanceWindow"/>
465720c9898SEd Tanous    </Schema>
466720c9898SEd Tanous
467*f2a8e57eSGunnar Mills    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings.v1_3_6">
468*f2a8e57eSGunnar Mills      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
469*f2a8e57eSGunnar Mills      <Annotation Term="OData.Description" String="This version was created to force the regeneration of OpenAPI schemas to properly express nullable properties with external references.  It was also created to correct various typographical errors."/>
470*f2a8e57eSGunnar Mills      <ComplexType Name="Settings" BaseType="Settings.v1_3_5.Settings"/>
471*f2a8e57eSGunnar Mills      <ComplexType Name="PreferredApplyTime" BaseType="Settings.v1_3_5.PreferredApplyTime"/>
472*f2a8e57eSGunnar Mills      <ComplexType Name="OperationApplyTimeSupport" BaseType="Settings.v1_3_5.OperationApplyTimeSupport"/>
473*f2a8e57eSGunnar Mills      <ComplexType Name="MaintenanceWindow" BaseType="Settings.v1_3_5.MaintenanceWindow"/>
474*f2a8e57eSGunnar Mills    </Schema>
475*f2a8e57eSGunnar Mills
476*f2a8e57eSGunnar Mills    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Settings.v1_4_0">
477*f2a8e57eSGunnar Mills      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
478*f2a8e57eSGunnar Mills      <Annotation Term="Redfish.Release" String="2024.1"/>
479*f2a8e57eSGunnar Mills      <Annotation Term="OData.Description" String="This version was created to add the `OnTargetReset` to `OperationApplyTime`."/>
480*f2a8e57eSGunnar Mills
481*f2a8e57eSGunnar Mills      <ComplexType Name="Settings" BaseType="Settings.v1_3_6.Settings"/>
482*f2a8e57eSGunnar Mills      <ComplexType Name="PreferredApplyTime" BaseType="Settings.v1_3_6.PreferredApplyTime"/>
483*f2a8e57eSGunnar Mills      <ComplexType Name="OperationApplyTimeSupport" BaseType="Settings.v1_3_6.OperationApplyTimeSupport"/>
484*f2a8e57eSGunnar Mills      <ComplexType Name="MaintenanceWindow" BaseType="Settings.v1_3_6.MaintenanceWindow"/>
485*f2a8e57eSGunnar Mills    </Schema>
486*f2a8e57eSGunnar Mills
487720c9898SEd Tanous  </edmx:DataServices>
488720c9898SEd Tanous</edmx:Edmx>
489