1<?xml version="1.0" encoding="UTF-8"?>
2<!---->
3<!--################################################################################       -->
4<!--# Redfish Schema:  Job v1.2.3                                                          -->
5<!--#                                                                                      -->
6<!--# For a detailed change log, see the README file contained in the DSP8010 bundle,      -->
7<!--# available at http://www.dmtf.org/standards/redfish                                   -->
8<!--# Copyright 2014-2023 DMTF.                                                            -->
9<!--# For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright -->
10<!--################################################################################       -->
11<!---->
12<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0">
13
14  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Core.V1.xml">
15    <edmx:Include Namespace="Org.OData.Core.V1" Alias="OData"/>
16  </edmx:Reference>
17  <edmx:Reference Uri="http://docs.oasis-open.org/odata/odata/v4.0/errata03/csd01/complete/vocabularies/Org.OData.Capabilities.V1.xml">
18    <edmx:Include Namespace="Org.OData.Capabilities.V1" Alias="Capabilities"/>
19  </edmx:Reference>
20  <edmx:Reference Uri="http://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/RedfishExtensions_v1.xml">
24    <edmx:Include Namespace="RedfishExtensions.v1_0_0" Alias="Redfish"/>
25    <edmx:Include Namespace="Validation.v1_0_0" Alias="Validation"/>
26  </edmx:Reference>
27  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Resource_v1.xml">
28    <edmx:Include Namespace="Resource"/>
29    <edmx:Include Namespace="Resource.v1_0_0"/>
30  </edmx:Reference>
31  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/JobCollection_v1.xml">
32    <edmx:Include Namespace="JobCollection"/>
33  </edmx:Reference>
34  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Schedule_v1.xml">
35    <edmx:Include Namespace="Schedule"/>
36  </edmx:Reference>
37  <edmx:Reference Uri="http://redfish.dmtf.org/schemas/v1/Message_v1.xml">
38    <edmx:Include Namespace="Message"/>
39  </edmx:Reference>
40
41  <edmx:DataServices>
42
43    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Job">
44      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
45
46      <EntityType Name="Job" BaseType="Resource.v1_0_0.Resource" Abstract="true">
47        <Annotation Term="OData.Description" String="The Job schema contains information about a job that a Redfish job service schedules or executes.  Clients create jobs to describe a series of operations that occur at periodic intervals."/>
48        <Annotation Term="OData.LongDescription" String="This resource shall contain a job in a Redfish implementation."/>
49        <Annotation Term="Capabilities.InsertRestrictions">
50          <Record>
51            <PropertyValue Property="Insertable" Bool="false"/>
52          </Record>
53        </Annotation>
54        <Annotation Term="Capabilities.UpdateRestrictions">
55          <Record>
56            <PropertyValue Property="Updatable" Bool="true"/>
57            <Annotation Term="OData.Description" String="Any writable properties can be updated for jobs."/>
58          </Record>
59        </Annotation>
60        <Annotation Term="Capabilities.DeleteRestrictions">
61          <Record>
62            <PropertyValue Property="Deletable" Bool="true"/>
63            <Annotation Term="OData.Description" String="Jobs can be deleted."/>
64          </Record>
65        </Annotation>
66        <Annotation Term="Redfish.Uris">
67          <Collection>
68            <String>/redfish/v1/JobService/Jobs/{JobId}</String>
69            <String>/redfish/v1/JobService/Jobs/{JobId}/Steps/{JobId2}</String>
70          </Collection>
71        </Annotation>
72      </EntityType>
73
74    </Schema>
75
76    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Job.v1_0_0">
77      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
78      <Annotation Term="Redfish.Release" String="2018.2"/>
79
80      <EntityType Name="Job" BaseType="Job.Job">
81        <Property Name="JobStatus" Type="Resource.Health" Nullable="false">
82          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
83          <Annotation Term="OData.Description" String="The status of the job."/>
84          <Annotation Term="OData.LongDescription" String="This property shall indicate the health status of the job.  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."/>
85        </Property>
86        <Property Name="JobState" Type="Job.v1_0_0.JobState" Nullable="false">
87          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
88          <Annotation Term="OData.Description" String="The state of the job."/>
89          <Annotation Term="OData.LongDescription" String="This property shall indicate the state of the job."/>
90        </Property>
91        <Property Name="StartTime" Type="Edm.DateTimeOffset" Nullable="false">
92          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
93          <Annotation Term="OData.Description" String="The date and time when the job was started or is scheduled to start."/>
94          <Annotation Term="OData.LongDescription" String="This property shall indicate the date and time when the job was last started or is scheduled to start."/>
95        </Property>
96        <Property Name="EndTime" Type="Edm.DateTimeOffset" Nullable="false">
97          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
98          <Annotation Term="OData.Description" String="The date and time when the job was completed."/>
99          <Annotation Term="OData.LongDescription" String="This property shall indicate the date and time when the job was completed.  This property shall not appear if the job is running or was not completed.  This property shall appear only if the JobState is Completed, Cancelled, or Exception."/>
100        </Property>
101        <Property Name="MaxExecutionTime" Type="Edm.String">
102          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/ReadWrite"/>
103          <Annotation Term="OData.Description" String="The maximum amount of time the job is allowed to execute."/>
104          <Annotation Term="OData.LongDescription" String="The value shall be an ISO 8601 conformant duration describing the maximum duration the job is allowed to execute before being stopped by the service."/>
105        </Property>
106        <Property Name="PercentComplete" Type="Edm.Int64">
107          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
108          <Annotation Term="OData.Description" String="The completion percentage of this job."/>
109          <Annotation Term="OData.LongDescription" String="This property shall indicate the completion progress of the job, reported in percent of completion, `0` to `100`.  If the job has not been started, the value shall be zero."/>
110          <Annotation Term="Measures.Unit" String="%"/>
111          <Annotation Term="Validation.Minimum" Int="0"/>
112          <Annotation Term="Validation.Maximum" Int="100"/>
113        </Property>
114        <Property Name="CreatedBy" Type="Edm.String" Nullable="false">
115          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
116          <Annotation Term="OData.Description" String="The person or program that created this job entry."/>
117          <Annotation Term="OData.LongDescription" String="This property shall contain the user name, software program name, or other identifier indicating the creator of this job."/>
118        </Property>
119        <Property Name="Schedule" Type="Schedule.Schedule" Nullable="false">
120          <Annotation Term="OData.Description" String="The schedule settings for this job."/>
121          <Annotation Term="OData.LongDescription" String="This object shall contain the scheduling details for this job and the recurrence frequency for future instances of this job."/>
122        </Property>
123        <Property Name="HidePayload" Type="Edm.Boolean" Nullable="false">
124          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
125          <Annotation Term="OData.Description" String="An indication of whether the contents of the payload should be hidden from view after the job 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 job is created, the default is `false`."/>
126          <Annotation Term="OData.LongDescription" String="This property shall indicate whether the contents of the payload should be hidden from view after the job 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 job is created, the default is `false`."/>
127        </Property>
128        <Property Name="Payload" Type="Job.v1_0_0.Payload" Nullable="false">
129          <Annotation Term="OData.Description" String="The HTTP and JSON request payload details for this job."/>
130          <Annotation Term="OData.LongDescription" String="This property shall contain the HTTP and JSON request payload information for executing this job.  This property shall not be included in the response if the HidePayload property is `true`."/>
131        </Property>
132        <NavigationProperty Name="Steps" Type="JobCollection.JobCollection" ContainsTarget="true" Nullable="false">
133          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
134          <Annotation Term="OData.Description" String="The link to a collection of steps for this job."/>
135          <Annotation Term="OData.LongDescription" String="This property shall contain the link to a resource collection of type JobCollection.  This property shall not be present if this resource represents a step for a job."/>
136          <Annotation Term="OData.AutoExpandReferences"/>
137        </NavigationProperty>
138        <Property Name="StepOrder" Type="Collection(Edm.String)" Nullable="false">
139          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
140          <Annotation Term="OData.Description" String="The serialized execution order of the job steps."/>
141          <Annotation Term="OData.LongDescription" String="This property shall contain an array of IDs for the job steps in the order that they shall be executed.  Each step shall be completed prior to the execution of the next step in array order.  An incomplete list of steps shall be considered an invalid configuration.  If this property is not present or contains an empty array it shall indicate that the step execution order is omitted and may occur in parallel or in series as determined by the service."/>
142        </Property>
143        <Property Name="Messages" Type="Collection(Message.Message)" Nullable="false">
144          <Annotation Term="OData.Description" String="An array of messages associated with the job."/>
145          <Annotation Term="OData.LongDescription" String="This property shall contain an array of messages associated with the job."/>
146        </Property>
147        <Property Name="Actions" Type="Job.v1_0_0.Actions" Nullable="false">
148          <Annotation Term="OData.Description" String="The available actions for this resource."/>
149          <Annotation Term="OData.LongDescription" String="This property shall contain the available actions for this resource."/>
150        </Property>
151      </EntityType>
152
153      <EnumType Name="JobState">
154        <Member Name="New">
155          <Annotation Term="OData.Description" String="A new job."/>
156          <Annotation Term="OData.LongDescription" String="This value shall represent that this job is newly created but the operation has not yet started."/>
157        </Member>
158        <Member Name="Starting">
159          <Annotation Term="OData.Description" String="Job is starting."/>
160          <Annotation Term="OData.LongDescription" String="This value shall represent that the operation is starting."/>
161        </Member>
162        <Member Name="Running">
163          <Annotation Term="OData.Description" String="Job is running normally."/>
164          <Annotation Term="OData.LongDescription" String="This value shall represent that the operation is executing."/>
165        </Member>
166        <Member Name="Suspended">
167          <Annotation Term="OData.Description" String="Job has been suspended."/>
168          <Annotation Term="OData.LongDescription" String="This value shall represent that the operation has been suspended but is expected to restart and is therefore not complete."/>
169        </Member>
170        <Member Name="Interrupted">
171          <Annotation Term="OData.Description" String="Job has been interrupted."/>
172          <Annotation Term="OData.LongDescription" String="This value shall represent that the operation has been interrupted but is expected to restart and is therefore not complete."/>
173        </Member>
174        <Member Name="Pending">
175          <Annotation Term="OData.Description" String="Job is pending and has not started."/>
176          <Annotation Term="OData.LongDescription" String="This value shall represent that the operation is pending some condition and has not yet begun to execute."/>
177        </Member>
178        <Member Name="Stopping">
179          <Annotation Term="OData.Description" String="Job is in the process of stopping."/>
180          <Annotation Term="OData.LongDescription" String="This value shall represent that the operation is stopping but is not yet complete."/>
181        </Member>
182        <Member Name="Completed">
183          <Annotation Term="OData.Description" String="Job was completed."/>
184          <Annotation Term="OData.LongDescription" String="This value shall represent that the operation completed successfully or with warnings."/>
185        </Member>
186        <Member Name="Cancelled">
187          <Annotation Term="OData.Description" String="Job was cancelled."/>
188          <Annotation Term="OData.LongDescription" String="This value shall represent that the operation completed because the job was cancelled by an operator."/>
189        </Member>
190        <Member Name="Exception">
191          <Annotation Term="OData.Description" String="Job has stopped due to an exception condition."/>
192          <Annotation Term="OData.LongDescription" String="This value shall represent that the operation completed with errors."/>
193        </Member>
194        <Member Name="Service">
195          <Annotation Term="OData.Description" String="Job is running as a service."/>
196          <Annotation Term="OData.LongDescription" String="This value shall represent that the operation is now running as a service and expected to continue operation until stopped or killed."/>
197        </Member>
198        <Member Name="UserIntervention">
199          <Annotation Term="OData.Description" String="Job is waiting for user intervention."/>
200          <Annotation Term="OData.LongDescription" String="This value shall represent that the operation is waiting for a user to intervene and needs to be manually continued, stopped, or cancelled."/>
201        </Member>
202        <Member Name="Continue">
203          <Annotation Term="OData.Description" String="Job is to resume operation."/>
204          <Annotation Term="OData.LongDescription" String="This value shall represent that the operation has been resumed from a paused condition and should return to a Running state."/>
205        </Member>
206      </EnumType>
207
208      <ComplexType Name="Payload">
209        <Annotation Term="OData.Description" String="The HTTP and JSON payload details for this job."/>
210        <Annotation Term="OData.LongDescription" String="This object shall contain information detailing the HTTP and JSON payload information for executing this job."/>
211        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
212        <Property Name="TargetUri" Type="Edm.String" Nullable="false">
213          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
214          <Annotation Term="OData.Description" String="The link to the target for this job."/>
215          <Annotation Term="OData.LongDescription" String="This property shall contain link to a target location for an HTTP operation."/>
216          <Annotation Term="OData.IsURL"/>
217        </Property>
218        <Property Name="HttpOperation" Type="Edm.String" Nullable="false">
219          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
220          <Annotation Term="OData.Description" String="The HTTP operation that executes this job."/>
221          <Annotation Term="OData.LongDescription" String="This property shall contain the HTTP operation that executes this job."/>
222        </Property>
223        <Property Name="HttpHeaders" Type="Collection(Edm.String)" Nullable="false">
224          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
225          <Annotation Term="OData.Description" String="An array of HTTP headers in this job."/>
226          <Annotation Term="OData.LongDescription" String="This property shall contain an array of HTTP headers in this job."/>
227        </Property>
228        <Property Name="JsonBody" Type="Edm.String" Nullable="false">
229          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
230          <Annotation Term="OData.Description" String="The JSON payload to use in the execution of this job."/>
231          <Annotation Term="OData.LongDescription" String="This property shall contain JSON-formatted payload for this job."/>
232        </Property>
233      </ComplexType>
234
235      <ComplexType Name="Actions">
236        <Annotation Term="OData.AdditionalProperties" Bool="false"/>
237        <Annotation Term="OData.Description" String="The available actions for this resource."/>
238        <Annotation Term="OData.LongDescription" String="This type shall contain the available actions for this resource."/>
239        <Property Name="Oem" Type="Job.v1_0_0.OemActions" Nullable="false">
240          <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
241          <Annotation Term="OData.LongDescription" String="This property shall contain the available OEM-specific actions for this resource."/>
242        </Property>
243      </ComplexType>
244
245      <ComplexType Name="OemActions">
246        <Annotation Term="OData.AdditionalProperties" Bool="true"/>
247        <Annotation Term="OData.Description" String="The available OEM-specific actions for this resource."/>
248        <Annotation Term="OData.LongDescription" String="This type shall contain the available OEM-specific actions for this resource."/>
249      </ComplexType>
250    </Schema>
251
252    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Job.v1_0_1">
253      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
254      <Annotation Term="OData.Description" String="This version was created to add the Measures.Unit annotation to PercentComplete."/>
255      <EntityType Name="Job" BaseType="Job.v1_0_0.Job"/>
256    </Schema>
257
258    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Job.v1_0_2">
259      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
260      <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."/>
261      <EntityType Name="Job" BaseType="Job.v1_0_1.Job"/>
262    </Schema>
263
264    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Job.v1_0_3">
265      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
266      <Annotation Term="OData.Description" String="This version was created to update the description of the HidePayload property.  It was also created to disallow the EndTime property from being `null`.  It was also created to update descriptions that this schema defines."/>
267      <EntityType Name="Job" BaseType="Job.v1_0_2.Job"/>
268    </Schema>
269
270    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Job.v1_0_4">
271      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
272      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
273      <EntityType Name="Job" BaseType="Job.v1_0_3.Job"/>
274    </Schema>
275
276    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Job.v1_0_5">
277      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
278      <Annotation Term="OData.Description" String="This version was created to clarify that steps cannot have their own steps."/>
279      <EntityType Name="Job" BaseType="Job.v1_0_4.Job"/>
280    </Schema>
281
282    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Job.v1_0_6">
283      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
284      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
285      <EntityType Name="Job" BaseType="Job.v1_0_5.Job"/>
286    </Schema>
287
288    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Job.v1_0_7">
289      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
290      <Annotation Term="OData.Description" String="This version was created to correct various descriptions to use proper normative terminology."/>
291      <EntityType Name="Job" BaseType="Job.v1_0_6.Job"/>
292    </Schema>
293
294    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Job.v1_0_8">
295      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
296      <Annotation Term="OData.Description" String="This version was created to clarify the mapping of JobStatus."/>
297      <EntityType Name="Job" BaseType="Job.v1_0_7.Job"/>
298    </Schema>
299
300    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Job.v1_0_9">
301      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
302      <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Payload property."/>
303      <EntityType Name="Job" BaseType="Job.v1_0_8.Job"/>
304    </Schema>
305
306    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Job.v1_0_10">
307      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
308      <Annotation Term="OData.Description" String="This version was created to clarify the range of possible values for properties with percent units."/>
309      <EntityType Name="Job" BaseType="Job.v1_0_9.Job"/>
310    </Schema>
311
312    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Job.v1_0_11">
313      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
314      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
315      <EntityType Name="Job" BaseType="Job.v1_0_10.Job"/>
316    </Schema>
317
318    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Job.v1_1_0">
319      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
320      <Annotation Term="Redfish.Release" String="2022.1"/>
321
322      <EntityType Name="Job" BaseType="Job.v1_0_7.Job">
323        <Property Name="EstimatedDuration" Type="Edm.Duration">
324          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
325          <Annotation Term="OData.Description" String="The estimated total time required to complete the job."/>
326          <Annotation Term="OData.LongDescription" String="This property shall indicate the estimated total time needed to complete the job.  The value is not expected to change while the job 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."/>
327        </Property>
328      </EntityType>
329    </Schema>
330
331    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Job.v1_1_1">
332      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
333      <Annotation Term="OData.Description" String="This version was created to clarify the mapping of JobStatus."/>
334      <EntityType Name="Job" BaseType="Job.v1_1_0.Job"/>
335    </Schema>
336
337    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Job.v1_1_2">
338      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
339      <Annotation Term="OData.Description" String="This version was created to clarify the usage of the Payload property."/>
340      <EntityType Name="Job" BaseType="Job.v1_1_1.Job"/>
341    </Schema>
342
343    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Job.v1_1_3">
344      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
345      <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."/>
346      <EntityType Name="Job" BaseType="Job.v1_1_2.Job"/>
347    </Schema>
348
349    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Job.v1_1_4">
350      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
351      <Annotation Term="OData.Description" String="This version was created to clarify the range of possible values for properties with percent units."/>
352      <EntityType Name="Job" BaseType="Job.v1_1_3.Job"/>
353    </Schema>
354
355    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Job.v1_1_5">
356      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
357      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
358      <EntityType Name="Job" BaseType="Job.v1_1_4.Job"/>
359    </Schema>
360
361    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Job.v1_2_0">
362      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
363      <Annotation Term="Redfish.Release" String="2022.3"/>
364
365      <EntityType Name="Job" BaseType="Job.v1_1_2.Job">
366        <Property Name="Links" Type="Job.v1_2_0.Links" Nullable="false">
367          <Annotation Term="OData.Description" String="Contains references to other resources that are related to this resource."/>
368          <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."/>
369        </Property>
370      </EntityType>
371
372      <ComplexType Name="Links" BaseType="Resource.Links">
373        <Annotation Term="OData.Description" String="The links to other resources that are related to this resource."/>
374        <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."/>
375        <NavigationProperty Name="CreatedResources" Type="Collection(Resource.Item)">
376          <Annotation Term="OData.Permissions" EnumMember="OData.Permission/Read"/>
377          <Annotation Term="OData.Description" String="An array of URIs referencing the resources created as the result of this job."/>
378          <Annotation Term="OData.LongDescription" String="This property shall contain an array of links to resources indicating the resources created as the result of this job.  Services shall set this property prior to the job entering its final state."/>
379          <Annotation Term="OData.AutoExpandReferences"/>
380        </NavigationProperty>
381      </ComplexType>
382    </Schema>
383
384    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Job.v1_2_1">
385      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
386      <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."/>
387      <EntityType Name="Job" BaseType="Job.v1_2_0.Job"/>
388    </Schema>
389
390    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Job.v1_2_2">
391      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
392      <Annotation Term="OData.Description" String="This version was created to clarify the range of possible values for properties with percent units."/>
393      <EntityType Name="Job" BaseType="Job.v1_2_1.Job"/>
394    </Schema>
395
396    <Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Job.v1_2_3">
397      <Annotation Term="Redfish.OwningEntity" String="DMTF"/>
398      <Annotation Term="OData.Description" String="This version was created to correct various typographical errors."/>
399      <EntityType Name="Job" BaseType="Job.v1_2_2.Job"/>
400    </Schema>
401
402  </edmx:DataServices>
403</edmx:Edmx>
404