JobRunParameter Model

Metadata about a job run parameter

Required
required : bool

Whether this parameter MUST be specified when running an instance of a job. Non required parameters will have defaults specific to the job template

Required
nullable : bool

Whether this parameter supports null values

Required
type : JobRunParameterType

The parameter type requested by the job

Required
supportsAutoValue : bool

Whether this parameter supports supplying UseAutoValue instead of a specific value.

An auto value is a parameter which varies its value based on prior runs. It's managed by the template and is typically used
to provide a "trickle feed" access to data. i.e. - download everything new since the job was last run.

Required MaxLength(64)
name : string

The name of the parameter (unique per job)

Example
{
  "required": true,
  "nullable": true,
  "type": 1,
  "supportsAutoValue": true,
  "name": "string value"
}