forked from nathanlesage/cheatsheet-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild-schema.json
More file actions
30 lines (30 loc) · 811 Bytes
/
build-schema.json
File metadata and controls
30 lines (30 loc) · 811 Bytes
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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"fileMatch": ["cheatsheet-build.yaml"],
"$id": "https://github.com/senz/cheatsheet-generator",
"type": "object",
"properties": {
"include": {
"type": "array",
"items": {
"type": "object",
"properties": {
"config": {
"description": "Path to the YAML config file.",
"type": "string"
},
"config-name": {
"description": "Human readable name of the config file.",
"type": "string"
},
"artifact-name": {
"description": "Name of the artifact to be created by ci.",
"type": "string"
}
},
"required": ["config", "config-name"]
}
}
},
"required": ["include"]
}