airbyte-source-gitlab 4.0.1__py3-none-any.whl → 4.0.2__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- {airbyte_source_gitlab-4.0.1.dist-info → airbyte_source_gitlab-4.0.2.dist-info}/METADATA +2 -2
- airbyte_source_gitlab-4.0.2.dist-info/RECORD +35 -0
- source_gitlab/schemas/branches.json +11 -0
- source_gitlab/schemas/commits.json +21 -0
- source_gitlab/schemas/deployments.json +61 -0
- source_gitlab/schemas/epic_issues.json +51 -0
- source_gitlab/schemas/epics.json +39 -0
- source_gitlab/schemas/group_issue_boards.json +21 -0
- source_gitlab/schemas/group_labels.json +11 -0
- source_gitlab/schemas/group_milestones.json +12 -0
- source_gitlab/schemas/groups.json +51 -0
- source_gitlab/schemas/issues.json +87 -0
- source_gitlab/schemas/jobs.json +31 -0
- source_gitlab/schemas/merge_request_commits.json +22 -0
- source_gitlab/schemas/merge_requests.json +60 -0
- source_gitlab/schemas/pipelines.json +11 -0
- source_gitlab/schemas/pipelines_extended.json +29 -0
- source_gitlab/schemas/project_labels.json +13 -0
- source_gitlab/schemas/project_milestones.json +12 -0
- source_gitlab/schemas/projects.json +163 -0
- source_gitlab/schemas/releases.json +22 -0
- source_gitlab/schemas/tags.json +10 -0
- source_gitlab/schemas/users.json +7 -0
- airbyte_source_gitlab-4.0.1.dist-info/RECORD +0 -35
- {airbyte_source_gitlab-4.0.1.dist-info → airbyte_source_gitlab-4.0.2.dist-info}/WHEEL +0 -0
- {airbyte_source_gitlab-4.0.1.dist-info → airbyte_source_gitlab-4.0.2.dist-info}/entry_points.txt +0 -0
@@ -3,115 +3,149 @@
|
|
3
3
|
"type": "object",
|
4
4
|
"properties": {
|
5
5
|
"id": {
|
6
|
+
"description": "ID of the epic issue.",
|
6
7
|
"type": ["null", "integer"]
|
7
8
|
},
|
8
9
|
"iid": {
|
10
|
+
"description": "Internal ID of the epic issue.",
|
9
11
|
"type": ["null", "integer"]
|
10
12
|
},
|
11
13
|
"project_id": {
|
14
|
+
"description": "ID of the project the epic issue belongs to.",
|
12
15
|
"type": ["null", "integer"]
|
13
16
|
},
|
14
17
|
"title": {
|
18
|
+
"description": "Title of the epic issue.",
|
15
19
|
"type": ["null", "string"]
|
16
20
|
},
|
17
21
|
"description": {
|
22
|
+
"description": "Description of the epic issue.",
|
18
23
|
"type": ["null", "string"]
|
19
24
|
},
|
20
25
|
"state": {
|
26
|
+
"description": "State of the epic issue.",
|
21
27
|
"type": ["null", "string"]
|
22
28
|
},
|
23
29
|
"created_at": {
|
30
|
+
"description": "Timestamp when the epic issue was created.",
|
24
31
|
"type": ["null", "string"],
|
25
32
|
"format": "date-time"
|
26
33
|
},
|
27
34
|
"updated_at": {
|
35
|
+
"description": "Timestamp when the epic issue was last updated.",
|
28
36
|
"type": ["null", "string"],
|
29
37
|
"format": "date-time"
|
30
38
|
},
|
31
39
|
"closed_at": {
|
40
|
+
"description": "Timestamp when the epic issue was closed.",
|
32
41
|
"type": ["null", "string"],
|
33
42
|
"format": "date-time"
|
34
43
|
},
|
35
44
|
"labels": {
|
45
|
+
"description": "List of labels associated with the epic issue.",
|
36
46
|
"type": ["null", "array"],
|
37
47
|
"items": {
|
38
48
|
"type": ["null", "string"]
|
39
49
|
}
|
40
50
|
},
|
41
51
|
"milestone": {
|
52
|
+
"description": "Information about the milestone associated with the epic issue.",
|
42
53
|
"type": ["null", "object"],
|
43
54
|
"additionalProperties": true
|
44
55
|
},
|
45
56
|
"milestone_id": {
|
57
|
+
"description": "ID of the milestone associated with the epic issue.",
|
46
58
|
"type": ["null", "integer"]
|
47
59
|
},
|
48
60
|
"assignees": {
|
61
|
+
"description": "List of users assigned to the epic issue.",
|
49
62
|
"type": ["null", "array"],
|
50
63
|
"items": {
|
64
|
+
"description": "Information about an assignee.",
|
51
65
|
"type": ["null", "integer"]
|
52
66
|
}
|
53
67
|
},
|
54
68
|
"assignee": {
|
69
|
+
"description": "Information about the user assigned to the epic issue.",
|
55
70
|
"type": ["null", "object"],
|
56
71
|
"additionalProperties": true
|
57
72
|
},
|
58
73
|
"assignee_id": {
|
74
|
+
"description": "ID of the user assigned to the epic issue.",
|
59
75
|
"type": ["null", "integer"]
|
60
76
|
},
|
61
77
|
"author": {
|
78
|
+
"description": "Information about the user who authored the epic issue.",
|
62
79
|
"type": ["null", "object"],
|
63
80
|
"additionalProperties": true
|
64
81
|
},
|
65
82
|
"author_id": {
|
83
|
+
"description": "ID of the user who authored the epic issue.",
|
66
84
|
"type": ["null", "integer"]
|
67
85
|
},
|
68
86
|
"user_notes_count": {
|
87
|
+
"description": "Number of user notes added to the epic issue.",
|
69
88
|
"type": ["null", "integer"]
|
70
89
|
},
|
71
90
|
"upvotes": {
|
91
|
+
"description": "Number of upvotes received for the epic issue.",
|
72
92
|
"type": ["null", "integer"]
|
73
93
|
},
|
74
94
|
"downvotes": {
|
95
|
+
"description": "Number of downvotes received for the epic issue.",
|
75
96
|
"type": ["null", "integer"]
|
76
97
|
},
|
77
98
|
"due_date": {
|
99
|
+
"description": "Due date set for the epic issue.",
|
78
100
|
"type": ["null", "string"],
|
79
101
|
"format": "date"
|
80
102
|
},
|
81
103
|
"confidential": {
|
104
|
+
"description": "Indicates if the epic issue is confidential.",
|
82
105
|
"type": ["null", "boolean"]
|
83
106
|
},
|
84
107
|
"weight": {
|
108
|
+
"description": "Weight assigned to the epic issue.",
|
85
109
|
"type": ["null", "integer"]
|
86
110
|
},
|
87
111
|
"discussion_locked": {
|
112
|
+
"description": "Indicates if the discussion on the epic issue is locked.",
|
88
113
|
"type": ["null", "boolean"]
|
89
114
|
},
|
90
115
|
"web_url": {
|
116
|
+
"description": "URL link to access the epic issue.",
|
91
117
|
"type": ["null", "string"]
|
92
118
|
},
|
93
119
|
"time_stats": {
|
120
|
+
"description": "Time-related statistics for the epic issue.",
|
94
121
|
"type": ["null", "object"]
|
95
122
|
},
|
96
123
|
"_links": {
|
124
|
+
"description": "Links related to the epic issue.",
|
97
125
|
"type": ["null", "object"]
|
98
126
|
},
|
99
127
|
"epic_issue_id": {
|
128
|
+
"description": "ID of the epic issue.",
|
100
129
|
"type": ["null", "integer"]
|
101
130
|
},
|
102
131
|
"merge_requests_count": {
|
132
|
+
"description": "Number of merge requests related to the epic issue.",
|
103
133
|
"type": ["null", "integer"]
|
104
134
|
},
|
105
135
|
"type": {
|
136
|
+
"description": "Type of the epic issue.",
|
106
137
|
"type": ["null", "string"]
|
107
138
|
},
|
108
139
|
"task_status": {
|
140
|
+
"description": "Status of tasks associated with the epic issue.",
|
109
141
|
"type": ["null", "string"]
|
110
142
|
},
|
111
143
|
"moved_to_id": {
|
144
|
+
"description": "ID of the epic issue it was moved to.",
|
112
145
|
"type": ["null", "integer"]
|
113
146
|
},
|
114
147
|
"iteration": {
|
148
|
+
"description": "Information about the iteration associated with the epic issue.",
|
115
149
|
"type": ["null", "object"],
|
116
150
|
"properties": {
|
117
151
|
"id": {
|
@@ -136,18 +170,22 @@
|
|
136
170
|
"type": ["null", "integer"]
|
137
171
|
},
|
138
172
|
"created_at": {
|
173
|
+
"description": "Timestamp when the iteration was created.",
|
139
174
|
"type": ["null", "string"],
|
140
175
|
"format": "date-time"
|
141
176
|
},
|
142
177
|
"updated_at": {
|
178
|
+
"description": "Timestamp when the iteration was last updated.",
|
143
179
|
"type": ["null", "string"],
|
144
180
|
"format": "date-time"
|
145
181
|
},
|
146
182
|
"start_date": {
|
183
|
+
"description": "Start date of the iteration.",
|
147
184
|
"type": ["null", "string"],
|
148
185
|
"format": "date"
|
149
186
|
},
|
150
187
|
"due_date": {
|
188
|
+
"description": "Due date set for the iteration.",
|
151
189
|
"type": ["null", "string"],
|
152
190
|
"format": "date"
|
153
191
|
},
|
@@ -157,12 +195,15 @@
|
|
157
195
|
}
|
158
196
|
},
|
159
197
|
"has_tasks": {
|
198
|
+
"description": "Indicates if the epic issue has associated tasks.",
|
160
199
|
"type": ["null", "boolean"]
|
161
200
|
},
|
162
201
|
"blocking_issues_count": {
|
202
|
+
"description": "Number of blocking issues related to the epic issue.",
|
163
203
|
"type": ["null", "integer"]
|
164
204
|
},
|
165
205
|
"closed_by": {
|
206
|
+
"description": "Information about the user who closed the epic issue.",
|
166
207
|
"type": ["null", "object"],
|
167
208
|
"properties": {
|
168
209
|
"state": {
|
@@ -186,6 +227,7 @@
|
|
186
227
|
}
|
187
228
|
},
|
188
229
|
"references": {
|
230
|
+
"description": "References related to the epic issue.",
|
189
231
|
"type": ["null", "object"],
|
190
232
|
"properties": {
|
191
233
|
"full": {
|
@@ -200,6 +242,7 @@
|
|
200
242
|
}
|
201
243
|
},
|
202
244
|
"epic": {
|
245
|
+
"description": "Information about the epic that the issue belongs to.",
|
203
246
|
"type": ["null", "object"],
|
204
247
|
"properties": {
|
205
248
|
"id": {
|
@@ -226,29 +269,37 @@
|
|
226
269
|
}
|
227
270
|
},
|
228
271
|
"issue_type": {
|
272
|
+
"description": "Type of the epic issue.",
|
229
273
|
"type": ["null", "string"]
|
230
274
|
},
|
231
275
|
"severity": {
|
276
|
+
"description": "Severity level of the epic issue.",
|
232
277
|
"type": ["null", "string"]
|
233
278
|
},
|
234
279
|
"service_desk_reply_to": {
|
280
|
+
"description": "ID of the service desk reply related to the epic issue.",
|
235
281
|
"type": ["null", "string"]
|
236
282
|
},
|
237
283
|
"task_completion_status": {
|
284
|
+
"description": "Status of task completion for the epic issue.",
|
238
285
|
"type": ["null", "object"],
|
239
286
|
"properties": {
|
240
287
|
"count": {
|
288
|
+
"description": "Total count of tasks.",
|
241
289
|
"type": ["null", "integer"]
|
242
290
|
},
|
243
291
|
"completed_count": {
|
292
|
+
"description": "Number of completed tasks.",
|
244
293
|
"type": ["null", "integer"]
|
245
294
|
}
|
246
295
|
}
|
247
296
|
},
|
248
297
|
"relative_position": {
|
298
|
+
"description": "Relative position of the epic issue.",
|
249
299
|
"type": ["null", "integer"]
|
250
300
|
},
|
251
301
|
"epic_iid": {
|
302
|
+
"description": "Internal ID of the epic the issue belongs to.",
|
252
303
|
"type": ["null", "integer"]
|
253
304
|
}
|
254
305
|
}
|
source_gitlab/schemas/epics.json
CHANGED
@@ -3,129 +3,168 @@
|
|
3
3
|
"type": "object",
|
4
4
|
"properties": {
|
5
5
|
"id": {
|
6
|
+
"description": "Unique ID of the epic",
|
6
7
|
"type": ["null", "integer"]
|
7
8
|
},
|
8
9
|
"iid": {
|
10
|
+
"description": "Internal ID of the epic",
|
9
11
|
"type": ["null", "integer"]
|
10
12
|
},
|
11
13
|
"group_id": {
|
14
|
+
"description": "ID of the group to which the epic belongs",
|
12
15
|
"type": ["null", "integer"]
|
13
16
|
},
|
14
17
|
"parent_id": {
|
18
|
+
"description": "ID of the parent epic, if any",
|
15
19
|
"type": ["null", "integer"]
|
16
20
|
},
|
17
21
|
"title": {
|
22
|
+
"description": "Title of the epic",
|
18
23
|
"type": ["null", "string"]
|
19
24
|
},
|
20
25
|
"description": {
|
26
|
+
"description": "Description of the epic",
|
21
27
|
"type": ["null", "string"]
|
22
28
|
},
|
23
29
|
"state": {
|
30
|
+
"description": "Current state of the epic",
|
24
31
|
"type": ["null", "string"]
|
25
32
|
},
|
26
33
|
"confidential": {
|
34
|
+
"description": "Flag indicating if the epic is confidential",
|
27
35
|
"type": ["null", "boolean"]
|
28
36
|
},
|
29
37
|
"web_url": {
|
38
|
+
"description": "URL for viewing the epic in a web browser",
|
30
39
|
"type": ["null", "string"]
|
31
40
|
},
|
32
41
|
"reference": {
|
42
|
+
"description": "Reference for the epic",
|
33
43
|
"type": ["null", "string"]
|
34
44
|
},
|
35
45
|
"references": {
|
46
|
+
"description": "References associated with the epic",
|
36
47
|
"type": ["null", "object"]
|
37
48
|
},
|
38
49
|
"author": {
|
50
|
+
"description": "Author of the epic",
|
39
51
|
"type": ["null", "object"],
|
40
52
|
"additionalProperties": true
|
41
53
|
},
|
42
54
|
"author_id": {
|
55
|
+
"description": "ID of the author",
|
43
56
|
"type": ["null", "integer"]
|
44
57
|
},
|
45
58
|
"start_date": {
|
59
|
+
"description": "Start date of the epic",
|
46
60
|
"type": ["null", "string"]
|
47
61
|
},
|
48
62
|
"start_date_is_fixed": {
|
63
|
+
"description": "Flag indicating if the start date is fixed",
|
49
64
|
"type": ["null", "boolean"]
|
50
65
|
},
|
51
66
|
"start_date_fixed": {
|
67
|
+
"description": "Fixed start date of the epic",
|
52
68
|
"type": ["null", "string"],
|
53
69
|
"format": "date"
|
54
70
|
},
|
55
71
|
"start_date_from_inherited_source": {
|
72
|
+
"description": "Start date inherited from another source",
|
56
73
|
"type": ["null", "string", "boolean"]
|
57
74
|
},
|
58
75
|
"end_date": {
|
76
|
+
"description": "End date of the epic",
|
59
77
|
"type": ["null", "string"]
|
60
78
|
},
|
61
79
|
"due_date": {
|
80
|
+
"description": "Due date of the epic",
|
62
81
|
"type": ["null", "string"]
|
63
82
|
},
|
64
83
|
"due_date_is_fixed": {
|
84
|
+
"description": "Flag indicating if the due date is fixed",
|
65
85
|
"type": ["null", "boolean"]
|
66
86
|
},
|
67
87
|
"due_date_fixed": {
|
88
|
+
"description": "Fixed due date of the epic",
|
68
89
|
"type": ["null", "string"],
|
69
90
|
"format": "date"
|
70
91
|
},
|
71
92
|
"due_date_from_inherited_source": {
|
93
|
+
"description": "Due date inherited from another source",
|
72
94
|
"type": ["null", "string"]
|
73
95
|
},
|
74
96
|
"created_at": {
|
97
|
+
"description": "Date and time when the epic was created",
|
75
98
|
"type": ["null", "string"],
|
76
99
|
"format": "date-time"
|
77
100
|
},
|
78
101
|
"updated_at": {
|
102
|
+
"description": "Date and time when the epic was last updated",
|
79
103
|
"type": ["null", "string"],
|
80
104
|
"format": "date-time"
|
81
105
|
},
|
82
106
|
"closed_at": {
|
107
|
+
"description": "Date and time when the epic was closed",
|
83
108
|
"type": ["null", "string"],
|
84
109
|
"format": "date-time"
|
85
110
|
},
|
86
111
|
"labels": {
|
112
|
+
"description": "Labels associated with the epic",
|
87
113
|
"type": ["null", "array"]
|
88
114
|
},
|
89
115
|
"upvotes": {
|
116
|
+
"description": "Number of upvotes received by the epic",
|
90
117
|
"type": ["null", "integer"]
|
91
118
|
},
|
92
119
|
"downvotes": {
|
120
|
+
"description": "Number of downvotes received by the epic",
|
93
121
|
"type": ["null", "integer"]
|
94
122
|
},
|
95
123
|
"parent_iid": {
|
124
|
+
"description": "Internal ID of the parent epic",
|
96
125
|
"type": ["null", "integer"]
|
97
126
|
},
|
98
127
|
"color": {
|
128
|
+
"description": "Color associated with the epic",
|
99
129
|
"type": ["null", "string"]
|
100
130
|
},
|
101
131
|
"text_color": {
|
132
|
+
"description": "Text color associated with the epic",
|
102
133
|
"type": ["null", "string"]
|
103
134
|
},
|
104
135
|
"web_edit_url": {
|
136
|
+
"description": "URL for editing the epic in a web browser",
|
105
137
|
"type": ["null", "string"]
|
106
138
|
},
|
107
139
|
"due_date_from_milestones": {
|
140
|
+
"description": "Due date linked to milestone",
|
108
141
|
"type": ["null", "string"],
|
109
142
|
"format": "date"
|
110
143
|
},
|
111
144
|
"_links": {
|
145
|
+
"description": "Contains links to related resources for the epic",
|
112
146
|
"type": ["null", "object"],
|
113
147
|
"properties": {
|
114
148
|
"self": {
|
149
|
+
"description": "Link to the epic resource itself",
|
115
150
|
"type": ["null", "string"]
|
116
151
|
},
|
117
152
|
"epic_issues": {
|
153
|
+
"description": "Link to the list of issues associated with the epic",
|
118
154
|
"type": ["null", "string"]
|
119
155
|
},
|
120
156
|
"group": {
|
157
|
+
"description": "Link to the group to which the epic belongs",
|
121
158
|
"type": ["null", "string"]
|
122
159
|
},
|
123
160
|
"parent": {
|
161
|
+
"description": "Link to the parent epic, if any",
|
124
162
|
"type": ["null", "string"]
|
125
163
|
}
|
126
164
|
}
|
127
165
|
},
|
128
166
|
"start_date_from_milestones": {
|
167
|
+
"description": "Start date linked to milestone",
|
129
168
|
"type": ["null", "string"],
|
130
169
|
"format": "date"
|
131
170
|
}
|
@@ -3,70 +3,91 @@
|
|
3
3
|
"type": "object",
|
4
4
|
"properties": {
|
5
5
|
"id": {
|
6
|
+
"description": "The unique identifier of the board.",
|
6
7
|
"type": ["null", "integer"]
|
7
8
|
},
|
8
9
|
"name": {
|
10
|
+
"description": "The name of the board.",
|
9
11
|
"type": ["null", "string"]
|
10
12
|
},
|
11
13
|
"hide_backlog_list": {
|
14
|
+
"description": "Flag indicating whether the backlog list is hidden.",
|
12
15
|
"type": ["null", "boolean"]
|
13
16
|
},
|
14
17
|
"hide_closed_list": {
|
18
|
+
"description": "Flag indicating whether the closed list is hidden.",
|
15
19
|
"type": ["null", "boolean"]
|
16
20
|
},
|
17
21
|
"project": {
|
22
|
+
"description": "Additional information or settings related to the project.",
|
18
23
|
"type": ["null", "integer"]
|
19
24
|
},
|
20
25
|
"lists": {
|
26
|
+
"description": "A collection of lists on the issue board.",
|
21
27
|
"type": ["null", "array"],
|
22
28
|
"items": {
|
29
|
+
"description": "Information about a specific list in the issue board.",
|
23
30
|
"type": ["null", "object"],
|
24
31
|
"properties": {
|
25
32
|
"id": {
|
33
|
+
"description": "The ID of the list in the board.",
|
26
34
|
"type": ["null", "integer"]
|
27
35
|
},
|
28
36
|
"label": {
|
37
|
+
"description": "The label or title of the list.",
|
29
38
|
"type": ["null", "object"],
|
30
39
|
"properties": {
|
31
40
|
"id": {
|
41
|
+
"description": "The unique identifier of the list label.",
|
32
42
|
"type": ["null", "integer"]
|
33
43
|
},
|
34
44
|
"name": {
|
45
|
+
"description": "The name of the list label.",
|
35
46
|
"type": ["null", "string"]
|
36
47
|
},
|
37
48
|
"description": {
|
49
|
+
"description": "The description of the list label.",
|
38
50
|
"type": ["null", "string"]
|
39
51
|
},
|
40
52
|
"description_html": {
|
53
|
+
"description": "The HTML formatted description of the list label.",
|
41
54
|
"type": ["null", "string"]
|
42
55
|
},
|
43
56
|
"text_color": {
|
57
|
+
"description": "The text color of the list label.",
|
44
58
|
"type": ["null", "string"]
|
45
59
|
},
|
46
60
|
"color": {
|
61
|
+
"description": "The color associated with the list label.",
|
47
62
|
"type": ["null", "string"]
|
48
63
|
}
|
49
64
|
}
|
50
65
|
},
|
51
66
|
"position": {
|
67
|
+
"description": "The position of the list in the board.",
|
52
68
|
"type": ["null", "integer"]
|
53
69
|
}
|
54
70
|
}
|
55
71
|
}
|
56
72
|
},
|
57
73
|
"group_id": {
|
74
|
+
"description": "The ID of the group to which the board belongs.",
|
58
75
|
"type": ["null", "integer"]
|
59
76
|
},
|
60
77
|
"group": {
|
78
|
+
"description": "Details of the group to which the issue board belongs.",
|
61
79
|
"type": ["null", "object"],
|
62
80
|
"properties": {
|
63
81
|
"id": {
|
82
|
+
"description": "The ID of the group to which the board belongs.",
|
64
83
|
"type": ["null", "integer"]
|
65
84
|
},
|
66
85
|
"name": {
|
86
|
+
"description": "The name of the group to which the board belongs.",
|
67
87
|
"type": ["null", "string"]
|
68
88
|
},
|
69
89
|
"web_url": {
|
90
|
+
"description": "The URL of the group's web interface.",
|
70
91
|
"type": ["null", "string"]
|
71
92
|
}
|
72
93
|
}
|
@@ -3,36 +3,47 @@
|
|
3
3
|
"type": "object",
|
4
4
|
"properties": {
|
5
5
|
"group_id": {
|
6
|
+
"description": "The unique identifier of the group to which the label belongs.",
|
6
7
|
"type": ["null", "integer"]
|
7
8
|
},
|
8
9
|
"id": {
|
10
|
+
"description": "The unique identifier of the group label.",
|
9
11
|
"type": ["null", "integer"]
|
10
12
|
},
|
11
13
|
"name": {
|
14
|
+
"description": "The name of the group label.",
|
12
15
|
"type": ["null", "string"]
|
13
16
|
},
|
14
17
|
"color": {
|
18
|
+
"description": "The color associated with the group label for visual identification.",
|
15
19
|
"type": ["null", "string"]
|
16
20
|
},
|
17
21
|
"description": {
|
22
|
+
"description": "The short description of the group label.",
|
18
23
|
"type": ["null", "string"]
|
19
24
|
},
|
20
25
|
"description_html": {
|
26
|
+
"description": "The HTML formatted description of the group label.",
|
21
27
|
"type": ["null", "string"]
|
22
28
|
},
|
23
29
|
"text_color": {
|
30
|
+
"description": "The text color used for the group label.",
|
24
31
|
"type": ["null", "string"]
|
25
32
|
},
|
26
33
|
"subscribed": {
|
34
|
+
"description": "Indicates if the user is subscribed to notifications for this group label.",
|
27
35
|
"type": ["null", "boolean"]
|
28
36
|
},
|
29
37
|
"open_issues_count": {
|
38
|
+
"description": "The total number of open issues in the group label.",
|
30
39
|
"type": ["null", "integer"]
|
31
40
|
},
|
32
41
|
"closed_issues_count": {
|
42
|
+
"description": "The total number of closed issues in the group label.",
|
33
43
|
"type": ["null", "integer"]
|
34
44
|
},
|
35
45
|
"open_merge_requests_count": {
|
46
|
+
"description": "The total number of open merge requests in the group label.",
|
36
47
|
"type": ["null", "integer"]
|
37
48
|
}
|
38
49
|
}
|
@@ -3,43 +3,55 @@
|
|
3
3
|
"type": "object",
|
4
4
|
"properties": {
|
5
5
|
"id": {
|
6
|
+
"description": "The unique identifier of the milestone",
|
6
7
|
"type": ["null", "integer"]
|
7
8
|
},
|
8
9
|
"iid": {
|
10
|
+
"description": "The internal identifier of the milestone",
|
9
11
|
"type": ["null", "integer"]
|
10
12
|
},
|
11
13
|
"group_id": {
|
14
|
+
"description": "The unique identifier of the group to which the milestone belongs",
|
12
15
|
"type": ["null", "integer"]
|
13
16
|
},
|
14
17
|
"title": {
|
18
|
+
"description": "The title or name of the milestone",
|
15
19
|
"type": ["null", "string"]
|
16
20
|
},
|
17
21
|
"description": {
|
22
|
+
"description": "The detailed description of the milestone",
|
18
23
|
"type": ["null", "string"]
|
19
24
|
},
|
20
25
|
"state": {
|
26
|
+
"description": "The current state of the milestone (e.g., open, closed)",
|
21
27
|
"type": ["null", "string"]
|
22
28
|
},
|
23
29
|
"created_at": {
|
30
|
+
"description": "The datetime when the milestone was created",
|
24
31
|
"type": ["null", "string"],
|
25
32
|
"format": "date-time"
|
26
33
|
},
|
27
34
|
"updated_at": {
|
35
|
+
"description": "The datetime when the milestone was last updated",
|
28
36
|
"type": ["null", "string"],
|
29
37
|
"format": "date-time"
|
30
38
|
},
|
31
39
|
"due_date": {
|
40
|
+
"description": "The date by which the milestone is expected to be completed",
|
32
41
|
"type": ["null", "string"],
|
33
42
|
"format": "date"
|
34
43
|
},
|
35
44
|
"start_date": {
|
45
|
+
"description": "The date when the milestone is scheduled to start",
|
36
46
|
"type": ["null", "string"],
|
37
47
|
"format": "date"
|
38
48
|
},
|
39
49
|
"expired": {
|
50
|
+
"description": "Indicates whether the milestone has expired",
|
40
51
|
"type": ["null", "boolean"]
|
41
52
|
},
|
42
53
|
"web_url": {
|
54
|
+
"description": "The URL to access the milestone in the web interface",
|
43
55
|
"type": ["null", "string"]
|
44
56
|
}
|
45
57
|
}
|