1720c9898SEd Tanous<?xml version="1.0" encoding="UTF-8"?>
2720c9898SEd Tanous<!---->
3720c9898SEd Tanous<!--################################################################################       -->
4*f2a8e57eSGunnar Mills<!--# Redfish Schema:  SessionService v1.1.9                                               -->
5720c9898SEd Tanous<!--#                                                                                      -->
6720c9898SEd Tanous<!--# For a detailed change log, see the README file contained in the DSP8010 bundle,      -->
7720c9898SEd Tanous<!--# available at http://www.dmtf.org/standards/redfish                                   -->
8*f2a8e57eSGunnar Mills<!--# Copyright 2014-2024 DMTF.                                                            -->
9720c9898SEd Tanous<!--# For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright -->
10720c9898SEd Tanous<!--################################################################################       -->
11720c9898SEd Tanous<!---->
12720c9898SEd Tanous<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0">
13720c9898SEd Tanous
14720c9898SEd Tanous  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Core.V1.xml">
15720c9898SEd Tanous    <edmx:Include Namespace="Org.OData.Core.V1" Alias="OData"/>
16720c9898SEd Tanous  </edmx:Reference>
17720c9898SEd Tanous  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Capabilities.V1.xml">
18720c9898SEd Tanous    <edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="Capabilities"/>
19720c9898SEd Tanous  </edmx:Reference>
20720c9898SEd Tanous  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Measures.V1.xml">
21720c9898SEd Tanous    <edmx:Include Namespace="Org.OData.Measures.V1" Alias="Measures"/>
22720c9898SEd Tanous  </edmx:Reference>
23720c9898SEd Tanous  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
24720c9898SEd Tanous    <edmx:Include Namespace="Validation.v1_0_0" Alias="Validation"/>
25720c9898SEd Tanous    <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
26720c9898SEd Tanous  </edmx:Reference>
27720c9898SEd Tanous  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
28720c9898SEd Tanous    <edmx:Include Namespace="Resource"/>
29720c9898SEd Tanous    <edmx:Include Namespace="Resource.v1_0_0"/>
30720c9898SEd Tanous  </edmx:Reference>
31720c9898SEd Tanous  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/SessionCollection_v1.xml">
32720c9898SEd Tanous    <edmx:Include Namespace="SessionCollection"/>
33720c9898SEd Tanous  </edmx:Reference>
34720c9898SEd Tanous
35720c9898SEd Tanous  <edmx:DataServices>
36720c9898SEd Tanous
37720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService">
38720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
39*f2a8e57eSGunnar Mills      <Annotation Term="Redfish.Language" String="en"/>
40720c9898SEd Tanous
41720c9898SEd Tanous      <EntityType Name="SessionService" BaseType="Resource.v1_0_0.Resource" Abstract="true">
42*f2a8e57eSGunnar Mills        <Annotation Term="OData.Description" String="The `SessionService` schema describes the session service and its properties, with links to the actual list of sessions."/>
43720c9898SEd Tanous        <Annotation Term="OData.LongDescription" String="This resource contains the session service properties for a Redfish implementation."/>
44720c9898SEd Tanous        <Annotation Term="Capabilities.InsertRestrictions">
45720c9898SEd Tanous          <Record>
46720c9898SEd Tanous            <PropertyValue Property="Insertable" Bool="false"/>
47720c9898SEd Tanous          </Record>
48720c9898SEd Tanous        </Annotation>
49720c9898SEd Tanous        <Annotation Term="Capabilities.UpdateRestrictions">
50720c9898SEd Tanous          <Record>
51720c9898SEd Tanous            <PropertyValue Property="Updatable" Bool="true"/>
52720c9898SEd Tanous            <Annotation Term="OData.Description" String="The session service can be updated to enable or disable it and change its timeout."/>
53720c9898SEd Tanous          </Record>
54720c9898SEd Tanous        </Annotation>
55720c9898SEd Tanous        <Annotation Term="Capabilities.DeleteRestrictions">
56720c9898SEd Tanous          <Record>
57720c9898SEd Tanous            <PropertyValue Property="Deletable" Bool="false"/>
58720c9898SEd Tanous          </Record>
59720c9898SEd Tanous        </Annotation>
60720c9898SEd Tanous        <Annotation Term="Redfish.Uris">
61720c9898SEd Tanous          <Collection>
62720c9898SEd Tanous            <String>/redfish/v1/SessionService</String>
63720c9898SEd Tanous          </Collection>
64720c9898SEd Tanous        </Annotation>
65720c9898SEd Tanous      </EntityType>
66720c9898SEd Tanous    </Schema>
67720c9898SEd Tanous
68720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_0_0">
69720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
70720c9898SEd Tanous      <Annotation Term="Redfish.Release" String="1.0"/>
71720c9898SEd Tanous
72720c9898SEd Tanous      <EntityType Name="SessionService" BaseType="SessionService.SessionService">
73720c9898SEd Tanous        <Property Name="Status" Type="Resource.Status" Nullable="false">
74720c9898SEd Tanous          <Annotation Term="OData.Description" String="The status and health of the resource and its subordinate or dependent resources."/>
75720c9898SEd Tanous          <Annotation Term="OData.LongDescription" String="This property shall contain any status or health properties of the resource."/>
76720c9898SEd Tanous        </Property>
77720c9898SEd Tanous        <Property Name="ServiceEnabled" Type="Edm.Boolean">
78720c9898SEd Tanous          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
79720c9898SEd Tanous          <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."/>
80720c9898SEd Tanous          <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."/>
81720c9898SEd Tanous        </Property>
82720c9898SEd Tanous        <Property Name="SessionTimeout" Type="Edm.Int64" Nullable="false">
83720c9898SEd Tanous          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
84720c9898SEd Tanous          <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*f2a8e57eSGunnar Mills          <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."/>
86720c9898SEd Tanous          <Annotation Term="Validation.Minimum" Int="30"/>
87720c9898SEd Tanous          <Annotation Term="Validation.Maximum" Int="86400"/>
88720c9898SEd Tanous          <Annotation Term="Measures.Unit" String="s"/>
89720c9898SEd Tanous        </Property>
90720c9898SEd Tanous        <NavigationProperty Name="Sessions" Type="SessionCollection.SessionCollection" ContainsTarget="true" Nullable="false">
91720c9898SEd Tanous          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
92720c9898SEd Tanous          <Annotation Term="OData.Description" String="The link to a collection of sessions."/>
93*f2a8e57eSGunnar Mills          <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource collection of type `SessionCollection`."/>
94720c9898SEd Tanous          <Annotation Term="OData.AutoExpandReferences"/>
95720c9898SEd Tanous        </NavigationProperty>
96720c9898SEd Tanous      </EntityType>
97720c9898SEd Tanous    </Schema>
98720c9898SEd Tanous
99720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_0_2">
100720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
101720c9898SEd Tanous      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
102720c9898SEd Tanous      <EntityType Name="SessionService" BaseType="SessionService.v1_0_0.SessionService"/>
103720c9898SEd Tanous    </Schema>
104720c9898SEd Tanous
105720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_0_3">
106720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
107720c9898SEd Tanous      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
108720c9898SEd Tanous      <EntityType Name="SessionService" BaseType="SessionService.v1_0_2.SessionService"/>
109720c9898SEd Tanous    </Schema>
110720c9898SEd Tanous
111720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_0_4">
112720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
113*f2a8e57eSGunnar Mills      <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."/>
114720c9898SEd Tanous      <EntityType Name="SessionService" BaseType="SessionService.v1_0_3.SessionService"/>
115720c9898SEd Tanous    </Schema>
116720c9898SEd Tanous
117720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_0_5">
118720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
119*f2a8e57eSGunnar Mills      <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`."/>
120720c9898SEd Tanous      <EntityType Name="SessionService" BaseType="SessionService.v1_0_4.SessionService"/>
121720c9898SEd Tanous    </Schema>
122720c9898SEd Tanous
123720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_0_6">
124720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
125720c9898SEd Tanous      <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."/>
126720c9898SEd Tanous      <EntityType Name="SessionService" BaseType="SessionService.v1_0_5.SessionService"/>
127720c9898SEd Tanous    </Schema>
128720c9898SEd Tanous
129720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_0_7">
130720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
131720c9898SEd Tanous      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
132720c9898SEd Tanous      <EntityType Name="SessionService" BaseType="SessionService.v1_0_6.SessionService"/>
133720c9898SEd Tanous    </Schema>
134720c9898SEd Tanous
135720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_0_8">
136720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
137720c9898SEd Tanous      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
138720c9898SEd Tanous      <EntityType Name="SessionService" BaseType="SessionService.v1_0_7.SessionService"/>
139720c9898SEd Tanous    </Schema>
140720c9898SEd Tanous
141720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_0_9">
142720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
143720c9898SEd Tanous      <Annotation Term="OData.Description" String="This version was created to specify 64-bit integers in OpenAPI."/>
144720c9898SEd Tanous      <EntityType Name="SessionService" BaseType="SessionService.v1_0_8.SessionService"/>
145720c9898SEd Tanous    </Schema>
146720c9898SEd Tanous
147*f2a8e57eSGunnar Mills    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_0_10">
148*f2a8e57eSGunnar Mills      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
149*f2a8e57eSGunnar Mills      <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*f2a8e57eSGunnar Mills      <EntityType Name="SessionService" BaseType="SessionService.v1_0_9.SessionService"/>
151*f2a8e57eSGunnar Mills    </Schema>
152*f2a8e57eSGunnar Mills
153720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_1_0">
154720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
155720c9898SEd Tanous      <Annotation Term="Redfish.Release" String="2016.2"/>
156720c9898SEd Tanous
157720c9898SEd Tanous      <EntityType Name="SessionService" BaseType="SessionService.v1_0_2.SessionService">
158720c9898SEd Tanous        <Property Name="Actions" Type="SessionService.v1_1_0.Actions" Nullable="false">
159720c9898SEd Tanous          <Annotation Term="OData.Description" String="The available actions for this resource."/>
160720c9898SEd Tanous          <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
161720c9898SEd Tanous        </Property>
162720c9898SEd Tanous      </EntityType>
163720c9898SEd Tanous
164720c9898SEd Tanous      <ComplexType Name="Actions">
165720c9898SEd Tanous        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
166720c9898SEd Tanous        <Annotation Term="OData.Description" String="The available actions for this resource."/>
167720c9898SEd Tanous        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
168720c9898SEd Tanous        <Property Name="Oem" Type="SessionService.v1_1_0.OemActions" Nullable="false">
169720c9898SEd Tanous          <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
170720c9898SEd Tanous          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
171720c9898SEd Tanous        </Property>
172720c9898SEd Tanous      </ComplexType>
173720c9898SEd Tanous
174720c9898SEd Tanous      <ComplexType Name="OemActions">
175720c9898SEd Tanous        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
176720c9898SEd Tanous        <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
177720c9898SEd Tanous        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
178720c9898SEd Tanous      </ComplexType>
179720c9898SEd Tanous    </Schema>
180720c9898SEd Tanous
181720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_1_1">
182720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
183720c9898SEd Tanous      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
184720c9898SEd Tanous      <EntityType Name="SessionService" BaseType="SessionService.v1_1_0.SessionService"/>
185720c9898SEd Tanous    </Schema>
186720c9898SEd Tanous
187720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_1_2">
188720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
189720c9898SEd Tanous      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
190720c9898SEd Tanous      <EntityType Name="SessionService" BaseType="SessionService.v1_1_1.SessionService"/>
191720c9898SEd Tanous    </Schema>
192720c9898SEd Tanous
193720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_1_3">
194720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
195*f2a8e57eSGunnar Mills      <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."/>
196720c9898SEd Tanous      <EntityType Name="SessionService" BaseType="SessionService.v1_1_2.SessionService"/>
197720c9898SEd Tanous    </Schema>
198720c9898SEd Tanous
199720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_1_4">
200720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
201*f2a8e57eSGunnar Mills      <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`."/>
202720c9898SEd Tanous      <EntityType Name="SessionService" BaseType="SessionService.v1_1_3.SessionService"/>
203720c9898SEd Tanous    </Schema>
204720c9898SEd Tanous
205720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_1_5">
206720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
207*f2a8e57eSGunnar Mills      <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`."/>
208720c9898SEd Tanous      <EntityType Name="SessionService" BaseType="SessionService.v1_1_4.SessionService"/>
209720c9898SEd Tanous    </Schema>
210720c9898SEd Tanous
211720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_1_6">
212720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
213720c9898SEd Tanous      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
214720c9898SEd Tanous      <EntityType Name="SessionService" BaseType="SessionService.v1_1_5.SessionService"/>
215720c9898SEd Tanous    </Schema>
216720c9898SEd Tanous
217720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_1_7">
218720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
219720c9898SEd Tanous      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
220720c9898SEd Tanous      <EntityType Name="SessionService" BaseType="SessionService.v1_1_6.SessionService"/>
221720c9898SEd Tanous    </Schema>
222720c9898SEd Tanous
223720c9898SEd Tanous    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_1_8">
224720c9898SEd Tanous      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
225720c9898SEd Tanous      <Annotation Term="OData.Description" String="This version was created to specify 64-bit integers in OpenAPI."/>
226720c9898SEd Tanous      <EntityType Name="SessionService" BaseType="SessionService.v1_1_7.SessionService"/>
227720c9898SEd Tanous    </Schema>
228720c9898SEd Tanous
229*f2a8e57eSGunnar Mills    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="SessionService.v1_1_9">
230*f2a8e57eSGunnar Mills      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
231*f2a8e57eSGunnar Mills      <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*f2a8e57eSGunnar Mills      <EntityType Name="SessionService" BaseType="SessionService.v1_1_8.SessionService"/>
233*f2a8e57eSGunnar Mills    </Schema>
234*f2a8e57eSGunnar Mills
235720c9898SEd Tanous  </edmx:DataServices>
236720c9898SEd Tanous</edmx:Edmx>
237