1<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################       -->
4<!--# Redfish Schema:  ManagerAccount v1.12.1                                              -->
5<!--#                                                                                      -->
6<!--# For a detailed change log, see the README file contained in the DSP8010 bundle,      -->
7<!--# available at http://www.dmtf.org/standards/redfish                                   -->
8<!--# Copyright 2014-2024 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="RedfishExtensions.v1_0_0" Alias="Redfish"/>
22    <edmx:Include Namespace="Validation.v1_0_0" Alias="Validation"/>
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/Role_v1.xml">
29    <edmx:Include Namespace="Role"/>
30  </edmx:Reference>
31  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/CertificateCollection_v1.xml">
32    <edmx:Include Namespace="CertificateCollection"/>
33  </edmx:Reference>
34  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/KeyCollection_v1.xml">
35    <edmx:Include Namespace="KeyCollection"/>
36  </edmx:Reference>
37  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/AccountService_v1.xml">
38    <edmx:Include Namespace="AccountService"/>
39  </edmx:Reference>
40
41  <edmx:DataServices>
42
43    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount">
44      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
45      <Annotation Term="Redfish.Language" String="en"/>
46
47      <EntityType Name="ManagerAccount" BaseType="Resource.v1_0_0.Resource" Abstract="true">
48        <Annotation Term="OData.Description" String="The `ManagerAccount` schema defines the user accounts that are owned by a manager.  Changes to a manager account might affect the current Redfish service connection if this manager is responsible for the Redfish service."/>
49        <Annotation Term="OData.LongDescription" String="This resource shall represent a user account for the manager in a Redfish implementation.  The account shall indicate the allowed access to one of more services in the manager."/>
50        <Annotation Term="Capabilities.InsertRestrictions">
51          <Record>
52            <PropertyValue Property="Insertable" Bool="false"/>
53          </Record>
54        </Annotation>
55        <Annotation Term="Capabilities.UpdateRestrictions">
56          <Record>
57            <PropertyValue Property="Updatable" Bool="true"/>
58            <Annotation Term="OData.Description" String="Writable properties, such as the password, can be updated for manager accounts."/>
59          </Record>
60        </Annotation>
61        <Annotation Term="Capabilities.DeleteRestrictions">
62          <Record>
63            <PropertyValue Property="Deletable" Bool="true"/>
64            <Annotation Term="OData.Description" String="Use the `DELETE` operation to remove manager accounts."/>
65          </Record>
66        </Annotation>
67        <Annotation Term="Redfish.Uris">
68          <Collection>
69            <String>/redfish/v1/AccountService/Accounts/{ManagerAccountId}</String>
70            <String>/redfish/v1/Managers/{ManagerId}/RemoteAccountService/Accounts/{ManagerAccountId}</String>
71          </Collection>
72        </Annotation>
73      </EntityType>
74
75      <Action Name="ChangePassword" IsBound="true">
76        <Annotation Term="OData.Description" String="This action changes the account password."/>
77        <Annotation Term="OData.LongDescription" String="This action shall change the account password while requiring password for the current session.  This action prevents session hijacking."/>
78        <Annotation Term="Redfish.Revisions">
79          <Collection>
80            <Record>
81              <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
82              <PropertyValue Property="Version" String="v1_11_0"/>
83            </Record>
84          </Collection>
85        </Annotation>
86        <Parameter Name="ManagerAccount" Type="ManagerAccount.v1_1_0.Actions"/>
87        <Parameter Name="SessionAccountPassword" Type="Edm.String" Nullable="false">
88          <Annotation Term="OData.Description" String="The password of the account tied to the current session."/>
89          <Annotation Term="OData.LongDescription" String="This parameter shall contain the password of the current session's account.  A user changing their own password shall provide their current password for this parameter.  An administrator changing the password for a different user shall provide their own password for this parameter.  If the request is performed with HTTP Basic authentication, this parameter shall contain the same password encoded in the `Authorization` header."/>
90        </Parameter>
91        <Parameter Name="NewPassword" Type="Edm.String" Nullable="false">
92          <Annotation Term="OData.Description" String="The new account password."/>
93          <Annotation Term="OData.LongDescription" String="This parameter shall contain the new password."/>
94        </Parameter>
95      </Action>
96
97      <EnumType Name="AccountTypes">
98        <Annotation Term="Redfish.Revisions">
99          <Collection>
100            <Record>
101              <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
102              <PropertyValue Property="Version" String="v1_4_0"/>
103            </Record>
104          </Collection>
105        </Annotation>
106        <Member Name="Redfish">
107          <Annotation Term="OData.Description" String="Allow access to the Redfish service."/>
108          <Annotation Term="OData.LongDescription" String="This value shall indicate the account is allowed to access Redfish services.  If the version of the `ManagerAccount` resource is lower than the schema version when another enumeration value in this list was added, the implementation may include that functionality as part of the `Redfish` value."/>
109        </Member>
110        <Member Name="SNMP">
111          <Annotation Term="OData.Description" String="Allow access to SNMP services."/>
112          <Annotation Term="OData.LongDescription" String="This value shall indicate the account is allowed to access SNMP services."/>
113        </Member>
114        <Member Name="OEM">
115          <Annotation Term="OData.Description" String="OEM account type.  See the `OEMAccountTypes` property."/>
116          <Annotation Term="OData.LongDescription" String="This value shall indicate the account is allowed to access the services listed in the `OEMAccountTypes` property."/>
117        </Member>
118        <Member Name="HostConsole">
119          <Annotation Term="OData.Description" String="Allow access to the host's console, which could be connected through Telnet, SSH, or another protocol."/>
120          <Annotation Term="OData.LongDescription" String="This value shall indicate the account is allowed to access the host console."/>
121          <Annotation Term="Redfish.Revisions">
122            <Collection>
123              <Record>
124                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
125                <PropertyValue Property="Version" String="v1_7_0"/>
126              </Record>
127            </Collection>
128          </Annotation>
129        </Member>
130        <Member Name="ManagerConsole">
131          <Annotation Term="OData.Description" String="Allow access to the manager's console, which could be connected through Telnet, SSH, SM CLP, or another protocol."/>
132          <Annotation Term="OData.LongDescription" String="This value shall indicate the account is allowed to access the manager console."/>
133          <Annotation Term="Redfish.Revisions">
134            <Collection>
135              <Record>
136                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
137                <PropertyValue Property="Version" String="v1_7_0"/>
138              </Record>
139            </Collection>
140          </Annotation>
141        </Member>
142        <Member Name="IPMI">
143          <Annotation Term="OData.Description" String="Allow access to the Intelligent Platform Management Interface service."/>
144          <Annotation Term="OData.LongDescription" String="This value shall indicate the account is allowed to access the Intelligent Platform Management Interface service."/>
145          <Annotation Term="Redfish.Revisions">
146            <Collection>
147              <Record>
148                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
149                <PropertyValue Property="Version" String="v1_7_0"/>
150              </Record>
151            </Collection>
152          </Annotation>
153        </Member>
154        <Member Name="KVMIP">
155          <Annotation Term="OData.Description" String="Allow access to a Keyboard-Video-Mouse over IP session."/>
156          <Annotation Term="OData.LongDescription" String="This value shall indicate the account is allowed to access the Keyboard-Video-Mouse over IP session service."/>
157          <Annotation Term="Redfish.Revisions">
158            <Collection>
159              <Record>
160                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
161                <PropertyValue Property="Version" String="v1_7_0"/>
162              </Record>
163            </Collection>
164          </Annotation>
165        </Member>
166        <Member Name="VirtualMedia">
167          <Annotation Term="OData.Description" String="Allow access to control virtual media."/>
168          <Annotation Term="OData.LongDescription" String="This value shall indicate the account is allowed to control virtual media."/>
169          <Annotation Term="Redfish.Revisions">
170            <Collection>
171              <Record>
172                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
173                <PropertyValue Property="Version" String="v1_7_0"/>
174              </Record>
175            </Collection>
176          </Annotation>
177        </Member>
178        <Member Name="WebUI">
179          <Annotation Term="OData.Description" String="Allow access to a web user interface session, such as a graphical interface or another web-based protocol."/>
180          <Annotation Term="OData.LongDescription" String="This value shall indicate the account is allowed to access the web interface."/>
181          <Annotation Term="Redfish.Revisions">
182            <Collection>
183              <Record>
184                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
185                <PropertyValue Property="Version" String="v1_7_0"/>
186              </Record>
187            </Collection>
188          </Annotation>
189        </Member>
190      </EnumType>
191    </Schema>
192
193    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_0_0">
194      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
195      <Annotation Term="Redfish.Release" String="1.0"/>
196
197      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.ManagerAccount">
198        <Property Name="Password" Type="Edm.String">
199          <Annotation Term="Redfish.RequiredOnCreate"/>
200          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Write"/>
201          <Annotation Term="OData.Description" String="The password.  Use this property with a `PATCH` or `PUT` to write the password for the account.  This property is `null` in responses."/>
202          <Annotation Term="OData.LongDescription" String="This property shall contain the password for this account.  The value shall be `null` in responses."/>
203        </Property>
204        <Property Name="UserName" Type="Edm.String" Nullable="false">
205          <Annotation Term="Redfish.RequiredOnCreate"/>
206          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
207          <Annotation Term="OData.Description" String="The username for the account."/>
208          <Annotation Term="OData.LongDescription" String="This property shall contain the username for this account."/>
209        </Property>
210        <Property Name="RoleId" Type="Edm.String" Nullable="false">
211          <Annotation Term="Redfish.RequiredOnCreate"/>
212          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
213          <Annotation Term="OData.Description" String="The role for this account."/>
214          <Annotation Term="OData.LongDescription" String="This property shall contain the `RoleId` of the role resource configured for this account.  The service shall reject `POST`, `PATCH`, or `PUT` operations that provide a `RoleId` that does not exist by returning the HTTP `400 Bad Request` status code."/>
215        </Property>
216        <Property Name="Locked" Type="Edm.Boolean" Nullable="false" DefaultValue="false">
217          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
218          <Annotation Term="OData.Description" String="An indication of whether the account service automatically locked the account because the lockout threshold was exceeded.  To manually unlock the account before the lockout duration period, an administrator can change the property to `false` to clear the lockout condition."/>
219          <Annotation Term="OData.LongDescription" String="This property shall indicate whether the account service automatically locked the account because the `AccountLockoutThreshold` was exceeded.  To manually unlock the account before the lockout duration period, an administrator shall be able to change the property to `false` to clear the lockout condition."/>
220        </Property>
221        <Property Name="Enabled" Type="Edm.Boolean" Nullable="false" DefaultValue="true">
222          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
223          <Annotation Term="OData.Description" String="An indication of whether an account is enabled.  An administrator can disable it without deleting the user information.  If `true`, the account is enabled and the user can log in.  If `false`, the account is disabled and, in the future, the user cannot log in."/>
224          <Annotation Term="OData.LongDescription" String="This property shall indicate whether an account is enabled.  If `true`, the account is enabled and the user can log in.  If `false`, the account is disabled and, in the future, the user cannot log in."/>
225        </Property>
226        <Property Name="Links" Type="ManagerAccount.v1_0_0.Links" Nullable="false">
227          <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
228          <Annotation Term="OData.LongDescription" String="This property shall contain links to resources that are related to but are not contained by, or subordinate to, this resource."/>
229        </Property>
230      </EntityType>
231
232      <ComplexType Name="Links" BaseType="Resource.Links">
233        <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
234        <Annotation Term="OData.LongDescription" String="This Redfish Specification-described type shall contain links to resources that are related to but are not contained by, or subordinate to, this resource."/>
235        <NavigationProperty Name="Role" Type="Role.Role" ContainsTarget="true" Nullable="false">
236          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
237          <Annotation Term="OData.Description" String="The link to the Redfish role that defines the privileges for this account."/>
238          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource of type `Role`, and should link to the resource identified by the `RoleId` property."/>
239          <Annotation Term="OData.AutoExpandReferences"/>
240        </NavigationProperty>
241      </ComplexType>
242    </Schema>
243
244    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_0_2">
245      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
246      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
247      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_0_0.ManagerAccount"/>
248    </Schema>
249
250    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_0_3">
251      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
252      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
253      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_0_2.ManagerAccount"/>
254    </Schema>
255
256    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_0_4">
257      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
258      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
259      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_0_3.ManagerAccount"/>
260    </Schema>
261
262    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_0_5">
263      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
264      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
265      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_0_4.ManagerAccount"/>
266    </Schema>
267
268    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_0_6">
269      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
270      <Annotation Term="OData.Description" String="This version was created to clarify the `RoleId` property description by stating its relation to `RoleId` in the role resource."/>
271      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_0_5.ManagerAccount"/>
272    </Schema>
273
274    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_0_7">
275      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
276      <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."/>
277      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_0_6.ManagerAccount"/>
278    </Schema>
279
280    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_0_8">
281      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
282      <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."/>
283      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_0_7.ManagerAccount"/>
284    </Schema>
285
286    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_0_9">
287      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
288      <Annotation Term="OData.Description" String="This version was created to update the `Password` description.  It was also created to update descriptions that this schema defines."/>
289      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_0_8.ManagerAccount"/>
290    </Schema>
291
292    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_0_10">
293      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
294      <Annotation Term="OData.Description" String="This version was created to correct the description for `Enabled` to remove the tie with `Locked`."/>
295      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_0_9.ManagerAccount"/>
296    </Schema>
297
298    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_0_11">
299      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
300      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
301      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_0_10.ManagerAccount"/>
302    </Schema>
303
304    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_0_12">
305      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
306      <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology."/>
307      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_0_11.ManagerAccount"/>
308    </Schema>
309
310    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_0_13">
311      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
312      <Annotation Term="OData.Description" String="This version was created to mark properties with values containing sensitive data as write-only."/>
313      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_0_12.ManagerAccount"/>
314    </Schema>
315
316    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_0_14">
317      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
318      <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."/>
319      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_0_13.ManagerAccount"/>
320    </Schema>
321
322    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_1_0">
323      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
324      <Annotation Term="Redfish.Release" String="2017.1"/>
325
326      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_0_4.ManagerAccount">
327        <Property Name="Actions" Type="ManagerAccount.v1_1_0.Actions" Nullable="false">
328          <Annotation Term="OData.Description" String="The available actions for this resource."/>
329          <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
330        </Property>
331      </EntityType>
332
333      <ComplexType Name="Actions">
334        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
335        <Annotation Term="OData.Description" String="The available actions for this resource."/>
336        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
337        <Property Name="Oem" Type="ManagerAccount.v1_1_0.OemActions" Nullable="false">
338          <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
339          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
340        </Property>
341      </ComplexType>
342
343      <ComplexType Name="OemActions">
344        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
345        <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
346        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
347      </ComplexType>
348    </Schema>
349
350    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_1_1">
351      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
352      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
353      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_1_0.ManagerAccount"/>
354    </Schema>
355
356    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_1_2">
357      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
358      <Annotation Term="OData.Description" String="This version was created to clarify the `RoleId` property description by stating its relation to `RoleId` in the role resource."/>
359      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_1_1.ManagerAccount"/>
360    </Schema>
361
362    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_1_3">
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="ManagerAccount" BaseType="ManagerAccount.v1_1_2.ManagerAccount"/>
366    </Schema>
367
368    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_1_4">
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="ManagerAccount" BaseType="ManagerAccount.v1_1_3.ManagerAccount"/>
372    </Schema>
373
374    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_1_5">
375      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
376      <Annotation Term="OData.Description" String="This version was created to update the `Password` description.  It was also created to update descriptions that this schema defines."/>
377      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_1_4.ManagerAccount"/>
378    </Schema>
379
380    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_1_6">
381      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
382      <Annotation Term="OData.Description" String="This version was created to correct the description for `Enabled` to remove the tie with `Locked`."/>
383      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_1_5.ManagerAccount"/>
384    </Schema>
385
386    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_1_7">
387      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
388      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
389      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_1_6.ManagerAccount"/>
390    </Schema>
391
392    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_1_8">
393      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
394      <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology."/>
395      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_1_7.ManagerAccount"/>
396    </Schema>
397
398    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_1_9">
399      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
400      <Annotation Term="OData.Description" String="This version was created to mark properties with values containing sensitive data as write-only."/>
401      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_1_8.ManagerAccount"/>
402    </Schema>
403
404    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_1_10">
405      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
406      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
407      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_1_9.ManagerAccount"/>
408    </Schema>
409
410    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_1_11">
411      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
412      <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."/>
413      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_1_10.ManagerAccount"/>
414    </Schema>
415
416    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_2_0">
417      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
418      <Annotation Term="Redfish.Release" String="2018.3"/>
419
420      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_1_3.ManagerAccount">
421        <NavigationProperty Name="Certificates" Type="CertificateCollection.CertificateCollection" ContainsTarget="true" Nullable="false">
422          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
423          <Annotation Term="OData.Description" String="The link to a collection of user identity certificates for this account."/>
424          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource collection of type `CertificateCollection` that represents the user identity certificates for this account."/>
425          <Annotation Term="OData.AutoExpandReferences"/>
426        </NavigationProperty>
427      </EntityType>
428    </Schema>
429
430    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_2_1">
431      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
432      <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."/>
433      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_2_0.ManagerAccount"/>
434    </Schema>
435
436    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_2_2">
437      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
438      <Annotation Term="OData.Description" String="This version was created to update the `Password` description.  It was also created to update descriptions that this schema defines."/>
439      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_2_1.ManagerAccount"/>
440    </Schema>
441
442    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_2_3">
443      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
444      <Annotation Term="OData.Description" String="This version was created to correct the description for `Enabled` to remove the tie with `Locked`."/>
445      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_2_2.ManagerAccount"/>
446    </Schema>
447
448    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_2_4">
449      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
450      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
451      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_2_3.ManagerAccount"/>
452    </Schema>
453
454    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_2_5">
455      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
456      <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology."/>
457      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_2_4.ManagerAccount"/>
458    </Schema>
459
460    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_2_6">
461      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
462      <Annotation Term="OData.Description" String="This version was created to mark properties with values containing sensitive data as write-only.  It was also created to provide more details for the usage of the `Certificates` property."/>
463      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_2_5.ManagerAccount"/>
464    </Schema>
465
466    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_2_7">
467      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
468      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
469      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_2_6.ManagerAccount"/>
470    </Schema>
471
472    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_2_8">
473      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
474      <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."/>
475      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_2_7.ManagerAccount"/>
476    </Schema>
477
478    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_3_0">
479      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
480      <Annotation Term="Redfish.Release" String="2019.1"/>
481
482      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_2_1.ManagerAccount">
483        <Property Name="PasswordChangeRequired" Type="Edm.Boolean">
484          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
485          <Annotation Term="OData.Description" String="An indication of whether the service requires that the password for this account be changed before further access to the account is allowed."/>
486          <Annotation Term="OData.LongDescription" String="This property shall indicate whether the service requires that the password for this account be changed before further access to the account is allowed.  The implementation may deny access to the service if the password has not been changed.  A manager account created with an initial `PasswordChangeRequired` value of `true` may force a password change before first access of the account.  When the `Password` property for this account is updated, the service shall set this property to `false`."/>
487        </Property>
488      </EntityType>
489    </Schema>
490
491    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_3_1">
492      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
493      <Annotation Term="OData.Description" String="This version was created to update the `Password` description.  It was also created to update descriptions that this schema defines."/>
494      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_3_0.ManagerAccount"/>
495    </Schema>
496
497    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_3_2">
498      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
499      <Annotation Term="OData.Description" String="This version was created to correct the description for `Enabled` to remove the tie with `Locked`."/>
500      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_3_1.ManagerAccount"/>
501    </Schema>
502
503    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_3_3">
504      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
505      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
506      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_3_2.ManagerAccount"/>
507    </Schema>
508
509    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_3_4">
510      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
511      <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology."/>
512      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_3_3.ManagerAccount"/>
513    </Schema>
514
515    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_3_5">
516      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
517      <Annotation Term="OData.Description" String="This version was created to mark properties with values containing sensitive data as write-only.  It was also created to provide more details for the usage of the `Certificates` property."/>
518      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_3_4.ManagerAccount"/>
519    </Schema>
520
521    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_3_6">
522      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
523      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
524      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_3_5.ManagerAccount"/>
525    </Schema>
526
527    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_3_7">
528      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
529      <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."/>
530      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_3_6.ManagerAccount"/>
531    </Schema>
532
533    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_4_0">
534      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
535      <Annotation Term="Redfish.Release" String="2019.3"/>
536
537      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_3_0.ManagerAccount">
538        <Property Name="SNMP" Type="ManagerAccount.v1_4_0.SNMPUserInfo">
539          <Annotation Term="OData.Description" String="The SNMP settings for this account."/>
540          <Annotation Term="OData.LongDescription" String="This property shall contain the SNMP settings for this account when `AccountTypes` contains `SNMP`."/>
541        </Property>
542        <Property Name="AccountTypes" Type="Collection(ManagerAccount.AccountTypes)">
543          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
544          <Annotation Term="OData.Description" String="The list of services in the manager that the account is allowed to access."/>
545          <Annotation Term="OData.LongDescription" String="This property shall contain an array of the various manager services that the account is allowed to access.  This shall not include functionality for receiving events or other notifications.  If this property is not provided by the client, the default value shall be an array that contains the value `Redfish`.  The service may add additional values when this property is set or updated if allowed by the value of the `StrictAccountTypes` property."/>
546          <Annotation Term="Redfish.Required"/>
547        </Property>
548        <Property Name="OEMAccountTypes" Type="Collection(Edm.String)">
549          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
550          <Annotation Term="OData.Description" String="The OEM account types."/>
551          <Annotation Term="OData.LongDescription" String="This property shall contain an array of the OEM account types for this account.  This property shall be valid when `AccountTypes` contains `OEM`."/>
552        </Property>
553      </EntityType>
554
555      <ComplexType Name="SNMPUserInfo">
556        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
557        <Annotation Term="OData.Description" String="The SNMP settings for an account."/>
558        <Annotation Term="OData.LongDescription" String="This object shall contain the SNMP settings for an account."/>
559        <Property Name="AuthenticationKey" Type="Edm.String">
560          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Write"/>
561          <Annotation Term="OData.Description" String="The secret authentication key for SNMPv3."/>
562          <Annotation Term="OData.LongDescription" String="This property shall contain the key for SNMPv3 authentication.  The value shall be `null` in responses.  This property accepts a passphrase or a hex-encoded key.  If the string starts with `Passphrase:`, the remainder of the string shall be the passphrase and shall be converted to the key as described in the 'Password to Key Algorithm' section of RFC3414.  If the string starts with `Hex:`, then the remainder of the string shall be the key encoded in hexadecimal notation.  If the string starts with neither, the full string shall be a passphrase and shall be converted to the key as described in the 'Password to Key Algorithm' section of RFC3414.  The passphrase can contain any printable characters except for the double quotation mark."/>
563          <Annotation Term="Validation.Pattern" String="(^[ !#-~]+$)|(^Passphrase:[ ^[ !#-~]+$)|(^Hex:[0-9A-Fa-f]{24,96})|(^\*+$)"/>
564        </Property>
565        <Property Name="AuthenticationProtocol" Type="ManagerAccount.v1_4_0.SNMPAuthenticationProtocols">
566          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
567          <Annotation Term="OData.Description" String="The authentication protocol for SNMPv3."/>
568          <Annotation Term="OData.LongDescription" String="This property shall contain the SNMPv3 authentication protocol."/>
569        </Property>
570        <Property Name="EncryptionKey" Type="Edm.String">
571          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Write"/>
572          <Annotation Term="OData.Description" String="The secret encryption key used in SNMPv3."/>
573          <Annotation Term="OData.LongDescription" String="This property shall contain the key for SNMPv3 encryption.  The value shall be `null` in responses.  This property accepts a passphrase or a hex-encoded key.  If the string starts with `Passphrase:`, the remainder of the string shall be the passphrase and shall be converted to the key as described in the 'Password to Key Algorithm' section of RFC3414.  If the string starts with `Hex:`, then the remainder of the string shall be the key encoded in hexadecimal notation.  If the string starts with neither, the full string shall be a passphrase and shall be converted to the key as described in the 'Password to Key Algorithm' section of RFC3414.  The passphrase can contain any printable characters except for the double quotation mark."/>
574          <Annotation Term="Validation.Pattern" String="(^[ !#-~]+$)|(^Passphrase:[ ^[ !#-~]+$)|(^Hex:[0-9A-Fa-f]{32})|(^\*+$)"/>
575        </Property>
576        <Property Name="EncryptionProtocol" Type="ManagerAccount.v1_4_0.SNMPEncryptionProtocols">
577          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
578          <Annotation Term="OData.Description" String="The encryption protocol for SNMPv3."/>
579          <Annotation Term="OData.LongDescription" String="This property shall contain the SNMPv3 encryption protocol."/>
580        </Property>
581      </ComplexType>
582
583      <EnumType Name="SNMPAuthenticationProtocols">
584        <Member Name="None">
585          <Annotation Term="OData.Description" String="No authentication."/>
586          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication is not required."/>
587        </Member>
588        <Member Name="HMAC_MD5">
589          <Annotation Term="OData.Description" String="HMAC-MD5-96 authentication."/>
590          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication conforms to the RFC3414-defined HMAC-MD5-96 authentication protocol."/>
591        </Member>
592        <Member Name="HMAC_SHA96">
593          <Annotation Term="OData.Description" String="HMAC-SHA-96 authentication."/>
594          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication conforms to the RFC3414-defined HMAC-SHA-96 authentication protocol."/>
595        </Member>
596        <Member Name="HMAC128_SHA224">
597          <Annotation Term="OData.Description" String="HMAC-128-SHA-224 authentication."/>
598          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication for SNMPv3 access conforms to the RFC7860-defined usmHMAC128SHA224AuthProtocol."/>
599          <Annotation Term="Redfish.Revisions">
600            <Collection>
601              <Record>
602                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
603                <PropertyValue Property="Version" String="v1_7_0"/>
604              </Record>
605            </Collection>
606          </Annotation>
607        </Member>
608        <Member Name="HMAC192_SHA256">
609          <Annotation Term="OData.Description" String="HMAC-192-SHA-256 authentication."/>
610          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication for SNMPv3 access conforms to the RFC7860-defined usmHMAC192SHA256AuthProtocol."/>
611          <Annotation Term="Redfish.Revisions">
612            <Collection>
613              <Record>
614                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
615                <PropertyValue Property="Version" String="v1_7_0"/>
616              </Record>
617            </Collection>
618          </Annotation>
619        </Member>
620        <Member Name="HMAC256_SHA384">
621          <Annotation Term="OData.Description" String="HMAC-256-SHA-384 authentication."/>
622          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication for SNMPv3 access conforms to the RFC7860-defined usmHMAC256SHA384AuthProtocol."/>
623          <Annotation Term="Redfish.Revisions">
624            <Collection>
625              <Record>
626                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
627                <PropertyValue Property="Version" String="v1_7_0"/>
628              </Record>
629            </Collection>
630          </Annotation>
631        </Member>
632        <Member Name="HMAC384_SHA512">
633          <Annotation Term="OData.Description" String="HMAC-384-SHA-512 authentication."/>
634          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication for SNMPv3 access conforms to the RFC7860-defined usmHMAC384SHA512AuthProtocol."/>
635          <Annotation Term="Redfish.Revisions">
636            <Collection>
637              <Record>
638                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
639                <PropertyValue Property="Version" String="v1_7_0"/>
640              </Record>
641            </Collection>
642          </Annotation>
643        </Member>
644      </EnumType>
645
646      <EnumType Name="SNMPEncryptionProtocols">
647        <Member Name="None">
648          <Annotation Term="OData.Description" String="No encryption."/>
649          <Annotation Term="OData.LongDescription" String="This value shall indicate there is no encryption."/>
650        </Member>
651        <Member Name="CBC_DES">
652          <Annotation Term="OData.Description" String="CBC-DES encryption."/>
653          <Annotation Term="OData.LongDescription" String="This value shall indicate encryption conforms to the RFC3414-defined CBC-DES encryption protocol."/>
654        </Member>
655        <Member Name="CFB128_AES128">
656          <Annotation Term="OData.Description" String="CFB128-AES-128 encryption."/>
657          <Annotation Term="OData.LongDescription" String="This value shall indicate encryption conforms to the RFC3826-defined CFB128-AES-128 encryption protocol."/>
658        </Member>
659        <Member Name="CFB128_AES192">
660          <Annotation Term="OData.Description" String="CFB128-AES-192 encryption."/>
661          <Annotation Term="OData.LongDescription" String="This value shall indicate encryption conforms to the CFB128-AES-192 encryption protocol, extended from RFC3826."/>
662          <Annotation Term="Redfish.Revisions">
663            <Collection>
664              <Record>
665                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
666                <PropertyValue Property="Version" String="v1_12_0"/>
667              </Record>
668            </Collection>
669          </Annotation>
670        </Member>
671        <Member Name="CFB128_AES256">
672          <Annotation Term="OData.Description" String="CFB128-AES-256 encryption."/>
673          <Annotation Term="OData.LongDescription" String="This value shall indicate encryption conforms to the CFB128-AES-256 encryption protocol, extended from RFC3826."/>
674          <Annotation Term="Redfish.Revisions">
675            <Collection>
676              <Record>
677                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
678                <PropertyValue Property="Version" String="v1_12_0"/>
679              </Record>
680            </Collection>
681          </Annotation>
682        </Member>
683      </EnumType>
684    </Schema>
685
686    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_4_1">
687      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
688      <Annotation Term="OData.Description" String="This version was created to correct the description for `Enabled` to remove the tie with `Locked`."/>
689      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_4_0.ManagerAccount"/>
690    </Schema>
691
692    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_4_2">
693      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
694      <Annotation Term="OData.Description" String="This version was created to correct the description for `AuthenticationKey`, `EncryptionKey`, and `CFB128_AES128`."/>
695      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_4_1.ManagerAccount"/>
696    </Schema>
697
698    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_4_3">
699      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
700      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
701      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_4_2.ManagerAccount"/>
702    </Schema>
703
704    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_4_4">
705      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
706      <Annotation Term="OData.Description" String="This version was created to correct the description for `EncryptionKey`."/>
707      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_4_3.ManagerAccount"/>
708    </Schema>
709
710    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_4_5">
711      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
712      <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology."/>
713      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_4_4.ManagerAccount"/>
714    </Schema>
715
716    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_4_6">
717      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
718      <Annotation Term="OData.Description" String="This version was created to update the descriptions of the resource and the `AccountTypes` property to clarify intended usage."/>
719      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_4_5.ManagerAccount"/>
720    </Schema>
721
722    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_4_7">
723      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
724      <Annotation Term="OData.Description" String="This version was created to mark properties with values containing sensitive data as write-only.  It was also created to provide more details for the usage of the `Certificates` property."/>
725      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_4_6.ManagerAccount"/>
726    </Schema>
727
728    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_4_8">
729      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
730      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
731      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_4_7.ManagerAccount"/>
732    </Schema>
733
734    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_4_9">
735      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
736      <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."/>
737      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_4_8.ManagerAccount"/>
738    </Schema>
739
740    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_5_0">
741      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
742      <Annotation Term="Redfish.Release" String="2019.4"/>
743
744      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_4_1.ManagerAccount"/>
745
746      <ComplexType Name="SNMPUserInfo" BaseType="ManagerAccount.v1_4_0.SNMPUserInfo">
747        <Property Name="AuthenticationKeySet" Type="Edm.Boolean" Nullable="false">
748          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
749          <Annotation Term="OData.Description" String="Indicates if the `AuthenticationKey` property is set."/>
750          <Annotation Term="OData.LongDescription" String="This property shall contain `true` if a valid value was provided for the `AuthenticationKey` property.  Otherwise, the property shall contain `false`."/>
751        </Property>
752        <Property Name="EncryptionKeySet" Type="Edm.Boolean" Nullable="false">
753          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
754          <Annotation Term="OData.Description" String="Indicates if the `EncryptionKey` property is set."/>
755          <Annotation Term="OData.LongDescription" String="This property shall contain `true` if a valid value was provided for the `EncryptionKey` property.  Otherwise, the property shall contain `false`."/>
756        </Property>
757      </ComplexType>
758    </Schema>
759
760    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_5_1">
761      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
762      <Annotation Term="OData.Description" String="This version was created to correct the description for `AuthenticationKey`, `EncryptionKey`, and `CFB128_AES128`."/>
763      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_5_0.ManagerAccount"/>
764    </Schema>
765
766    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_5_2">
767      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
768      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
769      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_5_1.ManagerAccount"/>
770    </Schema>
771
772    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_5_3">
773      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
774      <Annotation Term="OData.Description" String="This version was created to correct the description for `EncryptionKey`."/>
775      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_5_2.ManagerAccount"/>
776    </Schema>
777
778    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_5_4">
779      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
780      <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology."/>
781      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_5_3.ManagerAccount"/>
782    </Schema>
783
784    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_5_5">
785      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
786      <Annotation Term="OData.Description" String="This version was created to update the descriptions of the resource and the `AccountTypes` property to clarify intended usage."/>
787      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_5_4.ManagerAccount"/>
788    </Schema>
789
790    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_5_6">
791      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
792      <Annotation Term="OData.Description" String="This version was created to mark properties with values containing sensitive data as write-only.  It was also created to provide more details for the usage of the `Certificates` property."/>
793      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_5_5.ManagerAccount"/>
794    </Schema>
795
796    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_5_7">
797      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
798      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
799      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_5_6.ManagerAccount"/>
800    </Schema>
801
802    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_5_8">
803      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
804      <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."/>
805      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_5_7.ManagerAccount"/>
806    </Schema>
807
808    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_6_0">
809      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
810      <Annotation Term="Redfish.Release" String="2020.1"/>
811
812      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_5_1.ManagerAccount">
813        <Property Name="PasswordExpiration" Type="Edm.DateTimeOffset" Nullable="true">
814          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
815          <Annotation Term="OData.Description" String="Indicates the date and time when this account password expires.  If `null`, the account password never expires."/>
816          <Annotation Term="OData.LongDescription" String="This property shall contain the date and time when this account password expires.  If the value is `null`, the account password never expires.  If provided during account creation or password modification, this value shall override the value of the `PasswordExpirationDays` property in the `AccountService` resource."/>
817        </Property>
818      </EntityType>
819    </Schema>
820
821    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_6_1">
822      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
823      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
824      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_6_0.ManagerAccount"/>
825    </Schema>
826
827    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_6_2">
828      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
829      <Annotation Term="OData.Description" String="This version was created to correct the description for `EncryptionKey`."/>
830      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_6_1.ManagerAccount"/>
831    </Schema>
832
833    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_6_3">
834      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
835      <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology.  It was also created to update the description of `PasswordExpiration` to tie behavior to the `PasswordExpirationDays` property in the `AccountService` resource."/>
836      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_6_2.ManagerAccount"/>
837    </Schema>
838
839    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_6_4">
840      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
841      <Annotation Term="OData.Description" String="This version was created to update the descriptions of the resource and the `AccountTypes` property to clarify intended usage."/>
842      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_6_3.ManagerAccount"/>
843    </Schema>
844
845    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_6_5">
846      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
847      <Annotation Term="OData.Description" String="This version was created to mark properties with values containing sensitive data as write-only.  It was also created to provide more details for the usage of the `Certificates` property."/>
848      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_6_4.ManagerAccount"/>
849    </Schema>
850
851    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_6_6">
852      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
853      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
854      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_6_5.ManagerAccount"/>
855    </Schema>
856
857    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_6_7">
858      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
859      <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."/>
860      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_6_6.ManagerAccount"/>
861    </Schema>
862
863    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_7_0">
864      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
865      <Annotation Term="Redfish.Release" String="2020.4"/>
866      <Annotation Term="OData.Description" String="This version was created to add additional SNMPv3 authentication protocols.  It was also created to extend the values for `AccountTypes`."/>
867
868      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_6_2.ManagerAccount">
869        <Property Name="StrictAccountTypes" Type="Edm.Boolean">
870          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
871          <Annotation Term="OData.Description" String="Indicates if the service needs to use the account types exactly as specified when the account is created or updated."/>
872          <Annotation Term="OData.LongDescription" String="This property shall indicate if the service needs to use the value of `AccountTypes` and `OEMAccountTypes` values exactly as specified.  A `true` value shall indicate the service needs to either accept the value without changes or reject the request.  A `false` value shall indicate the service may add additional `AccountTypes` and `OEMAccountTypes` values as needed to support limitations it has in separately controlling access to individual services.  If this property is not present, the value shall be assumed to be `false`.  An update of the service can cause account types to be added to or removed from the `AccountTypes` and `OEMAccountTypes` properties, regardless of the value of this property.  After a service update, clients should inspect all accounts where the value of this property is `true` and perform maintenance as needed."/>
873        </Property>
874      </EntityType>
875    </Schema>
876
877    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_7_1">
878      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
879      <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology.  It was also created to update the description of `PasswordExpiration` to tie behavior to the `PasswordExpirationDays` property in the `AccountService` resource."/>
880      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_7_0.ManagerAccount"/>
881    </Schema>
882
883    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_7_2">
884      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
885      <Annotation Term="OData.Description" String="This version was created to update the descriptions of the resource and the `AccountTypes` property to clarify intended usage."/>
886      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_7_1.ManagerAccount"/>
887    </Schema>
888
889    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_7_3">
890      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
891      <Annotation Term="OData.Description" String="This version was created to mark properties with values containing sensitive data as write-only.  It was also created to provide more details for the usage of the `Certificates` property."/>
892      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_7_2.ManagerAccount"/>
893    </Schema>
894
895    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_7_4">
896      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
897      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
898      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_7_3.ManagerAccount"/>
899    </Schema>
900
901    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_7_5">
902      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
903      <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."/>
904      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_7_4.ManagerAccount"/>
905    </Schema>
906
907    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_8_0">
908      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
909      <Annotation Term="Redfish.Release" String="2021.1"/>
910
911      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_7_1.ManagerAccount">
912        <Property Name="AccountExpiration" Type="Edm.DateTimeOffset">
913          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
914          <Annotation Term="OData.Description" String="Indicates the date and time when this account expires.  If `null`, the account never expires."/>
915          <Annotation Term="OData.LongDescription" String="This property shall contain the date and time when this account expires.  The service shall disable or delete an account that has expired.  This property shall not apply to accounts created by the Redfish Host Interface Specification-defined credential bootstrapping.  If the value is `null`, or the property is not present, the account never expires."/>
916        </Property>
917        <Property Name="HostBootstrapAccount" Type="Edm.Boolean" Nullable="false">
918          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
919          <Annotation Term="OData.Description" String="An indication of whether this account is a bootstrap account for the host interface."/>
920          <Annotation Term="OData.LongDescription" String="This property shall indicate whether this account is a bootstrap account created by the Redfish Host Interface Specification-defined credential bootstrapping."/>
921        </Property>
922      </EntityType>
923    </Schema>
924
925    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_8_1">
926      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
927      <Annotation Term="OData.Description" String="This version was created to update the descriptions of the resource and the `AccountTypes` property to clarify intended usage."/>
928      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_8_0.ManagerAccount"/>
929    </Schema>
930
931    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_8_2">
932      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
933      <Annotation Term="OData.Description" String="This version was created to mark properties with values containing sensitive data as write-only.  It was also created to provide more details for the usage of the `Certificates` property."/>
934      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_8_1.ManagerAccount"/>
935    </Schema>
936
937    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_8_3">
938      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
939      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
940      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_8_2.ManagerAccount"/>
941    </Schema>
942
943    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_8_4">
944      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
945      <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."/>
946      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_8_3.ManagerAccount"/>
947    </Schema>
948
949    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_9_0">
950      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
951      <Annotation Term="Redfish.Release" String="2022.1"/>
952
953      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_8_1.ManagerAccount">
954        <NavigationProperty Name="Keys" Type="KeyCollection.KeyCollection" ContainsTarget="true" Nullable="false">
955          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
956          <Annotation Term="OData.Description" String="The link to the collection of keys that can be used to authenticate this account.  For example, an SSH public key could be added to this collection to allow for SSH public key authentication."/>
957          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource collection of type `KeyCollection` that contains the keys that can be used to authenticate this account."/>
958        </NavigationProperty>
959      </EntityType>
960    </Schema>
961
962    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_9_1">
963      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
964      <Annotation Term="OData.Description" String="This version was created to provide more details for the usage of the `Certificates` property.  It was also created to provide more details for the usage of the `Certificates` property."/>
965      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_9_0.ManagerAccount"/>
966    </Schema>
967
968    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_9_2">
969      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
970      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
971      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_9_1.ManagerAccount"/>
972    </Schema>
973
974    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_9_3">
975      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
976      <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."/>
977      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_9_2.ManagerAccount"/>
978    </Schema>
979
980    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_10_0">
981      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
982      <Annotation Term="Redfish.Release" String="2022.3"/>
983
984      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_9_1.ManagerAccount">
985        <Property Name="MFABypass" Type="AccountService.MFABypass">
986          <Annotation Term="OData.Description" String="The multi-factor authentication bypass settings for this account."/>
987          <Annotation Term="OData.LongDescription" String="This property shall contain the multi-factor authentication bypass settings for this account."/>
988        </Property>
989      </EntityType>
990    </Schema>
991
992    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_10_1">
993      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
994      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
995      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_10_0.ManagerAccount"/>
996    </Schema>
997
998    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_10_2">
999      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1000      <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."/>
1001      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_10_1.ManagerAccount"/>
1002    </Schema>
1003
1004    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_11_0">
1005      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1006      <Annotation Term="Redfish.Release" String="2023.2"/>
1007      <Annotation Term="OData.Description" String="This version was created to add the `ChangePassword` action."/>
1008
1009      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_10_0.ManagerAccount">
1010        <Property Name="EmailAddress" Type="Edm.String">
1011          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1012          <Annotation Term="OData.Description" String="The email address associated with this account."/>
1013          <Annotation Term="OData.LongDescription" String="This property shall contain the email address associated with this account."/>
1014        </Property>
1015        <Property Name="PhoneNumber" Type="Edm.String">
1016          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1017          <Annotation Term="OData.Description" String="The contact phone number associated with this account."/>
1018          <Annotation Term="OData.LongDescription" String="This property shall contain the contact phone number associated with this account."/>
1019        </Property>
1020        <Property Name="OneTimePasscodeDeliveryAddress" Type="Edm.String">
1021          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
1022          <Annotation Term="OData.Description" String="The address used to receive one-time passcode messages for multi-factor authentication."/>
1023          <Annotation Term="OData.LongDescription" String="This property shall contain the contact address for receiving one-time passcode messages for multi-factor authentication for this account when the `Enabled` property in the `OneTimePasscode` property in `AccountService` resource contains `true`.  This is typically the contact email address associated with the account, but may be a separate, relay email address for delivery via SMS or other contact method."/>
1024        </Property>
1025      </EntityType>
1026    </Schema>
1027
1028    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_11_1">
1029      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1030      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
1031      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_11_0.ManagerAccount"/>
1032    </Schema>
1033
1034    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_11_2">
1035      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1036      <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."/>
1037      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_11_1.ManagerAccount"/>
1038    </Schema>
1039
1040    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_12_0">
1041      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1042      <Annotation Term="Redfish.Release" String="2023.3"/>
1043      <Annotation Term="OData.Description" String="This version was created to add `CFB128_AES192` and `CFB128_AES256` to `SNMPEncryptionProtocols`."/>
1044
1045      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_11_1.ManagerAccount"/>
1046    </Schema>
1047
1048    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_12_1">
1049      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
1050      <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."/>
1051      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_12_0.ManagerAccount"/>
1052    </Schema>
1053
1054  </edmx:DataServices>
1055</edmx:Edmx>
1056