airbyte-source-gitlab 4.0.1__py3-none-any.whl → 4.0.3__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.3.dist-info}/METADATA +26 -12
- airbyte_source_gitlab-4.0.3.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.3.dist-info}/WHEEL +0 -0
- {airbyte_source_gitlab-4.0.1.dist-info → airbyte_source_gitlab-4.0.3.dist-info}/entry_points.txt +0 -0
@@ -3,48 +3,59 @@
|
|
3
3
|
"type": "object",
|
4
4
|
"properties": {
|
5
5
|
"projects": {
|
6
|
+
"description": "List of projects within the group.",
|
6
7
|
"type": ["null", "array"],
|
7
8
|
"items": {
|
8
9
|
"type": "object",
|
9
10
|
"properties": {
|
10
11
|
"id": {
|
12
|
+
"description": "Unique identifier of the project.",
|
11
13
|
"type": ["null", "integer"]
|
12
14
|
},
|
13
15
|
"path_with_namespace": {
|
16
|
+
"description": "Path with namespace of the project.",
|
14
17
|
"type": ["null", "string"]
|
15
18
|
}
|
16
19
|
}
|
17
20
|
}
|
18
21
|
},
|
19
22
|
"id": {
|
23
|
+
"description": "Unique identifier for the group.",
|
20
24
|
"type": ["null", "integer"]
|
21
25
|
},
|
22
26
|
"organization_id": {
|
27
|
+
"description": "Identifier of the organization to which the group belongs.",
|
23
28
|
"type": ["null", "integer"]
|
24
29
|
},
|
25
30
|
"default_branch_protection_defaults": {
|
31
|
+
"description": "Default branch protection settings for the group.",
|
26
32
|
"type": ["null", "object"],
|
27
33
|
"properties": {
|
28
34
|
"allow_force_push": {
|
35
|
+
"description": "Indicates if force push is allowed.",
|
29
36
|
"type": ["null", "boolean"]
|
30
37
|
},
|
31
38
|
"allowed_to_merge": {
|
39
|
+
"description": "List of users/groups allowed to merge code.",
|
32
40
|
"type": ["null", "array"],
|
33
41
|
"items": {
|
34
42
|
"type": ["null", "object"],
|
35
43
|
"properties": {
|
36
44
|
"access_level": {
|
45
|
+
"description": "Access level for merging code.",
|
37
46
|
"type": ["null", "integer"]
|
38
47
|
}
|
39
48
|
}
|
40
49
|
}
|
41
50
|
},
|
42
51
|
"allowed_to_push": {
|
52
|
+
"description": "List of users/groups allowed to push code.",
|
43
53
|
"type": ["null", "array"],
|
44
54
|
"items": {
|
45
55
|
"type": ["null", "object"],
|
46
56
|
"properties": {
|
47
57
|
"access_level": {
|
58
|
+
"description": "Access level for pushing code.",
|
48
59
|
"type": ["null", "integer"]
|
49
60
|
}
|
50
61
|
}
|
@@ -53,125 +64,165 @@
|
|
53
64
|
}
|
54
65
|
},
|
55
66
|
"web_url": {
|
67
|
+
"description": "URL for accessing the group via web.",
|
56
68
|
"type": ["null", "string"]
|
57
69
|
},
|
58
70
|
"name": {
|
71
|
+
"description": "Name of the group.",
|
59
72
|
"type": ["null", "string"]
|
60
73
|
},
|
61
74
|
"path": {
|
75
|
+
"description": "Path of the group.",
|
62
76
|
"type": ["null", "string"]
|
63
77
|
},
|
64
78
|
"description": {
|
79
|
+
"description": "Description of the group.",
|
65
80
|
"type": ["null", "string"]
|
66
81
|
},
|
67
82
|
"visibility": {
|
83
|
+
"description": "Visibility level of the group.",
|
68
84
|
"type": ["null", "string", "integer", "boolean"]
|
69
85
|
},
|
70
86
|
"share_with_group_lock": {
|
87
|
+
"description": "Indicates if sharing with group is locked.",
|
71
88
|
"type": ["null", "boolean"]
|
72
89
|
},
|
73
90
|
"require_two_factor_authentication": {
|
91
|
+
"description": "Indicates if two-factor authentication is required.",
|
74
92
|
"type": ["null", "boolean"]
|
75
93
|
},
|
76
94
|
"two_factor_grace_period": {
|
95
|
+
"description": "Grace period for two-factor authentication.",
|
77
96
|
"type": ["null", "integer"]
|
78
97
|
},
|
79
98
|
"project_creation_level": {
|
99
|
+
"description": "Project creation level for the group.",
|
80
100
|
"type": ["null", "string"]
|
81
101
|
},
|
82
102
|
"auto_devops_enabled": {
|
103
|
+
"description": "Indicates if Auto DevOps is enabled for this group.",
|
83
104
|
"type": ["null", "boolean"]
|
84
105
|
},
|
85
106
|
"subgroup_creation_level": {
|
107
|
+
"description": "Subgroup creation level for the group.",
|
86
108
|
"type": ["null", "string"]
|
87
109
|
},
|
88
110
|
"enabled_git_access_protocol": {
|
111
|
+
"description": "Indicates the enabled Git access protocol for the group.",
|
89
112
|
"type": ["null", "string"]
|
90
113
|
},
|
91
114
|
"emails_disabled": {
|
115
|
+
"description": "Indicates if emails are disabled for the group.",
|
92
116
|
"type": ["null", "boolean"]
|
93
117
|
},
|
94
118
|
"emails_enabled": {
|
119
|
+
"description": "Indicates if emails are enabled for the group.",
|
95
120
|
"type": ["null", "boolean"]
|
96
121
|
},
|
97
122
|
"mentions_disabled": {
|
123
|
+
"description": "Indicates if mentions are disabled for the group.",
|
98
124
|
"type": ["null", "boolean"]
|
99
125
|
},
|
100
126
|
"lfs_enabled": {
|
127
|
+
"description": "Indicates if LFS is enabled for the group.",
|
101
128
|
"type": ["null", "boolean"]
|
102
129
|
},
|
103
130
|
"default_branch_protection": {
|
131
|
+
"description": "Indicates the default branch protection level for the group.",
|
104
132
|
"type": ["null", "integer"]
|
105
133
|
},
|
106
134
|
"avatar_url": {
|
135
|
+
"description": "URL of the group's avatar.",
|
107
136
|
"type": ["null", "string"]
|
108
137
|
},
|
109
138
|
"request_access_enabled": {
|
139
|
+
"description": "Indicates if request access is enabled for the group.",
|
110
140
|
"type": ["null", "boolean"]
|
111
141
|
},
|
112
142
|
"full_name": {
|
143
|
+
"description": "Full name of the group.",
|
113
144
|
"type": ["null", "string"]
|
114
145
|
},
|
115
146
|
"full_path": {
|
147
|
+
"description": "Full path of the group.",
|
116
148
|
"type": ["null", "string"]
|
117
149
|
},
|
118
150
|
"created_at": {
|
151
|
+
"description": "Timestamp when the group was created.",
|
119
152
|
"type": ["null", "string"],
|
120
153
|
"format": "date-time"
|
121
154
|
},
|
122
155
|
"parent_id": {
|
156
|
+
"description": "Identifier of the parent group.",
|
123
157
|
"type": ["null", "integer"]
|
124
158
|
},
|
125
159
|
"ldap_cn": {
|
160
|
+
"description": "LDAP CN for the group.",
|
126
161
|
"type": ["null", "string"]
|
127
162
|
},
|
128
163
|
"ldap_access": {
|
164
|
+
"description": "Indicates LDAP access for the group.",
|
129
165
|
"type": ["null", "string", "integer", "boolean"]
|
130
166
|
},
|
131
167
|
"shared_with_groups": {
|
168
|
+
"description": "List of groups with which the group is shared.",
|
132
169
|
"type": ["null", "array"]
|
133
170
|
},
|
134
171
|
"runners_token": {
|
172
|
+
"description": "Token used for shared runners.",
|
135
173
|
"type": ["null", "string"]
|
136
174
|
},
|
137
175
|
"shared_projects": {
|
176
|
+
"description": "List of shared projects.",
|
138
177
|
"type": ["null", "array"]
|
139
178
|
},
|
140
179
|
"shared_runners_minutes_limit": {
|
180
|
+
"description": "Shared runners minutes limit for the group.",
|
141
181
|
"type": ["null", "integer"]
|
142
182
|
},
|
143
183
|
"extra_shared_runners_minutes_limit": {
|
184
|
+
"description": "Extra shared runners minutes limit for the group.",
|
144
185
|
"type": ["null", "integer"]
|
145
186
|
},
|
146
187
|
"prevent_forking_outside_group": {
|
188
|
+
"description": "Indicates if forking outside the group is prevented.",
|
147
189
|
"type": ["null", "boolean"]
|
148
190
|
},
|
149
191
|
"wiki_access_level": {
|
192
|
+
"description": "Access level for wiki in the group.",
|
150
193
|
"type": ["null", "string"]
|
151
194
|
},
|
152
195
|
"marked_for_deletion_on": {
|
196
|
+
"description": "Date when the group was marked for deletion.",
|
153
197
|
"type": ["null", "string"],
|
154
198
|
"format": "date"
|
155
199
|
},
|
156
200
|
"prevent_sharing_groups_outside_hierarchy": {
|
201
|
+
"description": "Indicates if sharing groups outside hierarchy is prevented.",
|
157
202
|
"type": ["null", "boolean"]
|
158
203
|
},
|
159
204
|
"membership_lock": {
|
205
|
+
"description": "Indicates if membership is locked for the group.",
|
160
206
|
"type": ["null", "boolean"]
|
161
207
|
},
|
162
208
|
"ip_restriction_ranges": {
|
209
|
+
"description": "IP restriction ranges for the group.",
|
163
210
|
"type": ["null", "string"]
|
164
211
|
},
|
165
212
|
"shared_runners_setting": {
|
213
|
+
"description": "Setting for shared runners.",
|
166
214
|
"type": ["null", "string"]
|
167
215
|
},
|
168
216
|
"service_access_tokens_expiration_enforced": {
|
217
|
+
"description": "Indicates if service access tokens expiration is enforced.",
|
169
218
|
"type": ["null", "boolean"]
|
170
219
|
},
|
171
220
|
"lock_math_rendering_limits_enabled": {
|
221
|
+
"description": "Indicates if math rendering limits are locked.",
|
172
222
|
"type": ["null", "boolean"]
|
173
223
|
},
|
174
224
|
"math_rendering_limits_enabled": {
|
225
|
+
"description": "Indicates if math rendering limits are enabled.",
|
175
226
|
"type": ["null", "boolean"]
|
176
227
|
}
|
177
228
|
}
|
@@ -3,288 +3,375 @@
|
|
3
3
|
"type": "object",
|
4
4
|
"properties": {
|
5
5
|
"id": {
|
6
|
+
"description": "ID of the issue.",
|
6
7
|
"type": ["null", "integer"]
|
7
8
|
},
|
8
9
|
"iid": {
|
10
|
+
"description": "Internal ID of the issue.",
|
9
11
|
"type": ["null", "integer"]
|
10
12
|
},
|
11
13
|
"project_id": {
|
14
|
+
"description": "ID of the project to which the issue belongs.",
|
12
15
|
"type": ["null", "integer"]
|
13
16
|
},
|
14
17
|
"title": {
|
18
|
+
"description": "Title of the issue.",
|
15
19
|
"type": ["null", "string"]
|
16
20
|
},
|
17
21
|
"description": {
|
22
|
+
"description": "Description of the issue.",
|
18
23
|
"type": ["null", "string"]
|
19
24
|
},
|
20
25
|
"state": {
|
26
|
+
"description": "State of the issue.",
|
21
27
|
"type": ["null", "string"]
|
22
28
|
},
|
23
29
|
"created_at": {
|
30
|
+
"description": "Date and time when the issue was created.",
|
24
31
|
"type": ["null", "string"],
|
25
32
|
"format": "date-time"
|
26
33
|
},
|
27
34
|
"updated_at": {
|
35
|
+
"description": "Date and time when the issue was last updated.",
|
28
36
|
"type": ["null", "string"],
|
29
37
|
"format": "date-time"
|
30
38
|
},
|
31
39
|
"closed_at": {
|
40
|
+
"description": "Date and time when the issue was closed.",
|
32
41
|
"type": ["null", "string"],
|
33
42
|
"format": "date-time"
|
34
43
|
},
|
35
44
|
"labels": {
|
45
|
+
"description": "Labels associated with the issue.",
|
36
46
|
"type": ["null", "array"],
|
37
47
|
"items": {
|
38
48
|
"type": ["null", "string"]
|
39
49
|
}
|
40
50
|
},
|
41
51
|
"assignees": {
|
52
|
+
"description": "List of users assigned to the issue.",
|
42
53
|
"type": ["null", "array"],
|
43
54
|
"items": {
|
44
55
|
"type": ["null", "integer"]
|
45
56
|
}
|
46
57
|
},
|
47
58
|
"type": {
|
59
|
+
"description": "Type of the issue.",
|
48
60
|
"type": ["null", "string"]
|
49
61
|
},
|
50
62
|
"user_notes_count": {
|
63
|
+
"description": "Number of user notes added to the issue.",
|
51
64
|
"type": ["null", "integer"]
|
52
65
|
},
|
53
66
|
"merge_requests_count": {
|
67
|
+
"description": "Number of merge requests associated with the issue.",
|
54
68
|
"type": ["null", "integer"]
|
55
69
|
},
|
56
70
|
"upvotes": {
|
71
|
+
"description": "Number of upvotes for the issue.",
|
57
72
|
"type": ["null", "integer"]
|
58
73
|
},
|
59
74
|
"downvotes": {
|
75
|
+
"description": "Number of downvotes for the issue.",
|
60
76
|
"type": ["null", "integer"]
|
61
77
|
},
|
62
78
|
"due_date": {
|
79
|
+
"description": "Due date set for the issue.",
|
63
80
|
"type": ["null", "string"]
|
64
81
|
},
|
65
82
|
"confidential": {
|
83
|
+
"description": "Indicates if the issue is confidential.",
|
66
84
|
"type": ["null", "boolean"]
|
67
85
|
},
|
68
86
|
"discussion_locked": {
|
87
|
+
"description": "Indicates if discussion is locked for the issue.",
|
69
88
|
"type": ["null", "boolean"]
|
70
89
|
},
|
71
90
|
"issue_type": {
|
91
|
+
"description": "Type of issue.",
|
72
92
|
"type": ["null", "string"]
|
73
93
|
},
|
74
94
|
"web_url": {
|
95
|
+
"description": "URL of the issue in GitLab.",
|
75
96
|
"type": ["null", "string"]
|
76
97
|
},
|
77
98
|
"time_stats": {
|
99
|
+
"description": "Time statistics related to the issue.",
|
78
100
|
"type": ["null", "object"]
|
79
101
|
},
|
80
102
|
"task_completion_status": {
|
103
|
+
"description": "Task completion status for the issue.",
|
81
104
|
"type": ["null", "object"]
|
82
105
|
},
|
83
106
|
"blocking_issues_count": {
|
107
|
+
"description": "Number of blocking issues for this issue.",
|
84
108
|
"type": ["null", "integer"]
|
85
109
|
},
|
86
110
|
"has_tasks": {
|
111
|
+
"description": "Indicates if the issue has tasks.",
|
87
112
|
"type": ["null", "boolean"]
|
88
113
|
},
|
89
114
|
"_links": {
|
115
|
+
"description": "Links related to the GitLab issue.",
|
90
116
|
"type": ["null", "object"]
|
91
117
|
},
|
92
118
|
"references": {
|
119
|
+
"description": "References related to the issue.",
|
93
120
|
"type": ["null", "object"]
|
94
121
|
},
|
95
122
|
"moved_to_id": {
|
123
|
+
"description": "ID of the issue to which this issue has been moved.",
|
96
124
|
"type": ["null", "integer", "string"]
|
97
125
|
},
|
98
126
|
"service_desk_reply_to": {
|
127
|
+
"description": "Service desk reply to information for the issue.",
|
99
128
|
"type": ["null", "string"]
|
100
129
|
},
|
101
130
|
"author": {
|
131
|
+
"description": "Details of the author of the issue.",
|
102
132
|
"type": ["null", "object"],
|
103
133
|
"properties": {
|
104
134
|
"state": {
|
135
|
+
"description": "State of the author's account.",
|
105
136
|
"type": ["null", "string"]
|
106
137
|
},
|
107
138
|
"name": {
|
139
|
+
"description": "Name of the author.",
|
108
140
|
"type": ["null", "string"]
|
109
141
|
},
|
110
142
|
"web_url": {
|
143
|
+
"description": "URL of the author's GitLab profile.",
|
111
144
|
"type": ["null", "string"]
|
112
145
|
},
|
113
146
|
"avatar_url": {
|
147
|
+
"description": "URL of the author's avatar image.",
|
114
148
|
"type": ["null", "string"]
|
115
149
|
},
|
116
150
|
"username": {
|
151
|
+
"description": "Username of the author.",
|
117
152
|
"type": ["null", "string"]
|
118
153
|
},
|
119
154
|
"id": {
|
155
|
+
"description": "ID of the author.",
|
120
156
|
"type": ["null", "integer"]
|
121
157
|
},
|
122
158
|
"locked": {
|
159
|
+
"description": "Indicates if the author's account is locked.",
|
123
160
|
"type": ["null", "boolean"]
|
124
161
|
}
|
125
162
|
}
|
126
163
|
},
|
127
164
|
"author_id": {
|
165
|
+
"description": "ID of the author of the issue.",
|
128
166
|
"type": ["null", "integer"]
|
129
167
|
},
|
130
168
|
"assignee": {
|
169
|
+
"description": "Details of the user assigned to the issue.",
|
131
170
|
"type": ["null", "object"],
|
132
171
|
"properties": {
|
133
172
|
"state": {
|
173
|
+
"description": "State of the assignee account.",
|
134
174
|
"type": ["null", "string"]
|
135
175
|
},
|
136
176
|
"name": {
|
177
|
+
"description": "Name of the assignee.",
|
137
178
|
"type": ["null", "string"]
|
138
179
|
},
|
139
180
|
"web_url": {
|
181
|
+
"description": "URL of the assignee's GitLab profile.",
|
140
182
|
"type": ["null", "string"]
|
141
183
|
},
|
142
184
|
"avatar_url": {
|
185
|
+
"description": "URL of the assignee's avatar image.",
|
143
186
|
"type": ["null", "string"]
|
144
187
|
},
|
145
188
|
"username": {
|
189
|
+
"description": "Username of the assignee.",
|
146
190
|
"type": ["null", "string"]
|
147
191
|
},
|
148
192
|
"id": {
|
193
|
+
"description": "ID of the assignee.",
|
149
194
|
"type": ["null", "integer"]
|
150
195
|
},
|
151
196
|
"locked": {
|
197
|
+
"description": "Indicates if the assignee account is locked.",
|
152
198
|
"type": ["null", "boolean"]
|
153
199
|
}
|
154
200
|
}
|
155
201
|
},
|
156
202
|
"assignee_id": {
|
203
|
+
"description": "ID of the user assigned to the issue.",
|
157
204
|
"type": ["null", "integer"]
|
158
205
|
},
|
159
206
|
"closed_by": {
|
207
|
+
"description": "Details of the user who closed the issue.",
|
160
208
|
"type": ["null", "object"],
|
161
209
|
"properties": {
|
162
210
|
"state": {
|
211
|
+
"description": "State of the user's account who closed the issue.",
|
163
212
|
"type": ["null", "string"]
|
164
213
|
},
|
165
214
|
"name": {
|
215
|
+
"description": "Name of the user who closed the issue.",
|
166
216
|
"type": ["null", "string"]
|
167
217
|
},
|
168
218
|
"web_url": {
|
219
|
+
"description": "URL of the user's GitLab profile who closed the issue.",
|
169
220
|
"type": ["null", "string"]
|
170
221
|
},
|
171
222
|
"avatar_url": {
|
223
|
+
"description": "URL of the user's avatar image.",
|
172
224
|
"type": ["null", "string"]
|
173
225
|
},
|
174
226
|
"username": {
|
227
|
+
"description": "Username of the user who closed the issue.",
|
175
228
|
"type": ["null", "string"]
|
176
229
|
},
|
177
230
|
"human_readable_end_date": {
|
231
|
+
"description": "Human-readable end date of the user.",
|
178
232
|
"type": ["null", "string"]
|
179
233
|
},
|
180
234
|
"human_readable_timestamp": {
|
235
|
+
"description": "Human-readable timestamp of the user.",
|
181
236
|
"type": ["null", "string"]
|
182
237
|
},
|
183
238
|
"id": {
|
239
|
+
"description": "ID of the user who closed the issue.",
|
184
240
|
"type": ["null", "integer"]
|
185
241
|
},
|
186
242
|
"locked": {
|
243
|
+
"description": "Indicates if the user's account is locked.",
|
187
244
|
"type": ["null", "boolean"]
|
188
245
|
}
|
189
246
|
}
|
190
247
|
},
|
191
248
|
"closed_by_id": {
|
249
|
+
"description": "ID of the user who closed the issue.",
|
192
250
|
"type": ["null", "integer"]
|
193
251
|
},
|
194
252
|
"milestone": {
|
253
|
+
"description": "Milestone associated with the issue.",
|
195
254
|
"type": ["null", "object"],
|
196
255
|
"additionalProperties": true
|
197
256
|
},
|
198
257
|
"milestone_id": {
|
258
|
+
"description": "ID of the milestone associated with the issue.",
|
199
259
|
"type": ["null", "integer"]
|
200
260
|
},
|
201
261
|
"subscribed": {
|
262
|
+
"description": "Indicates if the user is subscribed to the issue.",
|
202
263
|
"type": ["null", "boolean"]
|
203
264
|
},
|
204
265
|
"weight": {
|
266
|
+
"description": "Weight assigned to the issue.",
|
205
267
|
"type": ["null", "integer"]
|
206
268
|
},
|
207
269
|
"task_status": {
|
270
|
+
"description": "Status of tasks associated with the issue.",
|
208
271
|
"type": ["null", "string"]
|
209
272
|
},
|
210
273
|
"severity": {
|
274
|
+
"description": "Severity level of the issue.",
|
211
275
|
"type": ["null", "string"]
|
212
276
|
},
|
213
277
|
"iteration": {
|
278
|
+
"description": "Details of the iteration to which the issue belongs.",
|
214
279
|
"type": ["null", "object"],
|
215
280
|
"properties": {
|
216
281
|
"id": {
|
282
|
+
"description": "ID of the iteration.",
|
217
283
|
"type": ["null", "integer"]
|
218
284
|
},
|
219
285
|
"iid": {
|
286
|
+
"description": "Internal ID of the iteration.",
|
220
287
|
"type": ["null", "integer"]
|
221
288
|
},
|
222
289
|
"sequence": {
|
290
|
+
"description": "Order sequence of the iteration.",
|
223
291
|
"type": ["null", "integer"]
|
224
292
|
},
|
225
293
|
"group_id": {
|
294
|
+
"description": "ID of the group to which the iteration belongs.",
|
226
295
|
"type": ["null", "integer"]
|
227
296
|
},
|
228
297
|
"title": {
|
298
|
+
"description": "Title of the iteration.",
|
229
299
|
"type": ["null", "string"]
|
230
300
|
},
|
231
301
|
"description": {
|
302
|
+
"description": "Description of the iteration.",
|
232
303
|
"type": ["null", "string"]
|
233
304
|
},
|
234
305
|
"state": {
|
306
|
+
"description": "State of the iteration.",
|
235
307
|
"type": ["null", "integer"]
|
236
308
|
},
|
237
309
|
"created_at": {
|
310
|
+
"description": "Date and time when the iteration was created.",
|
238
311
|
"type": ["null", "string"],
|
239
312
|
"format": "date-time"
|
240
313
|
},
|
241
314
|
"updated_at": {
|
315
|
+
"description": "Date and time when the iteration was last updated.",
|
242
316
|
"type": ["null", "string"],
|
243
317
|
"format": "date-time"
|
244
318
|
},
|
245
319
|
"start_date": {
|
320
|
+
"description": "Start date of the iteration.",
|
246
321
|
"type": ["null", "string"],
|
247
322
|
"format": "date-time"
|
248
323
|
},
|
249
324
|
"due_date": {
|
325
|
+
"description": "Due date set for the iteration.",
|
250
326
|
"type": ["null", "string"],
|
251
327
|
"format": "date-time"
|
252
328
|
},
|
253
329
|
"web_url": {
|
330
|
+
"description": "URL of the iteration in GitLab.",
|
254
331
|
"type": ["null", "string"]
|
255
332
|
}
|
256
333
|
}
|
257
334
|
},
|
258
335
|
"epic": {
|
336
|
+
"description": "Details of the epic to which the issue belongs.",
|
259
337
|
"type": ["null", "object"],
|
260
338
|
"properties": {
|
261
339
|
"id": {
|
340
|
+
"description": "ID of the epic.",
|
262
341
|
"type": ["null", "integer"]
|
263
342
|
},
|
264
343
|
"iid": {
|
344
|
+
"description": "Internal ID of the epic.",
|
265
345
|
"type": ["null", "integer"]
|
266
346
|
},
|
267
347
|
"title": {
|
348
|
+
"description": "Title of the epic.",
|
268
349
|
"type": ["null", "string"]
|
269
350
|
},
|
270
351
|
"url": {
|
352
|
+
"description": "URL of the epic in GitLab.",
|
271
353
|
"type": ["null", "string"]
|
272
354
|
},
|
273
355
|
"group_id": {
|
356
|
+
"description": "ID of the group to which the epic belongs.",
|
274
357
|
"type": ["null", "integer"]
|
275
358
|
},
|
276
359
|
"locked": {
|
360
|
+
"description": "Indicates if the epic is locked.",
|
277
361
|
"type": ["null", "boolean"]
|
278
362
|
},
|
279
363
|
"human_readable_end_date": {
|
364
|
+
"description": "Human-readable end date of the epic.",
|
280
365
|
"type": ["null", "string"]
|
281
366
|
},
|
282
367
|
"human_readable_timestamp": {
|
368
|
+
"description": "Human-readable timestamp of the epic.",
|
283
369
|
"type": ["null", "string"]
|
284
370
|
}
|
285
371
|
}
|
286
372
|
},
|
287
373
|
"epic_iid": {
|
374
|
+
"description": "Internal ID of the epic the issue belongs to.",
|
288
375
|
"type": ["null", "integer"]
|
289
376
|
}
|
290
377
|
}
|