{
    "$schema": "http://json-schema.org/schema",
    "id": "LifeSciencesPortalSchematicsNew",
    "type": "object",
    "properties": {
        "name": {
            "description": "The name of the new project.",
            "type": "string"
        },
        "portalType": {
            "description": "The type of the project.",
            "type": "string",
            "default": "basic"
        },
        "sitemap": {
            "description": "Whether to add a sitemap",
            "type": "boolean",
            "default": false
        },
        "internalCms": {
            "description": "Whether to add an internal lightweight CMS",
            "type": "boolean",
            "default": false
        },
        "semanticVersioning": {
            "description": "Whether to add semantic versioning",
            "type": "boolean",
            "default": false
        }
    },
    "required": [
        "name"
    ]
}
