8

Let us say that person "A" mentioned an idea for a software project on the web (ie. in a forum). Person "B" sees this idea and implements it. Can person "A" claim ownership of the idea? Has person "B" done something illegal by implementing the idea that person "A" posted?

gnat
  • 21,442
  • 29
  • 112
  • 288
Can't Tell
  • 1,151
  • 1
  • 10
  • 21

5 Answers5

21

Nobody owns the idea.

Nobody can own an idea. An idea is abstract and has practically no value on its own - it's the execution of that idea that is worth something.

Copyright refers to an actual creative work - i.e. the content or design. Recreating a similar work is fair game, you just can't appropriate the original work as your own, or use it for your own material benefit without explicit permission from the copyright owner.

If ideas could be copyrighted then we'd only have one operating system, one web browser, one search engine, one blog engine. That's not how copyright works.


Addendum: For people arriving at this question first time, the original question was tagged and implied that there was actually a copyright issue. I realize that patent law is more germane to software than copyright law, and Jerry's Answer is an excellent one for explaining the patent side (the short answer is that patent law doesn't apply either, unless "A" actually implements the idea and/or patents it and "B" uses the exact same implementation).

Please do keep in mind, however, that the question still says nothing about filing for a patent, and I think that the question should be taken at face value; i.e. in the absence of "A" having any implementation or registration at all, does "A" have rights to the work of "B"? The answer is clearly no, and the copyright question is still worth answering because copyright is the only type of IP that exists implicitly.


IANAL, of course, and I disclaim any responsibility if you somehow manage to get yourself sued.

Aaronaught
  • 44,005
  • 10
  • 92
  • 126
  • Patents *do* cover ideas, in exchange for publication of the idea, so copyright law is a bit of a non sequitur. – jprete Apr 12 '11 at 02:56
  • 5
    @jprete: As I pointed out in another reply, patents do not cover ideas, they cover inventions and processes. Two people can implement the same idea in different ways and both get patents without any dispute. Of course, patents are a different beast altogether; most patent disputes come up when somebody managed to patent something ridiculously generic, and that patent subsequently gets overturned in court if you have the money to fight it (unless you're Microsoft in the 21st century). – Aaronaught Apr 12 '11 at 03:01
  • @jprete: I'm not sure how you can claim that copyright law is a "non sequitur" when the question is tagged `[copyright]` and the question itself specifically refers to an idea that hasn't been implemented yet (i.e. could not possibly have a patent). – Aaronaught Apr 12 '11 at 03:02
  • Copyright is not a correct tag to stick on this question, though. Ideas certainly don't fall under copyright, but they can conceivably fall under patent protection, if they are the right kind of idea (as you pointed out, invention or process). So I finessed the point and assumed that the OP was thinking of the most appropriate form of protection for the idea. – jprete Apr 12 '11 at 03:05
  • @jprete: An invention or process is not an idea, it's an implementation. I'd prefer not to drag this out into an epistemological discussion; suffice it to say that the OP probably would have mentioned if the idea was patented, and to assume otherwise is likely unwarranted. I can't imagine that anybody is seriously wondering *"is it OK for me to copy a patented process?"* Patents are straightforward aside from the side issue of defining what makes a valid patent; it's copyright that many people don't quite seem to grok. – Aaronaught Apr 12 '11 at 03:10
  • Patents are supposed to cover implementations, not ideas, but in practice software patents can cover ideas. However, the idea wasn't patented, and if (IIRC) nobody files for a patent for a year after the blog post it's unpatentable in the USA. Copyright has nothing whatsoever to do with ideas. – David Thornley Apr 12 '11 at 13:46
  • @David, the original question (pre-edit) was actually tagged `[copyright]`, and despite the truth of your last sentence, many people don't actually realize that copyright has nothing to do with ideas - this question was representative of that confusion. Yes, in practice, software patents and many other patents may be issued covering fairly generic ideas - that's why patent trolls exist - but negligence at the patent office doesn't change the letter of the law, and very often those patents don't actually hold up in court (the trolls count on the inventors not having the resources to fight it). – Aaronaught Apr 12 '11 at 13:55
  • +1. Thanks for clarifying your answer to include the patent/copyright distinction. – jprete Apr 12 '11 at 16:47
8

First, this varies by country. There is a degree of commonality between countries, but the details definitely vary.

@Aaronaught is correct, however, that you can't patent an idea -- patent law (at least in most countries) is clear on the fact that a patent must cover something tangible, not just an idea.

The US follows a "first to invent" system, so if both people filed for patents on the invention, the first one to invent it would be given priority. "Invent" doesn't necessarily mean "think of the idea" though - in fact, reduction to practice (i.e., implementing the idea) is usually the point at which something is considered "invented". A sufficiently detailed written description can qualify though, so if a question like that above came to court, it would probably go to the jury to decide whether the written description in question was sufficiently detailed to qualify as "inventing" or not. That would probably come down to a question of who much was left for somebody to figure out -- specifically, whether a "person of ordinary skill in the art" ("POSITA") would be able to follow the directions and produce a working result, or whether they'd need to complete the invention on their own -- i.e., the description left enough gaps that the POSITA wouldn't be able to implement it.

I should add that the courts tend to set the bar for a "POSITA" pretty low -- it's pretty well known that a lot of the most brilliant inventions seem pretty obvious after the fact. To compensate for that, they tend to treat a POSITA as somebody who does little more than follow directions. The definition of a POSITA is also used to decide whether something is "obvious" and in their ruling on KSR v. Teleflex, the US Supreme Court overruled a lower court decision on what would be obvious to a POSITA, loosening the definition a bit by adding an "obvious to try" criterion (i.e., they gave a POSITA credit for a little more intelligence and common sense, so you have to work a little harder to show that something you've tried to patent isn't obvious).

Most other countries follow a "first to file" system -- whoever files for the patent first is given priority. This eliminates most of the questions above (though there's still a similar question of whether something is obvious or not; though the law is similar in many places (e.g., in most EU countries) it tends to be interpreted more strictly in many, so what would qualify as sufficiently non-obvious to qualify for a patent in the US often won't in many other countries.

As usual: IANAL, and this post should not be construed as legal advice.

Reference: for those in the US, the real reference is US code, Title 35. §102 is probably the most relevant to this question. The link above to the KSR v. Teleflex decision is also highly relevant on the question of obviousness, and probably gives at least some indication of the kind of description that would be needed to qualify as invention.

Jerry Coffin
  • 44,385
  • 5
  • 89
  • 162
  • Great explanation of the patent side of the equation. I'd add (obvious as it may sound) that the "first to invent" doctrine requires one to have positive proof of that fact; in the absence of clear evidence I believe the law basically reverts to "first to file". – Aaronaught Apr 12 '11 at 13:50
1

Whoever implements it first gets to say every one else is a liar. People may spout a million ideas every day, but it does not matter: the fact you have implemented an idea means you have taken ownership of the idea.

It's safe to say this is a gray area where such activities can be contested as mere inspiration rather than the actual idea.

Aditya P
  • 3,537
  • 2
  • 26
  • 42
  • 1
    @jprete: They can't file for a patent on an idea, period. Patents can only be inventions or processes. – Aaronaught Apr 12 '11 at 02:57
  • @Aaronaught: True enough, but an idea that's detailed enough to implement is likely to be a software process. – jprete Apr 12 '11 at 03:00
  • 1
    @jprete: Doubtful, otherwise we'd all be paying licensing fees for the CRUD design. The "idea" must be detailed enough not only to implement but to qualify as novel. Someone might even manage to *get* a patent for a 5-line description of a web site, but normally those patents don't hold up in a dispute. – Aaronaught Apr 12 '11 at 03:06
  • @jprete have you ever looked at copyright,IPR,patent dispute cases?. Also No one can really prove who came up with the idea first. Even if it is made public. you believe posting on the forums is making public? what about older posts on same or different forums or sites. – Aditya P Apr 12 '11 at 04:26
  • I've deleted my earlier comment on this post as inaccurate. – jprete Apr 12 '11 at 14:41
1

I am not a lawyer, but I don't think that A can do anything. If you publish an idea on a public forum, and somebody uses it, and you haven't filed for a patent on the idea, then you don't have any protection. You have to file for patent protection in order to get any protection, and this is why you often see "Patent Pending" marked on products (since the patent has been applied for but not yet approved).

EDIT: As Aaronaught points out, even for patents the scope of legal ideas is limited to "inventions or processes". If the idea is an invention or process, then A could conceivably patent it after making the post and then sue B for damages. I'm not in a position to elaborate on the conditions and work required to do this, however.

Aside from patents, there are copyrights, trademarks, and trade secrets, none of which apply in this case.

jprete
  • 1,509
  • 11
  • 16
0

To my understanding, there is no way to own an idea, and once you have it, you need to decide where you'll share it. My suggestion is that you can do some research about your idea, but never let the whole picture to be seen.

So, basically the problem is that you cannot claim your ownership of the idea, unless you prove it, (like it happened with the Winklevoss brothers with Zuckerberg, not saying that I agree with any of them, but they managed to get a legal dispute over an idea with the propper documents and layers).

I recall reading at some place of the Getting Real book that you may have an idea, but it has no actual owner until you implement it.

David Conde
  • 1,306
  • 6
  • 20
  • Didn't they claimed they had a verbal contract with Zuckerberg to build their site? It's not like he over-heard their idea at some bar or saw it posted somewhere. – JeffO Mar 28 '16 at 16:06