1<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################       -->
4<!--# Redfish Schema:  Task v1.5.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-2020 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:Reference>
30  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Message_v1.xml">
31    <edmx:Include Namespace="Message"/>
32  </edmx:Reference>
33  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/TaskCollection_v1.xml">
34    <edmx:Include Namespace="TaskCollection"/>
35  </edmx:Reference>
36
37  <edmx:DataServices>
38
39    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task">
40      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
41
42      <EntityType Name="Task" BaseType="Resource.v1_0_0.Resource" Abstract="true">
43        <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."/>
44        <Annotation Term="OData.LongDescription" String="This Resource contains a Task for a Redfish implementation."/>
45        <Annotation Term="Capabilities.InsertRestrictions">
46          <Record>
47            <PropertyValue Property="Insertable" Bool="false"/>
48          </Record>
49        </Annotation>
50        <Annotation Term="Capabilities.UpdateRestrictions">
51          <Record>
52            <PropertyValue Property="Updatable" Bool="false"/>
53          </Record>
54        </Annotation>
55        <Annotation Term="Capabilities.DeleteRestrictions">
56          <Record>
57            <PropertyValue Property="Deletable" Bool="true"/>
58            <Annotation Term="OData.Description" String="Use the DELETE operation to remove a task."/>
59          </Record>
60        </Annotation>
61        <Annotation Term="Redfish.Uris">
62          <Collection>
63            <String>/redfish/v1/TaskService/Tasks/{TaskId}</String>
64            <String>/redfish/v1/TaskService/Tasks/{TaskId}/SubTasks/{TaskId2}</String>
65          </Collection>
66        </Annotation>
67      </EntityType>
68
69    </Schema>
70
71    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_0_0">
72      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
73      <Annotation Term="Redfish.Release" String="1.0"/>
74
75      <EntityType Name="Task" BaseType="Task.Task">
76        <Property Name="TaskState" Type="Task.v1_0_0.TaskState" Nullable="false">
77          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
78          <Annotation Term="OData.Description" String="The state of the task."/>
79          <Annotation Term="OData.LongDescription" String="This property shall indicate the state of the task."/>
80        </Property>
81        <Property Name="StartTime" Type="Edm.DateTimeOffset" Nullable="false">
82          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
83          <Annotation Term="OData.Description" String="The date and time when the task was started."/>
84          <Annotation Term="OData.LongDescription" String="This property shall indicate the date and time when the task was started."/>
85        </Property>
86        <Property Name="EndTime" Type="Edm.DateTimeOffset" Nullable="false">
87          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
88          <Annotation Term="OData.Description" String="The date and time when the task was completed.  This property will only appear when the task is complete."/>
89          <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."/>
90        </Property>
91        <Property Name="TaskStatus" Type="Resource.Health" Nullable="false">
92          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
93          <Annotation Term="OData.Description" String="The completion status of the task."/>
94          <Annotation Term="OData.LongDescription" String="This property shall contain the completion status of the task, as defined in the Status section of the Redfish Specification and shall not be set until the task completes."/>
95        </Property>
96        <Property Name="Messages" Type="Collection(Message.Message)" Nullable="false">
97          <Annotation Term="OData.Description" String="An array of messages associated with the task."/>
98          <Annotation Term="OData.LongDescription" String="This property shall contain an array of messages associated with the task."/>
99        </Property>
100      </EntityType>
101
102      <EnumType Name="TaskState">
103        <Member Name="New">
104          <Annotation Term="OData.Description" String="A new task."/>
105          <Annotation Term="OData.LongDescription" String="This value shall represent that the task is newly created, but has not started."/>
106        </Member>
107        <Member Name="Starting">
108          <Annotation Term="OData.Description" String="Task is starting."/>
109          <Annotation Term="OData.LongDescription" String="This value shall represent that the task is starting."/>
110        </Member>
111        <Member Name="Running">
112          <Annotation Term="OData.Description" String="Task is running normally."/>
113          <Annotation Term="OData.LongDescription" String="This value shall represent that the task is executing."/>
114        </Member>
115        <Member Name="Suspended">
116          <Annotation Term="OData.Description" String="Task has been suspended."/>
117          <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."/>
118        </Member>
119        <Member Name="Interrupted">
120          <Annotation Term="OData.Description" String="Task has been interrupted."/>
121          <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."/>
122        </Member>
123        <Member Name="Pending">
124          <Annotation Term="OData.Description" String="Task is pending and has not started."/>
125          <Annotation Term="OData.LongDescription" String="This value shall represent that the task is pending some condition and has not yet begun to execute."/>
126        </Member>
127        <Member Name="Stopping">
128          <Annotation Term="OData.Description" String="Task is in the process of stopping."/>
129          <Annotation Term="OData.LongDescription" String="This value shall represent that the task is stopping but is not yet complete."/>
130        </Member>
131        <Member Name="Completed">
132          <Annotation Term="OData.Description" String="Task was completed."/>
133          <Annotation Term="OData.LongDescription" String="This value shall represent that the task completed successfully or with warnings."/>
134        </Member>
135        <Member Name="Killed">
136          <Annotation Term="OData.Description" String="Task was terminated."/>
137          <Annotation Term="OData.LongDescription" String="This value shall represent that the task is complete because an operator killed it."/>
138          <Annotation Term="Redfish.Revisions">
139            <Collection>
140              <Record>
141                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Deprecated"/>
142                <PropertyValue Property="Version" String="v1_2_0"/>
143                <PropertyValue Property="Description" String="This value has been deprecated and is being replaced by the Cancelled value, which has more determinate semantics."/>
144              </Record>
145            </Collection>
146          </Annotation>
147        </Member>
148        <Member Name="Exception">
149          <Annotation Term="OData.Description" String="Task has stopped due to an exception condition."/>
150          <Annotation Term="OData.LongDescription" String="This value shall represent that the task completed with errors."/>
151        </Member>
152        <Member Name="Service">
153          <Annotation Term="OData.Description" String="Task is running as a service."/>
154          <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."/>
155        </Member>
156        <Member Name="Cancelling">
157          <Annotation Term="OData.Description" String="Task is in the process of being cancelled."/>
158          <Annotation Term="OData.LongDescription" String="This value shall represent that the task is in the process of being cancelled."/>
159          <Annotation Term="Redfish.Revisions">
160            <Collection>
161              <Record>
162                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
163                <PropertyValue Property="Version" String="v1_2_0"/>
164              </Record>
165            </Collection>
166          </Annotation>
167        </Member>
168        <Member Name="Cancelled">
169          <Annotation Term="OData.Description" String="Task has been cancelled by an operator or internal process."/>
170          <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."/>
171          <Annotation Term="Redfish.Revisions">
172            <Collection>
173              <Record>
174                <PropertyValue Property="Kind" EnumMember="Redfish.RevisionKind/Added"/>
175                <PropertyValue Property="Version" String="v1_2_0"/>
176              </Record>
177            </Collection>
178          </Annotation>
179        </Member>
180      </EnumType>
181    </Schema>
182
183    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_0_2">
184      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
185      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
186      <EntityType Name="Task" BaseType="Task.v1_0_0.Task"/>
187    </Schema>
188
189    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_0_3">
190      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
191      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
192      <EntityType Name="Task" BaseType="Task.v1_0_2.Task"/>
193    </Schema>
194
195    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_0_4">
196      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
197      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
198      <EntityType Name="Task" BaseType="Task.v1_0_3.Task"/>
199    </Schema>
200
201    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_0_5">
202      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
203      <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."/>
204      <EntityType Name="Task" BaseType="Task.v1_0_4.Task"/>
205    </Schema>
206
207    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_0_6">
208      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
209      <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation."/>
210      <EntityType Name="Task" BaseType="Task.v1_0_5.Task"/>
211    </Schema>
212
213    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_0_7">
214      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
215      <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."/>
216      <EntityType Name="Task" BaseType="Task.v1_0_6.Task"/>
217    </Schema>
218
219    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_0_8">
220      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
221      <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."/>
222      <EntityType Name="Task" BaseType="Task.v1_0_7.Task"/>
223    </Schema>
224
225    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_0_9">
226      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
227      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
228      <EntityType Name="Task" BaseType="Task.v1_0_8.Task"/>
229    </Schema>
230
231    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_1_0">
232      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
233      <Annotation Term="Redfish.Release" String="2017.1"/>
234      <EntityType Name="Task" BaseType="Task.v1_0_3.Task">
235        <Property Name="Actions" Type="Task.v1_1_0.Actions" Nullable="false">
236          <Annotation Term="OData.Description" String="The available actions for this Resource."/>
237          <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this Resource."/>
238        </Property>
239      </EntityType>
240
241      <ComplexType Name="Actions">
242        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
243        <Annotation Term="OData.Description" String="The available actions for this Resource."/>
244        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this Resource."/>
245        <Property Name="Oem" Type="Task.v1_1_0.OemActions" Nullable="false">
246          <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
247          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this Resource."/>
248        </Property>
249      </ComplexType>
250
251      <ComplexType Name="OemActions">
252        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
253        <Annotation Term="OData.Description" String="The available OEM-specific actions for this Resource."/>
254        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this Resource."/>
255      </ComplexType>
256    </Schema>
257
258    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_1_1">
259      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
260      <Annotation Term="OData.Description" String="This version was created to show that annotations in previous namespaces were updated."/>
261      <EntityType Name="Task" BaseType="Task.v1_1_0.Task"/>
262    </Schema>
263
264    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_1_2">
265      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
266      <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."/>
267      <EntityType Name="Task" BaseType="Task.v1_1_1.Task"/>
268    </Schema>
269
270    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_1_3">
271      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
272      <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation."/>
273      <EntityType Name="Task" BaseType="Task.v1_1_2.Task"/>
274    </Schema>
275
276    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_1_4">
277      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
278      <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."/>
279      <EntityType Name="Task" BaseType="Task.v1_1_3.Task"/>
280    </Schema>
281
282    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_1_5">
283      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
284      <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."/>
285      <EntityType Name="Task" BaseType="Task.v1_1_4.Task"/>
286    </Schema>
287
288    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_1_6">
289      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
290      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
291      <EntityType Name="Task" BaseType="Task.v1_1_5.Task"/>
292    </Schema>
293
294    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_2_0">
295      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
296      <Annotation Term="Redfish.Release" String="2018.1"/>
297      <Annotation Term="OData.Description" String="This version was created to add the TaskMonitor property.  This version was also created to add the Cancelled and Cancelling to TaskState, and deprecates Killed."/>
298      <EntityType Name="Task" BaseType="Task.v1_1_1.Task">
299        <Property Name="TaskMonitor" Type="Edm.String" Nullable="false">
300          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
301          <Annotation Term="OData.Description" String="The URI of the Task Monitor for this task."/>
302          <Annotation Term="OData.LongDescription" String="This property shall contain a URI to Task Monitor as defined in the Redfish Specification."/>
303          <Annotation Term="OData.IsURL"/>
304        </Property>
305      </EntityType>
306    </Schema>
307
308    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_2_1">
309      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
310      <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."/>
311      <EntityType Name="Task" BaseType="Task.v1_2_0.Task"/>
312    </Schema>
313
314    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_2_2">
315      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
316      <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation."/>
317      <EntityType Name="Task" BaseType="Task.v1_2_1.Task"/>
318    </Schema>
319
320    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_2_3">
321      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
322      <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."/>
323      <EntityType Name="Task" BaseType="Task.v1_2_2.Task"/>
324    </Schema>
325
326    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_2_4">
327      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
328      <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."/>
329      <EntityType Name="Task" BaseType="Task.v1_2_3.Task"/>
330    </Schema>
331
332    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_2_5">
333      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
334      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
335      <EntityType Name="Task" BaseType="Task.v1_2_4.Task"/>
336    </Schema>
337
338    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_3_0">
339      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
340      <Annotation Term="Redfish.Release" String="2018.2"/>
341      <Annotation Term="OData.Description" String="This version was created to add the Payload object to provide consistent capabilities with jobs."/>
342
343      <EntityType Name="Task" BaseType="Task.v1_2_1.Task">
344        <Property Name="Payload" Type="Task.v1_3_0.Payload" Nullable="false">
345          <Annotation Term="OData.Description" String="The HTTP and JSON payload details for this task, unless they are hidden from view by the service."/>
346          <Annotation Term="OData.LongDescription" String="This object shall contain information detailing the HTTP and JSON payload information for executing this task.  This object shall not be included in the response if the HidePayload property is `true`."/>
347        </Property>
348        <Property Name="HidePayload" Type="Edm.Boolean" Nullable="false">
349          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
350          <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`."/>
351          <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."/>
352        </Property>
353      </EntityType>
354
355      <ComplexType Name="Payload">
356        <Annotation Term="OData.Description" String="The HTTP and JSON payload details for this Task."/>
357        <Annotation Term="OData.LongDescription" String="This type shall contain information detailing the HTTP and JSON payload information for executing this Task."/>
358        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
359        <Property Name="TargetUri" Type="Edm.String" Nullable="false">
360          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
361          <Annotation Term="OData.Description" String="The URI of the target for this task."/>
362          <Annotation Term="OData.LongDescription" String="This property shall contain a link to the location to use as the target for an HTTP operation."/>
363          <Annotation Term="OData.IsURL"/>
364        </Property>
365        <Property Name="HttpOperation" Type="Edm.String" Nullable="false">
366          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
367          <Annotation Term="OData.Description" String="The HTTP operation to perform to execute this task."/>
368          <Annotation Term="OData.LongDescription" String="This property shall contain the HTTP operation to execute for this task."/>
369        </Property>
370        <Property Name="HttpHeaders" Type="Collection(Edm.String)" Nullable="false">
371          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
372          <Annotation Term="OData.Description" String="An array of HTTP headers that this task includes."/>
373          <Annotation Term="OData.LongDescription" String="This property shall contain an array of HTTP headers that this task includes."/>
374        </Property>
375        <Property Name="JsonBody" Type="Edm.String" Nullable="false">
376          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
377          <Annotation Term="OData.Description" String="The JSON payload to use in the execution of this task."/>
378          <Annotation Term="OData.LongDescription" String="This property shall contain JSON formatted payload used for this task."/>
379        </Property>
380      </ComplexType>
381
382    </Schema>
383
384    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_3_1">
385      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
386      <Annotation Term="OData.Description" String="This version was created to use the new Revisions annotation."/>
387      <EntityType Name="Task" BaseType="Task.v1_3_0.Task"/>
388    </Schema>
389
390    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_3_2">
391      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
392      <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."/>
393      <EntityType Name="Task" BaseType="Task.v1_3_1.Task"/>
394    </Schema>
395
396    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_3_3">
397      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
398      <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."/>
399      <EntityType Name="Task" BaseType="Task.v1_3_2.Task"/>
400    </Schema>
401
402    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_3_4">
403      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
404      <Annotation Term="OData.Description" String="This version was created to update the descriptions of the HidePayload property."/>
405      <EntityType Name="Task" BaseType="Task.v1_3_3.Task"/>
406    </Schema>
407
408    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_3_5">
409      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
410      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
411      <EntityType Name="Task" BaseType="Task.v1_3_4.Task"/>
412    </Schema>
413
414    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_4_0">
415      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
416      <Annotation Term="Redfish.Release" String="2018.3"/>
417      <Annotation Term="OData.Description" String="This version was created to add the PercentComplete property."/>
418
419      <EntityType Name="Task" BaseType="Task.v1_3_1.Task">
420        <Property Name="PercentComplete" Type="Edm.Int64">
421          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
422          <Annotation Term="OData.Description" String="The completion percentage of this task."/>
423          <Annotation Term="OData.LongDescription" String="This property shall indicate the completion progress of the task, reported in percent of completion.  If the task has not been started, the value shall be zero."/>
424          <Annotation Term="Measures.Unit" String="%"/>
425        </Property>
426      </EntityType>
427    </Schema>
428
429    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_4_1">
430      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
431      <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."/>
432      <EntityType Name="Task" BaseType="Task.v1_4_0.Task"/>
433    </Schema>
434
435    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_4_2">
436      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
437      <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."/>
438      <EntityType Name="Task" BaseType="Task.v1_4_1.Task"/>
439    </Schema>
440
441    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_4_3">
442      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
443      <Annotation Term="OData.Description" String="This version was created to update the descriptions of the HidePayload property."/>
444      <EntityType Name="Task" BaseType="Task.v1_4_2.Task"/>
445    </Schema>
446
447    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_4_4">
448      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
449      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
450      <EntityType Name="Task" BaseType="Task.v1_4_3.Task"/>
451    </Schema>
452
453    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_5_0">
454      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
455      <Annotation Term="Redfish.Release" String="2020.3"/>
456
457      <EntityType Name="Task" BaseType="Task.v1_4_3.Task">
458        <NavigationProperty Name="SubTasks" Type="TaskCollection.TaskCollection" ContainsTarget="true" Nullable="false">
459          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
460          <Annotation Term="OData.Description" String="The link to a collection of sub-tasks for this task."/>
461          <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."/>
462          <Annotation Term="OData.AutoExpandReferences"/>
463        </NavigationProperty>
464      </EntityType>
465    </Schema>
466
467    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Task.v1_5_1">
468      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
469      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
470      <EntityType Name="Task" BaseType="Task.v1_5_0.Task"/>
471    </Schema>
472
473  </edmx:DataServices>
474</edmx:Edmx>
475