func checkForNulls(appParams generic.Map) (errs ManifestErrors) { for key, _ := range manifestKeys { if key == "command" { continue } if appParams.IsNil(key) { errs = append(errs, errors.New(fmt.Sprintf("%s should not be null", key))) } } return }