{
  "$schema": "http://json-schema.org/schema",
  "id": "Component",
  "title": "Component Schema",
  "type": "object",
  "properties": {
    "path": {
      "description": "The path to create the component.",
      "type": "string",
      "format": "path",
      "visible": false
    },
    "name": {
      "description": "The name of the component.",
      "type": "string",
      "$default": {
        "$source": "argv",
        "index": 0
      },
      "x-prompt": "What name would you like to use for the component?"
    },
    "prefix": {
      "description": "The prefix to apply to generated selectors.",
      "type": "string",
      "format": "html-selector",
      "alias": "p"
    }
  },
  "required": [
    "name"
  ]
}