1<?xml version="1.0" encoding="UTF-8"?> 2<!----> 3<!--################################################################################ --> 4<!--# Redfish Schema: Task v1.7.4 --> 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://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/Resource_v1.xml"> 24 <edmx:Include Namespace="Resource"/> 25 <edmx:Include Namespace="Resource.v1_0_0"/> 26 </edmx:Reference> 27 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/RedfishExtensions_v1.xml"> 28 <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/> 29 <edmx:Include Namespace="Validation.v1_0_0" Alias="Validation"/> 30 </edmx:Reference> 31 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Message_v1.xml"> 32 <edmx:Include Namespace="Message"/> 33 </edmx:Reference> 34 <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/TaskCollection_v1.xml"> 35 <edmx:Include Namespace="TaskCollection"/> 36 </edmx:Reference> 37 38 <edmx:DataServices> 39 40 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task"> 41 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 42 <Annotation Term="Redfish.Language" String="en"/> 43 44 <EntityType Name="Task" BaseType="Resource.v1_0_0.Resource" Abstract="true"> 45 <Annotation Term="OData.Description" String="The `Task` schema contains information about a task that the Redfish task service schedules or executes. Tasks represent operations that take more time than a client typically wants to wait."/> 46 <Annotation Term="OData.LongDescription" String="This resource contains a task for a Redfish implementation."/> 47 <Annotation Term="Capabilities.InsertRestrictions"> 48 <Record> 49 <PropertyValue Property="Insertable" Bool="false"/> 50 </Record> 51 </Annotation> 52 <Annotation Term="Capabilities.UpdateRestrictions"> 53 <Record> 54 <PropertyValue Property="Updatable" Bool="false"/> 55 </Record> 56 </Annotation> 57 <Annotation Term="Capabilities.DeleteRestrictions"> 58 <Record> 59 <PropertyValue Property="Deletable" Bool="true"/> 60 <Annotation Term="OData.Description" String="Use the `DELETE` operation to remove a task."/> 61 </Record> 62 </Annotation> 63 <Annotation Term="Redfish.Uris"> 64 <Collection> 65 <String>/redfish/v1/TaskService/Tasks/{TaskId}</String> 66 <String>/redfish/v1/TaskService/Tasks/{TaskId}/SubTasks/{TaskId2}</String> 67 </Collection> 68 </Annotation> 69 </EntityType> 70 </Schema> 71 72 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_0_0"> 73 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 74 <Annotation Term="Redfish.Release" String="1.0"/> 75 76 <EntityType Name="Task" BaseType="Task.Task"> 77 <Property Name="TaskState" Type="Task.v1_0_0.TaskState" Nullable="false"> 78 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 79 <Annotation Term="OData.Description" String="The state of the task."/> 80 <Annotation Term="OData.LongDescription" String="This property shall indicate the state of the task."/> 81 </Property> 82 <Property Name="StartTime" Type="Edm.DateTimeOffset" Nullable="false"> 83 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 84 <Annotation Term="OData.Description" String="The date and time when the task was started."/> 85 <Annotation Term="OData.LongDescription" String="This property shall indicate the date and time when the task was started."/> 86 </Property> 87 <Property Name="EndTime" Type="Edm.DateTimeOffset" Nullable="false"> 88 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 89 <Annotation Term="OData.Description" String="The date and time when the task was completed. This property will only appear when the task is complete."/> 90 <Annotation Term="OData.LongDescription" String="This property shall indicate the date and time when the task was completed. This property shall not appear if the task is running or otherwise has not been completed. This property shall appear only if the `TaskState` is `Completed`, `Killed`, `Cancelled`, or `Exception`."/> 91 </Property> 92 <Property Name="TaskStatus" Type="Resource.Health" Nullable="false"> 93 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 94 <Annotation Term="OData.Description" String="The completion status of the task."/> 95 <Annotation Term="OData.LongDescription" String="This property shall contain the completion status of the task and shall not be set until the task completes. This property should contain `Critical` if one or more messages in the `Messages` array contains the severity `Critical`. This property should contain `Warning` if one or more messages in the `Messages` array contains the severity `Warning` and if no messages contain the severity `Critical`. This property should contain `OK` if all messages in the `Messages` array contain the severity `OK` or if the array is empty."/> 96 </Property> 97 <Property Name="Messages" Type="Collection(Message.Message)" Nullable="false"> 98 <Annotation Term="OData.Description" String="An array of messages associated with the task."/> 99 <Annotation Term="OData.LongDescription" String="This property shall contain an array of messages associated with the task."/> 100 </Property> 101 </EntityType> 102 103 <EnumType Name="TaskState"> 104 <Member Name="New"> 105 <Annotation Term="OData.Description" String="A new task."/> 106 <Annotation Term="OData.LongDescription" String="This value shall represent that the task is newly created but has not started."/> 107 </Member> 108 <Member Name="Starting"> 109 <Annotation Term="OData.Description" String="Task is starting."/> 110 <Annotation Term="OData.LongDescription" String="This value shall represent that the task is starting."/> 111 </Member> 112 <Member Name="Running"> 113 <Annotation Term="OData.Description" String="Task is running normally."/> 114 <Annotation Term="OData.LongDescription" String="This value shall represent that the task is executing."/> 115 </Member> 116 <Member Name="Suspended"> 117 <Annotation Term="OData.Description" String="Task has been suspended."/> 118 <Annotation Term="OData.LongDescription" String="This value shall represent that the task has been suspended but is expected to restart and is therefore not complete."/> 119 </Member> 120 <Member Name="Interrupted"> 121 <Annotation Term="OData.Description" String="Task has been interrupted."/> 122 <Annotation Term="OData.LongDescription" String="This value shall represent that the task has been interrupted but is expected to restart and is therefore not complete."/> 123 </Member> 124 <Member Name="Pending"> 125 <Annotation Term="OData.Description" String="Task is pending and has not started."/> 126 <Annotation Term="OData.LongDescription" String="This value shall represent that the task is pending some condition and has not yet begun to execute."/> 127 </Member> 128 <Member Name="Stopping"> 129 <Annotation Term="OData.Description" String="Task is in the process of stopping."/> 130 <Annotation Term="OData.LongDescription" String="This value shall represent that the task is stopping but is not yet complete."/> 131 </Member> 132 <Member Name="Completed"> 133 <Annotation Term="OData.Description" String="Task was completed."/> 134 <Annotation Term="OData.LongDescription" String="This value shall represent that the task completed successfully or with warnings."/> 135 </Member> 136 <Member Name="Killed"> 137 <Annotation Term="OData.Description" String="Task was terminated."/> 138 <Annotation Term="OData.LongDescription" String="This value shall represent that the task is complete because an operator killed it."/> 139 <Annotation Term="Redfish.Revisions"> 140 <Collection> 141 <Record> 142 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/> 143 <PropertyValue Property="Version" String="v1_2_0"/> 144 <PropertyValue Property="Description" String="This value has been deprecated and is being replaced by the `Cancelled` value, which has more determinate semantics."/> 145 </Record> 146 </Collection> 147 </Annotation> 148 </Member> 149 <Member Name="Exception"> 150 <Annotation Term="OData.Description" String="Task has stopped due to an exception condition."/> 151 <Annotation Term="OData.LongDescription" String="This value shall represent that the task completed with errors."/> 152 </Member> 153 <Member Name="Service"> 154 <Annotation Term="OData.Description" String="Task is running as a service."/> 155 <Annotation Term="OData.LongDescription" String="This value shall represent that the task is now running as a service and expected to continue operation until stopped or killed."/> 156 </Member> 157 <Member Name="Cancelling"> 158 <Annotation Term="OData.Description" String="Task is in the process of being cancelled."/> 159 <Annotation Term="OData.LongDescription" String="This value shall represent that the task is in the process of being cancelled."/> 160 <Annotation Term="Redfish.Revisions"> 161 <Collection> 162 <Record> 163 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 164 <PropertyValue Property="Version" String="v1_2_0"/> 165 </Record> 166 </Collection> 167 </Annotation> 168 </Member> 169 <Member Name="Cancelled"> 170 <Annotation Term="OData.Description" String="Task has been cancelled by an operator or internal process."/> 171 <Annotation Term="OData.LongDescription" String="This value shall represent that either a `DELETE` operation on a task monitor or `Task` resource or by an internal process cancelled the task."/> 172 <Annotation Term="Redfish.Revisions"> 173 <Collection> 174 <Record> 175 <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/> 176 <PropertyValue Property="Version" String="v1_2_0"/> 177 </Record> 178 </Collection> 179 </Annotation> 180 </Member> 181 </EnumType> 182 </Schema> 183 184 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_0_2"> 185 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 186 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/> 187 <EntityType Name="Task" BaseType="Task.v1_0_0.Task"/> 188 </Schema> 189 190 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_0_3"> 191 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 192 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/> 193 <EntityType Name="Task" BaseType="Task.v1_0_2.Task"/> 194 </Schema> 195 196 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_0_4"> 197 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 198 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/> 199 <EntityType Name="Task" BaseType="Task.v1_0_3.Task"/> 200 </Schema> 201 202 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_0_5"> 203 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 204 <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."/> 205 <EntityType Name="Task" BaseType="Task.v1_0_4.Task"/> 206 </Schema> 207 208 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_0_6"> 209 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 210 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/> 211 <EntityType Name="Task" BaseType="Task.v1_0_5.Task"/> 212 </Schema> 213 214 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_0_7"> 215 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 216 <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. It was also created to correct the resource description."/> 217 <EntityType Name="Task" BaseType="Task.v1_0_6.Task"/> 218 </Schema> 219 220 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_0_8"> 221 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 222 <Annotation Term="OData.Description" String="This version was created to clarify the descriptions of the `StartTime` and `EndTime` properties. It was also created to update descriptions that this schema defines."/> 223 <EntityType Name="Task" BaseType="Task.v1_0_7.Task"/> 224 </Schema> 225 226 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_0_9"> 227 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 228 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 229 <EntityType Name="Task" BaseType="Task.v1_0_8.Task"/> 230 </Schema> 231 232 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_0_10"> 233 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 234 <Annotation Term="OData.Description" String="This version was created to clarify the mapping of `TaskStatus`."/> 235 <EntityType Name="Task" BaseType="Task.v1_0_9.Task"/> 236 </Schema> 237 238 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_0_11"> 239 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 240 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 241 <EntityType Name="Task" BaseType="Task.v1_0_10.Task"/> 242 </Schema> 243 244 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_0_12"> 245 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 246 <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."/> 247 <EntityType Name="Task" BaseType="Task.v1_0_11.Task"/> 248 </Schema> 249 250 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_1_0"> 251 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 252 <Annotation Term="Redfish.Release" String="2017.1"/> 253 254 <EntityType Name="Task" BaseType="Task.v1_0_3.Task"> 255 <Property Name="Actions" Type="Task.v1_1_0.Actions" Nullable="false"> 256 <Annotation Term="OData.Description" String="The available actions for this resource."/> 257 <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/> 258 </Property> 259 </EntityType> 260 261 <ComplexType Name="Actions"> 262 <Annotation Term="OData.AdditionalProperties" Bool="false"/> 263 <Annotation Term="OData.Description" String="The available actions for this resource."/> 264 <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/> 265 <Property Name="Oem" Type="Task.v1_1_0.OemActions" Nullable="false"> 266 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/> 267 <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/> 268 </Property> 269 </ComplexType> 270 271 <ComplexType Name="OemActions"> 272 <Annotation Term="OData.AdditionalProperties" Bool="true"/> 273 <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/> 274 <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/> 275 </ComplexType> 276 </Schema> 277 278 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_1_1"> 279 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 280 <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/> 281 <EntityType Name="Task" BaseType="Task.v1_1_0.Task"/> 282 </Schema> 283 284 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_1_2"> 285 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 286 <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."/> 287 <EntityType Name="Task" BaseType="Task.v1_1_1.Task"/> 288 </Schema> 289 290 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_1_3"> 291 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 292 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/> 293 <EntityType Name="Task" BaseType="Task.v1_1_2.Task"/> 294 </Schema> 295 296 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_1_4"> 297 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 298 <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. It was also created to correct the resource description."/> 299 <EntityType Name="Task" BaseType="Task.v1_1_3.Task"/> 300 </Schema> 301 302 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_1_5"> 303 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 304 <Annotation Term="OData.Description" String="This version was created to clarify the descriptions of the `StartTime` and `EndTime` properties. It was also created to update descriptions that this schema defines."/> 305 <EntityType Name="Task" BaseType="Task.v1_1_4.Task"/> 306 </Schema> 307 308 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_1_6"> 309 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 310 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 311 <EntityType Name="Task" BaseType="Task.v1_1_5.Task"/> 312 </Schema> 313 314 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_1_7"> 315 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 316 <Annotation Term="OData.Description" String="This version was created to clarify the mapping of `TaskStatus`."/> 317 <EntityType Name="Task" BaseType="Task.v1_1_6.Task"/> 318 </Schema> 319 320 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_1_8"> 321 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 322 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 323 <EntityType Name="Task" BaseType="Task.v1_1_7.Task"/> 324 </Schema> 325 326 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_1_9"> 327 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 328 <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."/> 329 <EntityType Name="Task" BaseType="Task.v1_1_8.Task"/> 330 </Schema> 331 332 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_2_0"> 333 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 334 <Annotation Term="Redfish.Release" String="2018.1"/> 335 <Annotation Term="OData.Description" String="This version was created to add the `Cancelled` and `Cancelling` values to TaskState, and deprecate `Killed`."/> 336 337 <EntityType Name="Task" BaseType="Task.v1_1_1.Task"> 338 <Property Name="TaskMonitor" Type="Edm.String" Nullable="false"> 339 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 340 <Annotation Term="OData.Description" String="The URI of the task monitor for this task."/> 341 <Annotation Term="OData.LongDescription" String="This property shall contain a URI to task monitor as defined in the Redfish Specification."/> 342 <Annotation Term="OData.IsURL"/> 343 </Property> 344 </EntityType> 345 </Schema> 346 347 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_2_1"> 348 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 349 <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."/> 350 <EntityType Name="Task" BaseType="Task.v1_2_0.Task"/> 351 </Schema> 352 353 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_2_2"> 354 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 355 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/> 356 <EntityType Name="Task" BaseType="Task.v1_2_1.Task"/> 357 </Schema> 358 359 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_2_3"> 360 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 361 <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. It was also created to correct the resource description."/> 362 <EntityType Name="Task" BaseType="Task.v1_2_2.Task"/> 363 </Schema> 364 365 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_2_4"> 366 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 367 <Annotation Term="OData.Description" String="This version was created to clarify the descriptions of the `StartTime` and `EndTime` properties. It was also created to update descriptions that this schema defines."/> 368 <EntityType Name="Task" BaseType="Task.v1_2_3.Task"/> 369 </Schema> 370 371 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_2_5"> 372 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 373 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 374 <EntityType Name="Task" BaseType="Task.v1_2_4.Task"/> 375 </Schema> 376 377 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_2_6"> 378 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 379 <Annotation Term="OData.Description" String="This version was created to clarify the mapping of `TaskStatus`."/> 380 <EntityType Name="Task" BaseType="Task.v1_2_5.Task"/> 381 </Schema> 382 383 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_2_7"> 384 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 385 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 386 <EntityType Name="Task" BaseType="Task.v1_2_6.Task"/> 387 </Schema> 388 389 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_2_8"> 390 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 391 <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."/> 392 <EntityType Name="Task" BaseType="Task.v1_2_7.Task"/> 393 </Schema> 394 395 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_3_0"> 396 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 397 <Annotation Term="Redfish.Release" String="2018.2"/> 398 399 <EntityType Name="Task" BaseType="Task.v1_2_1.Task"> 400 <Property Name="Payload" Type="Task.v1_3_0.Payload" Nullable="false"> 401 <Annotation Term="OData.Description" String="The HTTP and JSON request payload details for this task, unless they are hidden from view by the service."/> 402 <Annotation Term="OData.LongDescription" String="This object shall contain information detailing the HTTP and JSON request payload information for executing this task. This property shall not be included in the response if the `HidePayload` property is `true`."/> 403 </Property> 404 <Property Name="HidePayload" Type="Edm.Boolean" Nullable="false"> 405 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 406 <Annotation Term="OData.Description" String="An indication of whether the contents of the payload are hidden from view after the task has been created. If `true`, responses do not return the payload. If `false`, responses return the payload. If this property is not present when the task is created, the default is `false`."/> 407 <Annotation Term="OData.LongDescription" String="This property shall indicate whether the contents of the payload should be hidden from view after the task has been created. If `true`, responses shall not return the `Payload` property. If `false`, responses shall return the `Payload` property. If this property is not present when the task is created, the default is `false`. This property shall be supported if the `Payload` property is supported."/> 408 </Property> 409 </EntityType> 410 411 <ComplexType Name="Payload"> 412 <Annotation Term="OData.Description" String="The HTTP and JSON payload details for this Task."/> 413 <Annotation Term="OData.LongDescription" String="This type shall contain information detailing the HTTP and JSON payload information for executing this task."/> 414 <Annotation Term="OData.AdditionalProperties" Bool="false"/> 415 <Property Name="TargetUri" Type="Edm.String" Nullable="false"> 416 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 417 <Annotation Term="OData.Description" String="The URI of the target for this task."/> 418 <Annotation Term="OData.LongDescription" String="This property shall contain a link to the location to use as the target for an HTTP operation."/> 419 <Annotation Term="OData.IsURL"/> 420 </Property> 421 <Property Name="HttpOperation" Type="Edm.String" Nullable="false"> 422 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 423 <Annotation Term="OData.Description" String="The HTTP operation to perform to execute this task."/> 424 <Annotation Term="OData.LongDescription" String="This property shall contain the HTTP operation to execute for this task."/> 425 </Property> 426 <Property Name="HttpHeaders" Type="Collection(Edm.String)" Nullable="false"> 427 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 428 <Annotation Term="OData.Description" String="An array of HTTP headers that this task includes."/> 429 <Annotation Term="OData.LongDescription" String="This property shall contain an array of HTTP headers that this task includes."/> 430 </Property> 431 <Property Name="JsonBody" Type="Edm.String" Nullable="false"> 432 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 433 <Annotation Term="OData.Description" String="The JSON payload to use in the execution of this task."/> 434 <Annotation Term="OData.LongDescription" String="This property shall contain the JSON-formatted payload used for this task."/> 435 </Property> 436 </ComplexType> 437 </Schema> 438 439 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_3_1"> 440 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 441 <Annotation Term="OData.Description" String="This version was created to use the new revisions annotation."/> 442 <EntityType Name="Task" BaseType="Task.v1_3_0.Task"/> 443 </Schema> 444 445 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_3_2"> 446 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 447 <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. It was also created to correct the resource description."/> 448 <EntityType Name="Task" BaseType="Task.v1_3_1.Task"/> 449 </Schema> 450 451 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_3_3"> 452 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 453 <Annotation Term="OData.Description" String="This version was created to update the descriptions of the `HidePayload`, `StartTime`, and `EndTime` properties. It was also created to update descriptions that this schema defines."/> 454 <EntityType Name="Task" BaseType="Task.v1_3_2.Task"/> 455 </Schema> 456 457 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_3_4"> 458 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 459 <Annotation Term="OData.Description" String="This version was created to update the descriptions of the `HidePayload` property."/> 460 <EntityType Name="Task" BaseType="Task.v1_3_3.Task"/> 461 </Schema> 462 463 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_3_5"> 464 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 465 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 466 <EntityType Name="Task" BaseType="Task.v1_3_4.Task"/> 467 </Schema> 468 469 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_3_6"> 470 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 471 <Annotation Term="OData.Description" String="This version was created to clarify the mapping of `TaskStatus`."/> 472 <EntityType Name="Task" BaseType="Task.v1_3_5.Task"/> 473 </Schema> 474 475 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_3_7"> 476 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 477 <Annotation Term="OData.Description" String="This version was created to clarify the usage of the `Payload` property."/> 478 <EntityType Name="Task" BaseType="Task.v1_3_6.Task"/> 479 </Schema> 480 481 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_3_8"> 482 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 483 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 484 <EntityType Name="Task" BaseType="Task.v1_3_7.Task"/> 485 </Schema> 486 487 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_3_9"> 488 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 489 <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."/> 490 <EntityType Name="Task" BaseType="Task.v1_3_8.Task"/> 491 </Schema> 492 493 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_4_0"> 494 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 495 <Annotation Term="Redfish.Release" String="2018.3"/> 496 497 <EntityType Name="Task" BaseType="Task.v1_3_1.Task"> 498 <Property Name="PercentComplete" Type="Edm.Int64"> 499 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 500 <Annotation Term="OData.Description" String="The completion percentage of this task."/> 501 <Annotation Term="OData.LongDescription" String="This property shall indicate the completion progress of the task, reported in percent of completion, `0` to `100`. If the task has not been started, the value shall be zero."/> 502 <Annotation Term="Measures.Unit" String="%"/> 503 <Annotation Term="Validation.Minimum" Int="0"/> 504 <Annotation Term="Validation.Maximum" Int="100"/> 505 </Property> 506 </EntityType> 507 </Schema> 508 509 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_4_1"> 510 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 511 <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. It was also created to correct the resource description."/> 512 <EntityType Name="Task" BaseType="Task.v1_4_0.Task"/> 513 </Schema> 514 515 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_4_2"> 516 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 517 <Annotation Term="OData.Description" String="This version was created to update the descriptions of the `HidePayload`, `StartTime`, and `EndTime` properties. It was also created to update descriptions that this schema defines."/> 518 <EntityType Name="Task" BaseType="Task.v1_4_1.Task"/> 519 </Schema> 520 521 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_4_3"> 522 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 523 <Annotation Term="OData.Description" String="This version was created to update the descriptions of the `HidePayload` property."/> 524 <EntityType Name="Task" BaseType="Task.v1_4_2.Task"/> 525 </Schema> 526 527 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_4_4"> 528 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 529 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 530 <EntityType Name="Task" BaseType="Task.v1_4_3.Task"/> 531 </Schema> 532 533 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_4_5"> 534 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 535 <Annotation Term="OData.Description" String="This version was created to clarify the mapping of `TaskStatus`."/> 536 <EntityType Name="Task" BaseType="Task.v1_4_4.Task"/> 537 </Schema> 538 539 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_4_6"> 540 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 541 <Annotation Term="OData.Description" String="This version was created to clarify the usage of the `Payload` property."/> 542 <EntityType Name="Task" BaseType="Task.v1_4_5.Task"/> 543 </Schema> 544 545 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_4_7"> 546 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 547 <Annotation Term="OData.Description" String="This version was created to clarify the range of possible values for properties with percent units."/> 548 <EntityType Name="Task" BaseType="Task.v1_4_6.Task"/> 549 </Schema> 550 551 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_4_8"> 552 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 553 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 554 <EntityType Name="Task" BaseType="Task.v1_4_7.Task"/> 555 </Schema> 556 557 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_4_9"> 558 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 559 <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."/> 560 <EntityType Name="Task" BaseType="Task.v1_4_8.Task"/> 561 </Schema> 562 563 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_5_0"> 564 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 565 <Annotation Term="Redfish.Release" String="2020.3"/> 566 567 <EntityType Name="Task" BaseType="Task.v1_4_3.Task"> 568 <NavigationProperty Name="SubTasks" Type="TaskCollection.TaskCollection" ContainsTarget="true" Nullable="false"> 569 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 570 <Annotation Term="OData.Description" String="The link to a collection of sub-tasks for this task."/> 571 <Annotation Term="OData.LongDescription" String="This property shall contain a link to a resource collection of type `TaskCollection`. This property shall not be present if this resource represents a sub-task for a task."/> 572 <Annotation Term="OData.AutoExpandReferences"/> 573 </NavigationProperty> 574 </EntityType> 575 </Schema> 576 577 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_5_1"> 578 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 579 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 580 <EntityType Name="Task" BaseType="Task.v1_5_0.Task"/> 581 </Schema> 582 583 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_5_2"> 584 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 585 <Annotation Term="OData.Description" String="This version was created to clarify the mapping of `TaskStatus`."/> 586 <EntityType Name="Task" BaseType="Task.v1_5_1.Task"/> 587 </Schema> 588 589 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_5_3"> 590 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 591 <Annotation Term="OData.Description" String="This version was created to clarify the usage of the `Payload` property."/> 592 <EntityType Name="Task" BaseType="Task.v1_5_2.Task"/> 593 </Schema> 594 595 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_5_4"> 596 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 597 <Annotation Term="OData.Description" String="This version was created to clarify the range of possible values for properties with percent units."/> 598 <EntityType Name="Task" BaseType="Task.v1_5_3.Task"/> 599 </Schema> 600 601 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_5_5"> 602 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 603 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 604 <EntityType Name="Task" BaseType="Task.v1_5_4.Task"/> 605 </Schema> 606 607 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_5_6"> 608 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 609 <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."/> 610 <EntityType Name="Task" BaseType="Task.v1_5_5.Task"/> 611 </Schema> 612 613 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_6_0"> 614 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 615 <Annotation Term="Redfish.Release" String="2022.1"/> 616 617 <EntityType Name="Task" BaseType="Task.v1_5_1.Task"> 618 <Property Name="EstimatedDuration" Type="Edm.Duration"> 619 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 620 <Annotation Term="OData.Description" String="The estimated total time required to complete the task."/> 621 <Annotation Term="OData.LongDescription" String="This property shall indicate the estimated total time needed to complete the task. The value is not expected to change while the task is in progress, but the service may update the value if it obtains new information that significantly changes the expected duration. Services should be conservative in the reported estimate and clients should treat this value as an estimate."/> 622 </Property> 623 </EntityType> 624 </Schema> 625 626 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_6_1"> 627 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 628 <Annotation Term="OData.Description" String="This version was created to clarify the mapping of `TaskStatus`."/> 629 <EntityType Name="Task" BaseType="Task.v1_6_0.Task"/> 630 </Schema> 631 632 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_6_2"> 633 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 634 <Annotation Term="OData.Description" String="This version was created to clarify the usage of the `Payload` property."/> 635 <EntityType Name="Task" BaseType="Task.v1_6_1.Task"/> 636 </Schema> 637 638 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_6_3"> 639 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 640 <Annotation Term="OData.Description" String="This version was created to correct the regular expression pattern for duration properties in JSON Schema and OpenAPI to not allow for negative values."/> 641 <EntityType Name="Task" BaseType="Task.v1_6_2.Task"/> 642 </Schema> 643 644 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_6_4"> 645 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 646 <Annotation Term="OData.Description" String="This version was created to clarify the range of possible values for properties with percent units."/> 647 <EntityType Name="Task" BaseType="Task.v1_6_3.Task"/> 648 </Schema> 649 650 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_6_5"> 651 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 652 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 653 <EntityType Name="Task" BaseType="Task.v1_6_4.Task"/> 654 </Schema> 655 656 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_6_6"> 657 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 658 <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."/> 659 <EntityType Name="Task" BaseType="Task.v1_6_5.Task"/> 660 </Schema> 661 662 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_7_0"> 663 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 664 <Annotation Term="Redfish.Release" String="2022.3"/> 665 666 <EntityType Name="Task" BaseType="Task.v1_6_2.Task"> 667 <Property Name="Links" Type="Task.v1_7_0.Links" Nullable="false"> 668 <Annotation Term="OData.Description" String="Contains references to other resources that are related to this resource."/> 669 <Annotation Term="OData.LongDescription" String="The `Links` property, as described by the Redfish Specification, shall contain references to resources that are related to but are not contained by, or subordinate to, this resource."/> 670 </Property> 671 </EntityType> 672 673 <ComplexType Name="Links" BaseType="Resource.Links"> 674 <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/> 675 <Annotation Term="OData.LongDescription" String="This Redfish Specification-described type shall contain links to resources that are related to but are not contained by, or subordinate to, this resource."/> 676 <NavigationProperty Name="CreatedResources" Type="Collection(Resource.Item)"> 677 <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/> 678 <Annotation Term="OData.Description" String="An array of URIs referencing the resources created as the result of the operation that produced this task."/> 679 <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to resources indicating the resources created as the result of the operation that produced this task. Services shall set this property prior to the task entering its final state."/> 680 <Annotation Term="OData.AutoExpandReferences"/> 681 </NavigationProperty> 682 </ComplexType> 683 </Schema> 684 685 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_7_1"> 686 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 687 <Annotation Term="OData.Description" String="This version was created to correct the regular expression pattern for duration properties in JSON Schema and OpenAPI to not allow for negative values."/> 688 <EntityType Name="Task" BaseType="Task.v1_7_0.Task"/> 689 </Schema> 690 691 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_7_2"> 692 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 693 <Annotation Term="OData.Description" String="This version was created to clarify the range of possible values for properties with percent units."/> 694 <EntityType Name="Task" BaseType="Task.v1_7_1.Task"/> 695 </Schema> 696 697 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_7_3"> 698 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 699 <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/> 700 <EntityType Name="Task" BaseType="Task.v1_7_2.Task"/> 701 </Schema> 702 703 <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_7_4"> 704 <Annotation Term="Redfish.OwningEntity" String="DMTF"/> 705 <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."/> 706 <EntityType Name="Task" BaseType="Task.v1_7_3.Task"/> 707 </Schema> 708 709 </edmx:DataServices> 710</edmx:Edmx> 711