-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpcb.schema.json
More file actions
30 lines (30 loc) · 1.06 KB
/
pcb.schema.json
File metadata and controls
30 lines (30 loc) · 1.06 KB
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": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/EffectiveRange/devc-pcb/main/pcb.schema.json",
"title": "PCBProj",
"description": "A data object describing a KiCAD based project for CI automation",
"type": "object",
"properties": {
"version": {
"description": "The current version number of the project",
"type": "string",
"$ref": "https://raw.githubusercontent.com/microsoft/json-schemas/main/spfx/semver.schema.json"
},
"name": {
"description": "Name of the project",
"type": "string"
},
"layers": {
"type": "array",
"description": "Extra layers to consider on top of the defaults for a 2 layer PCB: ['F.Cu','B.Cu','F.Paste','B.Paste','F.Mask','B.Mask','F.Silkscreen','B.Silkscreen','Edge.Cuts']",
"items": {
"type": "string"
},
"uniqueItems": true
}
},
"required": [
"name",
"version"
]
}