schema.json (637B)
1 { 2 "$schema": "http://json-schema.org/schema", 3 "$id": "Puppeteer", 4 "title": "Puppeteer E2E Schema", 5 "type": "object", 6 "properties": { 7 "name": { 8 "type": "string", 9 "alias": "n", 10 "$default": { 11 "$source": "argv", 12 "index": 0 13 }, 14 "x-prompt": "Name for spec to be created:" 15 }, 16 "project": { 17 "type": "string", 18 "$default": { 19 "$source": "argv", 20 "index": 1 21 }, 22 "alias": "p" 23 }, 24 "route": { 25 "type": "string", 26 "$default": { 27 "$source": "argv", 28 "index": 1 29 }, 30 "alias": "r" 31 } 32 }, 33 "required": [] 34 }