{
    "name": "Generic Business Problem",
    "optimize": "profit",
    "opType": "max",
    "constraints": {
        "size": {
            "max": 2400
        },
        "units": {
            "min": 50
        }
    },
    "variables": {
        "large": {
            "size": 60,
            "units": 1,
            "profit": 250
        },
        "small": {
            "size": 40,
            "units": 1,
            "profit": 150
        }
    },
    "expects": {
        "feasible": true,
        "large": 20,
        "small": 30,
        "result": 9500
    }
}
