{
  "$schema": "http://json-schema.org/schema",
  "$id": "AngularDjango2Component",
  "title": "angular-django2 component schematic",
  "type": "object",
  "additionalProperties": true,
  "properties": {
    "name": {
      "type": "string",
      "description": "The component name."
    },
    "path": {
      "type": "string",
      "format": "path",
      "description": "The destination path."
    },
    "project": {
      "type": "string",
      "description": "The target project."
    },
    "standalone": {
      "type": "boolean",
      "default": true
    },
    "changeDetection": {
      "type": "string",
      "default": "OnPush"
    }
  },
  "required": ["name"]
}
