function validateInputs(data, scope) {
    const invalids = [];

    data.groups[0].inputs.forEach((dataInput) => {
        const matchInput = scope.Input.find((simulatorInput) => simulatorInput.label === dataInput.label);