{
    "$schema": "http://json-schema.org/schema",
    "$id": "super-ui-component",
    "title": "Super UI library Component Schema",
    "type": "object",
    "properties": {
        "name": {
            "description": "The name of the component",
            "type": "string"
        },
        "path": {
            "description": "Where should be created the file",
            "type": "string",
            "format": "path",
            "x-prompt": "Where should be created the file?",
            "default": "src/app"
        }
    },
    "required": []
}
