-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathschema.json
106 lines (106 loc) · 3.04 KB
/
schema.json
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
{
"type":"array",
"title":"Array that contains all repository-objects.",
"items":{
"type":"object",
"title":"The repository class.",
"required":[
"url",
"continuous_integration",
"rosinstall",
"contributors",
"branch_count",
"changelog",
"packages",
"cpplint_errors",
"last_update",
"readme"
],
"properties":{
"open_issues":{
"type":"integer",
"title":"Number of open issues."
},
"url":{
"type":"string",
"title":"The origin-url of the repository"
},
"continuous_integration":{
"type":"boolean",
"title":"Is there a file present that suggests continuous integration is set up?"
},
"rosinstall":{
"type":"boolean",
"title":"Is there a rosinstall file present?"
},
"open_pull_requests":{
"type":"integer",
"title":"Number of open pull-requests"
},
"contributors":{
"type":"integer",
"title":"Number of contributors"
},
"branch_count":{
"type":"integer",
"title":"Number of branches"
},
"changelog":{
"type":"boolean",
"title":"Is there a CHANGELOG file present?"
},
"issue_durations":{
"type":"array",
"title":"Issue durations in seconds.",
"items":{
"type":"number"
}
},
"packages":{
"type":"array",
"title":"Packages contained in this repository.",
"items":{
"type":"object",
"title":"The package-class.",
"required":[
"name",
"dependencies"
],
"properties":{
"name":{
"type":"string",
"title":"The package's name"
},
"dependencies":{
"type":"array",
"title":"The package's dependencies (package names of dependencies)",
"items":{
"type":"string"
}
}
}
}
},
"closed_pull_requests":{
"type":"integer",
"title":"Number of closed pull-requests"
},
"stars":{
"type":"integer",
"title":"Number of github-stars/bitbucket-watchers"
},
"cpplint_errors":{
"type":"integer",
"title":"Number of cpplint errors."
},
"last_update":{
"type":"number",
"title":"Time of last repository commit as UNIX-Timestamp"
},
"readme":{
"type":"boolean",
"title":"Is there a readme-file present?"
}
}
}
}