forked from projectatomic/nulecule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.json
29 lines (28 loc) · 1.33 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
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Schema",
"version": "0.0.2",
"description": "The Container Application specification is a project to describe 'an Application' that is composed of a set of dependent Container Applications (containerapp). The Container Application specification defines a set of files required to describe such a containerapp. These files can then be used by other tools to deploy a containerapp. Developers may use other tools to generate most of the required containerapp files. Additional utilities can also take advantage of the resulting files, such as testing tools.",
"required": [ "id", "specversion", "graph" ],
"properties": {
"id": {
"description": "The machine readable id of the Container Application.",
"type": "string",
"default": "null"
},
"specversion": {
"description": "The semantic version string of the Container Application Specification used to describe the app. The value SHOULD be '0.0.2'.",
"type": "string",
"default": "0.0.2"
},
"metadata": {
"$ref": "file:metadata.json"
},
"graph": {
"$ref": "file:graph.json"
},
"requirements": {
"$ref": "file:requirement.json"
}
}
}