vote up 18 vote down star
5

In a situation where code ownership was not mentioned and no contracts were signed who would you assume owns the code? The company or the freelancer? If it was taken to court is there some kind of legal precedent where it goes to one party if nothing was said?

flag

14 Answers

vote up 12 vote down check

I Am Not a Lawyer, But …

There's a big difference between a case where both parties agree that there was no contract, and one where the parties disagree about the existence or substance of a contract.

Disputed Contract

An oral contract can be just as valid as a written contract. The respective rights of the company and the developer depend on the contract that is made, oral or written.

Most companies are in a better position to litigate than most individual developers. If the developer believes that the (oral) contract does not grant a license to the company to continue using the code, he can sue. This will be costly for him (since in the US, unlike most countries, each party pays its own legal fees, win or lose). If it comes down to a question of facts, I think (as a hopefully reasonable person myself) most people would find it hard to believe that a software license was not part of the company's consideration under the contract.

At the same time, if it comes down to a question of facts, it may be difficult for the company to establish that they have an exclusive license, that would prevent the developer from selling the code to competitors, using it himself, etc.

Of course, much of this litigious unpleasantness could have been avoided if they had only written the contract! This is a good reminder that we work with a legal system, not a justice system. Get it writing!

No Contract

According to the US copyright act, if a developer is employed by the company to create this work, the company is considered to be the author. This US government circular explains the principle of "work for hire" in a straightforward way. Since there was no written agreement, the key is whether the developer is considered an "employee" in a sense somewhat different than its usual one. The following factors, while not exhaustive, characterize an "employee" under the copyright act:

  1. Control by the employer over the work (e.g., the employer may determine how the work is done, has the work done at the employer’s location, and provides equipment or other means to create work)
  2. Control by employer over the employee (e.g., the employer controls the employee’s schedule in creating work, has the right to have the employee perform other assignments, determines the method of payment, and/or has the right to hire the employee’s assistants)
  3. Status and conduct of employer (e.g., the employer is in business to produce such works, provides the employee with benefits, and/or withholds tax from the employee’s payment)

So, it comes down to how "freelance" the developer was.

link|flag
vote up 3 vote down

In Canada, if the freelancer is considered to be an external company, then the code intellectual property belongs to him. If the freelancer could be considered like an employee of your company, then the code belongs to your company.

This is different in the US.

link|flag
This is in the US, but that helps. – Paolo Bergantino Sep 21 '08 at 19:34
vote up 0 vote down

Did they pay him for the work?

I believe this varies by state, and IANAL but the code typically resides with the person who writes it until they assign it to someone else. Except... if they paid for it, they have some expectation that it is theirs.

Obviously they need a lawyer. Its probably just a consult.

link|flag
vote up 5 vote down

This is an old article but might still be valid from a legal point of view:

http://www.channelregister.co.uk/2005/11/10/outlaw_consultant_software/

And here's another article:

http://www.kelek.com/freelance/ownership.html

link|flag
vote up 3 vote down

Obviously no one can give specific legal advice on your particular situation without getting a full briefing on the facts of the particular case - everyone involved should consult a lawyer who knows about software an intellectual property. This is something that comes up more often than you might think and this is one of those cases that the law doesn’t necessary do what common sense would suggest - if there is no contract (written or oral), at least as the copyright rights in the code, the result (in the US) is pretty clear: the freelancer owns the code and the company has, at most, some kind of hazy implied license.

When bringing someone in on a contract basis (i.e. not as an employee) it is always important to get a written contract that addresses this issue.

link|flag
A work for hire is owned by the party that commissioned the work under US copyright law. – sylvarking Sep 21 '08 at 20:37
Only if it is in one of the categories defined in the copyright statute. Software is not listed, and so your comment is incorrect for software (though true for some other items) This was decided by US Supreme Court in 1989. – Will M Sep 21 '08 at 20:40
You're right, but only if the worker is not considered an "employee," which depends not on what he called himself, but the manner in which the work was performed and managed. – sylvarking Sep 21 '08 at 20:55
Agree. And there are some close cases, though it is usually easy to tell the difference between an employee and a contractor. – Will M Sep 21 '08 at 21:03
vote up 0 vote down

Depends of contract, but in most of case company have all rights on the code.

link|flag
vote up 0 vote down

