UNPKG

409 BJSONView Raw
1{
2 "$schema": "http://json-schema.org/draft-07/schema",
3 "$id": "SchematicsSchematicSchema",
4 "title": "Schematic Options Schema",
5 "type": "object",
6 "properties": {
7 "name": {
8 "type": "string",
9 "description": "The package name for the new schematic."
10 },
11 "author": {
12 "type": "string",
13 "description": "Author for the new schematic."
14 }
15 },
16 "required": ["name"]
17}