{
    "$schema": "http://json-schema.org/schema",
    "$id": "ng-add",
    "title": "ng-add schematic",
    "type": "object",
    "properties": {
        "project": {
            "description": "Name of the Angular project",
            "type": "string",
            "$default": {
                "$source": "projectName"
            }
        },
        "projectName": {
            "x-prompt": "Name of the project in Sentry",
            "description": "Sentry project name",
            "type": "string",
            "default": "Sentry Project Name"
        },
        "dsnUrl": {
            "x-prompt": "Data Source Name (DSN) url",
            "description": "Sentry project dsn url",
            "type": "string",
            "default": "https://sentry-dsn-url"
        }
    },
    "required": [
        "projectName",
        "dsnUrl"
    ],
    "additionalProperties": false
}
