{
  "$schema": "http://json-schema.org/schema",
  "$id": "SchematicsSimpleComponent",
  "title": "Simple Component",
  "type": "object",
  "properties": {
    "controlValueAccessor": {
      "type": "boolean",
      "description": "Wether to implements the control value accessor interface",
      "default": true
    },
    "name": {
      "description": "The name of the component.",
      "type": "string"
    },
    "module": {
      "description": "The module of the component.",
      "type": "string"
    },
    "path": {
      "type": "string",
      "format": "path",
      "description": "The path to create the component.",
      "visible": false
    },
    "project": {
      "type": "string",
      "description": "The name of the project.",
      "$default": {
        "$source": "projectName"
      }
    },
    "standalone": {
      "type": "boolean",
      "description": "Whether the component is standalone or not",
      "default": true
    }
  },
  "required": ["name"]
}
