blob: b045470526c0f02bbb46c22972880c720e8eb180 [file] [log] [blame]
Jason M. Billsea4aa752018-06-05 13:29:11 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################ -->
Ed Tanous530520e2019-01-02 13:41:37 -08004<!--# Redfish Schema: Session v1.1.1-->
Jason M. Billsea4aa752018-06-05 13:29:11 -07005<!--# -->
6<!--# For a detailed change log, see the README file contained in the DSP8010 bundle, -->
7<!--# available at http://www.dmtf.org/standards/redfish -->
Ed Tanous530520e2019-01-02 13:41:37 -08008<!--# Copyright 2014-2018 DMTF. -->
Jason M. Billsea4aa752018-06-05 13:29:11 -07009<!--# 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.v1_0_0"/>
22 </edmx:Reference>
23 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml">
24 <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
25 </edmx:Reference>
26
27 <edmx:DataServices>
28
29 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session">
30 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
31
32 <EntityType Name="Session" BaseType="Resource.v1_0_0.Resource" Abstract="true">
33 <Annotation Term="OData.Description" String="The Session resource describes a single connection (session) between a client and a Redfish service instance."/>
34 <Annotation Term="OData.LongDescription" String="This resource shall be used to represent a session for a Redfish implementation."/>
35 <Annotation Term="Capabilities.InsertRestrictions">
36 <Record>
37 <PropertyValue Property="Insertable" Bool="false"/>
38 </Record>
39 </Annotation>
40 <Annotation Term="Capabilities.UpdateRestrictions">
41 <Record>
42 <PropertyValue Property="Updatable" Bool="false"/>
43 </Record>
44 </Annotation>
45 <Annotation Term="Capabilities.DeleteRestrictions">
46 <Record>
47 <PropertyValue Property="Deletable" Bool="true"/>
48 <Annotation Term="OData.Description" String="Sessions can be removed by Deleting the Session resource."/>
49 </Record>
50 </Annotation>
Ed Tanous530520e2019-01-02 13:41:37 -080051 <Annotation Term="Redfish.Uris">
52 <Collection>
53 <String>/redfish/v1/SessionService/Sessions/{SessionId}</String>
54 </Collection>
55 </Annotation>
Jason M. Billsea4aa752018-06-05 13:29:11 -070056 </EntityType>
57
58 </Schema>
59
60 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_0_0">
61 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -060062 <Annotation Term="Redfish.Release" String="1.0"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -070063
64 <EntityType Name="Session" BaseType="Session.Session">
65 <Property Name="UserName" Type="Edm.String">
66 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
67 <Annotation Term="Redfish.RequiredOnCreate"/>
68 <Annotation Term="OData.Description" String="The UserName for the account for this session."/>
69 <Annotation Term="OData.LongDescription" String="The value of this property shall be the UserName that matches a registered account identified by a ManagerAccount resource registered with the Account Service."/>
70 </Property>
71 <Property Name="Password" Type="Edm.String">
72 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
73 <Annotation Term="Redfish.RequiredOnCreate"/>
74 <Annotation Term="OData.Description" String="This property is used in a POST to specify a password when creating a new session. This property is null on a GET."/>
75 <Annotation Term="OData.LongDescription" String="The value of this property shall be the password for this session. The value shall be null for GET requests."/>
76 </Property>
77 </EntityType>
78
79 </Schema>
80
81 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_0_2">
82 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
83 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
84 <EntityType Name="Session" BaseType="Session.v1_0_0.Session"/>
85 </Schema>
86
87 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_0_3">
88 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
89 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
90 <EntityType Name="Session" BaseType="Session.v1_0_2.Session"/>
91 </Schema>
92
Ed Tanous530520e2019-01-02 13:41:37 -080093 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_0_4">
94 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
95 <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."/>
96 <EntityType Name="Session" BaseType="Session.v1_0_3.Session"/>
97 </Schema>
98
Jason M. Billsea4aa752018-06-05 13:29:11 -070099 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_1_0">
100 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
Marri Devender Raod45d2d02019-01-21 10:11:34 -0600101 <Annotation Term="Redfish.Release" String="2017.1"/>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700102 <EntityType Name="Session" BaseType="Session.v1_0_3.Session">
103 <Property Name="Actions" Type="Session.v1_1_0.Actions" Nullable="false">
104 <Annotation Term="OData.Description" String="The available actions for this resource."/>
105 <Annotation Term="OData.LongDescription" String="The Actions property shall contain the available actions for this resource."/>
106 </Property>
107 </EntityType>
108
109 <ComplexType Name="Actions">
110 <Annotation Term="OData.AdditionalProperties" Bool="false"/>
111 <Annotation Term="OData.Description" String="The available actions for this resource."/>
112 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
Ed Tanous530520e2019-01-02 13:41:37 -0800113 <Property Name="Oem" Type="Session.v1_1_0.OemActions" Nullable="false">
114 <Annotation Term="OData.Description" String="This property contains the available OEM specific actions for this resource."/>
115 <Annotation Term="OData.LongDescription" String="This property shall contain any additional OEM actions for this resource."/>
116 </Property>
Jason M. Billsea4aa752018-06-05 13:29:11 -0700117 </ComplexType>
118
119 <ComplexType Name="OemActions">
120 <Annotation Term="OData.AdditionalProperties" Bool="true"/>
121 <Annotation Term="OData.Description" String="The available OEM specific actions for this resource."/>
122 <Annotation Term="OData.LongDescription" String="This type shall contain any additional OEM actions for this resource."/>
123 </ComplexType>
124 </Schema>
125
Ed Tanous530520e2019-01-02 13:41:37 -0800126 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Session.v1_1_1">
127 <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
128 <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."/>
129 <EntityType Name="Session" BaseType="Session.v1_1_0.Session"/>
130 </Schema>
131
Jason M. Billsea4aa752018-06-05 13:29:11 -0700132 </edmx:DataServices>
133</edmx:Edmx>