airbyte-source-github 1.7.1.dev202404071124__py3-none-any.whl → 1.7.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. {airbyte_source_github-1.7.1.dev202404071124.dist-info → airbyte_source_github-1.7.2.dist-info}/METADATA +2 -2
  2. airbyte_source_github-1.7.2.dist-info/RECORD +62 -0
  3. source_github/schemas/assignees.json +19 -0
  4. source_github/schemas/branches.json +17 -0
  5. source_github/schemas/collaborators.json +26 -0
  6. source_github/schemas/comments.json +29 -0
  7. source_github/schemas/commit_comments.json +15 -0
  8. source_github/schemas/commits.json +35 -0
  9. source_github/schemas/contributor_activity.json +32 -8
  10. source_github/schemas/deployments.json +19 -0
  11. source_github/schemas/events.json +17 -0
  12. source_github/schemas/issue_events.json +69 -4
  13. source_github/schemas/issue_labels.json +8 -0
  14. source_github/schemas/issue_milestones.json +17 -0
  15. source_github/schemas/issue_reactions.json +7 -0
  16. source_github/schemas/issue_timeline_events.json +197 -56
  17. source_github/schemas/issues.json +84 -0
  18. source_github/schemas/organizations.json +62 -0
  19. source_github/schemas/project_cards.json +14 -0
  20. source_github/schemas/project_columns.json +10 -0
  21. source_github/schemas/projects.json +14 -0
  22. source_github/schemas/projects_v2.json +23 -0
  23. source_github/schemas/pull_request_comment_reactions.json +7 -0
  24. source_github/schemas/pull_request_commits.json +33 -0
  25. source_github/schemas/pull_request_stats.json +24 -3
  26. source_github/schemas/pull_requests.json +60 -0
  27. source_github/schemas/releases.json +38 -0
  28. source_github/schemas/repositories.json +98 -0
  29. source_github/schemas/review_comments.json +34 -0
  30. source_github/schemas/reviews.json +18 -0
  31. source_github/schemas/stargazers.json +4 -0
  32. source_github/schemas/tags.json +8 -0
  33. source_github/schemas/team_members.json +20 -0
  34. source_github/schemas/team_memberships.json +6 -0
  35. source_github/schemas/teams.json +14 -0
  36. source_github/schemas/users.json +19 -0
  37. source_github/schemas/workflow_jobs.json +30 -0
  38. source_github/schemas/workflow_runs.json +136 -0
  39. source_github/schemas/workflows.json +11 -0
  40. airbyte_source_github-1.7.1.dev202404071124.dist-info/RECORD +0 -62
  41. {airbyte_source_github-1.7.1.dev202404071124.dist-info → airbyte_source_github-1.7.2.dist-info}/WHEEL +0 -0
  42. {airbyte_source_github-1.7.1.dev202404071124.dist-info → airbyte_source_github-1.7.2.dist-info}/entry_points.txt +0 -0
@@ -3,295 +3,390 @@
3
3
  "type": "object",
