logo

JobStatus

The status of a job


Default value

Due to default enum behaviour, fields of this type will have the following value if not specified:Open


Allowable values

Please refer to the below table for the range of allowable values for this type:

ValueIndex
Open0
Cancelled1
Closed2

The following example shows how the data should appear when assigning a value to a field of this type:

Type:

JobStatus


{
"fieldName": "Open",
... or ...
"fieldName": 0,
}

Using the string representation of the enum value is preferred.

Fields of this type should be considered required. Enums have default behaviour that can cause unexpected issues. Please ensure you always specify a valid value.