Details of the issue creation metadata for an issue type.

interface IssueTypeIssueCreateMetadata {
    avatarId?: number;
    description?: string;
    entityId?: string;
    expand?: string;
    fields?: {
        [key: string]: FieldMetadata;
    };
    hierarchyLevel?: number;
    iconUrl?: string;
    id?: string;
    name?: string;
    scope?: Scope;
    self?: string;
    subtask?: boolean;
}

Properties

avatarId?: number

The ID of the issue type's avatar.

description?: string

The description of the issue type.

entityId?: string

Unique ID for next-gen projects.

expand?: string

Expand options that include additional issue type metadata details in the response.

fields?: {
    [key: string]: FieldMetadata;
}

List of the fields available when creating an issue for the issue type.

Type declaration

  • [key: string]: FieldMetadata

    The metadata describing an issue field.

hierarchyLevel?: number

Hierarchy level of the issue type.

iconUrl?: string

The URL of the issue type's avatar.

id?: string

The ID of the issue type.

name?: string

The name of the issue type.

scope?: Scope

Details of the next-gen projects the issue type is available in.

self?: string

The URL of these issue type details.

subtask?: boolean

Whether this issue type is used to create subtasks.