Developer
News and Updates
Get Support
Sign in
Get Support
Sign in
DOCUMENTATION
Cloud
Data Center
Resources
Sign in
Sign in
DOCUMENTATION
Cloud
Data Center
Resources
Sign in
Last updated Oct 3, 2025

Jira expressions TypeScript types

TypeScript type definitions for the Jira expressions runtime environment. Use these to build tooling, get IDE autocomplete, or add type safety when working with Jira expressions.

A human-readable version is available at Jira expressions types.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
declare global {
    // Context variables
    const user: User;
    const app: App;
    const issue: Issue;
    const originalIssue: Issue;
    const issues: Issue[];
    const project: Project;
    const sprint: Sprint;
    const board: Board;
    const serviceDesk: ServiceDesk;
    const customerRequest: CustomerRequest;
    const transition: Transition;
    const workflow: Workflow;
    const config: any;

    // Functions and utilities
    const Number: NumberFunction;
    const JSON: JSONUtility;

    // Constructors
    const Issue: IssueConstructor;
    const Project: ProjectConstructor;
    const User: UserConstructor;
    const RichText: RichTextConstructor;
    const Date: DateConstructor;
    const CalendarDate: CalendarDateConstructor;
}

export interface JiraDate extends Date {
    toCalendarDate(): JiraCalendarDate;
    toCalendarDateUTC(): JiraCalendarDate;
    plusMonths(months: number): JiraDate;
    minusMonths(months: number): JiraDate;
    plusDays(days: number): JiraDate;
    minusDays(days: number): JiraDate;
    plusHours(hours: number): JiraDate;
    minusHours(hours: number): JiraDate;
    plusMinutes(minutes: number): JiraDate;
    minusMinutes(minutes: number): JiraDate;
}

export interface JiraCalendarDate extends Pick<Date,
    | 'getDay'
    | 'getDate'
    | 'getMonth'
    | 'getFullYear'
    | 'toISOString'
    | 'toString'
> {
    plusMonths(months: number): JiraCalendarDate;
    minusMonths(months: number): JiraCalendarDate;
    plusDays(days: number): JiraCalendarDate;
    minusDays(days: number): JiraCalendarDate;
}

export interface DateConstructor {
    new (): JiraDate;
    new (timestamp: number): JiraDate;
    new (dateString: string): JiraDate;
}

export interface CalendarDateConstructor {
    new (): JiraCalendarDate;
    new (dateString: string): JiraCalendarDate;
}

export interface Issue {
    id: number;
    parent: Issue;
    project: Project;
    key: string;
    summary: string;
    subtasks: Issue[];
    childIssues: Issue[];
    description: RichText;
    priority: IssuePriority;
    assignee: User;
    reporter: User;
    creator: User;
    watches: number;
    watchers: User[];
    votes: number;
    voters: User[];
    issueType: IssueType;
    status: IssueStatus;
    created: JiraDate;
    updated: JiraDate;
    dueDate: JiraCalendarDate;
    resolutionDate: JiraDate;
    resolution: Resolution;
    timeSpent: number;
    originalEstimate: number;
    remainingEstimate: number;
    environment: RichText;
    securityLevel: SecurityLevel;
    labels: string[];
    components: Component[];
    versions: Version[];
    fixVersions: Version[];
    comments: Comment[];
    attachments: Attachment[];
    links: IssueLink[];
    changelogs: Changelog[];
    getNewestChangelog(fieldName: string): Changelog;
    getNewestChangelog(fieldName: string, filters: Record<string, string>): Changelog;
    properties: EntityProperties;
    worklogs: Worklog[];

    // Jira Software fields (when Jira Software is licensed)
    sprint?: Sprint;
    closedSprints?: Sprint[];
    flagged?: boolean;
    epic?: Issue;
    isEpic?: boolean;
    name?: string;
    color?: string;
    done?: boolean;
    stories?: Issue[];

    // Custom fields - accessed via ID or key
    [customFieldId: string]: any;
}

export interface ADF {
    type: string;
    version: number;
    content: Array<Record<string, any>>;
}

export interface EntityProperties {
    get(key: string): any;
    keys(): string[];
    updated(): JiraDate;
    updated(key: string): JiraDate;
}

export interface UserPermissions {
    global: string[];
}

