-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.json
33 lines (33 loc) · 1.02 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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "r-universe packages.json",
"description": "A packages.json file controlling the contents of your r-universe",
"type": "array",
"items": {
"type": "object",
"properties": {
"package": {
"description": "The name of the R package",
"type": "string"
},
"url": {
"description": "The URL to the git repository with the package source code",
"type": "string",
"format": "uri"
},
"subdir": {
"description": "A subfolder of the repository containing the R package",
"type": "string"
},
"branch": {
"description": "The branch from which the package should be built",
"type": "string"
},
"display_website": {
"description": "Should this package be displayed on the epiforecasts.io website?",
"type": "boolean"
}
},
"required": ["package", "url"]
}
}