1<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################       -->
4<!--# Redfish Schema:  Session v1.7.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-2023 DMTF.                                                            -->
9<!--# For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright -->
10<!--################################################################################       -->
11<!---->
12<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0">
13
14  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Core.V1.xml">
15    <edmx:Include Namespace="Org.OData.Core.V1" Alias="OData"/>
16  </edmx:Reference>
17  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Capabilities.V1.xml">
18    <edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="Capabilities"/>
19  </edmx:Reference>
20  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
21    <edmx:Include Namespace="Resource"/>
22    <edmx:Include Namespace="Resource.v1_0_0"/>
23  </edmx:Reference>
24  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
25    <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
26  </edmx:Reference>
27  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/OutboundConnection_v1.xml">
28    <edmx:Include Namespace="OutboundConnection"/>
29  </edmx:Reference>
30
31  <edmx:DataServices>
32
33    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session">
34      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
35
36      <EntityType Name="Session" BaseType="Resource.v1_0_0.Resource" Abstract="true">
37        <Annotation Term="OData.Description" String="The Session resource describes a single connection (session) between a client and a Redfish service instance."/>
38        <Annotation Term="OData.LongDescription" String="This resource shall represent a session for a Redfish implementation."/>
39        <Annotation Term="Capabilities.InsertRestrictions">
40          <Record>
41            <PropertyValue Property="Insertable" Bool="false"/>
42          </Record>
43        </Annotation>
44        <Annotation Term="Capabilities.UpdateRestrictions">
45          <Record>
46            <PropertyValue Property="Updatable" Bool="false"/>
47          </Record>
48        </Annotation>
49        <Annotation Term="Capabilities.DeleteRestrictions">
50          <Record>
51            <PropertyValue Property="Deletable" Bool="true"/>
52            <Annotation Term="OData.Description" String="Delete the Session resource to remove a session."/>
53          </Record>
54        </Annotation>
55        <Annotation Term="Redfish.Uris">
56          <Collection>
57            <String>/redfish/v1/SessionService/Sessions/{SessionId}</String>
58          </Collection>
59        </Annotation>
60      </EntityType>
61    </Schema>
62
63    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_0_0">
64      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
65      <Annotation Term="Redfish.Release" String="1.0"/>
66
67      <EntityType Name="Session" BaseType="Session.Session">
68        <Property Name="UserName" Type="Edm.String">
69          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
70          <Annotation Term="Redfish.RequiredOnCreate"/>
71          <Annotation Term="OData.Description" String="The username for the account for this session."/>
72          <Annotation Term="OData.LongDescription" String="This property shall contain the username that matches an account recognized by the account service.  When a creating a session through a Redfish host interface using an `AuthNone` role, the property shall contain an empty string in the request body."/>
73        </Property>
74        <Property Name="Password" Type="Edm.String">
75          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/None"/>
76          <Annotation Term="Redfish.RequiredOnCreate"/>
77          <Annotation Term="OData.Description" String="The password for this session.  The value is `null` in responses."/>
78          <Annotation Term="OData.LongDescription" String="This property shall contain the password for this session.  The value shall be `null` in responses.  When creating a session through a Redfish host interface using an `AuthNone` role, the property shall contain an empty string in the request body."/>
79        </Property>
80      </EntityType>
81    </Schema>
82
83    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_0_2">
84      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
85      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
86      <EntityType Name="Session" BaseType="Session.v1_0_0.Session"/>
87    </Schema>
88
89    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_0_3">
90      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
91      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
92      <EntityType Name="Session" BaseType="Session.v1_0_2.Session"/>
93    </Schema>
94
95    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_0_4">
96      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
97      <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."/>
98      <EntityType Name="Session" BaseType="Session.v1_0_3.Session"/>
99    </Schema>
100
101    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_0_5">
102      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
103      <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."/>
104      <EntityType Name="Session" BaseType="Session.v1_0_4.Session"/>
105    </Schema>
106
107    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_0_6">
108      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
109      <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."/>
110      <EntityType Name="Session" BaseType="Session.v1_0_5.Session"/>
111    </Schema>
112
113    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_0_7">
114      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
115      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
116      <EntityType Name="Session" BaseType="Session.v1_0_6.Session"/>
117    </Schema>
118
119    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_0_8">
120      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
121      <Annotation Term="OData.Description" String="This version was created to mark properties with values containing sensitive data as write-only."/>
122      <EntityType Name="Session" BaseType="Session.v1_0_7.Session"/>
123    </Schema>
124
125    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_0_9">
126      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
127      <Annotation Term="OData.Description" String="This version was created to specify how to create a session over a Redfish host interface using an `AuthNone` role."/>
128      <EntityType Name="Session" BaseType="Session.v1_0_8.Session"/>
129    </Schema>
130
131    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_1_0">
132      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
133      <Annotation Term="Redfish.Release" String="2017.1"/>
134
135      <EntityType Name="Session" BaseType="Session.v1_0_3.Session">
136        <Property Name="Actions" Type="Session.v1_1_0.Actions" Nullable="false">
137          <Annotation Term="OData.Description" String="The available actions for this resource."/>
138          <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
139        </Property>
140      </EntityType>
141
142      <ComplexType Name="Actions">
143        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
144        <Annotation Term="OData.Description" String="The available actions for this resource."/>
145        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
146        <Property Name="Oem" Type="Session.v1_1_0.OemActions" Nullable="false">
147          <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
148          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
149        </Property>
150      </ComplexType>
151
152      <ComplexType Name="OemActions">
153        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
154        <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
155        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
156      </ComplexType>
157    </Schema>
158
159    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_1_1">
160      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
161      <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."/>
162      <EntityType Name="Session" BaseType="Session.v1_1_0.Session"/>
163    </Schema>
164
165    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_1_2">
166      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
167      <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."/>
168      <EntityType Name="Session" BaseType="Session.v1_1_1.Session"/>
169    </Schema>
170
171    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_1_3">
172      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
173      <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."/>
174      <EntityType Name="Session" BaseType="Session.v1_1_2.Session"/>
175    </Schema>
176
177    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_1_4">
178      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
179      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
180      <EntityType Name="Session" BaseType="Session.v1_1_3.Session"/>
181    </Schema>
182
183    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_1_5">
184      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
185      <Annotation Term="OData.Description" String="This version was created to mark properties with values containing sensitive data as write-only."/>
186      <EntityType Name="Session" BaseType="Session.v1_1_4.Session"/>
187    </Schema>
188
189    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_1_6">
190      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
191      <Annotation Term="OData.Description" String="This version was created to specify how to create a session over a Redfish host interface using an `AuthNone` role."/>
192      <EntityType Name="Session" BaseType="Session.v1_1_5.Session"/>
193    </Schema>
194
195    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_2_0">
196      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
197      <Annotation Term="Redfish.Release" String="2019.1"/>
198
199      <EntityType Name="Session" BaseType="Session.v1_1_2.Session">
200        <Property Name="SessionType" Type="Session.v1_2_0.SessionTypes">
201          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
202          <Annotation Term="OData.Description" String="The active session type."/>
203          <Annotation Term="OData.LongDescription" String="This property shall represent the type of session that is currently active."/>
204        </Property>
205        <Property Name="OemSessionType" Type="Edm.String">
206          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
207          <Annotation Term="OData.Description" String="The active OEM-defined session type."/>
208          <Annotation Term="OData.LongDescription" String="This property shall contain the OEM-specific session type that is currently active if SessionType contains `OEM`."/>
209        </Property>
210      </EntityType>
211
212      <EnumType Name="SessionTypes">
213        <Member Name="HostConsole">
214          <Annotation Term="OData.Description" String="The host's console, which could be connected through Telnet, SSH, or another protocol."/>
215          <Annotation Term="OData.LongDescription" String="This value shall indicate the session is the host's console, which could be connected through Telnet, SSH, or another protocol.  If this session is terminated or deleted, the service shall close the connection for the respective host console session."/>
216        </Member>
217        <Member Name="ManagerConsole">
218          <Annotation Term="OData.Description" String="The manager's console, which could be connected through Telnet, SSH, SM CLP, or another protocol."/>
219          <Annotation Term="OData.LongDescription" String="This value shall indicate the session is the manager's console, which could be connected through Telnet, SSH, SM CLP, or another protocol.  If this session is terminated or deleted, the service shall close the connection for the respective manager console session."/>
220        </Member>
221        <Member Name="IPMI">
222          <Annotation Term="OData.Description" String="Intelligent Platform Management Interface."/>
223          <Annotation Term="OData.LongDescription" String="This value shall indicate the session is an Intelligent Platform Management Interface session.  If this session is terminated or deleted, the service shall close the connection for the respective IPMI session."/>
224        </Member>
225        <Member Name="KVMIP">
226          <Annotation Term="OData.Description" String="A Keyboard-Video-Mouse over IP session."/>
227          <Annotation Term="OData.LongDescription" String="This value shall indicate the session is a Keyboard-Video-Mouse over IP session.  If this session is terminated or deleted, the service shall close the connection for the respective KVM-IP session."/>
228        </Member>
229        <Member Name="OEM">
230          <Annotation Term="OData.Description" String="OEM type.  For OEM session types, see the OemSessionType property."/>
231          <Annotation Term="OData.LongDescription" String="This value shall indicate the session is an OEM-specific session and is further described by the OemSessionType property."/>
232        </Member>
233        <Member Name="Redfish">
234          <Annotation Term="OData.Description" String="A Redfish session."/>
235          <Annotation Term="OData.LongDescription" String="This value shall indicate the session is a Redfish session defined by the 'Redfish session login authentication' clause of the Redfish Specification.  If this session is terminated or deleted, the service shall invalidate the respective session token."/>
236        </Member>
237        <Member Name="VirtualMedia">
238          <Annotation Term="OData.Description" String="Virtual media."/>
239          <Annotation Term="OData.LongDescription" String="This value shall indicate the session is a virtual media session.  If this session is terminated or deleted, the service shall close the connection for the respective virtual media session and make the media inaccessible to the host."/>
240        </Member>
241        <Member Name="WebUI">
242          <Annotation Term="OData.Description" String="A non-Redfish web user interface session, such as a graphical interface or another web-based protocol."/>
243          <Annotation Term="OData.LongDescription" String="This value shall indicate the session is a non-Redfish web user interface session.  If this session is terminated or deleted, the service shall invalidate the respective session token."/>
244        </Member>
245        <Member Name="OutboundConnection">
246          <Annotation Term="OData.Description" String="A Redfish Specification-defined outbound connection.  See the 'Outbound connections' clause of the Redfish Specification."/>
247          <Annotation Term="OData.LongDescription" String="This value shall indicate the session is an outbound connection defined by the 'Outbound connections' clause of the Redfish Specification.  The `OutboundConnection` property inside the `Links` property shall contain the link to the outbound connection configuration.  If this session is terminated or deleted, the service shall disable the associated `OutboundConnection` resource."/>
248          <Annotation Term="Redfish.Revisions">
249            <Collection>
250              <Record>
251                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
252                <PropertyValue Property="Version" String="v1_7_0"/>
253              </Record>
254            </Collection>
255          </Annotation>
256        </Member>
257      </EnumType>
258    </Schema>
259
260    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_2_1">
261      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
262      <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."/>
263      <EntityType Name="Session" BaseType="Session.v1_2_0.Session"/>
264    </Schema>
265
266    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_2_2">
267      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
268      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
269      <EntityType Name="Session" BaseType="Session.v1_2_1.Session"/>
270    </Schema>
271
272    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_2_3">
273      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
274      <Annotation Term="OData.Description" String="This version was created to mark properties with values containing sensitive data as write-only."/>
275      <EntityType Name="Session" BaseType="Session.v1_2_2.Session"/>
276    </Schema>
277
278    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_2_4">
279      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
280      <Annotation Term="OData.Description" String="This version was created to add long descriptions to the values for SessionType."/>
281      <EntityType Name="Session" BaseType="Session.v1_2_3.Session"/>
282    </Schema>
283
284    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_2_5">
285      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
286      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors.  It was also created to specify how to create a session over a Redfish host interface using an `AuthNone` role."/>
287      <EntityType Name="Session" BaseType="Session.v1_2_4.Session"/>
288    </Schema>
289
290    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_3_0">
291      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
292      <Annotation Term="Redfish.Release" String="2020.3"/>
293
294      <EntityType Name="Session" BaseType="Session.v1_2_1.Session">
295        <Property Name="ClientOriginIPAddress" Type="Edm.String">
296          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
297          <Annotation Term="OData.Description" String="The IP address of the client that created the session."/>
298          <Annotation Term="OData.LongDescription" String="This property shall contain the IP address of the client that created the session."/>
299        </Property>
300      </EntityType>
301    </Schema>
302
303    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_3_1">
304      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
305      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
306      <EntityType Name="Session" BaseType="Session.v1_3_0.Session"/>
307    </Schema>
308
309    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_3_2">
310      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
311      <Annotation Term="OData.Description" String="This version was created to mark properties with values containing sensitive data as write-only."/>
312      <EntityType Name="Session" BaseType="Session.v1_3_1.Session"/>
313    </Schema>
314
315    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_3_3">
316      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
317      <Annotation Term="OData.Description" String="This version was created to add long descriptions to the values for SessionType."/>
318      <EntityType Name="Session" BaseType="Session.v1_3_2.Session"/>
319    </Schema>
320
321    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_3_4">
322      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
323      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors.  It was also created to specify how to create a session over a Redfish host interface using an `AuthNone` role."/>
324      <EntityType Name="Session" BaseType="Session.v1_3_3.Session"/>
325    </Schema>
326
327    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_4_0">
328      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
329      <Annotation Term="Redfish.Release" String="2022.1"/>
330
331      <EntityType Name="Session" BaseType="Session.v1_3_1.Session">
332        <Property Name="CreatedTime" Type="Edm.DateTimeOffset">
333          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
334          <Annotation Term="OData.Description" String="The date and time when the session was created."/>
335          <Annotation Term="OData.LongDescription" String="This property shall contain the date and time when the session was created."/>
336        </Property>
337      </EntityType>
338    </Schema>
339
340    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_4_1">
341      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
342      <Annotation Term="OData.Description" String="This version was created to mark properties with values containing sensitive data as write-only."/>
343      <EntityType Name="Session" BaseType="Session.v1_4_0.Session"/>
344    </Schema>
345
346    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_4_2">
347      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
348      <Annotation Term="OData.Description" String="This version was created to add long descriptions to the values for SessionType."/>
349      <EntityType Name="Session" BaseType="Session.v1_4_1.Session"/>
350    </Schema>
351
352    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_4_3">
353      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
354      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors.  It was also created to specify how to create a session over a Redfish host interface using an `AuthNone` role."/>
355      <EntityType Name="Session" BaseType="Session.v1_4_2.Session"/>
356    </Schema>
357
358    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_5_0">
359      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
360      <Annotation Term="Redfish.Release" String="2022.2"/>
361
362      <EntityType Name="Session" BaseType="Session.v1_4_0.Session">
363        <Property Name="Context" Type="Edm.String">
364          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
365          <Annotation Term="OData.Description" String="A client-supplied string that is stored with the session."/>
366          <Annotation Term="OData.LongDescription" String="This property shall contain a client-supplied context that remains with the session through the session's lifetime."/>
367        </Property>
368      </EntityType>
369    </Schema>
370
371    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_5_1">
372      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
373      <Annotation Term="OData.Description" String="This version was created to mark properties with values containing sensitive data as write-only."/>
374      <EntityType Name="Session" BaseType="Session.v1_5_0.Session"/>
375    </Schema>
376
377    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_5_2">
378      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
379      <Annotation Term="OData.Description" String="This version was created to add long descriptions to the values for SessionType."/>
380      <EntityType Name="Session" BaseType="Session.v1_5_1.Session"/>
381    </Schema>
382
383    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_5_3">
384      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
385      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors.  It was also created to specify how to create a session over a Redfish host interface using an `AuthNone` role."/>
386      <EntityType Name="Session" BaseType="Session.v1_5_2.Session"/>
387    </Schema>
388
389    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_6_0">
390      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
391      <Annotation Term="Redfish.Release" String="2022.3"/>
392
393      <EntityType Name="Session" BaseType="Session.v1_5_1.Session">
394        <Property Name="Token" Type="Edm.String">
395          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/None"/>
396          <Annotation Term="OData.Description" String="The multi-factor authentication token for this session.  The value is `null` in responses."/>
397          <Annotation Term="OData.LongDescription" String="This property shall contain the multi-factor authentication token for this session.  The value shall be `null` in responses."/>
398        </Property>
399      </EntityType>
400    </Schema>
401
402    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_6_1">
403      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
404      <Annotation Term="OData.Description" String="This version was created to add long descriptions to the values for SessionType."/>
405      <EntityType Name="Session" BaseType="Session.v1_6_0.Session"/>
406    </Schema>
407
408    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_6_2">
409      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
410      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors.  It was also created to specify how to create a session over a Redfish host interface using an `AuthNone` role."/>
411      <EntityType Name="Session" BaseType="Session.v1_6_1.Session"/>
412    </Schema>
413
414    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_7_0">
415      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
416      <Annotation Term="Redfish.Release" String="2023.2"/>
417      <Annotation Term="OData.Description" String="This version was created to add the `OutboundConnection` value to the SessionTypes."/>
418
419      <EntityType Name="Session" BaseType="Session.v1_6_1.Session">
420        <Property Name="Roles" Type="Collection(Edm.String)">
421          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
422          <Annotation Term="OData.Description" String="The Redfish roles that contain the privileges of this session."/>
423          <Annotation Term="OData.LongDescription" String="This property shall contain the Redfish roles that contain the privileges of this session."/>
424        </Property>
425        <Property Name="Links" Type="Session.v1_7_0.Links" Nullable="false">
426          <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
427          <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."/>
428        </Property>
429      </EntityType>
430
431      <ComplexType Name="Links" BaseType="Resource.Links">
432        <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
433        <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."/>
434        <NavigationProperty Name="OutboundConnection" Type="OutboundConnection.OutboundConnection">
435          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
436          <Annotation Term="OData.Description" String="The outbound connection associated with this session."/>
437          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource type OutboundConnection that represents the outbound connection for this session.  This property shall be present if SessionType contains `OutboundConnection`."/>
438          <Annotation Term="OData.AutoExpandReferences"/>
439        </NavigationProperty>
440      </ComplexType>
441    </Schema>
442
443    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_7_1">
444      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
445      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors.  It was also created to specify how to create a session over a Redfish host interface using an `AuthNone` role."/>
446      <EntityType Name="Session" BaseType="Session.v1_7_0.Session"/>
447    </Schema>
448
449  </edmx:DataServices>
450</edmx:Edmx>
451