A field required by a transition screen.

interface JiraTransitionField {
    allowedValues?: unknown[];
    hasDefaultValue?: boolean;
    key?: string;
    name: string;
    required: boolean;
    schema?: {
        custom?: string;
        customId?: number;
        system?: string;
        type: string;
    };
}

Properties

allowedValues?: unknown[]

Allowed values for the field

hasDefaultValue?: boolean

Whether the field has a default value

key?: string

Field key

name: string

Field name

required: boolean

Whether the field is required

schema?: { custom?: string; customId?: number; system?: string; type: string }

Field schema information