Details of the options for a select list issue field.

interface IssueFieldOption {
    config?: IssueFieldOptionConfiguration;
    id: number;
    properties?: {
        [key: string]: unknown;
    };
    value: string;
}

Properties

Details of the projects the option is available in.

id: number

The unique identifier for the option. This is only unique within the select field's set of options.

properties?: {
    [key: string]: unknown;
}

The properties of the object, as arbitrary key-value pairs. These properties can be searched using JQL, if the extractions (see Issue Field Option Property Index) are defined in the descriptor for the issue field module.

value: string

The option's name, which is displayed in Jira.