-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub-issue-structure.json
More file actions
395 lines (395 loc) · 9.68 KB
/
github-issue-structure.json
File metadata and controls
395 lines (395 loc) · 9.68 KB
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
395
{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://github.com/schemas/github/issue.json",
"name": "GitHub Issue",
"description": "A GitHub issue used for tracking bugs, feature requests, tasks, and discussions within a repository.",
"type": "object",
"required": [
"id",
"number",
"title",
"state",
"user"
],
"properties": {
"id": {
"type": "int32",
"description": "The unique identifier of the issue."
},
"node_id": {
"type": "string",
"description": "The GraphQL node ID for the issue."
},
"url": {
"type": "uri",
"description": "The API URL for the issue."
},
"html_url": {
"type": "uri",
"description": "The URL of the issue on GitHub."
},
"number": {
"type": "int32",
"minimum": 1,
"description": "The issue number within the repository."
},
"state": {
"type": "string",
"enum": [
"open",
"closed"
],
"description": "The current state of the issue."
},
"state_reason": {
"type": "string",
"enum": [
"completed",
"reopened",
"not_planned",
null
],
"description": "The reason the issue state was changed."
},
"title": {
"type": "string",
"description": "The title of the issue.",
"minLength": 1
},
"body": {
"type": "string",
"description": "The contents of the issue in Markdown format."
},
"user": {
"$ref": "#/$defs/SimpleUser"
},
"labels": {
"type": "array",
"description": "Labels applied to the issue.",
"items": {
"$ref": "#/$defs/Label"
}
},
"assignee": {
"oneOf": [
{
"$ref": "#/$defs/SimpleUser"
},
{
"type": "null"
}
],
"description": "The primary user assigned to the issue."
},
"assignees": {
"type": "array",
"description": "All users assigned to the issue.",
"items": {
"$ref": "#/$defs/SimpleUser"
}
},
"milestone": {
"oneOf": [
{
"$ref": "#/$defs/Milestone"
},
{
"type": "null"
}
],
"description": "The milestone the issue is associated with."
},
"locked": {
"type": "boolean",
"description": "Whether the issue is locked."
},
"active_lock_reason": {
"type": "string",
"enum": [
"off-topic",
"too heated",
"resolved",
"spam",
null
],
"description": "The reason the issue was locked."
},
"comments": {
"type": "int32",
"minimum": 0,
"description": "The number of comments on the issue."
},
"pull_request": {
"type": "object",
"description": "Pull request metadata if this issue is also a pull request.",
"properties": {
"url": {
"type": "uri",
"description": "API URL for the pull request."
},
"html_url": {
"type": "uri",
"description": "URL to the pull request on GitHub."
},
"diff_url": {
"type": "uri",
"description": "URL to the pull request diff."
},
"patch_url": {
"type": "uri",
"description": "URL to the pull request patch."
}
}
},
"created_at": {
"type": "datetime",
"description": "The date and time the issue was created."
},
"updated_at": {
"type": "datetime",
"description": "The date and time the issue was last updated."
},
"closed_at": {
"type": "string",
"format": "date-time",
"description": "The date and time the issue was closed."
},
"closed_by": {
"oneOf": [
{
"$ref": "#/$defs/SimpleUser"
},
{
"type": "null"
}
],
"description": "The user who closed the issue."
},
"author_association": {
"type": "string",
"enum": [
"COLLABORATOR",
"CONTRIBUTOR",
"FIRST_TIMER",
"FIRST_TIME_CONTRIBUTOR",
"MANNEQUIN",
"MEMBER",
"NONE",
"OWNER"
],
"description": "How the author is associated with the repository."
},
"reactions": {
"$ref": "#/$defs/Reactions"
}
},
"$defs": {
"SimpleUser": {
"type": "object",
"description": "A simplified representation of a GitHub user.",
"required": [
"login",
"id"
],
"properties": {
"login": {
"type": "string",
"description": "The username of the user."
},
"id": {
"type": "integer",
"description": "The unique identifier for the user."
},
"node_id": {
"type": "string",
"description": "The GraphQL node ID."
},
"avatar_url": {
"type": "string",
"format": "uri",
"description": "URL to the user's avatar image."
},
"html_url": {
"type": "string",
"format": "uri",
"description": "URL to the user's GitHub profile."
},
"type": {
"type": "string",
"enum": [
"User",
"Organization",
"Bot"
],
"description": "The type of account."
}
}
},
"Label": {
"type": "object",
"description": "A label applied to an issue or pull request.",
"required": [
"id",
"name"
],
"properties": {
"id": {
"type": "integer",
"description": "The unique identifier of the label."
},
"node_id": {
"type": "string",
"description": "The GraphQL node ID."
},
"name": {
"type": "string",
"description": "The name of the label."
},
"description": {
"type": [
"string",
"null"
],
"description": "A description of the label."
},
"color": {
"type": "string",
"pattern": "^[0-9a-fA-F]{6}$",
"description": "The hex color code of the label without the # prefix."
},
"default": {
"type": "boolean",
"description": "Whether this is a default label."
}
}
},
"Milestone": {
"type": "object",
"description": "A milestone used to track progress on groups of issues and pull requests.",
"required": [
"id",
"number",
"title",
"state"
],
"properties": {
"id": {
"type": "integer",
"description": "The unique identifier of the milestone."
},
"node_id": {
"type": "string",
"description": "The GraphQL node ID."
},
"number": {
"type": "integer",
"description": "The milestone number."
},
"title": {
"type": "string",
"description": "The title of the milestone."
},
"description": {
"type": [
"string",
"null"
],
"description": "A description of the milestone."
},
"state": {
"type": "string",
"enum": [
"open",
"closed"
],
"description": "The state of the milestone."
},
"open_issues": {
"type": "integer",
"description": "The number of open issues in the milestone."
},
"closed_issues": {
"type": "integer",
"description": "The number of closed issues in the milestone."
},
"due_on": {
"type": [
"string",
"null"
],
"format": "date-time",
"description": "The due date of the milestone."
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "When the milestone was created."
},
"closed_at": {
"type": [
"string",
"null"
],
"format": "date-time",
"description": "When the milestone was closed."
}
}
},
"Reactions": {
"type": "object",
"description": "Reaction counts for the issue.",
"properties": {
"url": {
"type": "string",
"format": "uri",
"description": "API URL for the reactions."
},
"total_count": {
"type": "integer",
"minimum": 0,
"description": "Total number of reactions."
},
"+1": {
"type": "integer",
"minimum": 0,
"description": "Number of thumbs up reactions."
},
"-1": {
"type": "integer",
"minimum": 0,
"description": "Number of thumbs down reactions."
},
"laugh": {
"type": "integer",
"minimum": 0,
"description": "Number of laugh reactions."
},
"hooray": {
"type": "integer",
"minimum": 0,
"description": "Number of hooray reactions."
},
"confused": {
"type": "integer",
"minimum": 0,
"description": "Number of confused reactions."
},
"heart": {
"type": "integer",
"minimum": 0,
"description": "Number of heart reactions."
},
"rocket": {
"type": "integer",
"minimum": 0,
"description": "Number of rocket reactions."
},
"eyes": {
"type": "integer",
"minimum": 0,
"description": "Number of eyes reactions."
}
}
}
}
}