# Copyright, plagiarism, and attributionattributionA framework for assigning credit to the touchpoints that contributed to a conversion, so you can measure which channels and interactions actually drive results.Voir la définition complète →
In 2023, a Colorado artist named Jason Allen won an art competition with an image he made using Midjourney. When he tried to register it with the US Copyright Office, they said no. The reason: a human did not create it, so nobody owns it. That single decision still shapes what you can and cannot do with AI output today.
This lesson gives you the practical rules for using AI text and images at work without getting sued, plagiarizing, or publishing something you have no rights to.
There are two separate questions hiding here. Keep them apart.
1. Can you own the copyright to what the AI makes? (Usually no, or only partly.)
2. Could the AI output get you in legal trouble? (Sometimes yes, even if you did nothing wrong on purpose.)
In the US, copyright protects work created by a human. The Copyright Office has been clear: text or images generated purely from a prompt are not copyrightable. The prompt is treated like an instruction, not authorship.
You can read the actual guidance here: US Copyright Office report on AI and copyright.
What this means in plain terms:
If you meaningfully edit, arrange, or build on the AI output, the parts you contributed can be protected.
Examples that usually count as human authorship:
The rule of thumb: the more you transform it, the more you own it. Pure "press generate" output is fair game for anyone.
Even if ownership were not an issue, AI models can reproduce material they were trained on. That creates two practical dangers.
The lawsuits making news are about how these models were *built*. Getty Images sued Stability AI, claiming millions of its photos were used for training without permission. (Some Getty watermarks even showed up in generated images.) Authors including George R.R. Martin and the *New York Times* have sued OpenAI over books and articles used as training data.
These cases are mostly about the AI companies, not you. But there is a practical takeaway: AI can sometimes spit out near-copies of real, copyrighted work, especially:
If you publish a generated image that closely matches a real trademarked character, *you* can be the one getting the cease-and-desist letter, not the AI company.
Plagiarism (presenting someone else's words or ideas as your own) is a separate problem from copyright. AI text can closely paraphrase or even quote a source without telling you.
Real scenario: you ask an AI to "summarize the latest research on intermittent fasting" and it returns a paragraph lifted almost word-for-word from one blog. You publish it under your name. That is plagiarism, even though no human meant it to happen.
Here is how to stay safe and honest in real work.
Copyright law says you may not *own* the output, but the AI company's terms of service may still *grant you commercial use rights*. These are different things.
As of 2026:
Always read the current terms before a paid project. They change.
Vérification des acquis
1. Why did the US Copyright Office refuse to register Jason Allen's Midjourney-generated artwork?
2. According to the lesson, what is the legal status of a blog post written entirely by ChatGPT and published as-is?
3. In US copyright law, how is a prompt typed into an AI tool generally treated?
4. Select ALL correct answers. Which scenarios would likely qualify as protectable human authorship under the lesson's guidance?
Sélectionnez toutes les réponses correctes.
5. Select ALL correct answers. The lesson separates two distinct questions about AI output. Which statements accurately reflect them?
Sélectionnez toutes les réponses correctes.
Here is a checklist you can copy into a doc and reuse.
Before you publish AI text:
1. Did I rewrite it substantially in my own words?
2. Did I verify every fact, stat, and quote?
3. Did I run it through a plagiarism check?
4. Does this context (school, client, publication) require disclosure?
Before you publish an AI image:
1. Does it contain any real logo, character, or recognizable person?
2. Did I name a living artist in the prompt?
3. Does my tool's license allow commercial use at my plan level?
4. Did I add my own editing or design work (which strengthens my rights)?
If you can clear all four in each list, you are in good shape.
If your team generates a lot of images, you can catch the riskiest prompts automatically before anyone hits "generate." This simple Python check flags prompts that mention trademarks or named artists.
risky_terms = [
"mickey", "pikachu", "nike", "disney", "marvel",
"in the style of", "logo of", "starbucks"
]
def check_prompt(prompt):
found = [term for term in risky_terms if term in prompt.lower()]
if found:
return f"⚠️ Review needed. Risky terms: {found}"
return "✅ Looks clear, but human judgment still required."
print(check_prompt("A fox in a snowy forest, oil painting"))
print(check_prompt("Pikachu in the style of Van Gogh"))Output:
✅ Looks clear, but human judgment still required.
⚠️ Review needed. Risky terms: ['pikachu', 'in the style of']This is a guardrail, not a lawyer. It just catches the obvious mistakes before they become published mistakes.
Things are still moving in 2026. A few trends worth knowing:
The safe mindset: assume AI output is a raw ingredient, not a finished product you own. Your human work is what creates value and legal protection.