UNPKG

478 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 "$default": {
11 "$source": "argv",
12 "index": 0
13 }
14 },
15 "author": {
16 "type": "string",
17 "description": "Author for the new schematic."
18 }
19 },
20 "required": []
21}