{
  "$schema": "http://json-schema.org/schema",
  "$id": "PopperComponentSchema",
  "title": "Popper Component Schema",
  "type": "object",
  "properties": {
    "name": {
      "description": "The name of the popper component.",
      "type": "string"
    },
    "path": {
      "type": "string",
      "format": "path",
      "description": "The path to create the popper component.",
      "visible": false
    },
    "project": {
      "type": "string",
      "description": "The name of the project.",
      "$default": {
        "$source": "projectName"
      }
    }
   },
  "required": [
    "name"
  ]
}
