summaryrefslogtreecommitdiff
path: root/services/github/repository.json
blob: 78d17b4c7282dcaa56a5e23a4f8bd5afcdd598a1 (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
{
   "base_url" : "http://github.com/api/v2/",
   "version" : "0.2",
   "methods" : {
      "unwatch_repo" : {
         "required_params" : [
            "format",
            "user",
            "repo"
         ],
         "path" : "/:format/repos/unwatch/:user/:repo",
         "method" : "GET",
         "authentication" : true
      },
      "repos_info" : {
         "required_params" : [
            "format",
            "user",
            "repo"
         ],
         "path" : "/:format/repos/:user/:repo",
         "method" : "GET"
      },
      "fork_repos" : {
         "required_params" : [
            "format",
            "user",
            "repo"
         ],
         "path" : "/:format/repos/fork/:user/:repo",
         "method" : "GET",
         "authentication" : true
      },
      "list_all_repos" : {
         "required_params" : [
            "format",
            "user",
            "repo"
         ],
         "path" : "/:format/repos/show/:user",
         "method" : "GET"
      },
      "repos_search" : {
         "required_params" : [
            "format",
            "q"
         ],
         "path" : "/:format/repos/search/:q",
         "method" : "GET"
      },
      "watch_repo" : {
         "required_params" : [
            "format",
            "user",
            "repo"
         ],
         "path" : "/:format/repos/watch/:user/:repo",
         "method" : "GET",
         "authentication" : true
      },
      "create_repo" : {
         "required_params" : [
            "format"
         ],
         "path" : "/:format/repos/create",
         "method" : "POST",
         "authentication" : true
      },
      "set_repo_info" : {
         "required_params" : [
            "format",
            "user",
            "repo"
         ],
         "path" : "/:format/repos/show/:user/:repo",
         "method" : "POST",
         "authentication" : true
      }
   },
   "name" : "GitHub",
   "authority" : "http://github.com/SPORE",
   "meta" : {
      "documentation" : "http://develop.github.com/"
   }
}