Details of an issue type scheme and its associated issue types.

interface IssueTypeSchemeDetails {
    defaultIssueTypeId?: string;
    description?: string;
    issueTypeIds: string[];
    name: string;
}

Hierarchy (view full)

Properties

defaultIssueTypeId?: string

The ID of the default issue type of the issue type scheme. This ID must be included in issueTypeIds.

description?: string

The description of the issue type scheme. The maximum length is 4000 characters.

issueTypeIds: string[]

The list of issue types IDs of the issue type scheme. At least one standard issue type ID is required.

name: string

The name of the issue type scheme. The name must be unique. The maximum length is 255 characters.