1*c6d7a45dSGunnar Mills{ 2*c6d7a45dSGunnar Mills "$id": "http://redfish.dmtf.org/schemas/v1/Job.v1_3_0.json", 3*c6d7a45dSGunnar Mills "$ref": "#/definitions/Job", 4*c6d7a45dSGunnar Mills "$schema": "http://redfish.dmtf.org/schemas/v1/redfish-schema-v1.json", 5*c6d7a45dSGunnar Mills "copyright": "Copyright 2014-2025 DMTF. For the full DMTF copyright policy, see http://www.dmtf.org/about/policies/copyright", 6*c6d7a45dSGunnar Mills "definitions": { 7*c6d7a45dSGunnar Mills "Actions": { 8*c6d7a45dSGunnar Mills "additionalProperties": false, 9*c6d7a45dSGunnar Mills "description": "The available actions for this resource.", 10*c6d7a45dSGunnar Mills "longDescription": "This type shall contain the available actions for this resource.", 11*c6d7a45dSGunnar Mills "patternProperties": { 12*c6d7a45dSGunnar Mills "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { 13*c6d7a45dSGunnar Mills "description": "This property shall specify a valid odata or Redfish property.", 14*c6d7a45dSGunnar Mills "type": [ 15*c6d7a45dSGunnar Mills "array", 16*c6d7a45dSGunnar Mills "boolean", 17*c6d7a45dSGunnar Mills "integer", 18*c6d7a45dSGunnar Mills "number", 19*c6d7a45dSGunnar Mills "null", 20*c6d7a45dSGunnar Mills "object", 21*c6d7a45dSGunnar Mills "string" 22*c6d7a45dSGunnar Mills ] 23*c6d7a45dSGunnar Mills } 24*c6d7a45dSGunnar Mills }, 25*c6d7a45dSGunnar Mills "properties": { 26*c6d7a45dSGunnar Mills "#Job.Cancel": { 27*c6d7a45dSGunnar Mills "$ref": "#/definitions/Cancel" 28*c6d7a45dSGunnar Mills }, 29*c6d7a45dSGunnar Mills "#Job.ForceStart": { 30*c6d7a45dSGunnar Mills "$ref": "#/definitions/ForceStart" 31*c6d7a45dSGunnar Mills }, 32*c6d7a45dSGunnar Mills "#Job.Invalidate": { 33*c6d7a45dSGunnar Mills "$ref": "#/definitions/Invalidate" 34*c6d7a45dSGunnar Mills }, 35*c6d7a45dSGunnar Mills "#Job.Resubmit": { 36*c6d7a45dSGunnar Mills "$ref": "#/definitions/Resubmit" 37*c6d7a45dSGunnar Mills }, 38*c6d7a45dSGunnar Mills "#Job.Resume": { 39*c6d7a45dSGunnar Mills "$ref": "#/definitions/Resume" 40*c6d7a45dSGunnar Mills }, 41*c6d7a45dSGunnar Mills "#Job.Suspend": { 42*c6d7a45dSGunnar Mills "$ref": "#/definitions/Suspend" 43*c6d7a45dSGunnar Mills }, 44*c6d7a45dSGunnar Mills "#Job.Validate": { 45*c6d7a45dSGunnar Mills "$ref": "#/definitions/Validate" 46*c6d7a45dSGunnar Mills }, 47*c6d7a45dSGunnar Mills "Oem": { 48*c6d7a45dSGunnar Mills "$ref": "#/definitions/OemActions", 49*c6d7a45dSGunnar Mills "description": "The available OEM-specific actions for this resource.", 50*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the available OEM-specific actions for this resource." 51*c6d7a45dSGunnar Mills } 52*c6d7a45dSGunnar Mills }, 53*c6d7a45dSGunnar Mills "type": "object" 54*c6d7a45dSGunnar Mills }, 55*c6d7a45dSGunnar Mills "Cancel": { 56*c6d7a45dSGunnar Mills "additionalProperties": false, 57*c6d7a45dSGunnar Mills "description": "Cancels the job.", 58*c6d7a45dSGunnar Mills "longDescription": "This action shall cancel the job if it is currently in the `Running`, `Invalid`, or `Suspended` states. The job shall transition to `Cancelled` if the action is successful.", 59*c6d7a45dSGunnar Mills "parameters": {}, 60*c6d7a45dSGunnar Mills "patternProperties": { 61*c6d7a45dSGunnar Mills "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { 62*c6d7a45dSGunnar Mills "description": "This property shall specify a valid odata or Redfish property.", 63*c6d7a45dSGunnar Mills "type": [ 64*c6d7a45dSGunnar Mills "array", 65*c6d7a45dSGunnar Mills "boolean", 66*c6d7a45dSGunnar Mills "integer", 67*c6d7a45dSGunnar Mills "number", 68*c6d7a45dSGunnar Mills "null", 69*c6d7a45dSGunnar Mills "object", 70*c6d7a45dSGunnar Mills "string" 71*c6d7a45dSGunnar Mills ] 72*c6d7a45dSGunnar Mills } 73*c6d7a45dSGunnar Mills }, 74*c6d7a45dSGunnar Mills "properties": { 75*c6d7a45dSGunnar Mills "target": { 76*c6d7a45dSGunnar Mills "description": "Link to invoke action", 77*c6d7a45dSGunnar Mills "format": "uri-reference", 78*c6d7a45dSGunnar Mills "type": "string" 79*c6d7a45dSGunnar Mills }, 80*c6d7a45dSGunnar Mills "title": { 81*c6d7a45dSGunnar Mills "description": "Friendly action name", 82*c6d7a45dSGunnar Mills "type": "string" 83*c6d7a45dSGunnar Mills } 84*c6d7a45dSGunnar Mills }, 85*c6d7a45dSGunnar Mills "type": "object", 86*c6d7a45dSGunnar Mills "versionAdded": "v1_3_0" 87*c6d7a45dSGunnar Mills }, 88*c6d7a45dSGunnar Mills "ForceStart": { 89*c6d7a45dSGunnar Mills "additionalProperties": false, 90*c6d7a45dSGunnar Mills "description": "Forces the job to start.", 91*c6d7a45dSGunnar Mills "longDescription": "This action shall force the job to start running if it is in the `Pending` state. The job shall transition to `Running` if the action is successful.", 92*c6d7a45dSGunnar Mills "parameters": {}, 93*c6d7a45dSGunnar Mills "patternProperties": { 94*c6d7a45dSGunnar Mills "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { 95*c6d7a45dSGunnar Mills "description": "This property shall specify a valid odata or Redfish property.", 96*c6d7a45dSGunnar Mills "type": [ 97*c6d7a45dSGunnar Mills "array", 98*c6d7a45dSGunnar Mills "boolean", 99*c6d7a45dSGunnar Mills "integer", 100*c6d7a45dSGunnar Mills "number", 101*c6d7a45dSGunnar Mills "null", 102*c6d7a45dSGunnar Mills "object", 103*c6d7a45dSGunnar Mills "string" 104*c6d7a45dSGunnar Mills ] 105*c6d7a45dSGunnar Mills } 106*c6d7a45dSGunnar Mills }, 107*c6d7a45dSGunnar Mills "properties": { 108*c6d7a45dSGunnar Mills "target": { 109*c6d7a45dSGunnar Mills "description": "Link to invoke action", 110*c6d7a45dSGunnar Mills "format": "uri-reference", 111*c6d7a45dSGunnar Mills "type": "string" 112*c6d7a45dSGunnar Mills }, 113*c6d7a45dSGunnar Mills "title": { 114*c6d7a45dSGunnar Mills "description": "Friendly action name", 115*c6d7a45dSGunnar Mills "type": "string" 116*c6d7a45dSGunnar Mills } 117*c6d7a45dSGunnar Mills }, 118*c6d7a45dSGunnar Mills "type": "object", 119*c6d7a45dSGunnar Mills "versionAdded": "v1_3_0" 120*c6d7a45dSGunnar Mills }, 121*c6d7a45dSGunnar Mills "Invalidate": { 122*c6d7a45dSGunnar Mills "additionalProperties": false, 123*c6d7a45dSGunnar Mills "description": "Invalidates the job.", 124*c6d7a45dSGunnar Mills "longDescription": "This action shall invalidate the job if it is in the `Pending` state. The job shall transition to `Invalid` if the action is successful.", 125*c6d7a45dSGunnar Mills "parameters": {}, 126*c6d7a45dSGunnar Mills "patternProperties": { 127*c6d7a45dSGunnar Mills "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { 128*c6d7a45dSGunnar Mills "description": "This property shall specify a valid odata or Redfish property.", 129*c6d7a45dSGunnar Mills "type": [ 130*c6d7a45dSGunnar Mills "array", 131*c6d7a45dSGunnar Mills "boolean", 132*c6d7a45dSGunnar Mills "integer", 133*c6d7a45dSGunnar Mills "number", 134*c6d7a45dSGunnar Mills "null", 135*c6d7a45dSGunnar Mills "object", 136*c6d7a45dSGunnar Mills "string" 137*c6d7a45dSGunnar Mills ] 138*c6d7a45dSGunnar Mills } 139*c6d7a45dSGunnar Mills }, 140*c6d7a45dSGunnar Mills "properties": { 141*c6d7a45dSGunnar Mills "target": { 142*c6d7a45dSGunnar Mills "description": "Link to invoke action", 143*c6d7a45dSGunnar Mills "format": "uri-reference", 144*c6d7a45dSGunnar Mills "type": "string" 145*c6d7a45dSGunnar Mills }, 146*c6d7a45dSGunnar Mills "title": { 147*c6d7a45dSGunnar Mills "description": "Friendly action name", 148*c6d7a45dSGunnar Mills "type": "string" 149*c6d7a45dSGunnar Mills } 150*c6d7a45dSGunnar Mills }, 151*c6d7a45dSGunnar Mills "type": "object", 152*c6d7a45dSGunnar Mills "versionAdded": "v1_3_0" 153*c6d7a45dSGunnar Mills }, 154*c6d7a45dSGunnar Mills "Job": { 155*c6d7a45dSGunnar Mills "additionalProperties": false, 156*c6d7a45dSGunnar Mills "description": "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.", 157*c6d7a45dSGunnar Mills "longDescription": "This resource shall contain a job in a Redfish implementation.", 158*c6d7a45dSGunnar Mills "patternProperties": { 159*c6d7a45dSGunnar Mills "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { 160*c6d7a45dSGunnar Mills "description": "This property shall specify a valid odata or Redfish property.", 161*c6d7a45dSGunnar Mills "type": [ 162*c6d7a45dSGunnar Mills "array", 163*c6d7a45dSGunnar Mills "boolean", 164*c6d7a45dSGunnar Mills "integer", 165*c6d7a45dSGunnar Mills "number", 166*c6d7a45dSGunnar Mills "null", 167*c6d7a45dSGunnar Mills "object", 168*c6d7a45dSGunnar Mills "string" 169*c6d7a45dSGunnar Mills ] 170*c6d7a45dSGunnar Mills } 171*c6d7a45dSGunnar Mills }, 172*c6d7a45dSGunnar Mills "properties": { 173*c6d7a45dSGunnar Mills "@odata.context": { 174*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/context" 175*c6d7a45dSGunnar Mills }, 176*c6d7a45dSGunnar Mills "@odata.etag": { 177*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/etag" 178*c6d7a45dSGunnar Mills }, 179*c6d7a45dSGunnar Mills "@odata.id": { 180*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/id" 181*c6d7a45dSGunnar Mills }, 182*c6d7a45dSGunnar Mills "@odata.type": { 183*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/type" 184*c6d7a45dSGunnar Mills }, 185*c6d7a45dSGunnar Mills "Actions": { 186*c6d7a45dSGunnar Mills "$ref": "#/definitions/Actions", 187*c6d7a45dSGunnar Mills "description": "The available actions for this resource.", 188*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the available actions for this resource." 189*c6d7a45dSGunnar Mills }, 190*c6d7a45dSGunnar Mills "CreatedBy": { 191*c6d7a45dSGunnar Mills "description": "The person or program that created this job entry.", 192*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the username, software program name, or other identifier indicating the creator of this job.", 193*c6d7a45dSGunnar Mills "readonly": true, 194*c6d7a45dSGunnar Mills "type": "string" 195*c6d7a45dSGunnar Mills }, 196*c6d7a45dSGunnar Mills "CreationTime": { 197*c6d7a45dSGunnar Mills "description": "The date and time when the job was created.", 198*c6d7a45dSGunnar Mills "format": "date-time", 199*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the date and time when the job was created.", 200*c6d7a45dSGunnar Mills "readonly": true, 201*c6d7a45dSGunnar Mills "type": "string", 202*c6d7a45dSGunnar Mills "versionAdded": "v1_3_0" 203*c6d7a45dSGunnar Mills }, 204*c6d7a45dSGunnar Mills "Description": { 205*c6d7a45dSGunnar Mills "anyOf": [ 206*c6d7a45dSGunnar Mills { 207*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Description" 208*c6d7a45dSGunnar Mills }, 209*c6d7a45dSGunnar Mills { 210*c6d7a45dSGunnar Mills "type": "null" 211*c6d7a45dSGunnar Mills } 212*c6d7a45dSGunnar Mills ], 213*c6d7a45dSGunnar Mills "readonly": true 214*c6d7a45dSGunnar Mills }, 215*c6d7a45dSGunnar Mills "EndTime": { 216*c6d7a45dSGunnar Mills "description": "The date and time when the job was completed.", 217*c6d7a45dSGunnar Mills "format": "date-time", 218*c6d7a45dSGunnar Mills "longDescription": "This property shall contain 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`.", 219*c6d7a45dSGunnar Mills "readonly": true, 220*c6d7a45dSGunnar Mills "type": "string" 221*c6d7a45dSGunnar Mills }, 222*c6d7a45dSGunnar Mills "EstimatedCompletionTime": { 223*c6d7a45dSGunnar Mills "description": "The date and time when the job is expected to complete.", 224*c6d7a45dSGunnar Mills "excerpt": "Job", 225*c6d7a45dSGunnar Mills "format": "date-time", 226*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the date and time when the job is expected to complete. If the `EstimatedDuration` property is supported, the value of this property shall contain the summation of the `StartTime` property and the `EstimatedDuration` property.", 227*c6d7a45dSGunnar Mills "readonly": true, 228*c6d7a45dSGunnar Mills "type": "string", 229*c6d7a45dSGunnar Mills "versionAdded": "v1_3_0" 230*c6d7a45dSGunnar Mills }, 231*c6d7a45dSGunnar Mills "EstimatedDuration": { 232*c6d7a45dSGunnar Mills "description": "The estimated total time required to complete the job.", 233*c6d7a45dSGunnar Mills "longDescription": "This property shall contain 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.", 234*c6d7a45dSGunnar Mills "pattern": "^P(\\d+D)?(T(\\d+H)?(\\d+M)?(\\d+(.\\d+)?S)?)?$", 235*c6d7a45dSGunnar Mills "readonly": true, 236*c6d7a45dSGunnar Mills "type": [ 237*c6d7a45dSGunnar Mills "string", 238*c6d7a45dSGunnar Mills "null" 239*c6d7a45dSGunnar Mills ], 240*c6d7a45dSGunnar Mills "versionAdded": "v1_1_0" 241*c6d7a45dSGunnar Mills }, 242*c6d7a45dSGunnar Mills "HidePayload": { 243*c6d7a45dSGunnar Mills "description": "An indication of whether the contents of the payload or parameters should be hidden from view after the job has been created. If `true`, responses do not return the payload or parameters. If `false`, responses return the payload or parameters. If this property is not present when the job is created, the default is `false`.", 244*c6d7a45dSGunnar Mills "longDescription": "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` or `Parameters` properties. If `false`, responses shall return the `Payload` or `Parameters` properties. If this property is not present when the job is created, the default is `false`.", 245*c6d7a45dSGunnar Mills "readonly": true, 246*c6d7a45dSGunnar Mills "type": "boolean" 247*c6d7a45dSGunnar Mills }, 248*c6d7a45dSGunnar Mills "Id": { 249*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Id", 250*c6d7a45dSGunnar Mills "readonly": true 251*c6d7a45dSGunnar Mills }, 252*c6d7a45dSGunnar Mills "JobPriority": { 253*c6d7a45dSGunnar Mills "description": "The requested priority for this job.", 254*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the requested priority of this job. The value `0` shall indicate the highest priority. Increasing values shall represent decreasing priority.", 255*c6d7a45dSGunnar Mills "minimum": 0, 256*c6d7a45dSGunnar Mills "readonly": true, 257*c6d7a45dSGunnar Mills "type": [ 258*c6d7a45dSGunnar Mills "integer", 259*c6d7a45dSGunnar Mills "null" 260*c6d7a45dSGunnar Mills ], 261*c6d7a45dSGunnar Mills "versionAdded": "v1_3_0" 262*c6d7a45dSGunnar Mills }, 263*c6d7a45dSGunnar Mills "JobState": { 264*c6d7a45dSGunnar Mills "$ref": "#/definitions/JobState", 265*c6d7a45dSGunnar Mills "description": "The state of the job.", 266*c6d7a45dSGunnar Mills "excerpt": "Job", 267*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the state of the job.", 268*c6d7a45dSGunnar Mills "readonly": false 269*c6d7a45dSGunnar Mills }, 270*c6d7a45dSGunnar Mills "JobStatus": { 271*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Health", 272*c6d7a45dSGunnar Mills "description": "The status of the job.", 273*c6d7a45dSGunnar Mills "longDescription": "This property shall contain 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.", 274*c6d7a45dSGunnar Mills "readonly": true 275*c6d7a45dSGunnar Mills }, 276*c6d7a45dSGunnar Mills "JobType": { 277*c6d7a45dSGunnar Mills "$ref": "#/definitions/JobType", 278*c6d7a45dSGunnar Mills "description": "The type of this job.", 279*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the type of this job.", 280*c6d7a45dSGunnar Mills "readonly": true, 281*c6d7a45dSGunnar Mills "versionAdded": "v1_3_0" 282*c6d7a45dSGunnar Mills }, 283*c6d7a45dSGunnar Mills "Links": { 284*c6d7a45dSGunnar Mills "$ref": "#/definitions/Links", 285*c6d7a45dSGunnar Mills "description": "The links to other resources that are related to this resource.", 286*c6d7a45dSGunnar Mills "longDescription": "This property shall contain links to resources that are related to but are not contained by, or subordinate to, this resource.", 287*c6d7a45dSGunnar Mills "versionAdded": "v1_2_0" 288*c6d7a45dSGunnar Mills }, 289*c6d7a45dSGunnar Mills "MaxExecutionTime": { 290*c6d7a45dSGunnar Mills "description": "The maximum amount of time the job is allowed to execute.", 291*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the maximum duration the job is allowed to execute before being stopped by the service.", 292*c6d7a45dSGunnar Mills "pattern": "^P(\\d+D)?(T(\\d+H)?(\\d+M)?(\\d+(.\\d+)?S)?)?$", 293*c6d7a45dSGunnar Mills "readonly": false, 294*c6d7a45dSGunnar Mills "type": [ 295*c6d7a45dSGunnar Mills "string", 296*c6d7a45dSGunnar Mills "null" 297*c6d7a45dSGunnar Mills ] 298*c6d7a45dSGunnar Mills }, 299*c6d7a45dSGunnar Mills "Messages": { 300*c6d7a45dSGunnar Mills "description": "An array of messages associated with the job.", 301*c6d7a45dSGunnar Mills "items": { 302*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/Message.json#/definitions/Message" 303*c6d7a45dSGunnar Mills }, 304*c6d7a45dSGunnar Mills "longDescription": "This property shall contain an array of messages associated with the job.", 305*c6d7a45dSGunnar Mills "type": "array" 306*c6d7a45dSGunnar Mills }, 307*c6d7a45dSGunnar Mills "Name": { 308*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Name", 309*c6d7a45dSGunnar Mills "readonly": true 310*c6d7a45dSGunnar Mills }, 311*c6d7a45dSGunnar Mills "Oem": { 312*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem", 313*c6d7a45dSGunnar Mills "description": "The OEM extension property.", 314*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the OEM extensions. All values for properties that this object contains shall conform to the Redfish Specification-described requirements." 315*c6d7a45dSGunnar Mills }, 316*c6d7a45dSGunnar Mills "Parameters": { 317*c6d7a45dSGunnar Mills "$ref": "#/definitions/Parameters", 318*c6d7a45dSGunnar Mills "description": "The parameters specified for running this document-based job.", 319*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the parameters specified for running this document-based job. This property shall only be present for document-based jobs and if the `HidePayload` property is `false`.", 320*c6d7a45dSGunnar Mills "versionAdded": "v1_3_0" 321*c6d7a45dSGunnar Mills }, 322*c6d7a45dSGunnar Mills "Payload": { 323*c6d7a45dSGunnar Mills "$ref": "#/definitions/Payload", 324*c6d7a45dSGunnar Mills "description": "The HTTP and JSON request payload details for this user-specified job.", 325*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the HTTP and JSON request payload information for executing this user-specified job. This property shall only be present for user-specified jobs and if the `HidePayload` property is `false`." 326*c6d7a45dSGunnar Mills }, 327*c6d7a45dSGunnar Mills "PercentComplete": { 328*c6d7a45dSGunnar Mills "description": "The completion percentage of this job.", 329*c6d7a45dSGunnar Mills "excerpt": "Job", 330*c6d7a45dSGunnar Mills "longDescription": "This property shall contain 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.", 331*c6d7a45dSGunnar Mills "maximum": 100, 332*c6d7a45dSGunnar Mills "minimum": 0, 333*c6d7a45dSGunnar Mills "readonly": true, 334*c6d7a45dSGunnar Mills "type": [ 335*c6d7a45dSGunnar Mills "integer", 336*c6d7a45dSGunnar Mills "null" 337*c6d7a45dSGunnar Mills ], 338*c6d7a45dSGunnar Mills "units": "%" 339*c6d7a45dSGunnar Mills }, 340*c6d7a45dSGunnar Mills "Schedule": { 341*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/Schedule.json#/definitions/Schedule", 342*c6d7a45dSGunnar Mills "description": "The schedule settings for this job.", 343*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the scheduling details for this job and the recurrence frequency for future instances of this job. This property shall not be present for document-based jobs." 344*c6d7a45dSGunnar Mills }, 345*c6d7a45dSGunnar Mills "StartTime": { 346*c6d7a45dSGunnar Mills "description": "The date and time when the job was started or is scheduled to start.", 347*c6d7a45dSGunnar Mills "format": "date-time", 348*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the date and time when the job was last started or is scheduled to start.", 349*c6d7a45dSGunnar Mills "readonly": true, 350*c6d7a45dSGunnar Mills "type": "string" 351*c6d7a45dSGunnar Mills }, 352*c6d7a45dSGunnar Mills "StepOrder": { 353*c6d7a45dSGunnar Mills "description": "The serialized execution order of the job steps.", 354*c6d7a45dSGunnar Mills "items": { 355*c6d7a45dSGunnar Mills "type": "string" 356*c6d7a45dSGunnar Mills }, 357*c6d7a45dSGunnar Mills "longDescription": "This property shall contain an array of `Id` property values 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. This property shall not be present for document-based jobs.", 358*c6d7a45dSGunnar Mills "readonly": true, 359*c6d7a45dSGunnar Mills "type": "array" 360*c6d7a45dSGunnar Mills }, 361*c6d7a45dSGunnar Mills "Steps": { 362*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/JobCollection.json#/definitions/JobCollection", 363*c6d7a45dSGunnar Mills "description": "The link to a collection of steps for this job.", 364*c6d7a45dSGunnar Mills "longDescription": "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. This property shall not be present for document-based jobs.", 365*c6d7a45dSGunnar Mills "readonly": true 366*c6d7a45dSGunnar Mills } 367*c6d7a45dSGunnar Mills }, 368*c6d7a45dSGunnar Mills "required": [ 369*c6d7a45dSGunnar Mills "@odata.id", 370*c6d7a45dSGunnar Mills "@odata.type", 371*c6d7a45dSGunnar Mills "Id", 372*c6d7a45dSGunnar Mills "Name" 373*c6d7a45dSGunnar Mills ], 374*c6d7a45dSGunnar Mills "type": "object" 375*c6d7a45dSGunnar Mills }, 376*c6d7a45dSGunnar Mills "JobExcerpt": { 377*c6d7a45dSGunnar Mills "additionalProperties": false, 378*c6d7a45dSGunnar Mills "description": "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.", 379*c6d7a45dSGunnar Mills "excerpt": "Job", 380*c6d7a45dSGunnar Mills "longDescription": "This resource shall contain a job in a Redfish implementation.", 381*c6d7a45dSGunnar Mills "patternProperties": { 382*c6d7a45dSGunnar Mills "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { 383*c6d7a45dSGunnar Mills "description": "This property shall specify a valid odata or Redfish property.", 384*c6d7a45dSGunnar Mills "type": [ 385*c6d7a45dSGunnar Mills "array", 386*c6d7a45dSGunnar Mills "boolean", 387*c6d7a45dSGunnar Mills "integer", 388*c6d7a45dSGunnar Mills "number", 389*c6d7a45dSGunnar Mills "null", 390*c6d7a45dSGunnar Mills "object", 391*c6d7a45dSGunnar Mills "string" 392*c6d7a45dSGunnar Mills ] 393*c6d7a45dSGunnar Mills } 394*c6d7a45dSGunnar Mills }, 395*c6d7a45dSGunnar Mills "properties": { 396*c6d7a45dSGunnar Mills "EstimatedCompletionTime": { 397*c6d7a45dSGunnar Mills "description": "The date and time when the job is expected to complete.", 398*c6d7a45dSGunnar Mills "excerpt": "Job", 399*c6d7a45dSGunnar Mills "format": "date-time", 400*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the date and time when the job is expected to complete. If the `EstimatedDuration` property is supported, the value of this property shall contain the summation of the `StartTime` property and the `EstimatedDuration` property.", 401*c6d7a45dSGunnar Mills "readonly": true, 402*c6d7a45dSGunnar Mills "type": "string", 403*c6d7a45dSGunnar Mills "versionAdded": "v1_3_0" 404*c6d7a45dSGunnar Mills }, 405*c6d7a45dSGunnar Mills "JobState": { 406*c6d7a45dSGunnar Mills "$ref": "#/definitions/JobState", 407*c6d7a45dSGunnar Mills "description": "The state of the job.", 408*c6d7a45dSGunnar Mills "excerpt": "Job", 409*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the state of the job.", 410*c6d7a45dSGunnar Mills "readonly": false 411*c6d7a45dSGunnar Mills }, 412*c6d7a45dSGunnar Mills "PercentComplete": { 413*c6d7a45dSGunnar Mills "description": "The completion percentage of this job.", 414*c6d7a45dSGunnar Mills "excerpt": "Job", 415*c6d7a45dSGunnar Mills "longDescription": "This property shall contain 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.", 416*c6d7a45dSGunnar Mills "maximum": 100, 417*c6d7a45dSGunnar Mills "minimum": 0, 418*c6d7a45dSGunnar Mills "readonly": true, 419*c6d7a45dSGunnar Mills "type": [ 420*c6d7a45dSGunnar Mills "integer", 421*c6d7a45dSGunnar Mills "null" 422*c6d7a45dSGunnar Mills ], 423*c6d7a45dSGunnar Mills "units": "%" 424*c6d7a45dSGunnar Mills } 425*c6d7a45dSGunnar Mills }, 426*c6d7a45dSGunnar Mills "type": "object" 427*c6d7a45dSGunnar Mills }, 428*c6d7a45dSGunnar Mills "JobState": { 429*c6d7a45dSGunnar Mills "enum": [ 430*c6d7a45dSGunnar Mills "New", 431*c6d7a45dSGunnar Mills "Starting", 432*c6d7a45dSGunnar Mills "Running", 433*c6d7a45dSGunnar Mills "Suspended", 434*c6d7a45dSGunnar Mills "Interrupted", 435*c6d7a45dSGunnar Mills "Pending", 436*c6d7a45dSGunnar Mills "Stopping", 437*c6d7a45dSGunnar Mills "Completed", 438*c6d7a45dSGunnar Mills "Cancelled", 439*c6d7a45dSGunnar Mills "Exception", 440*c6d7a45dSGunnar Mills "Service", 441*c6d7a45dSGunnar Mills "UserIntervention", 442*c6d7a45dSGunnar Mills "Continue", 443*c6d7a45dSGunnar Mills "Validating", 444*c6d7a45dSGunnar Mills "Invalid" 445*c6d7a45dSGunnar Mills ], 446*c6d7a45dSGunnar Mills "enumDescriptions": { 447*c6d7a45dSGunnar Mills "Cancelled": "Job was cancelled.", 448*c6d7a45dSGunnar Mills "Completed": "Job was completed.", 449*c6d7a45dSGunnar Mills "Continue": "Job is to resume operation.", 450*c6d7a45dSGunnar Mills "Exception": "Job has stopped due to an exception condition.", 451*c6d7a45dSGunnar Mills "Interrupted": "Job has been interrupted.", 452*c6d7a45dSGunnar Mills "Invalid": "Job is invalid.", 453*c6d7a45dSGunnar Mills "New": "A new job.", 454*c6d7a45dSGunnar Mills "Pending": "Job is pending and has not started.", 455*c6d7a45dSGunnar Mills "Running": "Job is running normally.", 456*c6d7a45dSGunnar Mills "Service": "Job is running as a service.", 457*c6d7a45dSGunnar Mills "Starting": "Job is starting.", 458*c6d7a45dSGunnar Mills "Stopping": "Job is in the process of stopping.", 459*c6d7a45dSGunnar Mills "Suspended": "Job has been suspended.", 460*c6d7a45dSGunnar Mills "UserIntervention": "Job is waiting for user intervention.", 461*c6d7a45dSGunnar Mills "Validating": "Job is validating." 462*c6d7a45dSGunnar Mills }, 463*c6d7a45dSGunnar Mills "enumLongDescriptions": { 464*c6d7a45dSGunnar Mills "Cancelled": "This value shall indicate that the operation completed because the job was cancelled by an operator. The job may restart in the future based on the scheduling configuration of the job or operations performed by a user.", 465*c6d7a45dSGunnar Mills "Completed": "This value shall indicate that the operation completed successfully or with warnings. The job may restart in the future based on the scheduling configuration of the job or operations performed by a user.", 466*c6d7a45dSGunnar Mills "Continue": "This value shall indicate that the operation has been resumed from a paused condition and should return to a Running state.", 467*c6d7a45dSGunnar Mills "Exception": "This value shall indicate that the operation completed with errors. The job may restart in the future based on the scheduling configuration of the job or operations performed by a user.", 468*c6d7a45dSGunnar Mills "Interrupted": "This value shall indicate that the operation has been interrupted but is expected to restart and is therefore not complete.", 469*c6d7a45dSGunnar Mills "Invalid": "This value shall indicate that validation has determined that the system is not properly configured to run the document-based job. To perform validation checks again, perform the `Validate` action.", 470*c6d7a45dSGunnar Mills "New": "This value shall indicate that this job is newly created but the operation has not yet started. This shall be the initial state for document-based jobs. Upon receiving the `Validate` action, or if the value of `ValidationPolicy` in the `JobService` resource contains `Automatic`, the document-based job's `JobState` shall transition to `Validating`. If the `ValidationPolicy` property in the `JobService` resource contains `Bypass`, the `JobState` for a document-based job shall transition to `Pending`.", 471*c6d7a45dSGunnar Mills "Pending": "This value shall indicate that the operation is pending some condition and has not yet begun to execute.", 472*c6d7a45dSGunnar Mills "Running": "This value shall indicate that the operation is executing. Jobs that complete successfully shall transition from this state to the `Completed` state. Jobs that do not complete successfully shall transition from this state to the `Exception` state.", 473*c6d7a45dSGunnar Mills "Service": "This value shall indicate that the operation is now running as a service and expected to continue operation until stopped or killed.", 474*c6d7a45dSGunnar Mills "Starting": "This value shall indicate that the operation is starting.", 475*c6d7a45dSGunnar Mills "Stopping": "This value shall indicate that the operation is stopping but is not yet complete.", 476*c6d7a45dSGunnar Mills "Suspended": "This value shall indicate that the operation has been suspended but is expected to restart and is therefore not complete. To resume a job, perform the `Resume` action.", 477*c6d7a45dSGunnar Mills "UserIntervention": "This value shall indicate that the operation is waiting for a user to intervene and needs to be manually continued, stopped, or cancelled.", 478*c6d7a45dSGunnar Mills "Validating": "This value shall indicate that the document-based job is validating the state of the system to determine if it can run. For example, a job that runs on factory equipment might check to ensure that the equipment is properly configured and has sufficient ingredients to run the job. If the validation checks fail, the job shall transition to the `Invalid` state. If the validation checks are successful, the job shall transition to the `Pending` state." 479*c6d7a45dSGunnar Mills }, 480*c6d7a45dSGunnar Mills "enumVersionAdded": { 481*c6d7a45dSGunnar Mills "Invalid": "v1_3_0", 482*c6d7a45dSGunnar Mills "Validating": "v1_3_0" 483*c6d7a45dSGunnar Mills }, 484*c6d7a45dSGunnar Mills "type": "string" 485*c6d7a45dSGunnar Mills }, 486*c6d7a45dSGunnar Mills "JobType": { 487*c6d7a45dSGunnar Mills "enum": [ 488*c6d7a45dSGunnar Mills "DocumentBased", 489*c6d7a45dSGunnar Mills "UserSpecified", 490*c6d7a45dSGunnar Mills "ServiceGenerated" 491*c6d7a45dSGunnar Mills ], 492*c6d7a45dSGunnar Mills "enumDescriptions": { 493*c6d7a45dSGunnar Mills "DocumentBased": "A document-based job.", 494*c6d7a45dSGunnar Mills "ServiceGenerated": "A service-generated job.", 495*c6d7a45dSGunnar Mills "UserSpecified": "A user-specified job." 496*c6d7a45dSGunnar Mills }, 497*c6d7a45dSGunnar Mills "enumLongDescriptions": { 498*c6d7a45dSGunnar Mills "DocumentBased": "This value shall indicate a job that was created by performing the `SubmitJob` action on a `JobDocument` resource.", 499*c6d7a45dSGunnar Mills "ServiceGenerated": "This value shall indicate a job that was created automatically by the service as part of its internal policies.", 500*c6d7a45dSGunnar Mills "UserSpecified": "This value shall indicate a job that was created by performing an HTTP `POST` operation on a `JobCollection` resource." 501*c6d7a45dSGunnar Mills }, 502*c6d7a45dSGunnar Mills "type": "string" 503*c6d7a45dSGunnar Mills }, 504*c6d7a45dSGunnar Mills "Links": { 505*c6d7a45dSGunnar Mills "additionalProperties": false, 506*c6d7a45dSGunnar Mills "description": "The links to other resources that are related to this resource.", 507*c6d7a45dSGunnar Mills "longDescription": "This Redfish Specification-described type shall contain links to resources that are related to but are not contained by, or subordinate to, this resource.", 508*c6d7a45dSGunnar Mills "patternProperties": { 509*c6d7a45dSGunnar Mills "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { 510*c6d7a45dSGunnar Mills "description": "This property shall specify a valid odata or Redfish property.", 511*c6d7a45dSGunnar Mills "type": [ 512*c6d7a45dSGunnar Mills "array", 513*c6d7a45dSGunnar Mills "boolean", 514*c6d7a45dSGunnar Mills "integer", 515*c6d7a45dSGunnar Mills "number", 516*c6d7a45dSGunnar Mills "null", 517*c6d7a45dSGunnar Mills "object", 518*c6d7a45dSGunnar Mills "string" 519*c6d7a45dSGunnar Mills ] 520*c6d7a45dSGunnar Mills } 521*c6d7a45dSGunnar Mills }, 522*c6d7a45dSGunnar Mills "properties": { 523*c6d7a45dSGunnar Mills "CreatedResources": { 524*c6d7a45dSGunnar Mills "description": "An array of URIs referencing the resources created as the result of this job.", 525*c6d7a45dSGunnar Mills "items": { 526*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/idRef" 527*c6d7a45dSGunnar Mills }, 528*c6d7a45dSGunnar Mills "longDescription": "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.", 529*c6d7a45dSGunnar Mills "readonly": true, 530*c6d7a45dSGunnar Mills "type": "array", 531*c6d7a45dSGunnar Mills "versionAdded": "v1_2_0" 532*c6d7a45dSGunnar Mills }, 533*c6d7a45dSGunnar Mills "CreatedResources@odata.count": { 534*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count" 535*c6d7a45dSGunnar Mills }, 536*c6d7a45dSGunnar Mills "Executor": { 537*c6d7a45dSGunnar Mills "anyOf": [ 538*c6d7a45dSGunnar Mills { 539*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/JobExecutor.json#/definitions/JobExecutor" 540*c6d7a45dSGunnar Mills }, 541*c6d7a45dSGunnar Mills { 542*c6d7a45dSGunnar Mills "type": "null" 543*c6d7a45dSGunnar Mills } 544*c6d7a45dSGunnar Mills ], 545*c6d7a45dSGunnar Mills "description": "A link to the executor that is running this job.", 546*c6d7a45dSGunnar Mills "longDescription": "This property shall contain a link to a resource of type `JobExecutor` that represents the executor that is running this job.", 547*c6d7a45dSGunnar Mills "readonly": true, 548*c6d7a45dSGunnar Mills "versionAdded": "v1_3_0" 549*c6d7a45dSGunnar Mills }, 550*c6d7a45dSGunnar Mills "JobDocument": { 551*c6d7a45dSGunnar Mills "anyOf": [ 552*c6d7a45dSGunnar Mills { 553*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/JobDocument.json#/definitions/JobDocument" 554*c6d7a45dSGunnar Mills }, 555*c6d7a45dSGunnar Mills { 556*c6d7a45dSGunnar Mills "type": "null" 557*c6d7a45dSGunnar Mills } 558*c6d7a45dSGunnar Mills ], 559*c6d7a45dSGunnar Mills "description": "A link to the job document that was used to create this job.", 560*c6d7a45dSGunnar Mills "longDescription": "This property shall contain a link to a resource of type `JobDocument` that represents the job document that was used to create this job.", 561*c6d7a45dSGunnar Mills "readonly": true, 562*c6d7a45dSGunnar Mills "versionAdded": "v1_3_0" 563*c6d7a45dSGunnar Mills }, 564*c6d7a45dSGunnar Mills "Oem": { 565*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/Resource.json#/definitions/Oem", 566*c6d7a45dSGunnar Mills "description": "The OEM extension property.", 567*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the OEM extensions. All values for properties contained in this object shall conform to the Redfish Specification-described requirements." 568*c6d7a45dSGunnar Mills }, 569*c6d7a45dSGunnar Mills "ParentJob": { 570*c6d7a45dSGunnar Mills "anyOf": [ 571*c6d7a45dSGunnar Mills { 572*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/Job.json#/definitions/Job" 573*c6d7a45dSGunnar Mills }, 574*c6d7a45dSGunnar Mills { 575*c6d7a45dSGunnar Mills "type": "null" 576*c6d7a45dSGunnar Mills } 577*c6d7a45dSGunnar Mills ], 578*c6d7a45dSGunnar Mills "description": "The link to the job that created this job.", 579*c6d7a45dSGunnar Mills "longDescription": "This property shall contain a link to a resource of type `Job` that represents the job that created this job.", 580*c6d7a45dSGunnar Mills "readonly": true, 581*c6d7a45dSGunnar Mills "versionAdded": "v1_3_0" 582*c6d7a45dSGunnar Mills }, 583*c6d7a45dSGunnar Mills "PreferredExecutors": { 584*c6d7a45dSGunnar Mills "description": "An array of links to the preferred executors to run this job.", 585*c6d7a45dSGunnar Mills "items": { 586*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/JobExecutor.json#/definitions/JobExecutor" 587*c6d7a45dSGunnar Mills }, 588*c6d7a45dSGunnar Mills "longDescription": "This property shall contain an array of links to resources of type `JobExecutor` that represent the preferred executors to run this job.", 589*c6d7a45dSGunnar Mills "readonly": true, 590*c6d7a45dSGunnar Mills "type": "array", 591*c6d7a45dSGunnar Mills "versionAdded": "v1_3_0" 592*c6d7a45dSGunnar Mills }, 593*c6d7a45dSGunnar Mills "PreferredExecutors@odata.count": { 594*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count" 595*c6d7a45dSGunnar Mills }, 596*c6d7a45dSGunnar Mills "SubsidiaryJobs": { 597*c6d7a45dSGunnar Mills "description": "An array of links to the jobs created by this job.", 598*c6d7a45dSGunnar Mills "items": { 599*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/Job.json#/definitions/Job" 600*c6d7a45dSGunnar Mills }, 601*c6d7a45dSGunnar Mills "longDescription": "This property shall contain an array of links to resources of type `Job` that represent the jobs created by this job.", 602*c6d7a45dSGunnar Mills "readonly": true, 603*c6d7a45dSGunnar Mills "type": "array", 604*c6d7a45dSGunnar Mills "versionAdded": "v1_3_0" 605*c6d7a45dSGunnar Mills }, 606*c6d7a45dSGunnar Mills "SubsidiaryJobs@odata.count": { 607*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count" 608*c6d7a45dSGunnar Mills }, 609*c6d7a45dSGunnar Mills "ValidatedExecutors": { 610*c6d7a45dSGunnar Mills "description": "An array of links to the executors that have been validated to run this job.", 611*c6d7a45dSGunnar Mills "items": { 612*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/JobExecutor.json#/definitions/JobExecutor" 613*c6d7a45dSGunnar Mills }, 614*c6d7a45dSGunnar Mills "longDescription": "This property shall contain an array of links to resources of type `JobExecutor` that represent the executors that have been validated to run this job.", 615*c6d7a45dSGunnar Mills "readonly": true, 616*c6d7a45dSGunnar Mills "type": "array", 617*c6d7a45dSGunnar Mills "versionAdded": "v1_3_0" 618*c6d7a45dSGunnar Mills }, 619*c6d7a45dSGunnar Mills "ValidatedExecutors@odata.count": { 620*c6d7a45dSGunnar Mills "$ref": "http://redfish.dmtf.org/schemas/v1/odata-v4.json#/definitions/count" 621*c6d7a45dSGunnar Mills } 622*c6d7a45dSGunnar Mills }, 623*c6d7a45dSGunnar Mills "type": "object" 624*c6d7a45dSGunnar Mills }, 625*c6d7a45dSGunnar Mills "OemActions": { 626*c6d7a45dSGunnar Mills "additionalProperties": true, 627*c6d7a45dSGunnar Mills "description": "The available OEM-specific actions for this resource.", 628*c6d7a45dSGunnar Mills "longDescription": "This type shall contain the available OEM-specific actions for this resource.", 629*c6d7a45dSGunnar Mills "patternProperties": { 630*c6d7a45dSGunnar Mills "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { 631*c6d7a45dSGunnar Mills "description": "This property shall specify a valid odata or Redfish property.", 632*c6d7a45dSGunnar Mills "type": [ 633*c6d7a45dSGunnar Mills "array", 634*c6d7a45dSGunnar Mills "boolean", 635*c6d7a45dSGunnar Mills "integer", 636*c6d7a45dSGunnar Mills "number", 637*c6d7a45dSGunnar Mills "null", 638*c6d7a45dSGunnar Mills "object", 639*c6d7a45dSGunnar Mills "string" 640*c6d7a45dSGunnar Mills ] 641*c6d7a45dSGunnar Mills } 642*c6d7a45dSGunnar Mills }, 643*c6d7a45dSGunnar Mills "properties": {}, 644*c6d7a45dSGunnar Mills "type": "object" 645*c6d7a45dSGunnar Mills }, 646*c6d7a45dSGunnar Mills "Parameters": { 647*c6d7a45dSGunnar Mills "additionalProperties": true, 648*c6d7a45dSGunnar Mills "description": "The parameters used when running this instance of the job.", 649*c6d7a45dSGunnar Mills "longDescription": "This type shall contain the parameters to use when running this job. Each property-value pair specifies a parameter and its value as specified when the job was submitted.", 650*c6d7a45dSGunnar Mills "patternProperties": { 651*c6d7a45dSGunnar Mills "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { 652*c6d7a45dSGunnar Mills "description": "This property shall specify a valid odata or Redfish property.", 653*c6d7a45dSGunnar Mills "type": [ 654*c6d7a45dSGunnar Mills "array", 655*c6d7a45dSGunnar Mills "boolean", 656*c6d7a45dSGunnar Mills "integer", 657*c6d7a45dSGunnar Mills "number", 658*c6d7a45dSGunnar Mills "null", 659*c6d7a45dSGunnar Mills "object", 660*c6d7a45dSGunnar Mills "string" 661*c6d7a45dSGunnar Mills ] 662*c6d7a45dSGunnar Mills }, 663*c6d7a45dSGunnar Mills "^[A-Za-z][A-Za-z0-9_]+$": { 664*c6d7a45dSGunnar Mills "type": [ 665*c6d7a45dSGunnar Mills "string", 666*c6d7a45dSGunnar Mills "boolean", 667*c6d7a45dSGunnar Mills "number", 668*c6d7a45dSGunnar Mills "null" 669*c6d7a45dSGunnar Mills ] 670*c6d7a45dSGunnar Mills } 671*c6d7a45dSGunnar Mills }, 672*c6d7a45dSGunnar Mills "properties": {}, 673*c6d7a45dSGunnar Mills "type": "object" 674*c6d7a45dSGunnar Mills }, 675*c6d7a45dSGunnar Mills "Payload": { 676*c6d7a45dSGunnar Mills "additionalProperties": false, 677*c6d7a45dSGunnar Mills "description": "The HTTP and JSON payload details for this job.", 678*c6d7a45dSGunnar Mills "longDescription": "This object shall contain information detailing the HTTP and JSON payload information for executing this job.", 679*c6d7a45dSGunnar Mills "patternProperties": { 680*c6d7a45dSGunnar Mills "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { 681*c6d7a45dSGunnar Mills "description": "This property shall specify a valid odata or Redfish property.", 682*c6d7a45dSGunnar Mills "type": [ 683*c6d7a45dSGunnar Mills "array", 684*c6d7a45dSGunnar Mills "boolean", 685*c6d7a45dSGunnar Mills "integer", 686*c6d7a45dSGunnar Mills "number", 687*c6d7a45dSGunnar Mills "null", 688*c6d7a45dSGunnar Mills "object", 689*c6d7a45dSGunnar Mills "string" 690*c6d7a45dSGunnar Mills ] 691*c6d7a45dSGunnar Mills } 692*c6d7a45dSGunnar Mills }, 693*c6d7a45dSGunnar Mills "properties": { 694*c6d7a45dSGunnar Mills "HttpHeaders": { 695*c6d7a45dSGunnar Mills "description": "An array of HTTP headers in this job.", 696*c6d7a45dSGunnar Mills "items": { 697*c6d7a45dSGunnar Mills "type": "string" 698*c6d7a45dSGunnar Mills }, 699*c6d7a45dSGunnar Mills "longDescription": "This property shall contain an array of HTTP headers in this job.", 700*c6d7a45dSGunnar Mills "readonly": true, 701*c6d7a45dSGunnar Mills "type": "array" 702*c6d7a45dSGunnar Mills }, 703*c6d7a45dSGunnar Mills "HttpOperation": { 704*c6d7a45dSGunnar Mills "description": "The HTTP operation that executes this job.", 705*c6d7a45dSGunnar Mills "longDescription": "This property shall contain the HTTP operation that executes this job.", 706*c6d7a45dSGunnar Mills "readonly": true, 707*c6d7a45dSGunnar Mills "type": "string" 708*c6d7a45dSGunnar Mills }, 709*c6d7a45dSGunnar Mills "JsonBody": { 710*c6d7a45dSGunnar Mills "description": "The JSON payload to use in the execution of this job.", 711*c6d7a45dSGunnar Mills "longDescription": "This property shall contain JSON-formatted payload for this job.", 712*c6d7a45dSGunnar Mills "readonly": true, 713*c6d7a45dSGunnar Mills "type": "string" 714*c6d7a45dSGunnar Mills }, 715*c6d7a45dSGunnar Mills "TargetUri": { 716*c6d7a45dSGunnar Mills "description": "The link to the target for this job.", 717*c6d7a45dSGunnar Mills "format": "uri-reference", 718*c6d7a45dSGunnar Mills "longDescription": "This property shall contain link to a target location for an HTTP operation.", 719*c6d7a45dSGunnar Mills "readonly": true, 720*c6d7a45dSGunnar Mills "type": "string" 721*c6d7a45dSGunnar Mills } 722*c6d7a45dSGunnar Mills }, 723*c6d7a45dSGunnar Mills "type": "object" 724*c6d7a45dSGunnar Mills }, 725*c6d7a45dSGunnar Mills "Resubmit": { 726*c6d7a45dSGunnar Mills "additionalProperties": false, 727*c6d7a45dSGunnar Mills "description": "Resubmits the job.", 728*c6d7a45dSGunnar Mills "longDescription": "This action shall resubmit a job to the job service. The new job shall be based on the job document, and properties of the resource associated with this action. Services shall take appropriate measures to make sure that appropriate security is maintained - for instance, only allowing the same user that created the job to resubmit it.", 729*c6d7a45dSGunnar Mills "parameters": { 730*c6d7a45dSGunnar Mills "StartTime": { 731*c6d7a45dSGunnar Mills "description": "The time to start the job.", 732*c6d7a45dSGunnar Mills "format": "date-time", 733*c6d7a45dSGunnar Mills "longDescription": "This parameter shall contain the time to start the job.", 734*c6d7a45dSGunnar Mills "type": "string" 735*c6d7a45dSGunnar Mills } 736*c6d7a45dSGunnar Mills }, 737*c6d7a45dSGunnar Mills "patternProperties": { 738*c6d7a45dSGunnar Mills "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { 739*c6d7a45dSGunnar Mills "description": "This property shall specify a valid odata or Redfish property.", 740*c6d7a45dSGunnar Mills "type": [ 741*c6d7a45dSGunnar Mills "array", 742*c6d7a45dSGunnar Mills "boolean", 743*c6d7a45dSGunnar Mills "integer", 744*c6d7a45dSGunnar Mills "number", 745*c6d7a45dSGunnar Mills "null", 746*c6d7a45dSGunnar Mills "object", 747*c6d7a45dSGunnar Mills "string" 748*c6d7a45dSGunnar Mills ] 749*c6d7a45dSGunnar Mills } 750*c6d7a45dSGunnar Mills }, 751*c6d7a45dSGunnar Mills "properties": { 752*c6d7a45dSGunnar Mills "target": { 753*c6d7a45dSGunnar Mills "description": "Link to invoke action", 754*c6d7a45dSGunnar Mills "format": "uri-reference", 755*c6d7a45dSGunnar Mills "type": "string" 756*c6d7a45dSGunnar Mills }, 757*c6d7a45dSGunnar Mills "title": { 758*c6d7a45dSGunnar Mills "description": "Friendly action name", 759*c6d7a45dSGunnar Mills "type": "string" 760*c6d7a45dSGunnar Mills } 761*c6d7a45dSGunnar Mills }, 762*c6d7a45dSGunnar Mills "type": "object", 763*c6d7a45dSGunnar Mills "versionAdded": "v1_3_0" 764*c6d7a45dSGunnar Mills }, 765*c6d7a45dSGunnar Mills "Resume": { 766*c6d7a45dSGunnar Mills "additionalProperties": false, 767*c6d7a45dSGunnar Mills "description": "Resumes the job.", 768*c6d7a45dSGunnar Mills "longDescription": "This action shall resume the job if it is in the `Suspended` state. The job shall transition to `Running` if the action is successful.", 769*c6d7a45dSGunnar Mills "parameters": {}, 770*c6d7a45dSGunnar Mills "patternProperties": { 771*c6d7a45dSGunnar Mills "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { 772*c6d7a45dSGunnar Mills "description": "This property shall specify a valid odata or Redfish property.", 773*c6d7a45dSGunnar Mills "type": [ 774*c6d7a45dSGunnar Mills "array", 775*c6d7a45dSGunnar Mills "boolean", 776*c6d7a45dSGunnar Mills "integer", 777*c6d7a45dSGunnar Mills "number", 778*c6d7a45dSGunnar Mills "null", 779*c6d7a45dSGunnar Mills "object", 780*c6d7a45dSGunnar Mills "string" 781*c6d7a45dSGunnar Mills ] 782*c6d7a45dSGunnar Mills } 783*c6d7a45dSGunnar Mills }, 784*c6d7a45dSGunnar Mills "properties": { 785*c6d7a45dSGunnar Mills "target": { 786*c6d7a45dSGunnar Mills "description": "Link to invoke action", 787*c6d7a45dSGunnar Mills "format": "uri-reference", 788*c6d7a45dSGunnar Mills "type": "string" 789*c6d7a45dSGunnar Mills }, 790*c6d7a45dSGunnar Mills "title": { 791*c6d7a45dSGunnar Mills "description": "Friendly action name", 792*c6d7a45dSGunnar Mills "type": "string" 793*c6d7a45dSGunnar Mills } 794*c6d7a45dSGunnar Mills }, 795*c6d7a45dSGunnar Mills "type": "object", 796*c6d7a45dSGunnar Mills "versionAdded": "v1_3_0" 797*c6d7a45dSGunnar Mills }, 798*c6d7a45dSGunnar Mills "Suspend": { 799*c6d7a45dSGunnar Mills "additionalProperties": false, 800*c6d7a45dSGunnar Mills "description": "Suspends the job.", 801*c6d7a45dSGunnar Mills "longDescription": "This action shall suspend the job if it is in the `Running` state. The job shall transition to `Suspended` if the action is successful.", 802*c6d7a45dSGunnar Mills "parameters": {}, 803*c6d7a45dSGunnar Mills "patternProperties": { 804*c6d7a45dSGunnar Mills "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { 805*c6d7a45dSGunnar Mills "description": "This property shall specify a valid odata or Redfish property.", 806*c6d7a45dSGunnar Mills "type": [ 807*c6d7a45dSGunnar Mills "array", 808*c6d7a45dSGunnar Mills "boolean", 809*c6d7a45dSGunnar Mills "integer", 810*c6d7a45dSGunnar Mills "number", 811*c6d7a45dSGunnar Mills "null", 812*c6d7a45dSGunnar Mills "object", 813*c6d7a45dSGunnar Mills "string" 814*c6d7a45dSGunnar Mills ] 815*c6d7a45dSGunnar Mills } 816*c6d7a45dSGunnar Mills }, 817*c6d7a45dSGunnar Mills "properties": { 818*c6d7a45dSGunnar Mills "target": { 819*c6d7a45dSGunnar Mills "description": "Link to invoke action", 820*c6d7a45dSGunnar Mills "format": "uri-reference", 821*c6d7a45dSGunnar Mills "type": "string" 822*c6d7a45dSGunnar Mills }, 823*c6d7a45dSGunnar Mills "title": { 824*c6d7a45dSGunnar Mills "description": "Friendly action name", 825*c6d7a45dSGunnar Mills "type": "string" 826*c6d7a45dSGunnar Mills } 827*c6d7a45dSGunnar Mills }, 828*c6d7a45dSGunnar Mills "type": "object", 829*c6d7a45dSGunnar Mills "versionAdded": "v1_3_0" 830*c6d7a45dSGunnar Mills }, 831*c6d7a45dSGunnar Mills "Validate": { 832*c6d7a45dSGunnar Mills "additionalProperties": false, 833*c6d7a45dSGunnar Mills "description": "Validates the job.", 834*c6d7a45dSGunnar Mills "longDescription": "This action shall request the validation the job if it is in the `New` state. The job shall transition to `Pending` if the action is successful. If the job is not valid, it shall transition to `Invalid`.", 835*c6d7a45dSGunnar Mills "parameters": {}, 836*c6d7a45dSGunnar Mills "patternProperties": { 837*c6d7a45dSGunnar Mills "^([a-zA-Z_][a-zA-Z0-9_]*)?@(odata|Redfish|Message)\\.[a-zA-Z_][a-zA-Z0-9_]*$": { 838*c6d7a45dSGunnar Mills "description": "This property shall specify a valid odata or Redfish property.", 839*c6d7a45dSGunnar Mills "type": [ 840*c6d7a45dSGunnar Mills "array", 841*c6d7a45dSGunnar Mills "boolean", 842*c6d7a45dSGunnar Mills "integer", 843*c6d7a45dSGunnar Mills "number", 844*c6d7a45dSGunnar Mills "null", 845*c6d7a45dSGunnar Mills "object", 846*c6d7a45dSGunnar Mills "string" 847*c6d7a45dSGunnar Mills ] 848*c6d7a45dSGunnar Mills } 849*c6d7a45dSGunnar Mills }, 850*c6d7a45dSGunnar Mills "properties": { 851*c6d7a45dSGunnar Mills "target": { 852*c6d7a45dSGunnar Mills "description": "Link to invoke action", 853*c6d7a45dSGunnar Mills "format": "uri-reference", 854*c6d7a45dSGunnar Mills "type": "string" 855*c6d7a45dSGunnar Mills }, 856*c6d7a45dSGunnar Mills "title": { 857*c6d7a45dSGunnar Mills "description": "Friendly action name", 858*c6d7a45dSGunnar Mills "type": "string" 859*c6d7a45dSGunnar Mills } 860*c6d7a45dSGunnar Mills }, 861*c6d7a45dSGunnar Mills "type": "object", 862*c6d7a45dSGunnar Mills "versionAdded": "v1_3_0" 863*c6d7a45dSGunnar Mills } 864*c6d7a45dSGunnar Mills }, 865*c6d7a45dSGunnar Mills "language": "en", 866*c6d7a45dSGunnar Mills "owningEntity": "DMTF", 867*c6d7a45dSGunnar Mills "release": "2025.2", 868*c6d7a45dSGunnar Mills "title": "#Job.v1_3_0.Job" 869*c6d7a45dSGunnar Mills}