1<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################       -->
4<!--# Redfish Schema:  SessionService v1.1.9                                               -->
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://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Measures.V1.xml">
21    <edmx:Include Namespace="Org.OData.Measures.V1" Alias="Measures"/>
22  </edmx:Reference>
23  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
24    <edmx:Include Namespace="Validation.v1_0_0" Alias="Validation"/>
25    <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
26  </edmx:Reference>
27  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
28    <edmx:Include Namespace="Resource"/>
29    <edmx:Include Namespace="Resource.v1_0_0"/>
30  </edmx:Reference>
31  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/SessionCollection_v1.xml">
32    <edmx:Include Namespace="SessionCollection"/>
33  </edmx:Reference>
34
35  <edmx:DataServices>
36
37    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService">
38      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
39      <Annotation Term="Redfish.Language" String="en"/>
40
41      <EntityType Name="SessionService" BaseType="Resource.v1_0_0.Resource" Abstract="true">
42        <Annotation Term="OData.Description" String="The `SessionService` schema describes the session service and its properties, with links to the actual list of sessions."/>
43        <Annotation Term="OData.LongDescription" String="This resource contains the session service properties for a Redfish implementation."/>
44        <Annotation Term="Capabilities.InsertRestrictions">
45          <Record>
46            <PropertyValue Property="Insertable" Bool="false"/>
47          </Record>
48        </Annotation>
49        <Annotation Term="Capabilities.UpdateRestrictions">
50          <Record>
51            <PropertyValue Property="Updatable" Bool="true"/>
52            <Annotation Term="OData.Description" String="The session service can be updated to enable or disable it and change its timeout."/>
53          </Record>
54        </Annotation>
55        <Annotation Term="Capabilities.DeleteRestrictions">
56          <Record>
57            <PropertyValue Property="Deletable" Bool="false"/>
58          </Record>
59        </Annotation>
60        <Annotation Term="Redfish.Uris">
61          <Collection>
62            <String>/redfish/v1/SessionService</String>
63          </Collection>
64        </Annotation>
65      </EntityType>
66    </Schema>
67
68    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_0_0">
69      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
70      <Annotation Term="Redfish.Release" String="1.0"/>
71
72      <EntityType Name="SessionService" BaseType="SessionService.SessionService">
73        <Property Name="Status" Type="Resource.Status" Nullable="false">
74          <Annotation Term="OData.Description" String="The status and health of the resource and its subordinate or dependent resources."/>
75          <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
76        </Property>
77        <Property Name="ServiceEnabled" Type="Edm.Boolean">
78          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
79          <Annotation Term="OData.Description" String="An indication of whether this service is enabled.  If `true`, this service is enabled.  If `false`, it is disabled, and new sessions cannot be created, old sessions cannot be deleted, and established sessions can continue operating."/>
80          <Annotation Term="OData.LongDescription" String="This property shall indicate whether this service is enabled.  If `true`, this service is enabled.  If `false`, it is disabled, and new sessions shall not be created, old sessions shall not be deleted, and established sessions can continue operating."/>
81        </Property>
82        <Property Name="SessionTimeout" Type="Edm.Int64" Nullable="false">
83          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
84          <Annotation Term="OData.Description" String="The number of seconds of inactivity that a session can have before the session service closes the session due to inactivity."/>
85          <Annotation Term="OData.LongDescription" String="This property shall contain the threshold of time in seconds between requests on a specific session at which point the session service shall close the session due to inactivity.  The session service shall support any value between the schema-specified minimum and maximum terms."/>
86          <Annotation Term="Validation.Minimum" Int="30"/>
87          <Annotation Term="Validation.Maximum" Int="86400"/>
88          <Annotation Term="Measures.Unit" String="s"/>
89        </Property>
90        <NavigationProperty Name="Sessions" Type="SessionCollection.SessionCollection" ContainsTarget="true" Nullable="false">
91          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
92          <Annotation Term="OData.Description" String="The link to a collection of sessions."/>
93          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource collection of type `SessionCollection`."/>
94          <Annotation Term="OData.AutoExpandReferences"/>
95        </NavigationProperty>
96      </EntityType>
97    </Schema>
98
99    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_0_2">
100      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
101      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
102      <EntityType Name="SessionService" BaseType="SessionService.v1_0_0.SessionService"/>
103    </Schema>
104
105    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_0_3">
106      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
107      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
108      <EntityType Name="SessionService" BaseType="SessionService.v1_0_2.SessionService"/>
109    </Schema>
110
111    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_0_4">
112      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
113      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated.  In this case, `ServiceEnabled` description was updated."/>
114      <EntityType Name="SessionService" BaseType="SessionService.v1_0_3.SessionService"/>
115    </Schema>
116
117    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_0_5">
118      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
119      <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.  It also clarifies the behavior when `ServiceEnabled` is `false`."/>
120      <EntityType Name="SessionService" BaseType="SessionService.v1_0_4.SessionService"/>
121    </Schema>
122
123    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_0_6">
124      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
125      <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."/>
126      <EntityType Name="SessionService" BaseType="SessionService.v1_0_5.SessionService"/>
127    </Schema>
128
129    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_0_7">
130      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
131      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
132      <EntityType Name="SessionService" BaseType="SessionService.v1_0_6.SessionService"/>
133    </Schema>
134
135    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_0_8">
136      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
137      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
138      <EntityType Name="SessionService" BaseType="SessionService.v1_0_7.SessionService"/>
139    </Schema>
140
141    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_0_9">
142      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
143      <Annotation Term="OData.Description" String="This version was created to specify 64-bit integers in OpenAPI."/>
144      <EntityType Name="SessionService" BaseType="SessionService.v1_0_8.SessionService"/>
145    </Schema>
146
147    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_0_10">
148      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
149      <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."/>
150      <EntityType Name="SessionService" BaseType="SessionService.v1_0_9.SessionService"/>
151    </Schema>
152
153    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_1_0">
154      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
155      <Annotation Term="Redfish.Release" String="2016.2"/>
156
157      <EntityType Name="SessionService" BaseType="SessionService.v1_0_2.SessionService">
158        <Property Name="Actions" Type="SessionService.v1_1_0.Actions" Nullable="false">
159          <Annotation Term="OData.Description" String="The available actions for this resource."/>
160          <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
161        </Property>
162      </EntityType>
163
164      <ComplexType Name="Actions">
165        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
166        <Annotation Term="OData.Description" String="The available actions for this resource."/>
167        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
168        <Property Name="Oem" Type="SessionService.v1_1_0.OemActions" Nullable="false">
169          <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
170          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
171        </Property>
172      </ComplexType>
173
174      <ComplexType Name="OemActions">
175        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
176        <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
177        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
178      </ComplexType>
179    </Schema>
180
181    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_1_1">
182      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
183      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
184      <EntityType Name="SessionService" BaseType="SessionService.v1_1_0.SessionService"/>
185    </Schema>
186
187    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_1_2">
188      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
189      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
190      <EntityType Name="SessionService" BaseType="SessionService.v1_1_1.SessionService"/>
191    </Schema>
192
193    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_1_3">
194      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
195      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated.  In this case, `ServiceEnabled` description was updated."/>
196      <EntityType Name="SessionService" BaseType="SessionService.v1_1_2.SessionService"/>
197    </Schema>
198
199    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_1_4">
200      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
201      <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.  It also clarifies the behavior when `ServiceEnabled` is `false`."/>
202      <EntityType Name="SessionService" BaseType="SessionService.v1_1_3.SessionService"/>
203    </Schema>
204
205    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_1_5">
206      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
207      <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, and to add a missing term to `Oem` to disallow it from being `null`."/>
208      <EntityType Name="SessionService" BaseType="SessionService.v1_1_4.SessionService"/>
209    </Schema>
210
211    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_1_6">
212      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
213      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
214      <EntityType Name="SessionService" BaseType="SessionService.v1_1_5.SessionService"/>
215    </Schema>
216
217    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_1_7">
218      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
219      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
220      <EntityType Name="SessionService" BaseType="SessionService.v1_1_6.SessionService"/>
221    </Schema>
222
223    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_1_8">
224      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
225      <Annotation Term="OData.Description" String="This version was created to specify 64-bit integers in OpenAPI."/>
226      <EntityType Name="SessionService" BaseType="SessionService.v1_1_7.SessionService"/>
227    </Schema>
228
229    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_1_9">
230      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
231      <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."/>
232      <EntityType Name="SessionService" BaseType="SessionService.v1_1_8.SessionService"/>
233    </Schema>
234
235  </edmx:DataServices>
236</edmx:Edmx>
237