JIRA Issue response from the REST API

interface Issue {
    fields?: Record<string, unknown>;
    id: string;
    key: string;
    self: string;
}

Properties

Properties

fields?: Record<string, unknown>

Optional fields returned by JIRA (for dry-run mode or expanded responses)

id: string

Issue ID (e.g., "10050")

key: string

Issue key (e.g., "ENG-123")

self: string

Full URL to the issue