1<?xml version="1.0" encoding="UTF-8"?> 2<!----> 3<!--################################################################################ --> 4<!--# Redfish Schema: ActionInfo v1.4.2 --> 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://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 <Annotation Term="Redfish.Language" String="en"/> 32 33 <EntityType Name="ActionInfo" BaseType="Resource.v1_0_0.Resource" Abstract="true"> 34 <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."/> 35 <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."/> 36 <Annotation Term="Capabilities.InsertRestrictions"> 37 <Record> 38 <PropertyValue Property="Insertable" Bool="false"/> 39 </Record> 40 </Annotation> 41 <Annotation Term="Capabilities.UpdateRestrictions"> 42 <Record> 43 <PropertyValue Property="Updatable" Bool="false"/> 44 </Record> 45 </Annotation> 46 <Annotation Term="Capabilities.DeleteRestrictions"> 47 <Record> 48 <PropertyValue Property="Deletable" Bool="false"/> 49 </Record> 50 </Annotation> 51 </EntityType> 52 53 <ComplexType Name="Parameters" Abstract="true"> 54 <Annotation Term="OData.AdditionalProperties" Bool="false"/> 55 <Annotation Term="OData.Description" String="The information about a parameter included in a Redfish action for this resource."/> 56 <Annotation Term="OData.LongDescription" String="This property shall contain information about a parameter included in a Redfish action for this resource."/> 57 </ComplexType> 58 </Schema> 59 60 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_0_0"> 61 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 62 <Annotation Term="Redfish.Release" String="2016.2"/> 63 64 <EntityType Name="ActionInfo" BaseType="ActionInfo.ActionInfo"> 65 <Property Name="Parameters" Type="Collection(ActionInfo.v1_0_0.Parameters)" Nullable="false"> 66 <Annotation Term="OData.Description" String="The list of parameters included in the specified Redfish action."/> 67 <Annotation Term="OData.LongDescription" String="This property shall list the parameters included in the specified Redfish action for this resource."/> 68 </Property> 69 </EntityType> 70 71 <ComplexType Name="Parameters" BaseType="ActionInfo.Parameters"> 72 <Property Name="Name" Type="Edm.String" Nullable="false"> 73 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 74 <Annotation Term="OData.Description" String="The name of the parameter for this action."/> 75 <Annotation Term="OData.LongDescription" String="This property shall contain the name of the parameter included in a Redfish action."/> 76 <Annotation Term="Redfish.Required"/> 77 </Property> 78 <Property Name="Required" Type="Edm.Boolean" Nullable="false"> 79 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 80 <Annotation Term="OData.Description" String="An indication of whether the parameter is required to complete this action."/> 81 <Annotation Term="OData.LongDescription" String="This property shall indicate whether the parameter is required to complete this action."/> 82 </Property> 83 <Property Name="DataType" Type="ActionInfo.v1_0_0.ParameterTypes"> 84 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 85 <Annotation Term="OData.Description" String="The JSON property type for this parameter."/> 86 <Annotation Term="OData.LongDescription" String="This property shall contain the JSON property type for this parameter."/> 87 </Property> 88 <Property Name="ObjectDataType" Type="Edm.String"> 89 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 90 <Annotation Term="OData.Description" String="The data type of an object-based parameter."/> 91 <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."/> 92 </Property> 93 <Property Name="AllowableValues" Type="Collection(Edm.String)"> 94 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 95 <Annotation Term="OData.Description" String="The allowable values for this parameter as applied to this action target."/> 96 <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."/> 97 </Property> 98 </ComplexType> 99 100 <EnumType Name="ParameterTypes"> 101 <Member Name="Boolean"> 102 <Annotation Term="OData.Description" String="A boolean."/> 103 </Member> 104 <Member Name="Number"> 105 <Annotation Term="OData.Description" String="A number."/> 106 </Member> 107 <Member Name="NumberArray"> 108 <Annotation Term="OData.Description" String="An array of numbers."/> 109 </Member> 110 <Member Name="String"> 111 <Annotation Term="OData.Description" String="A string."/> 112 </Member> 113 <Member Name="StringArray"> 114 <Annotation Term="OData.Description" String="An array of strings."/> 115 </Member> 116 <Member Name="Object"> 117 <Annotation Term="OData.Description" String="An embedded JSON object."/> 118 </Member> 119 <Member Name="ObjectArray"> 120 <Annotation Term="OData.Description" String="An array of JSON objects."/> 121 </Member> 122 </EnumType> 123 </Schema> 124 125 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_0_1"> 126 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 127 <Annotation Term="OData.Description" String="This version was created to add explicit permissions annotations to all properties for clarity."/> 128 <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_0_0.ActionInfo"/> 129 </Schema> 130 131 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_0_2"> 132 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 133 <Annotation Term="OData.Description" String="This version was created to show annotations in previous namespaces were updated."/> 134 <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_0_1.ActionInfo"/> 135 </Schema> 136 137 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_0_3"> 138 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 139 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/> 140 <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_0_2.ActionInfo"/> 141 </Schema> 142 143 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_0_4"> 144 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 145 <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."/> 146 <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_0_3.ActionInfo"/> 147 </Schema> 148 149 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_0_5"> 150 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 151 <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."/> 152 <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_0_4.ActionInfo"/> 153 </Schema> 154 155 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_0_6"> 156 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 157 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/> 158 <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_0_5.ActionInfo"/> 159 </Schema> 160 161 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_0_7"> 162 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 163 <Annotation Term="OData.Description" String="This version was created to clarify the behavior of AllowableValues for array parameters."/> 164 <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_0_6.ActionInfo"/> 165 </Schema> 166 167 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_0_8"> 168 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 169 <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."/> 170 <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_0_7.ActionInfo"/> 171 </Schema> 172 173 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_1_0"> 174 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 175 <Annotation Term="Redfish.Release" String="2018.2"/> 176 177 <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_0_4.ActionInfo"/> 178 179 <ComplexType Name="Parameters" BaseType="ActionInfo.v1_0_0.Parameters"> 180 <Property Name="MinimumValue" Type="Edm.Decimal"> 181 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 182 <Annotation Term="OData.Description" String="The minimum supported value for this parameter."/> 183 <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."/> 184 </Property> 185 <Property Name="MaximumValue" Type="Edm.Decimal"> 186 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 187 <Annotation Term="OData.Description" String="The maximum supported value for this parameter."/> 188 <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."/> 189 </Property> 190 </ComplexType> 191 </Schema> 192 193 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_1_1"> 194 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 195 <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."/> 196 <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_1_0.ActionInfo"/> 197 </Schema> 198 199 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_1_2"> 200 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 201 <Annotation Term="OData.Description" String="This version was created to update descriptions that this schema defines."/> 202 <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_1_1.ActionInfo"/> 203 </Schema> 204 205 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_1_3"> 206 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 207 <Annotation Term="OData.Description" String="This version was created to clarify the behavior of `AllowableValues`, `MinimumValue`, and `MaximumValue` for array parameters."/> 208 <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_1_2.ActionInfo"/> 209 </Schema> 210 211 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_1_4"> 212 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 213 <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."/> 214 <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_1_3.ActionInfo"/> 215 </Schema> 216 217 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_2_0"> 218 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 219 <Annotation Term="Redfish.Release" String="2021.2"/> 220 221 <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_1_3.ActionInfo"/> 222 223 <ComplexType Name="Parameters" BaseType="ActionInfo.v1_1_0.Parameters"> 224 <Property Name="ArraySizeMinimum" Type="Edm.Int64"> 225 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 226 <Annotation Term="OData.Description" String="The minimum number of array elements required for this parameter."/> 227 <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."/> 228 </Property> 229 <Property Name="ArraySizeMaximum" Type="Edm.Int64"> 230 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 231 <Annotation Term="OData.Description" String="The maximum number of array elements allowed for this parameter."/> 232 <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."/> 233 </Property> 234 </ComplexType> 235 </Schema> 236 237 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_2_1"> 238 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 239 <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."/> 240 <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_2_0.ActionInfo"/> 241 </Schema> 242 243 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_3_0"> 244 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 245 <Annotation Term="Redfish.Release" String="2022.2"/> 246 247 <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_2_0.ActionInfo"/> 248 249 <ComplexType Name="Parameters" BaseType="ActionInfo.v1_2_0.Parameters"> 250 <Property Name="AllowableNumbers" Type="Collection(Edm.String)"> 251 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 252 <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."/> 253 <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."/> 254 </Property> 255 <Property Name="AllowablePattern" Type="Edm.String"> 256 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 257 <Annotation Term="OData.Description" String="The allowable pattern for this parameter as applied to this action target."/> 258 <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."/> 259 </Property> 260 </ComplexType> 261 </Schema> 262 263 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_3_1"> 264 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 265 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 266 <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_3_0.ActionInfo"/> 267 </Schema> 268 269 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_3_2"> 270 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 271 <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."/> 272 <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_3_1.ActionInfo"/> 273 </Schema> 274 275 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_4_0"> 276 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 277 <Annotation Term="Redfish.Release" String="2023.2"/> 278 279 <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_3_0.ActionInfo"/> 280 281 <ComplexType Name="Parameters" BaseType="ActionInfo.v1_3_0.Parameters"> 282 <Property Name="AllowableValueDescriptions" Type="Collection(Edm.String)"> 283 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 284 <Annotation Term="OData.Description" String="Descriptions of allowable values for this parameter."/> 285 <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."/> 286 </Property> 287 </ComplexType> 288 </Schema> 289 290 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_4_1"> 291 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 292 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 293 <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_4_0.ActionInfo"/> 294 </Schema> 295 296 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="ActionInfo.v1_4_2"> 297 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 298 <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."/> 299 <EntityType Name="ActionInfo" BaseType="ActionInfo.v1_4_1.ActionInfo"/> 300 </Schema> 301 302 </edmx:DataServices> 303</edmx:Edmx> 304