Your situation is sticky because there is no written contract, but I think a court would have a hard time accepting that the freelancer wrote the code for himself while being paid by your company. That said, it's possible he may still retain some sort of copyright that would allow him to redistribute or sell the code to a third party. However, a court would most likely determine that it was a work for hire, and that the company owns it in full.

link|flag
vote up 0 vote down

The best idea is to consult a lawyer for sure.

Whether they own the code or not could possibly simply depend on how the verbal contract (it is still a contract) was made. That is: Did they pay the freelancer for producing the code for this project or was he paid for giving the company the complete product and source? The difference is small, but could be juristically important.

link|flag
vote up 1 vote down

I would suggest getting real legal advice. From my understanding, work created "for hire" is owned by the customer ("your company"). This should always always always be agreed upon before work is started and way before money is exchanged for the work.

Thankfully, if it is on your webserver you can archive a copy of it and although you can't modify it you can keep what you have paid for.

link|flag
vote up 3 vote down

This would depend on which country you are in.

link|flag
vote up 3 vote down

Some answers mentions “work for hire.” It is important to note that under US copyright law, “work for hire” only applies to employees acting within the scope of their employment and to a very specific list of types of copyrighted materials, which does not include software. In a non-employment circumstance (i.e. freelance) in the absence of a contract, the party commissioning the work will NOT own the copyright, the freelancer will.

link|flag
vote up 0 vote down

A good resource: http://www.1099.com/home.html Trust me on this, its always BEST to consult an attorney, have a good contract written up and agreed to, and then hope that things go off without an hitch. Always stay in touch with the business/legal end of things.

link|flag
vote up 2 vote down

In my experience I've often written those rules into the contract itself.

If I'm coming on board to achieve a particular solution or task I may have code which I would like to use to speed up the project timeline, or enhance the overall stability and effectiveness of the application - in which case I stipulate that I will be contributing some personal and/or open source cods to the project, of which belongs to said license (i.e. GNU, BSD etc). Therefore, any changes/amendments I make to my code within the contract time period I can take along with me, since the license dictates that it's essentially open source.

However, I should stipulate that this setup only really works on projects where i'm the sole developer. When working with clients/companies in a team environment (i.e. i'm just writing a fuse in the fusebox) they request that I don't use my libraries which mean that all intellectual property and code belongs to them.

In your case, where no contract was signed, I would break down the relationship you have with your client/employer:

  • If you approached the client with an idea, and they payed for development since it had benefits to their business, then I would argue that you have a right to the code.
  • However, if you were hired to build a site (or something) where by they briefed you on the idea and you simply developed the application then I'd argue that they own the code.

Obvious caveats of the above arguments exist if the application is a business critical business application or contains innovative IP. I.e. if you wrote a new, innovative application for a business which gave them a competitive advantage, then OBVIOUSLY they won't want you to share it with 3rd parties! (even if that's not your intent)

Overall, learn from the experience and ensure you write and conform to contracts which both you and the client are happy about. Be sure to make your intent and post-project involvement clear so that surprises like these don't arise in the future.

link|flag
vote up 3 vote down

For a UK slant, I just dusted off a very rarely used text-book: the following excerpts are from Information Technology Law, Ian J Lloyd (4th Edition):

20.29 The author of a work will, subject to one exception, be the first owner of any copyright that may subsist in it … - Copyright, Design and Patents Act, 1988, s 11(1)

20.30 An exception to the principle that the author is the first owner of copyright in a work applies where the work is created in the course of the author's employment. In this event, copyright will, subject to any contractual provision to the contrary, vest in the employer. … - Copyright, Design and Patents Act, 1988, s 11(2)

Copyright, Design and Patents Act, 1988

So that makes it pretty clear from the stance of UK law for employees. But UK law, especially in terms of tax and benefits, is that freelancers are not employees of a company - they are essentially companies in their own right, contracted to supply goods or services - so the argument gets even more muddied. It throws up perhaps more questions that answers:

  • What happens with the use of common frameworks / tools a freelancer has put together over the years, such as helper classes.
  • Is it the solution that is copyrighted, or just the implementation?
  • Can you agree a contract to supply software "under license" where the contract actually funds the initial development of that software?

In hindsight I'm not sure this answer is actually an answer, but hopefully it'll open the debate up a little more

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.