QueryJobsResponse Model

An array of these entities will be returned from a QueryJobs request

Required
jobId : string (GUID)

The unique ID for the job

Required MaxLength(64)
name : string

A descriptive name of the job

Required
templateType : number (int)

The unique identifier for the template being used when this job is executed

Required
outputFiles : JobRunFile []

The set of named output files that a successful job run will generate (specific to TemplateType)

Nullable
parameters : JobRunParameter []

The set of parameters that can be specified when attempting to execute a job (specific to TemplateType). Can be null/empty

Example
{
  "jobId": "3f49efe7-ea42-4f21-8718-7e6ce9a33512",
  "name": "string value",
  "templateType": 321,
  "outputFiles": [],
  "parameters": []
}