summaryrefslogtreecommitdiff
path: root/services/github/repository.json
blob: 85c524685383c355e8ce1b5df32cec51b6c3c4d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
{
   "base_url" : "http://github.com/api/v2/",
   "version" : "0.3",
   "methods" : {
      "repo_search" : {
         "path" : "/:format/repos/search/:q",
         "method" : "GET",
         "required_params" : [
            "format",
            "q"
         ],
         "optional_params" : [
            "start_page",
            "language"
         ]
      },
      "get_repo_info" : {
         "path" : "/:format/repos/:user/:repo",
         "method" : "GET",
         "required_params" : [
            "format",
            "user",
            "repo"
         ]
      },
      "update_repo" : {
         "path" : "/:format/repos/show/:user/:repo",
         "method" : "POST",
         "form-data" : {
            "values[description]"   : ":description",
            "values[homepage]"      : ":homepage",
            "values[has_wiki]"      : ":has_wiki",
            "values[has_issues]"    : ":has_issues",
            "values[has_download]"  : ":has_download"
         },
         "required_params" : [
            "format",
            "user",
            "repo"
         ],
         "optional_params" : [
            "description",
            "homepage",
            "has_wiki",
            "has_issues",
            "has_download"
         ],
         "authentication" : true
      },
      "get_repos" : {
         "path" : "/:format/repos/show/:user",
         "method" : "GET",
         "required_params" : [
            "format",
            "user"
         ]
      },
      "watch" : {
         "path" : "/:format/repos/watch/:user/:repo",
         "method" : "GET",
         "required_params" : [
            "format",
            "user",
            "repo"
         ],
         "authentication" : true
      },
      "unwatch" : {
         "path" : "/:format/repos/unwatch/:user/:repo",
         "method" : "GET",
         "required_params" : [
            "format",
            "user",
            "repo"
         ],
         "authentication" : true
      },
      "fork" : {
         "path" : "/:format/repos/fork/:user/:repo",
         "method" : "GET",
         "required_params" : [
            "format",
            "user",
            "repo"
         ],
         "authentication" : true
      },
      "create_repo" : {
         "path" : "/:format/repos/create",
         "method" : "POST",
         "form-data" : {
            "name"         : ":name",
            "description"  : ":description",
            "homepage"     : ":homepage",
            "public"       : ":public"
         },
         "required_params" : [
            "format",
            "name"
         ],
         "optional_params" : [
            "description",
            "homepage",
            "public"
         ],
         "authentication" : true
      },
      "delete_repo" : {
         "path" : "/:format/repos/delete/:user/:repo",
         "method" : "POST",
         "required_params" : [
            "format",
            "user",
            "repo"
         ],
         "authentication" : true
      },
      "set_private" : {
         "path" : "/:format/repos/set/private/:user/:repo",
         "method" : "POST",
         "required_params" : [
            "format",
            "user",
            "repo"
         ],
         "authentication" : true
      },
      "set_public" : {
         "path" : "/:format/repos/set/public/:user/:repo",
         "method" : "POST",
         "required_params" : [
            "format",
            "user",
            "repo"
         ],
         "authentication" : true
      },
      "get_repo_keys" : {
         "path" : "/:format/repos/keys/:user/:repo",
         "method" : "GET",
         "required_params" : [
            "format",
            "user",
            "repo"
         ],
         "authentication" : true
      },
      "add_repo_key" : {
         "path" : "/:format/repos/key/:user/:repo/add",
         "method" : "POST",
         "form-data" : {
            "title" :   ":title",
            "key" :     ":key"
         },
         "required_params" : [
            "format",
            "user",
            "repo",
            "title",
            "key"
         ],
         "authentication" : true
      },
      "remove_repo_key" : {
         "path" : "/:format/repos/key/:user/:repo/remove",
         "method" : "POST",
         "form-data" : {
            "id" : ":id"
         },
         "required_params" : [
            "format",
            "user",
            "repo",
            "id"
         ],
         "authentication" : true
      },
      "get_collaborators" : {
         "path" : "/:format/repos/show/:user/:repo/collaborators",
         "method" : "GET",
         "required_params" : [
            "format",
            "user",
            "repo"
         ],
         "authentication" : true
      },
      "add_collaborator" : {
         "path" : "/:format/repos/collaborators/:user/:repo/add/:collaborator",
         "method" : "POST",
         "required_params" : [
            "format",
            "user",
            "repo",
            "collaborator"
         ],
         "authentication" : true
      },
      "remove_collaborator" : {
         "path" : "/:format/repos/collaborators/:user/:repo/remove/:collaborator",
         "method" : "POST",
         "required_params" : [
            "format",
            "user",
            "repo",
            "collaborator"
         ],
         "authentication" : true
      },
      "get_pushable" : {
         "path" : "/:format/repos/pushable",
         "method" : "GET",
         "required_params" : [
            "format"
         ],
         "authentication" : true
      },
      "get_contributors" : {
         "path" : "/:format/repos/show/:user/:repo/contributors",
         "method" : "GET",
         "required_params" : [
            "format",
            "user",
            "repo"
         ]
      },
      "get_anon_contributors" : {
         "path" : "/:format/repos/show/:user/:repo/contributors/anon",
         "method" : "GET",
         "required_params" : [
            "format",
            "user",
            "repo"
         ]
      },
      "get_watchers" : {
         "path" : "/:format/repos/show/:user/:repo/watchers",
         "method" : "GET",
         "required_params" : [
            "format",
            "user",
            "repo"
         ]
      },
      "get_network" : {
         "path" : "/:format/repos/show/:user/:repo/network",
         "method" : "GET",
         "required_params" : [
            "format",
            "user",
            "repo"
         ]
      },
      "get_languages" : {
         "path" : "/:format/repos/show/:user/:repo/languages",
         "method" : "GET",
         "required_params" : [
            "format",
            "user",
            "repo"
         ]
      },
      "get_tags" : {
         "path" : "/:format/repos/show/:user/:repo/tags",
         "method" : "GET",
         "required_params" : [
            "format",
            "user",
            "repo"
         ]
      },
      "get_branches" : {
         "path" : "/:format/repos/show/:user/:repo/branches",
         "method" : "GET",
         "required_params" : [
            "format",
            "user",
            "repo"
         ]
      }
   },
   "expected_status" : [ 200 ],
   "name" : "GitHub",
   "authority" : "http://github.com/SPORE",
   "meta" : {
      "documentation" : "http://develop.github.com/",
      "module" : "repository"
   }
}