UNPKG

308 BJSONView Raw
1{
2 "$schema": "http://json-schema.org/draft-07/schema",
3 "$id": "MyFullSchematicsSchema",
4 "title": "My Full Schematics Schema",
5 "type": "object",
6 "properties": {
7 "index": {
8 "type": "number",
9 "default": 1
10 },
11 "name": {
12 "type": "string"
13 }
14 },
15 "required": ["name"]
16}