1<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################       -->
4<!--# Redfish Schema:  ActionInfo v1.4.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/RedfishExtensions_v1.xml">
21    <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
22  </edmx:Reference>
23  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
24    <edmx:Include Namespace="Resource.v1_0_0"/>
25  </edmx:Reference>
26
27  <edmx:DataServices>
28
29    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo">
30      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
31
32      <EntityType Name="ActionInfo" BaseType="Resource.v1_0_0.Resource" Abstract="true">
33        <Annotation Term="OData.Description" String="The ActionInfo schema defines the supported parameters and other information for a Redfish action.  Supported parameters can differ among vendors and even among resource instances.  This data can ensure that action requests from applications contain supported parameters."/>
34        <Annotation Term="OData.LongDescription" String="This resource shall represent the supported parameters and other information for a Redfish action on a target within a Redfish implementation.  Supported parameters can differ among vendors and even among resource instances.  This data can ensure that action requests from applications contain supported parameters."/>
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="false"/>
48          </Record>
49        </Annotation>
50      </EntityType>
51
52      <ComplexType Name="Parameters" Abstract="true">
53        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
54        <Annotation Term="OData.Description" String="The information about a parameter included in a Redfish action for this resource."/>
55        <Annotation Term="OData.LongDescription" String="This property shall contain information about a parameter included in a Redfish action for this resource."/>
56      </ComplexType>
57    </Schema>
58
59    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_0_0">
60      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
61      <Annotation Term="Redfish.Release" String="2016.2"/>
62
63      <EntityType Name="ActionInfo" BaseType="ActionInfo.ActionInfo">
64        <Property Name="Parameters" Type="Collection(ActionInfo.v1_0_0.Parameters)" Nullable="false">
65          <Annotation Term="OData.Description" String="The list of parameters included in the specified Redfish action."/>
66          <Annotation Term="OData.LongDescription" String="This property shall list the parameters included in the specified Redfish action for this resource."/>
67        </Property>
68      </EntityType>
69
70      <ComplexType Name="Parameters" BaseType="ActionInfo.Parameters">
71        <Property Name="Name" Type="Edm.String" Nullable="false">
72          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
73          <Annotation Term="OData.Description"  String="The name of the parameter for this action."/>
74          <Annotation Term="OData.LongDescription" String="This property shall contain the name of the parameter included in a Redfish action."/>
75          <Annotation Term="Redfish.Required"/>
76        </Property>
77        <Property Name="Required" Type="Edm.Boolean" Nullable="false">
78          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
79          <Annotation Term="OData.Description" String="An indication of whether the parameter is required to complete this action."/>
80          <Annotation Term="OData.LongDescription" String="This property shall indicate whether the parameter is required to complete this action."/>
81        </Property>
82        <Property Name="DataType" Type="ActionInfo.v1_0_0.ParameterTypes">
83          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
84          <Annotation Term="OData.Description" String="The JSON property type for this parameter."/>
85          <Annotation Term="OData.LongDescription" String="This property shall contain the JSON property type for this parameter."/>
86        </Property>
87        <Property Name="ObjectDataType" Type="Edm.String">
88          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
89          <Annotation Term="OData.Description" String="The data type of an object-based parameter."/>
90          <Annotation Term="OData.LongDescription" String="This property shall describe the entity type definition in `@odata.type` format for the parameter.  This property shall be required for parameters with a data type of `Object` or `ObjectArray`, and shall not be present for parameters with other data types."/>
91        </Property>
92        <Property Name="AllowableValues" Type="Collection(Edm.String)">
93          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
94          <Annotation Term="OData.Description" String="The allowable values for this parameter as applied to this action target."/>
95          <Annotation Term="OData.LongDescription" String="This property shall indicate the allowable values for this parameter as applied to this action target.  For arrays, this property shall represent the allowable values for each array member."/>
96        </Property>
97      </ComplexType>
98
99      <EnumType Name="ParameterTypes">
100        <Member Name="Boolean">
101          <Annotation Term="OData.Description" String="A boolean."/>
102        </Member>
103        <Member Name="Number">
104          <Annotation Term="OData.Description" String="A number."/>
105        </Member>
106        <Member Name="NumberArray">
107          <Annotation Term="OData.Description" String="An array of numbers."/>
108        </Member>
109        <Member Name="String">
110          <Annotation Term="OData.Description" String="A string."/>
111        </Member>
112        <Member Name="StringArray">
113          <Annotation Term="OData.Description" String="An array of strings."/>
114        </Member>
115        <Member Name="Object">
116          <Annotation Term="OData.Description" String="An embedded JSON object."/>
117        </Member>
118        <Member Name="ObjectArray">
119          <Annotation Term="OData.Description" String="An array of JSON objects."/>
120        </Member>
121      </EnumType>
122    </Schema>
123
124    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_0_1">
125      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
126      <Annotation Term="OData.Description" String="This version was created to add explicit permissions annotations to all properties for clarity."/>
127      <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_0_0.ActionInfo"/>
128    </Schema>
129
130    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_0_2">
131      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
132      <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/>
133      <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_0_1.ActionInfo"/>
134    </Schema>
135
136    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_0_3">
137      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
138      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
139      <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_0_2.ActionInfo"/>
140    </Schema>
141
142    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_0_4">
143      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
144      <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."/>
145      <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_0_3.ActionInfo"/>
146    </Schema>
147
148    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_0_5">
149      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
150      <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."/>
151      <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_0_4.ActionInfo"/>
152    </Schema>
153
154    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_0_6">
155      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
156      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
157      <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_0_5.ActionInfo"/>
158    </Schema>
159
160    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_0_7">
161      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
162      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of AllowableValues for array parameters."/>
163      <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_0_6.ActionInfo"/>
164    </Schema>
165
166    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_1_0">
167      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
168      <Annotation Term="Redfish.Release" String="2018.2"/>
169      <Annotation Term="OData.Description" String="This version was created to add properties to specify parameter minimum and maximum values."/>
170
171      <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_0_4.ActionInfo"/>
172
173      <ComplexType Name="Parameters" BaseType="ActionInfo.v1_0_0.Parameters">
174        <Property Name="MinimumValue" Type="Edm.Decimal">
175          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
176          <Annotation Term="OData.Description" String="The minimum supported value for this parameter."/>
177          <Annotation Term="OData.LongDescription" String="This integer or number property shall contain the minimum value that this service supports.  For arrays, this property shall represent the minimum value for each array member.  This property shall not be present for non-integer or number parameters."/>
178        </Property>
179        <Property Name="MaximumValue" Type="Edm.Decimal">
180          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
181          <Annotation Term="OData.Description" String="The maximum supported value for this parameter."/>
182          <Annotation Term="OData.LongDescription" String="This integer or number property shall contain the maximum value that this service supports.  For arrays, this property shall represent the maximum value for each array member.  This property shall not be present for non-integer or number parameters."/>
183        </Property>
184      </ComplexType>
185    </Schema>
186
187    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_1_1">
188      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
189      <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."/>
190      <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_1_0.ActionInfo"/>
191    </Schema>
192
193    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_1_2">
194      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
195      <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/>
196      <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_1_1.ActionInfo"/>
197    </Schema>
198
199    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_1_3">
200      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
201      <Annotation Term="OData.Description" String="This version was created to clarify the behavior of AllowableValues, MinimumValue, and MaximumValue for array parameters."/>
202      <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_1_2.ActionInfo"/>
203    </Schema>
204
205    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_2_0">
206      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
207      <Annotation Term="Redfish.Release" String="2021.2"/>
208
209      <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_1_3.ActionInfo"/>
210
211      <ComplexType Name="Parameters" BaseType="ActionInfo.v1_1_0.Parameters">
212        <Property Name="ArraySizeMinimum" Type="Edm.Int64">
213          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
214          <Annotation Term="OData.Description" String="The minimum number of array elements required for this parameter."/>
215          <Annotation Term="OData.LongDescription" String="This property shall contain the minimum number of array elements required by this service for this parameter.  This property shall not be present for non-array parameters."/>
216        </Property>
217        <Property Name="ArraySizeMaximum" Type="Edm.Int64">
218          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
219          <Annotation Term="OData.Description" String="The maximum number of array elements allowed for this parameter."/>
220          <Annotation Term="OData.LongDescription" String="This property shall contain the maximum number of array elements that this service supports for this parameter.  This property shall not be present for non-array parameters."/>
221        </Property>
222      </ComplexType>
223    </Schema>
224
225    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_3_0">
226      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
227      <Annotation Term="Redfish.Release" String="2022.2"/>
228
229      <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_2_0.ActionInfo"/>
230
231      <ComplexType Name="Parameters" BaseType="ActionInfo.v1_2_0.Parameters">
232        <Property Name="AllowableNumbers" Type="Collection(Edm.String)">
233          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
234          <Annotation Term="OData.Description" String="The allowable numeric values or duration values, inclusive ranges of values, and incremental step values for this parameter as applied to this action target."/>
235          <Annotation Term="OData.LongDescription" String="This property shall indicate the allowable numeric values, inclusive ranges of values, and incremental step values for this parameter as applied to this action target, as defined in the 'Allowable values for numbers and durations' clause of the Redfish Specification.  For arrays, this property shall represent the allowable values for each array member.  This property shall only be present for numeric parameters or string parameters that specify a duration."/>
236        </Property>
237        <Property Name="AllowablePattern" Type="Edm.String">
238          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
239          <Annotation Term="OData.Description" String="The allowable pattern for this parameter as applied to this action target."/>
240          <Annotation Term="OData.LongDescription" String="This property shall contain a regular expression that describes the allowable values for this parameter as applied to this action target.  For arrays, this property shall represent the allowable values for each array member.  This property shall only be present for string parameters."/>
241        </Property>
242      </ComplexType>
243    </Schema>
244
245    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_3_1">
246      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
247      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
248      <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_3_0.ActionInfo"/>
249    </Schema>
250
251    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_4_0">
252      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
253      <Annotation Term="Redfish.Release" String="2023.2"/>
254
255      <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_3_0.ActionInfo"/>
256
257      <ComplexType Name="Parameters" BaseType="ActionInfo.v1_3_0.Parameters">
258        <Property Name="AllowableValueDescriptions" Type="Collection(Edm.String)">
259          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
260          <Annotation Term="OData.Description" String="Descriptions of allowable values for this parameter."/>
261          <Annotation Term="OData.LongDescription" String="This property shall contain the descriptions of allowable values for this parameter.  The descriptions shall appear in the same array order as the AllowableValues property.  For arrays, this property shall represent the descriptions of allowable values for each array member."/>
262        </Property>
263      </ComplexType>
264    </Schema>
265
266    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_4_1">
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="ActionInfo" BaseType="ActionInfo.v1_4_0.ActionInfo"/>
270    </Schema>
271
272  </edmx:DataServices>
273</edmx:Edmx>
274