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
source_gitlab/schemas/jobs.json
CHANGED
@@ -3,105 +3,136 @@
|
|
3
3
|
"type": "object",
|
4
4
|
"properties": {
|
5
5
|
"id": {
|
6
|
+
"description": "Unique identifier for the job.",
|
6
7
|
"type": ["null", "integer"]
|
7
8
|
},
|
8
9
|
"status": {
|
10
|
+
"description": "Current status of the job.",
|
9
11
|
"type": ["null", "string"]
|
10
12
|
},
|
11
13
|
"stage": {
|
14
|
+
"description": "Stage to which the job belongs in the pipeline.",
|
12
15
|
"type": ["null", "string"]
|
13
16
|
},
|
14
17
|
"archived": {
|
18
|
+
"description": "Indicates if the job has been archived.",
|
15
19
|
"type": ["null", "boolean"]
|
16
20
|
},
|
17
21
|
"name": {
|
22
|
+
"description": "Name of the job.",
|
18
23
|
"type": ["null", "string"]
|
19
24
|
},
|
20
25
|
"ref": {
|
26
|
+
"description": "Reference or branch for which the job was triggered.",
|
21
27
|
"type": ["null", "string"]
|
22
28
|
},
|
23
29
|
"tag": {
|
30
|
+
"description": "Indicates if the job is tagged.",
|
24
31
|
"type": ["null", "boolean"]
|
25
32
|
},
|
26
33
|
"coverage": {
|
34
|
+
"description": "Code coverage achieved by the job.",
|
27
35
|
"type": ["null", "number", "string"]
|
28
36
|
},
|
29
37
|
"allow_failure": {
|
38
|
+
"description": "Specifies if the job is allowed to fail.",
|
30
39
|
"type": ["null", "boolean"]
|
31
40
|
},
|
32
41
|
"created_at": {
|
42
|
+
"description": "Date and time when the job was created.",
|
33
43
|
"type": ["null", "string"],
|
34
44
|
"format": "date-time"
|
35
45
|
},
|
36
46
|
"started_at": {
|
47
|
+
"description": "Date and time when the job execution started.",
|
37
48
|
"type": ["null", "string"],
|
38
49
|
"format": "date-time"
|
39
50
|
},
|
40
51
|
"finished_at": {
|
52
|
+
"description": "Date and time when the job finished execution.",
|
41
53
|
"type": ["null", "string"],
|
42
54
|
"format": "date-time"
|
43
55
|
},
|
44
56
|
"duration": {
|
57
|
+
"description": "Duration of the job execution.",
|
45
58
|
"type": ["null", "number"]
|
46
59
|
},
|
47
60
|
"queued_duration": {
|
61
|
+
"description": "Duration for which the job was in the queue.",
|
48
62
|
"type": ["null", "number"]
|
49
63
|
},
|
50
64
|
"web_url": {
|
65
|
+
"description": "URL to access the job details on the web platform.",
|
51
66
|
"type": ["null", "string"]
|
52
67
|
},
|
53
68
|
"artifacts": {
|
69
|
+
"description": "List of artifacts generated by the job.",
|
54
70
|
"type": ["null", "array"]
|
55
71
|
},
|
56
72
|
"artifacts_expire_at": {
|
73
|
+
"description": "Date and time when artifacts will expire.",
|
57
74
|
"type": ["null", "string"],
|
58
75
|
"format": "date-time"
|
59
76
|
},
|
60
77
|
"tag_list": {
|
78
|
+
"description": "List of tags associated with the job.",
|
61
79
|
"type": ["null", "array"]
|
62
80
|
},
|
63
81
|
"user": {
|
82
|
+
"description": "Details of the user who triggered the job.",
|
64
83
|
"type": ["null", "object"],
|
65
84
|
"additionalProperties": true
|
66
85
|
},
|
67
86
|
"user_id": {
|
87
|
+
"description": "ID of the user who triggered the job.",
|
68
88
|
"type": ["null", "integer"]
|
69
89
|
},
|
70
90
|
"pipeline": {
|
91
|
+
"description": "Details of the pipeline to which the job belongs.",
|
71
92
|
"type": ["null", "object"],
|
72
93
|
"additionalProperties": true
|
73
94
|
},
|
74
95
|
"pipeline_id": {
|
96
|
+
"description": "ID of the pipeline to which the job belongs.",
|
75
97
|
"type": ["null", "integer"]
|
76
98
|
},
|
77
99
|
"runner": {
|
100
|
+
"description": "Details of the runner on which the job is executed.",
|
78
101
|
"type": ["null", "object"],
|
79
102
|
"additionalProperties": true
|
80
103
|
},
|
81
104
|
"runner_id": {
|
105
|
+
"description": "ID of the runner on which the job is executed.",
|
82
106
|
"type": ["null", "integer"]
|
83
107
|
},
|
84
108
|
"commit": {
|
109
|
+
"description": "Details of the commit associated with the job.",
|
85
110
|
"type": ["null", "object"],
|
86
111
|
"additionalProperties": true
|
87
112
|
},
|
88
113
|
"commit_id": {
|
114
|
+
"description": "ID of the commit associated with the job.",
|
89
115
|
"type": ["null", "string"]
|
90
116
|
},
|
91
117
|
"project_id": {
|
118
|
+
"description": "ID of the project to which the job belongs.",
|
92
119
|
"type": ["null", "integer"]
|
93
120
|
},
|
94
121
|
"erased_at": {
|
122
|
+
"description": "Date and time when the job was erased.",
|
95
123
|
"type": ["null", "string"],
|
96
124
|
"format": "date-time"
|
97
125
|
},
|
98
126
|
"failure_reason": {
|
127
|
+
"description": "Reason for job failure, if applicable.",
|
99
128
|
"type": ["null", "string"]
|
100
129
|
},
|
101
130
|
"project": {
|
131
|
+
"description": "Details of the project to which the job belongs.",
|
102
132
|
"type": ["null", "object"],
|
103
133
|
"properties": {
|
104
134
|
"ci_job_token_scope_enabled": {
|
135
|
+
"description": "Indicates if the CI job token scope is enabled for the project.",
|
105
136
|
"type": ["null", "boolean"]
|
106
137
|
}
|
107
138
|
}
|
@@ -3,44 +3,56 @@
|
|
3
3
|
"type": "object",
|
4
4
|
"properties": {
|
5
5
|
"project_id": {
|
6
|
+
"description": "Identifier of the project where the commit was made",
|
6
7
|
"type": ["null", "integer"]
|
7
8
|
},
|
8
9
|
"id": {
|
10
|
+
"description": "Unique identifier for the commit",
|
9
11
|
"type": ["null", "string"]
|
10
12
|
},
|
11
13
|
"short_id": {
|
14
|
+
"description": "Shortened version of the commit ID",
|
12
15
|
"type": ["null", "string"]
|
13
16
|
},
|
14
17
|
"created_at": {
|
18
|
+
"description": "Date and time when the commit was created",
|
15
19
|
"type": ["null", "string"],
|
16
20
|
"format": "date-time"
|
17
21
|
},
|
18
22
|
"parent_ids": {
|
23
|
+
"description": "Array of parent commit identifiers",
|
19
24
|
"type": ["null", "array"],
|
20
25
|
"items": {
|
21
26
|
"type": ["null", "string"]
|
22
27
|
}
|
23
28
|
},
|
24
29
|
"title": {
|
30
|
+
"description": "Title of the commit representing the changes made",
|
25
31
|
"type": ["null", "string"]
|
26
32
|
},
|
27
33
|
"message": {
|
34
|
+
"description": "The commit message describing the changes made",
|
28
35
|
"type": ["null", "string"]
|
29
36
|
},
|
30
37
|
"author_name": {
|
38
|
+
"description": "Name of the author who made the commit",
|
31
39
|
"type": ["null", "string"]
|
32
40
|
},
|
33
41
|
"author_email": {
|
42
|
+
"description": "Email of the author who made the commit",
|
34
43
|
"type": ["null", "string"]
|
35
44
|
},
|
36
45
|
"authored_date": {
|
46
|
+
"description": "Date and time the commit was authored",
|
37
47
|
"type": ["null", "string"],
|
38
48
|
"format": "date-time"
|
39
49
|
},
|
40
50
|
"extended_trailers": {
|
51
|
+
"description": "Additional information regarding the commit trailers",
|
41
52
|
"type": ["null", "object"],
|
42
53
|
"properties": {
|
43
54
|
"Cc": {
|
55
|
+
"description": "Carbon Copy recipients related to the commit",
|
44
56
|
"type": ["null", "array"],
|
45
57
|
"items": {
|
46
58
|
"type": ["null", "string"]
|
@@ -49,36 +61,46 @@
|
|
49
61
|
}
|
50
62
|
},
|
51
63
|
"committer_name": {
|
64
|
+
"description": "Name of the committer who committed the changes",
|
52
65
|
"type": ["null", "string"]
|
53
66
|
},
|
54
67
|
"committer_email": {
|
68
|
+
"description": "Email of the committer who committed the changes",
|
55
69
|
"type": ["null", "string"]
|
56
70
|
},
|
57
71
|
"committed_date": {
|
72
|
+
"description": "Date and time the commit was committed",
|
58
73
|
"type": ["null", "string"],
|
59
74
|
"format": "date-time"
|
60
75
|
},
|
61
76
|
"trailers": {
|
77
|
+
"description": "Additional information or metadata related to the commit",
|
62
78
|
"type": ["null", "object"]
|
63
79
|
},
|
64
80
|
"web_url": {
|
81
|
+
"description": "URL to view the commit details in a web browser",
|
65
82
|
"type": ["null", "string"]
|
66
83
|
},
|
67
84
|
"stats": {
|
85
|
+
"description": "Statistics related to the commit changes",
|
68
86
|
"type": ["null", "object"],
|
69
87
|
"properties": {
|
70
88
|
"additions": {
|
89
|
+
"description": "Number of lines added in the commit",
|
71
90
|
"type": ["null", "integer"]
|
72
91
|
},
|
73
92
|
"deletions": {
|
93
|
+
"description": "Number of lines deleted in the commit",
|
74
94
|
"type": ["null", "integer"]
|
75
95
|
},
|
76
96
|
"total": {
|
97
|
+
"description": "Total number of lines changed in the commit",
|
77
98
|
"type": ["null", "integer"]
|
78
99
|
}
|
79
100
|
}
|
80
101
|
},
|
81
102
|
"merge_request_iid": {
|
103
|
+
"description": "Identifier of the merge request associated with the commit",
|
82
104
|
"type": ["null", "integer"]
|
83
105
|
}
|
84
106
|
}
|
@@ -3,199 +3,259 @@
|
|
3
3
|
"type": "object",
|
4
4
|
"properties": {
|
5
5
|
"id": {
|
6
|
+
"description": "ID of the merge request.",
|
6
7
|
"type": ["null", "integer"]
|
7
8
|
},
|
8
9
|
"iid": {
|
10
|
+
"description": "Internal ID of the merge request.",
|
9
11
|
"type": ["null", "integer"]
|
10
12
|
},
|
11
13
|
"project_id": {
|
14
|
+
"description": "ID of the project to which the merge request belongs.",
|
12
15
|
"type": ["null", "integer"]
|
13
16
|
},
|
14
17
|
"title": {
|
18
|
+
"description": "Title of the merge request.",
|
15
19
|
"type": ["null", "string"]
|
16
20
|
},
|
17
21
|
"description": {
|
22
|
+
"description": "Description of the merge request.",
|
18
23
|
"type": ["null", "string"]
|
19
24
|
},
|
20
25
|
"state": {
|
26
|
+
"description": "State of the merge request.",
|
21
27
|
"type": ["null", "string"]
|
22
28
|
},
|
23
29
|
"created_at": {
|
30
|
+
"description": "Timestamp when the merge request was created.",
|
24
31
|
"type": ["null", "string"],
|
25
32
|
"format": "date-time"
|
26
33
|
},
|
27
34
|
"prepared_at": {
|
35
|
+
"description": "Timestamp when the merge request was prepared.",
|
28
36
|
"type": ["null", "string"],
|
29
37
|
"format": "date-time"
|
30
38
|
},
|
31
39
|
"updated_at": {
|
40
|
+
"description": "Timestamp when the merge request was last updated.",
|
32
41
|
"type": ["null", "string"],
|
33
42
|
"format": "date-time"
|
34
43
|
},
|
35
44
|
"merged_at": {
|
45
|
+
"description": "Timestamp when the merge request was merged.",
|
36
46
|
"type": ["null", "string"],
|
37
47
|
"format": "date-time"
|
38
48
|
},
|
39
49
|
"closed_at": {
|
50
|
+
"description": "Timestamp when the merge request was closed.",
|
40
51
|
"type": ["null", "string"],
|
41
52
|
"format": "date-time"
|
42
53
|
},
|
43
54
|
"target_branch": {
|
55
|
+
"description": "Name of the target branch for the merge request.",
|
44
56
|
"type": ["null", "string"]
|
45
57
|
},
|
46
58
|
"source_branch": {
|
59
|
+
"description": "Name of the source branch for the merge request.",
|
47
60
|
"type": ["null", "string"]
|
48
61
|
},
|
49
62
|
"user_notes_count": {
|
63
|
+
"description": "Total count of user notes on the merge request.",
|
50
64
|
"type": ["null", "integer"]
|
51
65
|
},
|
52
66
|
"upvotes": {
|
67
|
+
"description": "Number of upvotes for the merge request.",
|
53
68
|
"type": ["null", "integer"]
|
54
69
|
},
|
55
70
|
"downvotes": {
|
71
|
+
"description": "Number of downvotes for the merge request.",
|
56
72
|
"type": ["null", "integer"]
|
57
73
|
},
|
58
74
|
"assignees": {
|
75
|
+
"description": "List of users assigned to this merge request.",
|
59
76
|
"type": ["null", "array"],
|
60
77
|
"items": {
|
61
78
|
"type": ["null", "integer"]
|
62
79
|
}
|
63
80
|
},
|
64
81
|
"reviewers": {
|
82
|
+
"description": "List of reviewers assigned to the merge request.",
|
65
83
|
"type": ["null", "array"]
|
66
84
|
},
|
67
85
|
"source_project_id": {
|
86
|
+
"description": "ID of the source project for the merge request.",
|
68
87
|
"type": ["null", "integer"]
|
69
88
|
},
|
70
89
|
"target_project_id": {
|
90
|
+
"description": "ID of the target project for the merge request.",
|
71
91
|
"type": ["null", "integer"]
|
72
92
|
},
|
73
93
|
"labels": {
|
94
|
+
"description": "List of labels associated with the merge request.",
|
74
95
|
"type": ["null", "array"],
|
75
96
|
"items": {
|
76
97
|
"type": ["null", "string"]
|
77
98
|
}
|
78
99
|
},
|
79
100
|
"work_in_progress": {
|
101
|
+
"description": "Flag indicating if the merge request is a work in progress.",
|
80
102
|
"type": ["null", "boolean"]
|
81
103
|
},
|
82
104
|
"merge_when_pipeline_succeeds": {
|
105
|
+
"description": "Flag indicating if the merge should happen when the pipeline succeeds.",
|
83
106
|
"type": ["null", "boolean"]
|
84
107
|
},
|
85
108
|
"merge_status": {
|
109
|
+
"description": "Status of the merge request.",
|
86
110
|
"type": ["null", "string"]
|
87
111
|
},
|
88
112
|
"sha": {
|
113
|
+
"description": "SHA of the merge request.",
|
89
114
|
"type": ["null", "string"]
|
90
115
|
},
|
91
116
|
"merge_commit_sha": {
|
117
|
+
"description": "SHA of the merge commit.",
|
92
118
|
"type": ["null", "string"]
|
93
119
|
},
|
94
120
|
"squash_commit_sha": {
|
121
|
+
"description": "SHA of the squashed commit.",
|
95
122
|
"type": ["null", "string"]
|
96
123
|
},
|
97
124
|
"discussion_locked": {
|
125
|
+
"description": "Flag indicating if discussions are locked.",
|
98
126
|
"type": ["null", "boolean"]
|
99
127
|
},
|
100
128
|
"should_remove_source_branch": {
|
129
|
+
"description": "Flag indicating if the source branch should be removed after merging.",
|
101
130
|
"type": ["null", "boolean"]
|
102
131
|
},
|
103
132
|
"force_remove_source_branch": {
|
133
|
+
"description": "Flag indicating if the source branch should be removed after merging.",
|
104
134
|
"type": ["null", "boolean"]
|
105
135
|
},
|
106
136
|
"reference": {
|
137
|
+
"description": "Reference of the merge request.",
|
107
138
|
"type": ["null", "string"]
|
108
139
|
},
|
109
140
|
"references": {
|
141
|
+
"description": "List of references associated with the merge request.",
|
110
142
|
"type": ["null", "object"]
|
111
143
|
},
|
112
144
|
"web_url": {
|
145
|
+
"description": "URL to view the merge request in the GitLab UI.",
|
113
146
|
"type": ["null", "string"]
|
114
147
|
},
|
115
148
|
"time_stats": {
|
149
|
+
"description": "Time statistics related to the merge request.",
|
116
150
|
"type": ["null", "object"]
|
117
151
|
},
|
118
152
|
"squash": {
|
153
|
+
"description": "Flag indicating if squashing should be performed.",
|
119
154
|
"type": ["null", "boolean"]
|
120
155
|
},
|
121
156
|
"task_completion_status": {
|
157
|
+
"description": "Status of task completion for the merge request.",
|
122
158
|
"type": ["null", "object"]
|
123
159
|
},
|
124
160
|
"has_conflicts": {
|
161
|
+
"description": "Flag indicating if the merge request has conflicts.",
|
125
162
|
"type": ["null", "boolean"]
|
126
163
|
},
|
127
164
|
"blocking_discussions_resolved": {
|
165
|
+
"description": "Flag indicating if all blocking discussions are resolved.",
|
128
166
|
"type": ["null", "boolean"]
|
129
167
|
},
|
130
168
|
"approvals_before_merge": {
|
169
|
+
"description": "Total number of approvals required before the merge request can be merged.",
|
131
170
|
"type": ["null", "boolean", "string", "object"]
|
132
171
|
},
|
133
172
|
"author": {
|
173
|
+
"description": "Author of the merge request.",
|
134
174
|
"type": ["null", "object"],
|
135
175
|
"additionalProperties": true
|
136
176
|
},
|
137
177
|
"author_id": {
|
178
|
+
"description": "ID of the author of the merge request.",
|
138
179
|
"type": ["null", "integer"]
|
139
180
|
},
|
140
181
|
"assignee": {
|
182
|
+
"description": "User assigned to this merge request.",
|
141
183
|
"type": ["null", "object"],
|
142
184
|
"additionalProperties": true
|
143
185
|
},
|
144
186
|
"assignee_id": {
|
187
|
+
"description": "ID of the user assigned to this merge request.",
|
145
188
|
"type": ["null", "integer"]
|
146
189
|
},
|
147
190
|
"closed_by": {
|
191
|
+
"description": "User who closed the merge request.",
|
148
192
|
"type": ["null", "object"],
|
149
193
|
"additionalProperties": true
|
150
194
|
},
|
151
195
|
"closed_by_id": {
|
196
|
+
"description": "ID of the user who closed the merge request.",
|
152
197
|
"type": ["null", "integer"]
|
153
198
|
},
|
154
199
|
"milestone": {
|
200
|
+
"description": "Milestone associated with the merge request.",
|
155
201
|
"type": ["null", "object"],
|
156
202
|
"additionalProperties": true
|
157
203
|
},
|
158
204
|
"milestone_id": {
|
205
|
+
"description": "ID of the milestone associated with the merge request.",
|
159
206
|
"type": ["null", "integer"]
|
160
207
|
},
|
161
208
|
"merged_by": {
|
209
|
+
"description": "User who merged the merge request.",
|
162
210
|
"type": ["null", "object"],
|
163
211
|
"additionalProperties": true
|
164
212
|
},
|
165
213
|
"merged_by_id": {
|
214
|
+
"description": "ID of the user who merged the merge request.",
|
166
215
|
"type": ["null", "integer"]
|
167
216
|
},
|
168
217
|
"draft": {
|
218
|
+
"description": "Flag indicating if the merge request is a draft.",
|
169
219
|
"type": ["null", "boolean"]
|
170
220
|
},
|
171
221
|
"detailed_merge_status": {
|
222
|
+
"description": "Detailed status of the merge request.",
|
172
223
|
"type": ["null", "string"]
|
173
224
|
},
|
174
225
|
"squash_on_merge": {
|
226
|
+
"description": "Flag indicating if squashing should be done on merge.",
|
175
227
|
"type": ["null", "boolean"]
|
176
228
|
},
|
177
229
|
"merge_user": {
|
230
|
+
"description": "User who performed the merge.",
|
178
231
|
"type": ["null", "object"],
|
179
232
|
"properties": {
|
180
233
|
"id": {
|
234
|
+
"description": "ID of the user who performed the merge.",
|
181
235
|
"type": ["null", "integer"]
|
182
236
|
},
|
183
237
|
"name": {
|
238
|
+
"description": "Name of the user.",
|
184
239
|
"type": ["null", "string"]
|
185
240
|
},
|
186
241
|
"username": {
|
242
|
+
"description": "Username of the user.",
|
187
243
|
"type": ["null", "string"]
|
188
244
|
},
|
189
245
|
"state": {
|
246
|
+
"description": "State of the user account.",
|
190
247
|
"type": ["null", "string"]
|
191
248
|
},
|
192
249
|
"avatar_url": {
|
250
|
+
"description": "URL of the user's avatar.",
|
193
251
|
"type": ["null", "string"]
|
194
252
|
},
|
195
253
|
"web_url": {
|
254
|
+
"description": "URL to the user's profile.",
|
196
255
|
"type": ["null", "string"]
|
197
256
|
},
|
198
257
|
"locked": {
|
258
|
+
"description": "Flag indicating if the user account is locked.",
|
199
259
|
"type": ["null", "boolean"]
|
200
260
|
}
|
201
261
|
}
|
@@ -3,38 +3,49 @@
|
|
3
3
|
"type": "object",
|
4
4
|
"properties": {
|
5
5
|
"id": {
|
6
|
+
"description": "Unique identifier for the pipeline",
|
6
7
|
"type": ["null", "integer"]
|
7
8
|
},
|
8
9
|
"iid": {
|
10
|
+
"description": "Internal identifier for the pipeline within the project",
|
9
11
|
"type": ["null", "integer"]
|
10
12
|
},
|
11
13
|
"project_id": {
|
14
|
+
"description": "Unique identifier for the project where the pipeline belongs",
|
12
15
|
"type": ["null", "integer"]
|
13
16
|
},
|
14
17
|
"sha": {
|
18
|
+
"description": "Commit SHA associated with the pipeline",
|
15
19
|
"type": ["null", "string"]
|
16
20
|
},
|
17
21
|
"source": {
|
22
|
+
"description": "Source that triggered the pipeline (e.g., web, push, schedule)",
|
18
23
|
"type": ["null", "string"]
|
19
24
|
},
|
20
25
|
"ref": {
|
26
|
+
"description": "Reference (branch or tag) for which the pipeline was triggered",
|
21
27
|
"type": ["null", "string"]
|
22
28
|
},
|
23
29
|
"status": {
|
30
|
+
"description": "Current status of the pipeline (e.g., running, passed, failed)",
|
24
31
|
"type": ["null", "string"]
|
25
32
|
},
|
26
33
|
"created_at": {
|
34
|
+
"description": "The timestamp when the pipeline was created",
|
27
35
|
"type": ["null", "string"],
|
28
36
|
"format": "date-time"
|
29
37
|
},
|
30
38
|
"updated_at": {
|
39
|
+
"description": "The timestamp when the pipeline was last updated",
|
31
40
|
"type": ["null", "string"],
|
32
41
|
"format": "date-time"
|
33
42
|
},
|
34
43
|
"web_url": {
|
44
|
+
"description": "URL to view the pipeline details on the web interface",
|
35
45
|
"type": ["null", "string"]
|
36
46
|
},
|
37
47
|
"name": {
|
48
|
+
"description": "Name of the pipeline",
|
38
49
|
"type": ["null", "string"]
|
39
50
|
}
|
40
51
|
}
|
@@ -3,97 +3,126 @@
|
|
3
3
|
"type": "object",
|
4
4
|
"properties": {
|
5
5
|
"id": {
|
6
|
+
"description": "Unique identifier of the pipeline",
|
6
7
|
"type": ["null", "integer"]
|
7
8
|
},
|
8
9
|
"iid": {
|
10
|
+
"description": "Internal ID of the pipeline",
|
9
11
|
"type": ["null", "integer"]
|
10
12
|
},
|
11
13
|
"project_id": {
|
14
|
+
"description": "ID of the project associated with the pipeline",
|
12
15
|
"type": ["null", "integer"]
|
13
16
|
},
|
14
17
|
"sha": {
|
18
|
+
"description": "The commit SHA of the current state triggering the pipeline",
|
15
19
|
"type": ["null", "string"]
|
16
20
|
},
|
17
21
|
"source": {
|
22
|
+
"description": "Source that triggered the pipeline (e.g., push, webhook)",
|
18
23
|
"type": ["null", "string"]
|
19
24
|
},
|
20
25
|
"ref": {
|
26
|
+
"description": "Branch or tag name for which the pipeline was triggered",
|
21
27
|
"type": ["null", "string"]
|
22
28
|
},
|
23
29
|
"status": {
|
30
|
+
"description": "Current status of the pipeline (e.g., running, success, failed)",
|
24
31
|
"type": ["null", "string"]
|
25
32
|
},
|
26
33
|
"created_at": {
|
34
|
+
"description": "The date and time when the pipeline was created",
|
27
35
|
"type": ["null", "string"],
|
28
36
|
"format": "date-time"
|
29
37
|
},
|
30
38
|
"updated_at": {
|
39
|
+
"description": "The date and time when pipeline information was last updated",
|
31
40
|
"type": ["null", "string"],
|
32
41
|
"format": "date-time"
|
33
42
|
},
|
34
43
|
"web_url": {
|
44
|
+
"description": "URL to view the pipeline details on the web interface",
|
35
45
|
"type": ["null", "string"]
|
36
46
|
},
|
37
47
|
"before_sha": {
|
48
|
+
"description": "The commit SHA of the previous state before the pipeline was triggered",
|
38
49
|
"type": ["null", "string"]
|
39
50
|
},
|
40
51
|
"tag": {
|
52
|
+
"description": "Boolean indicating if the pipeline was triggered by a tag",
|
41
53
|
"type": ["null", "boolean"]
|
42
54
|
},
|
43
55
|
"yaml_errors": {
|
56
|
+
"description": "Any errors encountered in the pipeline configuration YAML",
|
44
57
|
"type": ["null", "string"]
|
45
58
|
},
|
46
59
|
"user": {
|
60
|
+
"description": "Details of the user associated with the pipeline",
|
47
61
|
"type": "object",
|
48
62
|
"properties": {
|
49
63
|
"id": {
|
64
|
+
"description": "Unique identifier of the user",
|
50
65
|
"type": ["null", "integer"]
|
51
66
|
},
|
52
67
|
"name": {
|
68
|
+
"description": "Name of the user",
|
53
69
|
"type": ["null", "string"]
|
54
70
|
},
|
55
71
|
"username": {
|
72
|
+
"description": "Username of the user",
|
56
73
|
"type": ["null", "string"]
|
57
74
|
},
|
58
75
|
"state": {
|
76
|
+
"description": "State of the user account (e.g., active, blocked)",
|
59
77
|
"type": ["null", "string"]
|
60
78
|
},
|
61
79
|
"avatar_url": {
|
80
|
+
"description": "URL of the user's avatar",
|
62
81
|
"type": ["null", "string"]
|
63
82
|
},
|
64
83
|
"web_url": {
|
84
|
+
"description": "URL to the user's profile",
|
65
85
|
"type": ["null", "string"]
|
66
86
|
},
|
67
87
|
"locked": {
|
88
|
+
"description": "Boolean indicating if the user account is locked",
|
68
89
|
"type": ["null", "boolean"]
|
69
90
|
}
|
70
91
|
}
|
71
92
|
},
|
72
93
|
"started_at": {
|
94
|
+
"description": "The date and time when the pipeline execution started",
|
73
95
|
"type": ["null", "string"],
|
74
96
|
"format": "date-time"
|
75
97
|
},
|
76
98
|
"finished_at": {
|
99
|
+
"description": "The date and time when the pipeline execution was finished",
|
77
100
|
"type": ["null", "string"],
|
78
101
|
"format": "date-time"
|
79
102
|
},
|
80
103
|
"committed_at": {
|
104
|
+
"description": "The date and time when the commit was made",
|
81
105
|
"type": ["null", "string"],
|
82
106
|
"format": "date-time"
|
83
107
|
},
|
84
108
|
"duration": {
|
109
|
+
"description": "The total duration of the pipeline execution in seconds",
|
85
110
|
"type": ["null", "integer"]
|
86
111
|
},
|
87
112
|
"queued_duration": {
|
113
|
+
"description": "The duration the pipeline spent in the queue before execution",
|
88
114
|
"type": ["null", "number", "string"]
|
89
115
|
},
|
90
116
|
"coverage": {
|
117
|
+
"description": "The code coverage percentage achieved in the pipeline",
|
91
118
|
"type": ["null", "number", "string"]
|
92
119
|
},
|
93
120
|
"detailed_status": {
|
121
|
+
"description": "Detailed status of the pipeline execution",
|
94
122
|
"type": ["null", "object"]
|
95
123
|
},
|
96
124
|
"name": {
|
125
|
+
"description": "Name of the pipeline",
|
97
126
|
"type": ["null", "string"]
|
98
127
|
}
|
99
128
|
}
|