{
  "$schema": "http://json-schema.org/schema",
  "id": "SchematicsAngularInterface",
  "title": "Angular Interface Options Schema",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the interface."
    },
    "path": {
      "type": "string",
      "format": "path",
      "description": "The path to create the interface.",
      "default": "app",
      "visible": false
    },
    "sourceDir": {
      "type": "string",
      "format": "path",
      "description": "The path of the source directory.",
      "default": "src",
      "visible": false
    },
    "appRoot": {
      "type": "string",
      "format": "path",
      "description": "The root of the application.",
      "visible": false
    },
    "prefix": {
      "type": "string",
      "default": "",
      "description": "Specifies the prefix to use."
    },
    "type": {
      "type": "string",
      "description": "Specifies the type of interface.",
      "default": ""
    }
  },
  "required": [
    "name"
  ]
}
