-
Notifications
You must be signed in to change notification settings - Fork 45
/
schema.dependencies.json
37 lines (37 loc) · 1.16 KB
/
schema.dependencies.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
{
"type": "object",
"properties": {
"cranPackages": {
"type": "array",
"description": "An array of the Cran packages required for the custom R visual script to operate",
"items": {
"$ref": "#/definitions/cranPackage"
}
}
},
"definitions": {
"cranPackage": {
"type": "object",
"description": "cranPackage - Defines the name and displayName of a required Cran package",
"properties": {
"name": {
"type": "string",
"description": "The name for this Cran package"
},
"displayName": {
"type": "string",
"description": "The name for this Cran package that is shown to the user"
},
"url": {
"type": "string",
"description": "A url for package documentation in Cran website"
}
},
"required": [
"name",
"url"
],
"additionalProperties": false
}
}
}