{
    "$schema": "http://json-schema.org/schema",
    "$id": "SchematicsNxLoopbackApp",
    "title": "Nx Loopback Application Options Schema",
    "type": "object",
    "properties": {
        "name": {
            "description": "The name of the application.",
            "type": "string",
            "$default": {
                "$source": "argv",
                "index": 0
            },
            "x-prompt": "What name would you like to use for the loopback application?"
        },
        "skipFormat": {
            "description": "Skip formatting files",
            "type": "boolean",
            "default": false
        },
        "tags": {
            "type": "string",
            "description": "Add tags to the application (used for linting)"
        }
    },
    "required": [
        "name"
    ]
}