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.
@@ -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
  }