1<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################       -->
4<!--# Redfish Schema:  SessionService v1.1.8                                               -->
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://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
40      <EntityType Name="SessionService" BaseType="Resource.v1_0_0.Resource" Abstract="true">
41        <Annotation Term="OData.Description" String="The SessionService schema describes the session service and its properties, with links to the actual list of sessions."/>
42        <Annotation Term="OData.LongDescription" String="This resource contains the session service properties for 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="The session service can be updated to enable or disable it and change its timeout."/>
52          </Record>
53        </Annotation>
54        <Annotation Term="Capabilities.DeleteRestrictions">
55          <Record>
56            <PropertyValue Property="Deletable" Bool="false"/>
57          </Record>
58        </Annotation>
59        <Annotation Term="Redfish.Uris">
60          <Collection>
61            <String>/redfish/v1/SessionService</String>
62          </Collection>
63        </Annotation>
64      </EntityType>
65    </Schema>
66
67    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_0_0">
68      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
69      <Annotation Term="Redfish.Release" String="1.0"/>
70
71      <EntityType Name="SessionService" BaseType="SessionService.SessionService">
72        <Property Name="Status" Type="Resource.Status" Nullable="false">
73          <Annotation Term="OData.Description" String="The status and health of the resource and its subordinate or dependent resources."/>
74          <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
75        </Property>
76        <Property Name="ServiceEnabled" Type="Edm.Boolean">
77          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
78          <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."/>
79          <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."/>
80        </Property>
81        <Property Name="SessionTimeout" Type="Edm.Int64" Nullable="false">
82          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
83          <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."/>
84          <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 Validation.Minimum and Validation.Maximum."/>
85          <Annotation Term="Validation.Minimum" Int="30"/>
86          <Annotation Term="Validation.Maximum" Int="86400"/>
87          <Annotation Term="Measures.Unit" String="s"/>
88        </Property>
89        <NavigationProperty Name="Sessions" Type="SessionCollection.SessionCollection" ContainsTarget="true" Nullable="false">
90          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
91          <Annotation Term="OData.Description" String="The link to a collection of sessions."/>
92          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource collection of type SessionCollection."/>
93          <Annotation Term="OData.AutoExpandReferences"/>
94        </NavigationProperty>
95      </EntityType>
96    </Schema>
97
98    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_0_2">
99      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
100      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
101      <EntityType Name="SessionService" BaseType="SessionService.v1_0_0.SessionService"/>
102    </Schema>
103
104    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_0_3">
105      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
106      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
107      <EntityType Name="SessionService" BaseType="SessionService.v1_0_2.SessionService"/>
108    </Schema>
109
110    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_0_4">
111      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
112      <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."/>
113      <EntityType Name="SessionService" BaseType="SessionService.v1_0_3.SessionService"/>
114    </Schema>
115
116    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_0_5">
117      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
118      <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."/>
119      <EntityType Name="SessionService" BaseType="SessionService.v1_0_4.SessionService"/>
120    </Schema>
121
122    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_0_6">
123      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
124      <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."/>
125      <EntityType Name="SessionService" BaseType="SessionService.v1_0_5.SessionService"/>
126    </Schema>
127
128    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_0_7">
129      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
130      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
131      <EntityType Name="SessionService" BaseType="SessionService.v1_0_6.SessionService"/>
132    </Schema>
133
134    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_0_8">
135      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
136      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
137      <EntityType Name="SessionService" BaseType="SessionService.v1_0_7.SessionService"/>
138    </Schema>
139
140    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_0_9">
141      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
142      <Annotation Term="OData.Description" String="This version was created specify 64-bit integers in OpenAPI."/>
143      <EntityType Name="SessionService" BaseType="SessionService.v1_0_8.SessionService"/>
144    </Schema>
145
146    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_1_0">
147      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
148      <Annotation Term="Redfish.Release" String="2016.2"/>
149
150      <EntityType Name="SessionService" BaseType="SessionService.v1_0_2.SessionService">
151        <Property Name="Actions" Type="SessionService.v1_1_0.Actions" Nullable="false">
152          <Annotation Term="OData.Description" String="The available actions for this resource."/>
153          <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
154        </Property>
155      </EntityType>
156
157      <ComplexType Name="Actions">
158        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
159        <Annotation Term="OData.Description" String="The available actions for this resource."/>
160        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
161        <Property Name="Oem" Type="SessionService.v1_1_0.OemActions" Nullable="false">
162          <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
163          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
164        </Property>
165      </ComplexType>
166
167      <ComplexType Name="OemActions">
168        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
169        <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
170        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
171      </ComplexType>
172    </Schema>
173
174    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_1_1">
175      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
176      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
177      <EntityType Name="SessionService" BaseType="SessionService.v1_1_0.SessionService"/>
178    </Schema>
179
180    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_1_2">
181      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
182      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
183      <EntityType Name="SessionService" BaseType="SessionService.v1_1_1.SessionService"/>
184    </Schema>
185
186    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_1_3">
187      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
188      <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."/>
189      <EntityType Name="SessionService" BaseType="SessionService.v1_1_2.SessionService"/>
190    </Schema>
191
192    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_1_4">
193      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
194      <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`."/>
195      <EntityType Name="SessionService" BaseType="SessionService.v1_1_3.SessionService"/>
196    </Schema>
197
198    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_1_5">
199      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
200      <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`."/>
201      <EntityType Name="SessionService" BaseType="SessionService.v1_1_4.SessionService"/>
202    </Schema>
203
204    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_1_6">
205      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
206      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
207      <EntityType Name="SessionService" BaseType="SessionService.v1_1_5.SessionService"/>
208    </Schema>
209
210    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_1_7">
211      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
212      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
213      <EntityType Name="SessionService" BaseType="SessionService.v1_1_6.SessionService"/>
214    </Schema>
215
216    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_1_8">
217      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
218      <Annotation Term="OData.Description" String="This version was created specify 64-bit integers in OpenAPI."/>
219      <EntityType Name="SessionService" BaseType="SessionService.v1_1_7.SessionService"/>
220    </Schema>
221
222  </edmx:DataServices>
223</edmx:Edmx>
224