style.sort();
projectName = stringInputs.getField("name");
projectName.validator(new NewProjectNameValidator(projectName.getVariable()));
location = new LiveVariable<String>(ProjectLocationSection.getDefaultProjectLocation(projectName.getValue()));
locationValidator = new NewProjectLocationValidator("Location", location, projectName.getVariable());
Assert.isNotNull(projectName, "The service at "+JSON_URL+" doesn't specify a 'name' text input");
UrlMaker computedUrl = new UrlMaker(baseUrl);
for (FieldModel<String> param : stringInputs) {
computedUrl.addField(param);