1<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################       -->
4<!--# Redfish Schema:  ManagerAccount v1.6.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-2020 DMTF.                                                            -->
9<!--# For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright -->
10<!--################################################################################       -->
11<!---->
12<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0">
13
14  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Core.V1.xml">
15    <edmx:Include Namespace="Org.OData.Core.V1" Alias="OData"/>
16  </edmx:Reference>
17  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Capabilities.V1.xml">
18    <edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="Capabilities"/>
19  </edmx:Reference>
20  <edmx:Reference Uri="http://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
35  <edmx:DataServices>
36
37    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount">
38      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
39
40      <EntityType Name="ManagerAccount" BaseType="Resource.v1_0_0.Resource" Abstract="true">
41        <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."/>
42        <Annotation Term="OData.LongDescription" String="This resource shall represent a user account for the manager in a Redfish implementation."/>
43        <Annotation Term="Capabilities.InsertRestrictions">
44          <Record>
45            <PropertyValue Property="Insertable" Bool="false"/>
46          </Record>
47        </Annotation>
48        <Annotation Term="Capabilities.UpdateRestrictions">
49          <Record>
50            <PropertyValue Property="Updatable" Bool="true"/>
51            <Annotation Term="OData.Description" String="Writable properties, such as the password, can be updated for manager accounts."/>
52          </Record>
53        </Annotation>
54        <Annotation Term="Capabilities.DeleteRestrictions">
55          <Record>
56            <PropertyValue Property="Deletable" Bool="true"/>
57            <Annotation Term="OData.Description" String="Use the DELETE operation to remove manager accounts."/>
58          </Record>
59        </Annotation>
60        <Annotation Term="Redfish.Uris">
61          <Collection>
62            <String>/redfish/v1/AccountService/Accounts/{ManagerAccountId}</String>
63            <String>/redfish/v1/Managers/{ManagerId}/RemoteAccountService/Accounts/{ManagerAccountId}</String>
64          </Collection>
65        </Annotation>
66      </EntityType>
67    </Schema>
68
69    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_0_0">
70      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
71      <Annotation Term="Redfish.Release" String="1.0"/>
72
73      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.ManagerAccount">
74        <Property Name="Password" Type="Edm.String">
75          <Annotation Term="Redfish.RequiredOnCreate"/>
76          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
77          <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."/>
78          <Annotation Term="OData.LongDescription" String="This property shall contain the password for this account.  The value shall be `null` in responses."/>
79        </Property>
80        <Property Name="UserName" Type="Edm.String" Nullable="false">
81          <Annotation Term="Redfish.RequiredOnCreate"/>
82          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
83          <Annotation Term="OData.Description" String="The user name for the account."/>
84          <Annotation Term="OData.LongDescription" String="This property shall contain the user name for this account."/>
85        </Property>
86        <Property Name="RoleId" Type="Edm.String" Nullable="false">
87          <Annotation Term="Redfish.RequiredOnCreate"/>
88          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
89          <Annotation Term="OData.Description" String="The role for this account."/>
90          <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."/>
91        </Property>
92        <Property Name="Locked" Type="Edm.Boolean" Nullable="false" DefaultValue="false">
93          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
94          <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."/>
95          <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."/>
96        </Property>
97        <Property Name="Enabled" Type="Edm.Boolean" Nullable="false" DefaultValue="true">
98          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
99          <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."/>
100          <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."/>
101        </Property>
102        <Property Name="Links" Type="ManagerAccount.v1_0_0.Links" Nullable="false">
103          <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
104          <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."/>
105        </Property>
106      </EntityType>
107
108      <ComplexType Name="Links" BaseType="Resource.Links">
109        <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
110        <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."/>
111        <NavigationProperty Name="Role" Type="Role.Role" ContainsTarget="true" Nullable="false">
112          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
113          <Annotation Term="OData.Description" String="The link to the Redfish role that defines the privileges for this account."/>
114          <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."/>
115          <Annotation Term="OData.AutoExpandReferences"/>
116        </NavigationProperty>
117      </ComplexType>
118    </Schema>
119
120    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_0_2">
121      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
122      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
123      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_0_0.ManagerAccount"/>
124    </Schema>
125
126    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_0_3">
127      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
128      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
129      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_0_2.ManagerAccount"/>
130    </Schema>
131
132    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_0_4">
133      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
134      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
135      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_0_3.ManagerAccount"/>
136    </Schema>
137
138    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_0_5">
139      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
140      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
141      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_0_4.ManagerAccount"/>
142    </Schema>
143
144    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_0_6">
145      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
146      <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."/>
147      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_0_5.ManagerAccount"/>
148    </Schema>
149
150    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_0_7">
151      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
152      <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."/>
153      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_0_6.ManagerAccount"/>
154    </Schema>
155
156    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_0_8">
157      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
158      <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."/>
159      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_0_7.ManagerAccount"/>
160    </Schema>
161
162    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_0_9">
163      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
164      <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."/>
165      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_0_8.ManagerAccount"/>
166    </Schema>
167
168    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_0_10">
169      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
170      <Annotation Term="OData.Description" String="This version was created to correct the description for Enabled to remove the tie with Locked."/>
171      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_0_9.ManagerAccount"/>
172    </Schema>
173
174    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_0_11">
175      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
176      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
177      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_0_10.ManagerAccount"/>
178    </Schema>
179
180    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_1_0">
181      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
182      <Annotation Term="Redfish.Release" String="2017.1"/>
183
184      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_0_4.ManagerAccount">
185        <Property Name="Actions" Type="ManagerAccount.v1_1_0.Actions" Nullable="false">
186          <Annotation Term="OData.Description" String="The available actions for this resource."/>
187          <Annotation Term="OData.LongDescription" String="The actions property shall contain the available actions for this resource."/>
188        </Property>
189      </EntityType>
190
191      <ComplexType Name="Actions">
192        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
193        <Annotation Term="OData.Description" String="The available actions for this resource."/>
194        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
195        <Property Name="Oem" Type="ManagerAccount.v1_1_0.OemActions" Nullable="false">
196          <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
197          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
198        </Property>
199      </ComplexType>
200
201      <ComplexType Name="OemActions">
202        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
203        <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
204        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
205      </ComplexType>
206    </Schema>
207
208    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_1_1">
209      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
210      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
211      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_1_0.ManagerAccount"/>
212    </Schema>
213
214    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_1_2">
215      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
216      <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."/>
217      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_1_1.ManagerAccount"/>
218    </Schema>
219
220    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_1_3">
221      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
222      <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."/>
223      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_1_2.ManagerAccount"/>
224    </Schema>
225
226    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_1_4">
227      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
228      <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."/>
229      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_1_3.ManagerAccount"/>
230    </Schema>
231
232    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_1_5">
233      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
234      <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."/>
235      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_1_4.ManagerAccount"/>
236    </Schema>
237
238    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_1_6">
239      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
240      <Annotation Term="OData.Description" String="This version was created to correct the description for Enabled to remove the tie with Locked."/>
241      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_1_5.ManagerAccount"/>
242    </Schema>
243
244    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_1_7">
245      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
246      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
247      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_1_6.ManagerAccount"/>
248    </Schema>
249
250    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_2_0">
251      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
252      <Annotation Term="Redfish.Release" String="2018.3"/>
253
254      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_1_3.ManagerAccount">
255        <NavigationProperty Name="Certificates" Type="CertificateCollection.CertificateCollection" ContainsTarget="true" Nullable="false">
256          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
257          <Annotation Term="OData.Description" String="The link to a collection of certificates used for this account."/>
258          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource collection of type CertificateCollection."/>
259          <Annotation Term="OData.AutoExpandReferences"/>
260        </NavigationProperty>
261      </EntityType>
262    </Schema>
263
264    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_2_1">
265      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
266      <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."/>
267      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_2_0.ManagerAccount"/>
268    </Schema>
269
270    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_2_2">
271      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
272      <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."/>
273      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_2_1.ManagerAccount"/>
274    </Schema>
275
276    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_2_3">
277      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
278      <Annotation Term="OData.Description" String="This version was created to correct the description for Enabled to remove the tie with Locked."/>
279      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_2_2.ManagerAccount"/>
280    </Schema>
281
282    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_2_4">
283      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
284      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
285      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_2_3.ManagerAccount"/>
286    </Schema>
287
288    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_3_0">
289      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
290      <Annotation Term="Redfish.Release" String="2019.1"/>
291
292      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_2_1.ManagerAccount">
293        <Property Name="PasswordChangeRequired" Type="Edm.Boolean">
294          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
295          <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."/>
296          <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 might deny access to the service if the password has not been changed.  A manager account created with an initial PasswordChangeRequired value of `true` might 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`."/>
297        </Property>
298      </EntityType>
299    </Schema>
300
301    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_3_1">
302      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
303      <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."/>
304      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_3_0.ManagerAccount"/>
305    </Schema>
306
307    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_3_2">
308      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
309      <Annotation Term="OData.Description" String="This version was created to correct the description for Enabled to remove the tie with Locked."/>
310      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_3_1.ManagerAccount"/>
311    </Schema>
312
313    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_3_3">
314      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
315      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
316      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_3_2.ManagerAccount"/>
317    </Schema>
318
319    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_4_0">
320      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
321      <Annotation Term="Redfish.Release" String="2019.3"/>
322
323      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_3_0.ManagerAccount">
324        <Property Name="SNMP" Type="ManagerAccount.v1_4_0.SNMPUserInfo">
325          <Annotation Term="OData.Description" String="The SNMP settings for this account."/>
326          <Annotation Term="OData.LongDescription" String="This property shall contain the SNMP settings for this account when AccountTypes contains `SNMP`."/>
327        </Property>
328        <Property Name="AccountTypes" Type="Collection(ManagerAccount.v1_4_0.AccountTypes)">
329          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
330          <Annotation Term="OData.Description" String="The account types."/>
331          <Annotation Term="OData.LongDescription" String="This property shall contain an array of the various account types that apply to the account.  If this property is not provided by the client, the default value shall be an array with the single value `Redfish`."/>
332          <Annotation Term="Redfish.Required"/>
333        </Property>
334        <Property Name="OEMAccountTypes" Type="Collection(Edm.String)">
335          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
336          <Annotation Term="OData.Description" String="The OEM account types."/>
337          <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`."/>
338        </Property>
339      </EntityType>
340
341      <ComplexType Name="SNMPUserInfo">
342        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
343        <Annotation Term="OData.Description" String="The SNMP settings for an account."/>
344        <Annotation Term="OData.LongDescription" String="This object shall contain the SNMP settings for an account."/>
345        <Property Name="AuthenticationKey" Type="Edm.String">
346          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
347          <Annotation Term="OData.Description" String="The secret authentication key for SNMPv3."/>
348          <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."/>
349          <Annotation Term="Validation.Pattern" String="(^[ !#-~]+$)|(^Passphrase:[ ^[ !#-~]+$)|(^Hex:[0-9A-Fa-f]{24})|(^\*+$)"/>
350        </Property>
351        <Property Name="AuthenticationProtocol" Type="ManagerAccount.v1_4_0.SNMPAuthenticationProtocols">
352          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
353          <Annotation Term="OData.Description" String="The authentication protocol for SNMPv3."/>
354          <Annotation Term="OData.LongDescription" String="This property shall contain the SNMPv3 authentication protocol."/>
355        </Property>
356        <Property Name="EncryptionKey" Type="Edm.String">
357          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
358          <Annotation Term="OData.Description" String="The secret authentication key used in SNMPv3."/>
359          <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."/>
360          <Annotation Term="Validation.Pattern" String="(^[ !#-~]+$)|(^Passphrase:[ ^[ !#-~]+$)|(^Hex:[0-9A-Fa-f]{32})|(^\*+$)"/>
361        </Property>
362        <Property Name="EncryptionProtocol" Type="ManagerAccount.v1_4_0.SNMPEncryptionProtocols">
363          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
364          <Annotation Term="OData.Description" String="The encryption protocol for SNMPv3."/>
365          <Annotation Term="OData.LongDescription" String="This property shall contain the SNMPv3 encryption protocol."/>
366        </Property>
367      </ComplexType>
368
369      <EnumType Name="AccountTypes">
370        <Member Name="Redfish">
371          <Annotation Term="OData.Description" String="Allow access to the Redfish service."/>
372        </Member>
373        <Member Name="SNMP">
374          <Annotation Term="OData.Description" String="Allow access to SNMP services."/>
375        </Member>
376        <Member Name="OEM">
377          <Annotation Term="OData.Description" String="OEM account type."/>
378        </Member>
379      </EnumType>
380
381      <EnumType Name="SNMPAuthenticationProtocols">
382        <Member Name="None">
383          <Annotation Term="OData.Description" String="No authentication."/>
384          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication is not required."/>
385        </Member>
386        <Member Name="HMAC_MD5">
387          <Annotation Term="OData.Description" String="HMAC-MD5-96 authentication."/>
388          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication conforms to the RFC3414-defined HMAC-MD5-96 authentication protocol."/>
389        </Member>
390        <Member Name="HMAC_SHA96">
391          <Annotation Term="OData.Description" String="HMAC-SHA-96 authentication."/>
392          <Annotation Term="OData.LongDescription" String="This value shall indicate authentication conforms to the RFC3414-defined HMAC-SHA-96 authentication protocol."/>
393        </Member>
394      </EnumType>
395
396      <EnumType Name="SNMPEncryptionProtocols">
397        <Member Name="None">
398          <Annotation Term="OData.Description" String="No encryption."/>
399          <Annotation Term="OData.LongDescription" String="This value shall indicate there is no encryption."/>
400        </Member>
401        <Member Name="CBC_DES">
402          <Annotation Term="OData.Description" String="CBC-DES encryption."/>
403          <Annotation Term="OData.LongDescription" String="This value shall indicate encryption conforms to the RFC3414-defined CBC-DES encryption protocol."/>
404        </Member>
405        <Member Name="CFB128_AES128">
406          <Annotation Term="OData.Description" String="CFB128-AES-128 encryption."/>
407          <Annotation Term="OData.LongDescription" String="This value shall indicate encryption conforms to the RFC3826-defined CFB128-AES-128 encryption protocol."/>
408        </Member>
409      </EnumType>
410    </Schema>
411
412    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_4_1">
413      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
414      <Annotation Term="OData.Description" String="This version was created to correct the description for Enabled to remove the tie with Locked."/>
415      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_4_0.ManagerAccount"/>
416    </Schema>
417
418    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_4_2">
419      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
420      <Annotation Term="OData.Description" String="This version was created to correct the description for AuthenticationKey, EncryptionKey, and CFB128_AES128."/>
421      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_4_1.ManagerAccount"/>
422    </Schema>
423
424    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_4_3">
425      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
426      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
427      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_4_2.ManagerAccount"/>
428    </Schema>
429
430    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_5_0">
431      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
432      <Annotation Term="Redfish.Release" String="2019.4"/>
433
434      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_4_1.ManagerAccount"/>
435
436      <ComplexType Name="SNMPUserInfo" BaseType="ManagerAccount.v1_4_0.SNMPUserInfo">
437        <Property Name="AuthenticationKeySet" Type="Edm.Boolean" Nullable="false">
438          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
439          <Annotation Term="OData.Description" String="Indicates if the AuthenticationKey property is set."/>
440          <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`."/>
441        </Property>
442        <Property Name="EncryptionKeySet" Type="Edm.Boolean" Nullable="false">
443          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
444          <Annotation Term="OData.Description" String="Indicates if the EncryptionKey property is set."/>
445          <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`."/>
446        </Property>
447      </ComplexType>
448    </Schema>
449
450    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_5_1">
451      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
452      <Annotation Term="OData.Description" String="This version was created to correct the description for AuthenticationKey, EncryptionKey, and CFB128_AES128."/>
453      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_5_0.ManagerAccount"/>
454    </Schema>
455
456    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_5_2">
457      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
458      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
459      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_5_1.ManagerAccount"/>
460    </Schema>
461
462    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_6_0">
463      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
464      <Annotation Term="Redfish.Release" String="2020.1"/>
465      <Annotation Term="OData.Description" String="This version was created to add the PasswordExpiration property."/>
466
467      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_5_1.ManagerAccount">
468        <Property Name="PasswordExpiration" Type="Edm.DateTimeOffset" Nullable="true">
469          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
470          <Annotation Term="OData.Description" String="Indicates the date and time when this account password expires.  If `null`, the account password never expires."/>
471          <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."/>
472        </Property>
473      </EntityType>
474    </Schema>
475
476    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ManagerAccount.v1_6_1">
477      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
478      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
479      <EntityType Name="ManagerAccount" BaseType="ManagerAccount.v1_6_0.ManagerAccount"/>
480    </Schema>
481
482  </edmx:DataServices>
483</edmx:Edmx>
484