forked from vcsaturninus/builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
developer.schema.json
31 lines (31 loc) · 1.01 KB
/
developer.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
{
"$schema" : "http://json-schema.org/draft-07/schema#",
"title" : "Schema for basic development config",
"description": "Allows for a basic json file that defines additional/overriding mounts and environment variables and such",
"type" : "object",
"properties" : {
"title": {
"type": "string",
"description": "a title for the instance"
},
"description": {
"type": "string",
"description": "a description of the instance itself"
},
"schema": {
"type": "string",
"description": "relative path to the schema to use (this schema)"
},
"environment": {
"$ref": "./environment.schema.json"
},
"mounts":{
"$ref": "./mounts.schema.json"
}
},
"required" : [
"environment",
"mounts"
],
"additionalProperties" : false
}