4
4
  "properties": {
5
5
  "id": {
6
+ "description": "Unique identifier of the repository.",
6
7
  "type": ["null", "integer"]
7
8
  },
8
9
  "node_id": {
10
+ "description": "Node ID of the repository.",
9
11
  "type": ["null", "string"]
10
12
  },
11
13
  "name": {
14
+ "description": "Name of the repository.",
12
15
  "type": ["null", "string"]
13
16
  },
14
17
  "full_name": {
18
+ "description": "Full name of the repository.",
15
19
  "type": ["null", "string"]
16
20
  },
17
21
  "owner": {
22
+ "description": "Owner of the repository.",
18
23
  "$ref": "user.json"
19
24
  },
20
25
  "private": {
26
+ "description": "Indicates if the repository is private.",
21
27
  "type": ["null", "boolean"]
22
28
  },
23
29
  "html_url": {
30
+ "description": "URL of the repository's GitHub page.",
24
31
  "type": ["null", "string"]
25
32
  },
26
33
  "description": {
34
+ "description": "Brief description of the repository.",
27
35
  "type": ["null", "string"]
28
36
  },
29
37
  "fork": {
38
+ "description": "Indicates if the repository is a fork.",
30
39
  "type": ["null", "boolean"]
31
40
  },
32
41
  "url": {
42
+ "description": "URL of the repository.",
33
43
  "type": ["null", "string"]
34
44
  },
35
45
  "archive_url": {
46
+ "description": "URL to archive the repository.",
36
47
  "type": ["null", "string"]
37
48
  },
38
49
  "assignees_url": {
50
+ "description": "URL to fetch assignees for issues in the repository.",
39
51
  "type": ["null", "string"]
40
52
  },
41
53
  "blobs_url": {
54
+ "description": "URL to fetch blobs within the repository.",
42
55
  "type": ["null", "string"]
43
56
  },
44
57
  "branches_url": {
58
+ "description": "URL to fetch branches within the repository.",
45
59
  "type": ["null", "string"]
46
60
  },
47
61
  "collaborators_url": {
62
+ "description": "URL to fetch collaborators of the repository.",
48
63
  "type": ["null", "string"]
49
64
  },
50
65
  "comments_url": {
66
+ "description": "URL to fetch comments within the repository.",
51
67
  "type": ["null", "string"]
52
68
  },
53
69
  "commits_url": {
70
+ "description": "URL to fetch commits within the repository.",
54
71
  "type": ["null", "string"]
55
72
  },
56
73
  "compare_url": {
74
+ "description": "URL to compare references within the repository.",
57
75
  "type": ["null", "string"]
58
76
  },
59
77
  "contents_url": {
78
+ "description": "URL to fetch contents within the repository.",
60
79
  "type": ["null", "string"]
61
80
  },
62
81
  "contributors_url": {
82
+ "description": "URL to fetch contributors to the repository.",
63
83
  "type": ["null", "string"]
64
84
  },
65
85
  "deployments_url": {
86
+ "description": "URL to fetch deployments related to the repository.",
66
87
  "type": ["null", "string"]
67
88
  },
68
89
  "downloads_url": {
90
+ "description": "URL to fetch downloads linked to the repository.",
69
91
  "type": ["null", "string"]
70
92
  },
71
93
  "events_url": {
94
+ "description": "URL to fetch events related to the repository.",
72
95
  "type": ["null", "string"]
73
96
  },
74
97
  "forks_url": {
98
+ "description": "URL to fetch forks of the repository.",
75
99
  "type": ["null", "string"]
76
100
  },
77
101
  "git_commits_url": {
102
+ "description": "URL to fetch git commits within the repository.",
78
103
  "type": ["null", "string"]
79
104
  },
80
105
  "git_refs_url": {
106
+ "description": "URL to fetch git references within the repository.",
81
107
  "type": ["null", "string"]
82
108
  },
83
109
  "git_tags_url": {
110
+ "description": "URL to fetch git tags within the repository.",
84
111
  "type": ["null", "string"]
85
112
  },
86
113
  "git_url": {
114
+ "description": "URL for Git protocol to interact with the repository.",
87
115
  "type": ["null", "string"]
88
116
  },
89
117
  "issue_comment_url": {
118
+ "description": "URL to fetch issue comments within the repository.",
90
119
  "type": ["null", "string"]
91
120
  },
92
121
  "issue_events_url": {
122
+ "description": "URL to fetch issue events within the repository.",
93
123
  "type": ["null", "string"]
94
124
  },
95
125
  "issues_url": {
126
+ "description": "URL to fetch issues within the repository.",
96
127
  "type": ["null", "string"]
97
128
  },
98
129
  "keys_url": {
130
+ "description": "URL to fetch keys associated with the repository.",
99
131
  "type": ["null", "string"]
100
132
  },
101
133
  "labels_url": {
134
+ "description": "URL to fetch labels associated with the repository.",
102
135
  "type": ["null", "string"]
103
136
  },
104
137
  "languages_url": {
138
+ "description": "URL to fetch languages used in the repository.",
105
139
  "type": ["null", "string"]
106
140
  },
107
141
  "merges_url": {
142
+ "description": "URL to fetch merges related to the repository.",
108
143
  "type": ["null", "string"]
109
144
  },
110
145
  "milestones_url": {
146
+ "description": "URL to fetch milestones within the repository.",
111
147
  "type": ["null", "string"]
112
148
  },
113
149
  "notifications_url": {
150
+ "description": "URL to manage notifications for the repository.",
114
151
  "type": ["null", "string"]
115
152
  },
116
153
  "pulls_url": {
154
+ "description": "URL to fetch pull requests within the repository.",
117
155
  "type": ["null", "string"]
118
156
  },
119
157
  "releases_url": {
158
+ "description": "URL to fetch releases related to the repository.",
120
159
  "type": ["null", "string"]
121
160
  },
122
161
  "ssh_url": {
162
+ "description": "SSH URL of the repository.",
123
163
  "type": ["null", "string"]
124
164
  },
125
165
  "stargazers_url": {
166
+ "description": "URL to fetch users who starred the repository.",
126
167
  "type": ["null", "string"]
127
168
  },
128
169
  "statuses_url": {
170
+ "description": "URL to fetch commit statuses within the repository.",
129
171
  "type": ["null", "string"]
130
172
  },
131
173
  "subscribers_url": {
174
+ "description": "URL to fetch subscribers of the repository.",
132
175
  "type": ["null", "string"]
133
176
  },
134
177
  "subscription_url": {
178
+ "description": "URL to manage subscriptions to notifications for the repository.",
135
179
  "type": ["null", "string"]
136
180
  },
137
181
  "tags_url": {
182
+ "description": "URL to fetch tags within the repository.",
138
183
  "type": ["null", "string"]
139
184
  },
140
185
  "teams_url": {
186
+ "description": "URL to manage repository teams.",
141
187
  "type": ["null", "string"]
142
188
  },
143
189
  "trees_url": {
190
+ "description": "URL to fetch trees within the repository.",
144
191
  "type": ["null", "string"]
145
192
  },
146
193
  "clone_url": {
194
+ "description": "URL to clone the repository.",
147
195
  "type": ["null", "string"]
148
196
  },
149
197
  "mirror_url": {
198
+ "description": "URL of the mirror repository.",
150
199
  "type": ["null", "string"]
151
200
  },
152
201
  "hooks_url": {
202
+ "description": "URL to manage webhooks for the repository.",
153
203
  "type": ["null", "string"]
154
204
  },
155
205
  "svn_url": {
206
+ "description": "SVN URL of the repository.",
156
207
  "type": ["null", "string"]
157
208
  },
158
209
  "homepage": {
210
+ "description": "URL of the repository's homepage.",
159
211
  "type": ["null", "string"]
160
212
  },
161
213
  "language": {
214
+ "description": "Main programming language used in the repository.",
162
215
  "type": ["null", "string"]
163
216
  },
164
217
  "forks_count": {
218
+ "description": "Count of forks for the repository.",
165
219
  "type": ["null", "integer"]
166
220
  },
167
221
  "stargazers_count": {
222
+ "description": "Number of stars the repository has received.",
168
223
  "type": ["null", "integer"]
169
224
  },
170
225
  "watchers_count": {
226
+ "description": "Count of watchers for the repository.",
171
227
  "type": ["null", "integer"]
172
228
  },
173
229
  "size": {
230
+ "description": "Size of the repository in kilobytes.",
174
231
  "type": ["null", "integer"]
175
232
  },
176
233
  "default_branch": {
234
+ "description": "Default branch of the repository.",
177
235
  "type": ["null", "string"]
178
236
  },
179
237
  "open_issues_count": {
238
+ "description": "Count of open issues in the repository.",
180
239
  "type": ["null", "integer"]
181
240
  },
182
241
  "is_template": {
242
+ "description": "Indicates if the repository is a template.",
183
243
  "type": ["null", "boolean"]
184
244
  },
185
245
  "topics": {
246
+ "description": "Topics associated with the repository.",
186
247
  "type": ["null", "array"],
187
248
  "items": {
249
+ "description": "Individual topic related to the repository.",
188
250
  "type": ["null", "string"]
189
251
  }
190
252
  },
191
253
  "license": {
254
+ "description": "License information of the repository.",
192
255
  "type": ["null", "object"],
193
256
  "properties": {
194
257
  "key": {
258
+ "description": "Key identifier of the license.",
195
259
  "type": ["null", "string"]
196
260
  },
197
261
  "name": {
262
+ "description": "Name of the license.",
198
263
  "type": ["null", "string"]
199
264
  },
200
265
  "url": {
266
+ "description": "URL to access license details.",
201
267
  "type": ["null", "string"]
202
268
  },
203
269
  "spdx_id": {
270
+ "description": "SPDX identifier of the license.",
204
271
  "type": ["null", "string"]
205
272
  },
206
273
  "node_id": {
274
+ "description": "Node ID of the license.",
207
275
  "type": ["null", "string"]
208
276
  },
209
277
  "html_url": {
278
+ "description": "URL to view license details on the web.",
210
279
  "type": ["null", "string"]
211
280
  }
212
281
  }
213
282
  },
214
283
  "has_issues": {
284
+ "description": "Indicates if the repository has issues enabled.",
215
285
  "type": ["null", "boolean"]
216
286
  },
217
287
  "has_projects": {
288
+ "description": "Indicates if the repository has projects enabled.",
218
289
  "type": ["null", "boolean"]
219
290
  },
220
291
  "has_wiki": {
292
+ "description": "Indicates if the repository has a wiki enabled.",
221
293
  "type": ["null", "boolean"]
222
294
  },
223
295
  "has_pages": {
296
+ "description": "Indicates if the repository has GitHub Pages enabled.",
224
297
  "type": ["null", "boolean"]
225
298
  },
226
299
  "has_downloads": {
300
+ "description": "Indicates if the repository has downloads available.",
227
301
  "type": ["null", "boolean"]
228
302
  },
229
303
  "archived": {
304
+ "description": "Indicates if the repository is archived.",
230
305
  "type": ["null", "boolean"]
231
306
  },
232
307
  "disabled": {
308
+ "description": "Indicates if the repository is disabled.",
233
309
  "type": ["null", "boolean"]
234
310
  },
235
311
  "visibility": {
312
+ "description": "Visibility status of the repository.",
236
313
  "type": ["null", "string"]
237
314
  },
238
315
  "pushed_at": {
316
+ "description": "Date and time when the repository was last pushed to.",
239
317
  "type": "string",
240
318
  "format": "date-time"
241
319
  },
242
320
  "created_at": {
321
+ "description": "Date and time when the repository was created.",
243
322
  "type": "string",
244
323
  "format": "date-time"
245
324
  },
246
325
  "updated_at": {
326
+ "description": "Date and time when the repository was last updated.",
247
327
  "type": "string",
248
328
  "format": "date-time"
249
329
  },
250
330
  "permissions": {
331
+ "description": "Permissions granted to different roles for the repository.",
251
332
  "type": ["null", "object"],
252
333
  "properties": {
253
334
  "admin": {
335
+ "description": "Admin permission level.",
254
336
  "type": ["null", "boolean"]
255
337
  },
256
338
  "push": {
339
+ "description": "Push permission level.",
257
340
  "type": ["null", "boolean"]
258
341
  },
259
342
  "pull": {
343
+ "description": "Pull permission level.",
260
344
  "type": ["null", "boolean"]
261
345
  },
262
346
  "maintain": {
347
+ "description": "Maintain permission level.",
263
348
  "type": ["null", "boolean"]
264
349
  },
265
350
  "triage": {
351
+ "description": "Triage permission level.",
266
352
  "type": ["null", "boolean"]
267
353
  }
268
354
  }
269
355
  },
270
356
  "allow_forking": {
357
+ "description": "Indicates if forking is allowed for the repository.",
271
358
  "type": ["null", "boolean"]
272
359
  },
273
360
  "forks": {
361
+ "description": "Forks information related to the repository.",
274
362
  "type": ["null", "integer"]
275
363
  },
276
364
  "has_discussions": {
365
+ "description": "Indicates if the repository has discussions.",
277
366
  "type": ["null", "boolean"]
278
367
  },
279
368
  "open_issues": {
369
+ "description": "Number of open issues in the repository.",
280
370
  "type": ["null", "integer"]
281
371
  },
282
372
  "organization": {
373
+ "description": "Organization the repository belongs to.",
283
374
  "type": ["null", "string"]
284
375
  },
285
376
  "watchers": {
377
+ "description": "Watchers of the repository.",
286
378
  "type": ["null", "integer"]
287
379
  },
288
380
  "web_commit_signoff_required": {
381
+ "description": "Indicates if web commit sign-off is required for contributions.",
289
382
  "type": ["null", "boolean"]
290
383
  },
291
384
  "security_and_analysis": {
385
+ "description": "Security and analysis settings of the repository.",
292
386
  "type": ["null", "object"],
293
387
  "properties": {
294
388
  "secret_scanning": {
389
+ "description": "Secret scanning status.",
295
390
  "type": ["null", "object"],
296
391
  "properties": {
297
392
  "status": {
@@ -300,6 +395,7 @@
300
395
  }
301
396
  },
302
397
  "secret_scanning_push_protection": {
398
+ "description": "Secret scanning push protection status.",
303
399
  "type": ["null", "object"],
304
400
  "properties": {
305
401
  "status": {
@@ -308,6 +404,7 @@
308
404
  }
309
405
  },
310
406
  "secret_scanning_validity_checks": {
407
+ "description": "Secret scanning validity checks status.",
311
408
  "type": ["null", "object"],
312
409
  "properties": {
313
410
  "status": {
@@ -316,6 +413,7 @@
316
413
  }
317
414
  },
318
415
  "dependabot_security_updates": {
416
+ "description": "Dependabot security updates status.",
319
417
  "type": ["null", "object"],
320
418
  "properties": {
321
419
  "status": {
@@ -3,87 +3,113 @@
3
3
  "type": "object",
4
4
  "properties": {
5
5
  "repository": {
6
+ "description": "Information about the repository where the comment was made",
6
7
  "type": "string"
7
8
  },
8
9
  "url": {
10
+ "description": "The URL of the API resource for the comment",
9
11
  "type": ["null", "string"]
10
12
  },
11
13
  "pull_request_review_id": {
14
+ "description": "The ID of the pull request review to which the comment belongs",
12
15
  "type": ["null", "integer"]
13
16
  },
14
17
  "id": {
18
+ "description": "The unique identifier of the comment",
15
19
  "type": ["null", "integer"]
16
20
  },
17
21
  "node_id": {
22
+ "description": "The unique identifier for the comment node",
18
23
  "type": ["null", "string"]
19
24
  },
20
25
  "diff_hunk": {
26
+ "description": "A snippet of the diff where the comment was made",
21
27
  "type": ["null", "string"]
22
28
  },
23
29
  "path": {
30
+ "description": "The file path where the comment was made",
24
31
  "type": ["null", "string"]
25
32
  },
26
33
  "position": {
34
+ "description": "The position of the comment relative to the diff",
27
35
  "type": ["null", "integer"]
28
36
  },
29
37
  "original_position": {
38
+ "description": "The original position of the comment relative to the diff",
30
39
  "type": ["null", "integer"]
31
40
  },
32
41
  "commit_id": {
42
+ "description": "The ID of the commit the comment is associated with",
33
43
  "type": ["null", "string"]
34
44
  },
35
45
  "original_commit_id": {
46
+ "description": "The original commit ID associated with the comment",
36
47
  "type": ["null", "string"]
37
48
  },
38
49
  "in_reply_to_id": {
50
+ "description": "The ID of the comment being replied to",
39
51
  "type": ["null", "integer"]
40
52
  },
41
53
  "user": {
54
+ "description": "Information about the user who made the comment",
42
55
  "$ref": "user.json"
43
56
  },
44
57
  "body": {
58
+ "description": "The content of the comment",
45
59
  "type": ["null", "string"]
46
60
  },
47
61
  "created_at": {
62
+ "description": "The timestamp when the comment was created",
48
63
  "type": "string",
49
64
  "format": "date-time"
50
65
  },
51
66
  "updated_at": {
67
+ "description": "The timestamp when the comment was last updated",
52
68
  "type": "string",
53
69
  "format": "date-time"
54
70
  },
55
71
  "html_url": {
72
+ "description": "The URL for viewing the comment on GitHub",
56
73
  "type": ["null", "string"]
57
74
  },
58
75
  "pull_request_url": {
76
+ "description": "The URL of the pull request to which the comment belongs",
59
77
  "type": ["null", "string"]
60
78
  },
61
79
  "author_association": {
80
+ "description": "The association of the author of the comment with the repository",
62
81
  "type": ["null", "string"]
63
82
  },
64
83
  "_links": {
84
+ "description": "Contains links to related resources for the review comment",
65
85
  "type": ["null", "object"],
66
86
  "properties": {
67
87
  "self": {
88
+ "description": "URL for the review comment itself",
68
89
  "type": ["null", "object"],
69
90
  "properties": {
70
91
  "href": {
92
+ "description": "The URL of the comment itself",
71
93
  "type": ["null", "string"]
72
94
  }
73
95
  }
74
96
  },
75
97
  "html": {
98
+ "description": "URL for the HTML representation of the review comment",
76
99
  "type": ["null", "object"],
77
100
  "properties": {
78
101
  "href": {
102
+ "description": "The URL for viewing the comment in a browser",
79
103
  "type": ["null", "string"]
80
104
  }
81
105
  }
82
106
  },
83
107
  "pull_request": {
108
+ "description": "URL for the pull request associated with the review comment",
84
109
  "type": ["null", "object"],
85
110
  "properties": {
86
111
  "href": {
112
+ "description": "The URL for the associated pull request",
87
113
  "type": ["null", "string"]
88
114
  }
89
115
  }
@@ -91,27 +117,35 @@
91
117
  }
92
118
  },
93
119
  "start_line": {
120
+ "description": "The starting line of the comment reference",
94
121
  "type": ["null", "integer"]
95
122
  },
96
123
  "original_start_line": {
124
+ "description": "The original starting line of the comment reference",
97
125
  "type": ["null", "integer"]
98
126
  },
99
127
  "start_side": {
128
+ "description": "The side in the diff where the comment reference started",
100
129
  "type": ["null", "string"]
101
130
  },
102
131
  "line": {
132
+ "description": "The line in the diff where the comment was made",
103
133
  "type": ["null", "integer"]
104
134
  },
105
135
  "original_line": {
136
+ "description": "The original line for the comment reference",
106
137
  "type": ["null", "integer"]
107
138
  },
108
139
  "side": {
140
+ "description": "The side of the diff where the comment was made (e.g., left or right)",
109
141
  "type": ["null", "string"]
110
142
  },
111
143
  "subject_type": {
144
+ "description": "The type of subject the comment is associated with",
112
145
  "type": ["null", "string"]
113
146
  },
114
147
  "reactions": {
148
+ "description": "Reactions to the comment (e.g., thumbs up, thumbs down)",
115
149
  "$ref": "reactions.json"
116
150
  }
117
151
  }
@@ -3,44 +3,57 @@
3
3
  "type": "object",
4
4
  "properties": {
5
5
  "repository": {
6
+ "description": "Information about the repository where the review is posted.",
6
7
  "type": "string"
7
8
  },
8
9
  "id": {
10
+ "description": "The unique identifier of the review.",
9
11
  "type": ["null", "integer"]
10
12
  },
11
13
  "node_id": {
14
+ "description": "The node identifier of the review.",
12
15
  "type": ["null", "string"]
13
16
  },
14
17
  "user": {
18
+ "description": "Information about the user who submitted the review.",
15
19
  "$ref": "user_graphql.json"
16
20
  },
17
21
  "body": {
22
+ "description": "The content of the review comment.",
18
23
  "type": ["null", "string"]
19
24
  },
20
25
  "state": {
26
+ "description": "The state of the review (e.g., open, closed).",
21
27
  "type": ["null", "string"]
22
28
  },
23
29
  "html_url": {
30
+ "description": "The URL of the review comment.",
24
31
  "type": ["null", "string"]
25
32
  },
26
33
  "pull_request_url": {
34
+ "description": "The URL of the pull request associated with the review.",
27
35
  "type": ["null", "string"]
28
36
  },
29
37
  "_links": {
38
+ "description": "Contains relevant hyperlinks related to the review data.",
30
39
  "type": ["null", "object"],
31
40
  "properties": {
32
41
  "html": {
42
+ "description": "URL for viewing the review data in HTML format.",
33
43
  "type": ["null", "object"],
34
44
  "properties": {
35
45
  "href": {
46
+ "description": "The URL of the HTML page for the review.",
36
47
  "type": ["null", "string"]
37
48
  }
38
49
  }
39
50
  },
40
51
  "pull_request": {
52
+ "description": "URL for accessing the pull request associated with the review data.",
41
53
  "type": ["null", "object"],
42
54
  "properties": {
43
55
  "href": {
56
+ "description": "The URL of the pull request associated with the review.",
44
57
  "type": ["null", "string"]
45
58
  }
46
59
  }
@@ -48,21 +61,26 @@
48
61
  }
49
62
  },
50
63
  "submitted_at": {
64
+ "description": "The date and time when the review was submitted.",
51
65
  "type": "string",
52
66
  "format": "date-time"
53
67
  },
54
68
  "created_at": {
69
+ "description": "The date and time when the review was created.",
55
70
  "type": "string",
56
71
  "format": "date-time"
57
72
  },
58
73
  "updated_at": {
74
+ "description": "The date and time when the review was last updated.",
59
75
  "type": "string",
60
76
  "format": "date-time"
61
77
  },
62
78
  "commit_id": {
79
+ "description": "The unique identifier of the commit associated with the review.",
63
80
  "type": ["null", "string"]
64
81
  },
65
82
  "author_association": {
83
+ "description": "The association of the author of the review with the repository.",
66
84
  "type": ["null", "string"]
67
85
  }
68
86
  }
@@ -3,16 +3,20 @@
3
3
  "type": "object",
4
4
  "properties": {
5
5
  "repository": {
6
+ "description": "The repository that was starred by a user.",
6
7
  "type": "string"
7
8
  },
8
9
  "user_id": {
10
+ "description": "The unique identifier of the user who starred the repository.",
9
11
  "type": ["null", "integer"]
10
12
  },
11
13
  "starred_at": {
14
+ "description": "The date and time when the user starred the repository.",
12
15
  "type": "string",
13
16
  "format": "date-time"
14
17
  },
15
18
  "user": {
19
+ "description": "The user who starred the repository.",
16
20
  "$ref": "user.json"
17
21
  }
18
22
  }