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,42 +3,55 @@
|
|
3
3
|
"type": "object",
|
4
4
|
"properties": {
|
5
5
|
"project_id": {
|
6
|
+
"description": "The unique identifier of the project to which the label belongs.",
|
6
7
|
"type": ["null", "integer"]
|
7
8
|
},
|
8
9
|
"id": {
|
10
|
+
"description": "The unique identifier for the label within the project.",
|
9
11
|
"type": ["null", "integer"]
|
10
12
|
},
|
11
13
|
"name": {
|
14
|
+
"description": "The name or title of the label for easy identification.",
|
12
15
|
"type": ["null", "string"]
|
13
16
|
},
|
14
17
|
"color": {
|
18
|
+
"description": "The color code representation of the label for visual identification.",
|
15
19
|
"type": ["null", "string"]
|
16
20
|
},
|
17
21
|
"description": {
|
22
|
+
"description": "The textual description of the label indicating its purpose or meaning.",
|
18
23
|
"type": ["null", "string"]
|
19
24
|
},
|
20
25
|
"description_html": {
|
26
|
+
"description": "The HTML formatted description of the label for display purposes.",
|
21
27
|
"type": ["null", "string"]
|
22
28
|
},
|
23
29
|
"text_color": {
|
30
|
+
"description": "The color code representation for the text color of the label for contrast.",
|
24
31
|
"type": ["null", "string"]
|
25
32
|
},
|
26
33
|
"subscribed": {
|
34
|
+
"description": "A flag indicating whether the user is subscribed to notifications for this label.",
|
27
35
|
"type": ["null", "boolean"]
|
28
36
|
},
|
29
37
|
"priority": {
|
38
|
+
"description": "The priority level assigned to the label, if applicable.",
|
30
39
|
"type": ["null", "integer"]
|
31
40
|
},
|
32
41
|
"is_project_label": {
|
42
|
+
"description": "A flag indicating whether the label is specifically created for the project.",
|
33
43
|
"type": ["null", "boolean"]
|
34
44
|
},
|
35
45
|
"open_issues_count": {
|
46
|
+
"description": "The total count of open issues associated with this label.",
|
36
47
|
"type": ["null", "integer"]
|
37
48
|
},
|
38
49
|
"closed_issues_count": {
|
50
|
+
"description": "The total count of closed issues associated with this label.",
|
39
51
|
"type": ["null", "integer"]
|
40
52
|
},
|
41
53
|
"open_merge_requests_count": {
|
54
|
+
"description": "The total count of open merge requests associated with this label.",
|
42
55
|
"type": ["null", "integer"]
|
43
56
|
}
|
44
57
|
}
|
@@ -3,43 +3,55 @@
|
|
3
3
|
"type": "object",
|
4
4
|
"properties": {
|
5
5
|
"id": {
|
6
|
+
"description": "Unique identifier for the milestone.",
|
6
7
|
"type": ["null", "integer"]
|
7
8
|
},
|
8
9
|
"iid": {
|
10
|
+
"description": "Internal identifier for the milestone.",
|
9
11
|
"type": ["null", "integer"]
|
10
12
|
},
|
11
13
|
"project_id": {
|
14
|
+
"description": "Identifier of the project that the milestone belongs to.",
|
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": "A brief summary or goal of the milestone.",
|
18
23
|
"type": ["null", "string"]
|
19
24
|
},
|
20
25
|
"state": {
|
26
|
+
"description": "Current state of the milestone (e.g., open, closed).",
|
21
27
|
"type": ["null", "string"]
|
22
28
|
},
|
23
29
|
"created_at": {
|
30
|
+
"description": "The date and time when the milestone was created.",
|
24
31
|
"type": ["null", "string"],
|
25
32
|
"format": "date-time"
|
26
33
|
},
|
27
34
|
"updated_at": {
|
35
|
+
"description": "The date and time 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 target date for completion of the milestone.",
|
32
41
|
"type": ["null", "string"],
|
33
42
|
"format": "date"
|
34
43
|
},
|
35
44
|
"start_date": {
|
45
|
+
"description": "The date when work on the milestone is scheduled to start.",
|
36
46
|
"type": ["null", "string"],
|
37
47
|
"format": "date"
|
38
48
|
},
|
39
49
|
"expired": {
|
50
|
+
"description": "Indicates if the milestone has expired or not.",
|
40
51
|
"type": ["null", "boolean"]
|
41
52
|
},
|
42
53
|
"web_url": {
|
54
|
+
"description": "URL to access the milestone on the web platform.",
|
43
55
|
"type": ["null", "string"]
|
44
56
|
}
|
45
57
|
}
|