export interface User {
    accountId: string;
    displayName: string;
    locale: string;
    timeZone: string;
    avatarUrls: Record<string, string>;
    active: boolean;
    permissions: UserPermissions;
    groups: string[];
    groupIds: string[];
    getProjectRoles(project: Project): ProjectRole[];
    properties: EntityProperties;
}

export interface ProjectCategory {
    id: number;
    name: string;
    description: string;
}

export interface ProjectRole {
    id: number;
    name: string;
    description: string;
}

export interface Component {
    id: number;
    name: string;
}

export interface Project {
    id: number;
    key: string;
    style: string;
    name: string;
    avatarUrls: Record<string, string>;
    lead: User;
    projectTypeKey: string;
    projectCategory: ProjectCategory;
    properties: EntityProperties;
}

export interface IssuePriority {
    id: number;
    name: string;
    description: string;
}

export interface IssueStatusCategory {
    id: number;
    key: string;
    name: string;
    colorName: string;
}

export interface IssueStatus {
    id: number;
    name: string;
    description: string;
    category: IssueStatusCategory;
}

export interface IssueType {
    id: number;
    name: string;
    description: string;
    iconUrl: string;
    hierarchyLevel: number;
    properties: EntityProperties;
}

export interface Resolution {
    id: number;
    name: string;
    description: string;
}

export interface Version {
    id: number;
    name: string;
    description: string;
    archived: boolean;
    released: boolean;
    releaseDate: JiraCalendarDate;
    startDate: JiraCalendarDate;
}

export interface SecurityLevel {
    id: number;
    name: string;
    description: string;
}

export interface Attachment {
    id: number;
    author: User;
    filename: string;
    size: number;
    mimeType: string;
    created: JiraDate;
}

export interface RichText {
    plainText: string;
}

export interface Comment {
    id: number;
    author: User;
    body: RichText;
    created: JiraDate;
    updated: JiraDate;
    properties: EntityProperties;
}

export interface ChangelogItem {
    field: string;
    fieldId: string;
    from: string;
    fromString: string;
    to: string;
    toString: string;
}

export interface Changelog {
    id: string;
    author: User;
    items: ChangelogItem[];
    created: JiraDate;
}

export interface Worklog {
    id: string;
    author: User;
    updateAuthor: User;
    created: JiraDate;
    updated: JiraDate;
    started: JiraDate;
    timeSpent: number;
}

export interface IssueLinkType {
    id: number;
    name: string;
    inward: string;
    outward: string;
}

export interface IssueLink {
    id: number;
    type: IssueLinkType;
    direction: string;
    linkedIssue: Issue;
    outwardIssue: Issue;
    inwardIssue: Issue;
}

export interface Transition {
    id: number;
    name: string;
    from: IssueStatus;
    to: IssueStatus;
    hasScreen: boolean;
}

export interface Workflow {
    id: string;
    name: string;
}

export interface Sprint {
    id: number;
    state: string;
    name: string;
    goal: string;
    startDate: JiraDate;
    endDate: JiraDate;
    completeDate: JiraDate;
    properties: EntityProperties;
}

export interface Board {
    id: number;
    hasBacklog: boolean;
    hasSprints: boolean;
    activeSprints: Sprint[];
    futureSprints: Sprint[];
    closedSprints: Sprint[];
    canAdminister: boolean;
    properties: EntityProperties;
}

export interface ServiceDesk {
    id: number;
    project: Project;
}

export interface CustomerRequestType {
    id: number;
}

export interface CustomerRequestStatus {
    name: string;
    category: string;
    date: string;
}

export interface CustomerRequest {
    issue: Issue;
    currentStatus: CustomerRequestStatus;
    requestType: CustomerRequestType;
    serviceDesk: ServiceDesk;
}

export interface License {
    active: boolean;
}

export interface App {
    id: string;
    key: string;
    license: License;
    properties: EntityProperties;
}

export interface IssueConstructor {
    new (id: number): Issue | null;
    new (key: string): Issue | null;
}

export interface ProjectConstructor {
    new (id: number): Project | null;
    new (key: string): Project | null;
}

export interface UserConstructor {
    new (accountId: string): User | null;
}

export interface RichTextConstructor {
    new (adf: ADF): RichText;
}

export interface NumberFunction {
    (value: any): number;
}

export interface JSONUtility {
    stringify(value: any): string;
    parse(json: string): any;
}

Rate this page: