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.
- {airbyte_source_github-1.7.1.dev202404071124.dist-info → airbyte_source_github-1.7.2.dist-info}/METADATA +2 -2
- airbyte_source_github-1.7.2.dist-info/RECORD +62 -0
- source_github/schemas/assignees.json +19 -0
- source_github/schemas/branches.json +17 -0
- source_github/schemas/collaborators.json +26 -0
- source_github/schemas/comments.json +29 -0
- source_github/schemas/commit_comments.json +15 -0
- source_github/schemas/commits.json +35 -0
- source_github/schemas/contributor_activity.json +32 -8
- source_github/schemas/deployments.json +19 -0
- source_github/schemas/events.json +17 -0
- source_github/schemas/issue_events.json +69 -4
- source_github/schemas/issue_labels.json +8 -0
- source_github/schemas/issue_milestones.json +17 -0
- source_github/schemas/issue_reactions.json +7 -0
- source_github/schemas/issue_timeline_events.json +197 -56
- source_github/schemas/issues.json +84 -0
- source_github/schemas/organizations.json +62 -0
- source_github/schemas/project_cards.json +14 -0
- source_github/schemas/project_columns.json +10 -0
- source_github/schemas/projects.json +14 -0
- source_github/schemas/projects_v2.json +23 -0
- source_github/schemas/pull_request_comment_reactions.json +7 -0
- source_github/schemas/pull_request_commits.json +33 -0
- source_github/schemas/pull_request_stats.json +24 -3
- source_github/schemas/pull_requests.json +60 -0
- source_github/schemas/releases.json +38 -0
- source_github/schemas/repositories.json +98 -0
- source_github/schemas/review_comments.json +34 -0
- source_github/schemas/reviews.json +18 -0
- source_github/schemas/stargazers.json +4 -0
- source_github/schemas/tags.json +8 -0
- source_github/schemas/team_members.json +20 -0
- source_github/schemas/team_memberships.json +6 -0
- source_github/schemas/teams.json +14 -0
- source_github/schemas/users.json +19 -0
- source_github/schemas/workflow_jobs.json +30 -0
- source_github/schemas/workflow_runs.json +136 -0
- source_github/schemas/workflows.json +11 -0
- airbyte_source_github-1.7.1.dev202404071124.dist-info/RECORD +0 -62
- {airbyte_source_github-1.7.1.dev202404071124.dist-info → airbyte_source_github-1.7.2.dist-info}/WHEEL +0 -0
- {airbyte_source_github-1.7.1.dev202404071124.dist-info → airbyte_source_github-1.7.2.dist-info}/entry_points.txt +0 -0
@@ -3,278 +3,362 @@
|
|
3
3
|
"type": "object",
|
4
4
|
"properties": {
|
5
5
|
"repository": {
|
6
|
+
"description": "Repository where the issue is located.",
|
6
7
|
"type": "string"
|
7
8
|
},
|
8
9
|
"id": {
|
10
|
+
"description": "Unique identifier for the issue.",
|
9
11
|
"type": ["null", "integer"]
|
10
12
|
},
|
11
13
|
"node_id": {
|
14
|
+
"description": "Unique identifier for the issue node.",
|
12
15
|
"type": ["null", "string"]
|
13
16
|
},
|
14
17
|
"url": {
|
18
|
+
"description": "URL to retrieve more details about the issue.",
|
15
19
|
"type": ["null", "string"]
|
16
20
|
},
|
17
21
|
"repository_url": {
|
22
|
+
"description": "URL to retrieve more details about the repository.",
|
18
23
|
"type": ["null", "string"]
|
19
24
|
},
|
20
25
|
"labels_url": {
|
26
|
+
"description": "URL to retrieve labels associated with the issue.",
|
21
27
|
"type": ["null", "string"]
|
22
28
|
},
|
23
29
|
"comments_url": {
|
30
|
+
"description": "URL to retrieve comments on the issue.",
|
24
31
|
"type": ["null", "string"]
|
25
32
|
},
|
26
33
|
"events_url": {
|
34
|
+
"description": "URL to retrieve events related to the issue.",
|
27
35
|
"type": ["null", "string"]
|
28
36
|
},
|
29
37
|
"html_url": {
|
38
|
+
"description": "URL to view the issue on GitHub.",
|
30
39
|
"type": ["null", "string"]
|
31
40
|
},
|
32
41
|
"number": {
|
42
|
+
"description": "Number of the issue.",
|
33
43
|
"type": ["null", "integer"]
|
34
44
|
},
|
35
45
|
"state": {
|
46
|
+
"description": "State of the issue (open/closed).",
|
36
47
|
"type": ["null", "string"]
|
37
48
|
},
|
38
49
|
"title": {
|
50
|
+
"description": "Title of the issue.",
|
39
51
|
"type": ["null", "string"]
|
40
52
|
},
|
41
53
|
"user": {
|
54
|
+
"description": "User who opened the issue.",
|
42
55
|
"$ref": "user.json"
|
43
56
|
},
|
44
57
|
"body": {
|
58
|
+
"description": "The content of the issue.",
|
45
59
|
"type": ["null", "string"]
|
46
60
|
},
|
47
61
|
"user_id": {
|
62
|
+
"description": "Identifier of the user who opened the issue.",
|
48
63
|
"type": ["null", "integer"]
|
49
64
|
},
|
50
65
|
"labels": {
|
66
|
+
"description": "List of labels attached to the issue.",
|
51
67
|
"type": ["null", "array"],
|
52
68
|
"items": {
|
53
69
|
"type": ["null", "object"],
|
54
70
|
"properties": {
|
55
71
|
"id": {
|
72
|
+
"description": "Unique identifier for the label.",
|
56
73
|
"type": ["null", "integer"]
|
57
74
|
},
|
58
75
|
"node_id": {
|
76
|
+
"description": "Unique identifier for the label node.",
|
59
77
|
"type": ["null", "string"]
|
60
78
|
},
|
61
79
|
"url": {
|
80
|
+
"description": "URL to retrieve more details about the label.",
|
62
81
|
"type": ["null", "string"]
|
63
82
|
},
|
64
83
|
"name": {
|
84
|
+
"description": "Name of the label.",
|
65
85
|
"type": ["null", "string"]
|
66
86
|
},
|
67
87
|
"description": {
|
88
|
+
"description": "Description of the label.",
|
68
89
|
"type": ["null", "string"]
|
69
90
|
},
|
70
91
|
"color": {
|
92
|
+
"description": "Color of the label.",
|
71
93
|
"type": ["null", "string"]
|
72
94
|
},
|
73
95
|
"default": {
|
96
|
+
"description": "Flag indicating if the label is a default label.",
|
74
97
|
"type": ["null", "boolean"]
|
75
98
|
}
|
76
99
|
}
|
77
100
|
}
|
78
101
|
},
|
79
102
|
"assignee": {
|
103
|
+
"description": "User assigned to the issue.",
|
80
104
|
"$ref": "user.json"
|
81
105
|
},
|
82
106
|
"assignees": {
|
107
|
+
"description": "List of users assigned to the issue.",
|
83
108
|
"type": ["null", "array"],
|
84
109
|
"items": {
|
110
|
+
"description": "List of users assigned to the issue.",
|
85
111
|
"$ref": "user.json"
|
86
112
|
}
|
87
113
|
},
|
88
114
|
"milestone": {
|
115
|
+
"description": "Details of the milestone associated with the issue.",
|
89
116
|
"type": ["null", "object"],
|
90
117
|
"properties": {
|
91
118
|
"url": {
|
119
|
+
"description": "URL to retrieve more details about the milestone.",
|
92
120
|
"type": ["null", "string"]
|
93
121
|
},
|
94
122
|
"html_url": {
|
123
|
+
"description": "URL to view the milestone on GitHub.",
|
95
124
|
"type": ["null", "string"]
|
96
125
|
},
|
97
126
|
"labels_url": {
|
127
|
+
"description": "URL to retrieve labels associated with the milestone.",
|
98
128
|
"type": ["null", "string"]
|
99
129
|
},
|
100
130
|
"id": {
|
131
|
+
"description": "Unique identifier for the milestone.",
|
101
132
|
"type": ["null", "integer"]
|
102
133
|
},
|
103
134
|
"node_id": {
|
135
|
+
"description": "Unique identifier for the milestone node.",
|
104
136
|
"type": ["null", "string"]
|
105
137
|
},
|
106
138
|
"number": {
|
139
|
+
"description": "Number of the milestone.",
|
107
140
|
"type": ["null", "integer"]
|
108
141
|
},
|
109
142
|
"state": {
|
143
|
+
"description": "State of the milestone (open/closed).",
|
110
144
|
"type": ["null", "string"]
|
111
145
|
},
|
112
146
|
"title": {
|
147
|
+
"description": "Title of the milestone.",
|
113
148
|
"type": ["null", "string"]
|
114
149
|
},
|
115
150
|
"description": {
|
151
|
+
"description": "Description of the milestone.",
|
116
152
|
"type": ["null", "string"]
|
117
153
|
},
|
118
154
|
"creator": {
|
155
|
+
"description": "User who created the milestone.",
|
119
156
|
"$ref": "user.json"
|
120
157
|
},
|
121
158
|
"open_issues": {
|
159
|
+
"description": "Number of open issues in the milestone.",
|
122
160
|
"type": ["null", "integer"]
|
123
161
|
},
|
124
162
|
"closed_issues": {
|
163
|
+
"description": "Number of closed issues in the milestone.",
|
125
164
|
"type": ["null", "integer"]
|
126
165
|
},
|
127
166
|
"created_at": {
|
167
|
+
"description": "Date and time when the milestone was created.",
|
128
168
|
"type": "string",
|
129
169
|
"format": "date-time"
|
130
170
|
},
|
131
171
|
"updated_at": {
|
172
|
+
"description": "Date and time when the milestone was last updated.",
|
132
173
|
"type": "string",
|
133
174
|
"format": "date-time"
|
134
175
|
},
|
135
176
|
"closed_at": {
|
177
|
+
"description": "Date and time when the milestone was closed.",
|
136
178
|
"type": ["null", "string"],
|
137
179
|
"format": "date-time"
|
138
180
|
},
|
139
181
|
"due_on": {
|
182
|
+
"description": "Date and time when the milestone is due.",
|
140
183
|
"type": ["null", "string"],
|
141
184
|
"format": "date-time"
|
142
185
|
}
|
143
186
|
}
|
144
187
|
},
|
145
188
|
"locked": {
|
189
|
+
"description": "Flag indicating if the issue is locked.",
|
146
190
|
"type": ["null", "boolean"]
|
147
191
|
},
|
148
192
|
"active_lock_reason": {
|
193
|
+
"description": "Reason for the active lock on the issue, if any.",
|
149
194
|
"type": ["null", "string"]
|
150
195
|
},
|
151
196
|
"comments": {
|
197
|
+
"description": "Number of comments on the issue.",
|
152
198
|
"type": ["null", "integer"]
|
153
199
|
},
|
154
200
|
"pull_request": {
|
201
|
+
"description": "Details of a linked pull request, if the issue is a pull request.",
|
155
202
|
"type": ["null", "object"],
|
156
203
|
"properties": {
|
157
204
|
"url": {
|
205
|
+
"description": "URL to retrieve more details about the pull request.",
|
158
206
|
"type": ["null", "string"]
|
159
207
|
},
|
160
208
|
"html_url": {
|
209
|
+
"description": "URL to view the pull request on GitHub.",
|
161
210
|
"type": ["null", "string"]
|
162
211
|
},
|
163
212
|
"diff_url": {
|
213
|
+
"description": "URL to view the diff of the pull request.",
|
164
214
|
"type": ["null", "string"]
|
165
215
|
},
|
166
216
|
"patch_url": {
|
217
|
+
"description": "URL to view the patch of the pull request.",
|
167
218
|
"type": ["null", "string"]
|
168
219
|
},
|
169
220
|
"merged_at": {
|
221
|
+
"description": "Date and time when the pull request was merged.",
|
170
222
|
"type": ["null", "string"],
|
171
223
|
"format": "date-time"
|
172
224
|
}
|
173
225
|
}
|
174
226
|
},
|
175
227
|
"closed_at": {
|
228
|
+
"description": "Date and time when the issue was closed.",
|
176
229
|
"type": ["null", "string"],
|
177
230
|
"format": "date-time"
|
178
231
|
},
|
179
232
|
"created_at": {
|
233
|
+
"description": "Date and time when the issue was created.",
|
180
234
|
"type": "string",
|
181
235
|
"format": "date-time"
|
182
236
|
},
|
183
237
|
"updated_at": {
|
238
|
+
"description": "Date and time when the issue was last updated.",
|
184
239
|
"type": "string",
|
185
240
|
"format": "date-time"
|
186
241
|
},
|
187
242
|
"author_association": {
|
243
|
+
"description": "The association of the author with the issue.",
|
188
244
|
"type": ["null", "string"]
|
189
245
|
},
|
190
246
|
"draft": {
|
247
|
+
"description": "Flag indicating if the issue is a draft.",
|
191
248
|
"type": ["null", "boolean"]
|
192
249
|
},
|
193
250
|
"reactions": {
|
251
|
+
"description": "Reactions to the issue.",
|
194
252
|
"$ref": "reactions.json"
|
195
253
|
},
|
196
254
|
"timeline_url": {
|
255
|
+
"description": "URL to retrieve the timeline of the issue.",
|
197
256
|
"type": ["null", "string"]
|
198
257
|
},
|
199
258
|
"performed_via_github_app": {
|
259
|
+
"description": "Information related to the GitHub App that performed actions on the issue.",
|
200
260
|
"type": ["null", "object"],
|
201
261
|
"properties": {
|
202
262
|
"id": {
|
263
|
+
"description": "Unique identifier for the GitHub app.",
|
203
264
|
"type": ["null", "integer"]
|
204
265
|
},
|
205
266
|
"slug": {
|
267
|
+
"description": "Slug of the GitHub app.",
|
206
268
|
"type": ["null", "string"]
|
207
269
|
},
|
208
270
|
"node_id": {
|
271
|
+
"description": "Unique identifier for the GitHub app node.",
|
209
272
|
"type": ["null", "string"]
|
210
273
|
},
|
211
274
|
"owner": {
|
275
|
+
"description": "User who owns the GitHub app.",
|
212
276
|
"$ref": "user.json"
|
213
277
|
},
|
214
278
|
"name": {
|
279
|
+
"description": "Name of the GitHub app.",
|
215
280
|
"type": ["null", "string"]
|
216
281
|
},
|
217
282
|
"description": {
|
283
|
+
"description": "Description of the GitHub app.",
|
218
284
|
"type": ["null", "string"]
|
219
285
|
},
|
220
286
|
"external_url": {
|
287
|
+
"description": "External URL associated with the GitHub app.",
|
221
288
|
"type": ["null", "string"]
|
222
289
|
},
|
223
290
|
"html_url": {
|
291
|
+
"description": "URL to view the GitHub app on GitHub.",
|
224
292
|
"type": ["null", "string"]
|
225
293
|
},
|
226
294
|
"created_at": {
|
295
|
+
"description": "Date and time when the GitHub app was created.",
|
227
296
|
"type": "string",
|
228
297
|
"format": "date-time"
|
229
298
|
},
|
230
299
|
"updated_at": {
|
300
|
+
"description": "Date and time when the GitHub app was last updated.",
|
231
301
|
"type": "string",
|
232
302
|
"format": "date-time"
|
233
303
|
},
|
234
304
|
"permissions": {
|
305
|
+
"description": "Permissions granted to the GitHub App on the issue.",
|
235
306
|
"type": ["null", "object"],
|
236
307
|
"properties": {
|
237
308
|
"issues": {
|
309
|
+
"description": "Permissions related to issues for the GitHub app.",
|
238
310
|
"type": ["null", "string"]
|
239
311
|
},
|
240
312
|
"metadata": {
|
313
|
+
"description": "Permissions related to metadata for the GitHub app.",
|
241
314
|
"type": ["null", "string"]
|
242
315
|
},
|
243
316
|
"pull_requests": {
|
317
|
+
"description": "Permissions related to pull requests for the GitHub app.",
|
244
318
|
"type": ["null", "string"]
|
245
319
|
},
|
246
320
|
"actions": {
|
321
|
+
"description": "Permissions related to actions for the GitHub app.",
|
247
322
|
"type": ["null", "string"]
|
248
323
|
},
|
249
324
|
"checks": {
|
325
|
+
"description": "Permissions related to checks for the GitHub app.",
|
250
326
|
"type": ["null", "string"]
|
251
327
|
},
|
252
328
|
"contents": {
|
329
|
+
"description": "Permissions related to contents for the GitHub app.",
|
253
330
|
"type": ["null", "string"]
|
254
331
|
},
|
255
332
|
"deployments": {
|
333
|
+
"description": "Permissions related to deployments for the GitHub app.",
|
256
334
|
"type": ["null", "string"]
|
257
335
|
},
|
258
336
|
"discussions": {
|
337
|
+
"description": "Permissions related to discussions for the GitHub app.",
|
259
338
|
"type": ["null", "string"]
|
260
339
|
},
|
261
340
|
"repository_projects": {
|
341
|
+
"description": "Permissions related to repository projects for the GitHub app.",
|
262
342
|
"type": ["null", "string"]
|
263
343
|
},
|
264
344
|
"statuses": {
|
345
|
+
"description": "Permissions related to statuses for the GitHub app.",
|
265
346
|
"type": ["null", "string"]
|
266
347
|
}
|
267
348
|
}
|
268
349
|
},
|
269
350
|
"events": {
|
351
|
+
"description": "List of events performed by the GitHub App on the issue.",
|
270
352
|
"type": "array",
|
271
353
|
"items": {
|
354
|
+
"description": "List of events performed by the GitHub app.",
|
272
355
|
"type": ["null", "string"]
|
273
356
|
}
|
274
357
|
}
|
275
358
|
}
|
276
359
|
},
|
277
360
|
"state_reason": {
|
361
|
+
"description": "Reason for the state of the issue.",
|
278
362
|
"type": ["null", "string"]
|
279
363
|
}
|
280
364
|
}
|
@@ -3,194 +3,256 @@
|
|
3
3
|
"type": "object",
|
4
4
|
"properties": {
|
5
5
|
"login": {
|
6
|
+
"description": "Login username of the organization.",
|
6
7
|
"type": ["null", "string"]
|
7
8
|
},
|
8
9
|
"id": {
|
10
|
+
"description": "Unique identifier of the organization.",
|
9
11
|
"type": ["null", "integer"]
|
10
12
|
},
|
11
13
|
"node_id": {
|
14
|
+
"description": "Node ID of the organization.",
|
12
15
|
"type": ["null", "string"]
|
13
16
|
},
|
14
17
|
"url": {
|
18
|
+
"description": "URL to the organization's API endpoint.",
|
15
19
|
"type": ["null", "string"]
|
16
20
|
},
|
17
21
|
"repos_url": {
|
22
|
+
"description": "URL to fetch repositories of the organization.",
|
18
23
|
"type": ["null", "string"]
|
19
24
|
},
|
20
25
|
"events_url": {
|
26
|
+
"description": "URL to fetch events related to the organization.",
|
21
27
|
"type": ["null", "string"]
|
22
28
|
},
|
23
29
|
"hooks_url": {
|
30
|
+
"description": "URL to manage webhooks for the organization.",
|
24
31
|
"type": ["null", "string"]
|
25
32
|
},
|
26
33
|
"issues_url": {
|
34
|
+
"description": "URL to fetch issues related to the organization.",
|
27
35
|
"type": ["null", "string"]
|
28
36
|
},
|
29
37
|
"members_url": {
|
38
|
+
"description": "URL to fetch members of the organization.",
|
30
39
|
"type": ["null", "string"]
|
31
40
|
},
|
32
41
|
"public_members_url": {
|
42
|
+
"description": "URL to fetch public members of the organization.",
|
33
43
|
"type": ["null", "string"]
|
34
44
|
},
|
35
45
|
"avatar_url": {
|
46
|
+
"description": "URL to the avatar image of the organization.",
|
36
47
|
"type": ["null", "string"]
|
37
48
|
},
|
38
49
|
"description": {
|
50
|
+
"description": "Description of the organization.",
|
39
51
|
"type": ["null", "string"]
|
40
52
|
},
|
41
53
|
"name": {
|
54
|
+
"description": "Name of the organization.",
|
42
55
|
"type": ["null", "string"]
|
43
56
|
},
|
44
57
|
"company": {
|
58
|
+
"description": "Name of the company associated with the organization.",
|
45
59
|
"type": ["null", "string"]
|
46
60
|
},
|
47
61
|
"blog": {
|
62
|
+
"description": "URL to the blog of the organization.",
|
48
63
|
"type": ["null", "string"]
|
49
64
|
},
|
50
65
|
"location": {
|
66
|
+
"description": "Physical location of the organization.",
|
51
67
|
"type": ["null", "string"]
|
52
68
|
},
|
53
69
|
"email": {
|
70
|
+
"description": "Email address of the organization.",
|
54
71
|
"type": ["null", "string"]
|
55
72
|
},
|
56
73
|
"twitter_username": {
|
74
|
+
"description": "Twitter username of the organization.",
|
57
75
|
"type": ["null", "string"]
|
58
76
|
},
|
59
77
|
"is_verified": {
|
78
|
+
"description": "Indicates if the organization is verified.",
|
60
79
|
"type": ["null", "boolean"]
|
61
80
|
},
|
62
81
|
"has_organization_projects": {
|
82
|
+
"description": "Indicates if the organization has projects.",
|
63
83
|
"type": ["null", "boolean"]
|
64
84
|
},
|
65
85
|
"has_repository_projects": {
|
86
|
+
"description": "Indicates if the organization has projects tied to repositories.",
|
66
87
|
"type": ["null", "boolean"]
|
67
88
|
},
|
68
89
|
"public_repos": {
|
90
|
+
"description": "Number of public repositories owned by the organization.",
|
69
91
|
"type": ["null", "integer"]
|
70
92
|
},
|
71
93
|
"public_gists": {
|
94
|
+
"description": "Number of public gists created by the organization.",
|
72
95
|
"type": ["null", "integer"]
|
73
96
|
},
|
74
97
|
"followers": {
|
98
|
+
"description": "Number of followers the organization has.",
|
75
99
|
"type": ["null", "integer"]
|
76
100
|
},
|
77
101
|
"following": {
|
102
|
+
"description": "Number of accounts the organization is following.",
|
78
103
|
"type": ["null", "integer"]
|
79
104
|
},
|
80
105
|
"html_url": {
|
106
|
+
"description": "URL to the organization's profile page.",
|
81
107
|
"type": ["null", "string"]
|
82
108
|
},
|
83
109
|
"created_at": {
|
110
|
+
"description": "Timestamp indicating when the organization was created.",
|
84
111
|
"type": "string",
|
85
112
|
"format": "date-time"
|
86
113
|
},
|
87
114
|
"updated_at": {
|
115
|
+
"description": "Timestamp indicating when the organization was last updated.",
|
88
116
|
"type": "string",
|
89
117
|
"format": "date-time"
|
90
118
|
},
|
91
119
|
"archived_at": {
|
120
|
+
"description": "Timestamp indicating when the organization was archived.",
|
92
121
|
"type": ["null", "string"],
|
93
122
|
"format": "date-time"
|
94
123
|
},
|
95
124
|
"type": {
|
125
|
+
"description": "Type of the organization.",
|
96
126
|
"type": ["null", "string"]
|
97
127
|
},
|
98
128
|
"total_private_repos": {
|
129
|
+
"description": "Total number of private repositories owned by the organization.",
|
99
130
|
"type": ["null", "integer"]
|
100
131
|
},
|
101
132
|
"owned_private_repos": {
|
133
|
+
"description": "Number of private repositories owned by the organization.",
|
102
134
|
"type": ["null", "integer"]
|
103
135
|
},
|
104
136
|
"private_gists": {
|
137
|
+
"description": "Number of private gists created by the organization.",
|
105
138
|
"type": ["null", "integer"]
|
106
139
|
},
|
107
140
|
"disk_usage": {
|
141
|
+
"description": "Disk space used by the organization.",
|
108
142
|
"type": ["null", "integer"]
|
109
143
|
},
|
110
144
|
"collaborators": {
|
145
|
+
"description": "Number of collaborators the organization has.",
|
111
146
|
"type": ["null", "integer"]
|
112
147
|
},
|
113
148
|
"billing_email": {
|
149
|
+
"description": "Email address associated with the organization's billing.",
|
114
150
|
"type": ["null", "string"]
|
115
151
|
},
|
116
152
|
"default_repository_permission": {
|
153
|
+
"description": "Default permission level for new repositories.",
|
117
154
|
"type": ["null", "string"]
|
118
155
|
},
|
119
156
|
"members_can_create_repositories": {
|
157
|
+
"description": "Indicates if members can create repositories.",
|
120
158
|
"type": ["null", "boolean"]
|
121
159
|
},
|
122
160
|
"two_factor_requirement_enabled": {
|
161
|
+
"description": "Indicates if two-factor authentication is required for the organization.",
|
123
162
|
"type": ["null", "boolean"]
|
124
163
|
},
|
125
164
|
"members_allowed_repository_creation_type": {
|
165
|
+
"description": "Type of repositories members are allowed to create.",
|
126
166
|
"type": ["null", "string"]
|
127
167
|
},
|
128
168
|
"members_can_create_public_repositories": {
|
169
|
+
"description": "Indicates if members can create public repositories.",
|
129
170
|
"type": ["null", "boolean"]
|
130
171
|
},
|
131
172
|
"members_can_create_private_repositories": {
|
173
|
+
"description": "Indicates if members can create private repositories.",
|
132
174
|
"type": ["null", "boolean"]
|
133
175
|
},
|
134
176
|
"members_can_create_internal_repositories": {
|
177
|
+
"description": "Indicates if members can create internal repositories.",
|
135
178
|
"type": ["null", "boolean"]
|
136
179
|
},
|
137
180
|
"members_can_create_pages": {
|
181
|
+
"description": "Indicates if members can create pages.",
|
138
182
|
"type": ["null", "boolean"]
|
139
183
|
},
|
140
184
|
"members_can_fork_private_repositories": {
|
185
|
+
"description": "Indicates if members can fork private repositories.",
|
141
186
|
"type": ["null", "boolean"]
|
142
187
|
},
|
143
188
|
"web_commit_signoff_required": {
|
189
|
+
"description": "Indicates if web commit signoff is required for the organization.",
|
144
190
|
"type": ["null", "boolean"]
|
145
191
|
},
|
146
192
|
"members_can_create_public_pages": {
|
193
|
+
"description": "Indicates if members can create public pages.",
|
147
194
|
"type": ["null", "boolean"]
|
148
195
|
},
|
149
196
|
"members_can_create_private_pages": {
|
197
|
+
"description": "Indicates if members can create private pages.",
|
150
198
|
"type": ["null", "boolean"]
|
151
199
|
},
|
152
200
|
"plan": {
|
201
|
+
"description": "Information about the subscription plan of the organization.",
|
153
202
|
"type": ["null", "object"],
|
154
203
|
"properties": {
|
155
204
|
"name": {
|
205
|
+
"description": "Name of the organization's plan.",
|
156
206
|
"type": ["null", "string"]
|
157
207
|
},
|
158
208
|
"space": {
|
209
|
+
"description": "Space available in the organization's plan.",
|
159
210
|
"type": ["null", "integer"]
|
160
211
|
},
|
161
212
|
"private_repos": {
|
213
|
+
"description": "Number of private repositories allowed in the organization's plan.",
|
162
214
|
"type": ["null", "integer"]
|
163
215
|
},
|
164
216
|
"filled_seats": {
|
217
|
+
"description": "Number of filled seats in the organization's plan.",
|
165
218
|
"type": ["null", "integer"]
|
166
219
|
},
|
167
220
|
"seats": {
|
221
|
+
"description": "Total number of seats in the organization's plan.",
|
168
222
|
"type": ["null", "integer"]
|
169
223
|
}
|
170
224
|
}
|
171
225
|
},
|
172
226
|
"advanced_security_enabled_for_new_repositories": {
|
227
|
+
"description": "Indicates if advanced security features are enabled for new repositories within the organization.",
|
173
228
|
"type": ["null", "boolean"]
|
174
229
|
},
|
175
230
|
"dependabot_alerts_enabled_for_new_repositories": {
|
231
|
+
"description": "Indicates if dependabot alerts are enabled for new repositories within the organization.",
|
176
232
|
"type": ["null", "boolean"]
|
177
233
|
},
|
178
234
|
"dependabot_security_updates_enabled_for_new_repositories": {
|
235
|
+
"description": "Indicates if dependabot security updates are enabled for new repositories within the organization.",
|
179
236
|
"type": ["null", "boolean"]
|
180
237
|
},
|
181
238
|
"dependency_graph_enabled_for_new_repositories": {
|
239
|
+
"description": "Indicates if dependency graph is enabled for new repositories within the organization.",
|
182
240
|
"type": ["null", "boolean"]
|
183
241
|
},
|
184
242
|
"secret_scanning_enabled_for_new_repositories": {
|
243
|
+
"description": "Indicates if secret scanning is enabled for new repositories within the organization.",
|
185
244
|
"type": ["null", "boolean"]
|
186
245
|
},
|
187
246
|
"secret_scanning_push_protection_enabled_for_new_repositories": {
|
247
|
+
"description": "Indicates if secret scanning push protection is enabled for new repositories.",
|
188
248
|
"type": ["null", "boolean"]
|
189
249
|
},
|
190
250
|
"secret_scanning_push_protection_custom_link_enabled": {
|
251
|
+
"description": "Indicates if custom link for secret scanning push protection is enabled.",
|
191
252
|
"type": ["null", "boolean"]
|
192
253
|
},
|
193
254
|
"secret_scanning_push_protection_custom_link": {
|
255
|
+
"description": "Custom link for secret scanning push protection.",
|
194
256
|
"type": ["null", "string"]
|
195
257
|
}
|
196
258
|
}
|