Comment by JeremyNT
5 months ago
I'm not sure this is really true, since copyright applies to distribution.
If you have a substantial amount of backend code (as with most SaaS projects) you're never actually distributing the code, and copyright is never at play. Computer generated artifacts are already in this boat and are protected by virtue of being trade secrets not by copyright.
This could maybe be true of shipping javascript to the browser, which presumably is not going to qualify as a trande secret, but I don't think that's where most companies derive value.
The idea that copyright applies solely to distribution is a popular myth, but it has no support in the actual copyright law. The core exclusive rights in copyright are (in the US, 17 USC § 106):
---
(1) to reproduce the copyrighted work in copies or phonorecords;
(2) to prepare derivative works based upon the copyrighted work;
(3) to distribute copies or phonorecords of the copyrighted work to the public by sale or other transfer of ownership, or by rental, lease, or lending;
(4) in the case of literary, musical, dramatic, and choreographic works, pantomimes, and motion pictures and other audiovisual works, to perform the copyrighted work publicly;
(5) in the case of literary, musical, dramatic, and choreographic works, pantomimes, and pictorial, graphic, or sculptural works, including the individual images of a motion picture or other audiovisual work, to display the copyrighted work publicly; and
(6) in the case of sound recordings, to perform the copyrighted work publicly by means of a digital audio transmission.
---
OTOH, distributing copies created in violation of copyright is a good way to cause legally-cognizable harms to the copyright holder that will increase the potential damage award when you are found liable for copyright infringement, and it also makes it much more likely that someone will notice the infringement in the first place. But its not where the law, on its own terms, begins to apply. Doing any of those without permission (unless it falls into one of the exceptions to copyright protection, like fair use) is a violation of copyright.
>I'm not sure this is really true, since copyright applies to distribution.
Do you mean that a work has to be published prior to registration? What do you mean by "copyright applies to distribution"?
The idea of copyright is to prohibit unauthorized use and reproduction, but none of this actually happens with a proprietary software SaaS backend. You don't actually give anybody the code - they connect to the service.
Access to the service is already governed by computer access laws, which don't depend on copyright. And if you never intentionally distributed your code outside of your org, you can call it a trade secret and nobody else has any legitimate right to access it - whether or not it is copyrightable.
There are other things that aren't copyrightable that are trade secrets already. This would be true of any kind of automated data collection for example. You couldn't copyright it but you can call it a trade secret.
And for any of that stuff, if you want to share it and limit distribution, you just have whoever wants access explicitly agree to be bound by contract law.
>The idea of copyright is to prohibit unauthorized use and reproduction, but none of this actually happens with a proprietary software SaaS backend. You don't actually give anybody the code - they connect to the service.
The point isn't that you have to give it to people, but okay?
>Access to the service is already governed by computer access laws, which don't depend on copyright
Yeah, copyright doesn't control everything, and?
>There are other things that aren't copyrightable that are trade secrets already. This would be true of any kind of automated data collection for example. You couldn't copyright it but you can call it a trade secret.
Okay?
>And for any of that stuff, if you want to share it and limit distribution, you just have whoever wants access explicitly agree to be bound by contract law.
Your point being? You're just rambling assumptions about copyright and other things, which don't even track the actual law.
6 replies →