{
  "$schema": "http://json-schema.org/schema",
  "id": "StoreSchematics",
  "title": "Hello Options",
  "type": "object",
  "description": "Store Schematics",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name",
      "$default": {
        "$source": "argv",
        "index": 0
      },
      "x-prompt": "name?"
    },
    "project": {
      "type": "string",
      "description": "The name of the project.",
      "$default": {
        "$source": "projectName"
      }
    },
    "path": {
      "type": "string",
      "format": "path",
      "description": "The path to create the store service.",
      "visible": false
    }
  },
  "required": ["name"]
}