Guide

What Is AI Provenance? How to Trace Data, Models, Content, and AI Answers

AI provenance is the recorded or reconstructed history of the data, models, systems, people, and processes involved in producing an AI-related object or outcome.

A label, watermark, citation, detector, or credential may reveal one part of that history. Provenance is the larger record that helps someone reconstruct what existed, what happened, who or what was responsible, and how the result was produced.

Written by Ziqqur

At a glance

What is AI provenance?

The history of the data, models, systems, actors, and processes involved in producing an AI-related object or outcome.

What can have provenance?

Training data, models, generated content, AI answers, and automated decisions.

Is an AI label provenance?

It may communicate one part of provenance, but it rarely exposes the complete history.

Is a citation enough?

No. A citation names a source but may not show how that source contributed to an answer.

Does provenance prove that something is true?

No. Provenance supports investigation and evaluation; it does not guarantee truth or correctness.

Is provenance always recorded directly?

No. Some provenance is captured during production, while other provenance is inferred afterward.

Imagine two AI systems.

One generates an image labeled:

AI-generated

The other answers whether an employee can expense a $7,500 conference trip and links to the company travel policy.

Both provide a useful signal. Neither necessarily provides the full history.

The image label may not reveal which model created the asset, who initiated it, whether source material was used, which edits followed, or whether the label was recorded at creation or inferred later. The policy citation may not reveal which policy version was active, which clauses were retrieved, what employee information mattered, which approval rule was applied, or whether the cited text actually supports the answer.

That is the problem AI provenance—or provenance in AI systems—addresses.

A label summarizes. A citation points. A detector estimates. Provenance preserves enough of the history to reconstruct what happened.

Key insight

The Four Questions Behind Any Provenance Claim

Before trusting a claim that an AI system or output “has provenance,” ask:

  1. What exactly is being traced?
  2. Was the history recorded directly or inferred afterward?
  3. What part of the history is actually preserved?
  4. What conclusion can that evidence legitimately support?
1Object

What is being traced?

DatasetModelContentAnswerDecision
2Method

How was the history established?

Recorded during productionInferred afterward
3Coverage

What is actually preserved?

SourcesVersionsActivitiesAgentsTransformations
4Conclusion

What can the evidence support?

OriginIntegrityAttributionClaim supportProbability
Not automatically: truth · correctness · fairness · legality · completeness
A provenance claim is only meaningful when the object, evidence method, preserved history, and justified conclusion are all clear.

Foundations

What Is Provenance in Computing?

The word provenance refers to origin and history. In computing, it becomes more structured.

The W3C PROV Data Model describes provenance through the entities, activities, and agents involved in producing data or another object.1 That gives us a useful grammar for understanding provenance in AI.

ElementPlain-Language MeaningAI Example
EntitySomething that exists, is used, or is producedDataset, model version, policy document, retrieved passage, generated answer
ActivityA process that uses or produces entitiesCollection, training, retrieval, transformation, inference, approval
AgentA person, organization, or system responsible for an activityData publisher, model provider, employee, AI application, reviewer
RelationshipHow the entities, activities, and agents connectUsed, generated, derived, revised, attributed

Consider a simple enterprise answer:

“This conference trip requires manager approval.”

A minimal provenance chain might connect:

  • the employee’s request,
  • the employee’s role and spending authority,
  • the relevant travel-policy version,
  • the exact approval clause,
  • the retrieval activity,
  • the rule evaluation,
  • and the final recommendation.

The recommendation, policy, and employee context are entities. Retrieval and rule evaluation are activities. The employee, system, and reviewer may be agents. The provenance record connects them.

Employee Request+Employee Context+Travel Policy v3.2
Retrieval Activity
Rule Evaluation
Recommendation
AI SystemReviewer
A provenance record connects what was used, what happened, what was produced, and who or what was responsible.

Provenance is therefore broader than naming an original source.

A fuller record may also tell you:

  • which version was used;
  • what transformed it;
  • which other inputs were involved;
  • who or what performed the transformation;
  • when the activity occurred;
  • what was produced;
  • and how the result was derived.

The W3C model is domain-independent. It does not require every organization to implement the same database or record format. It provides a common conceptual foundation that can be adapted to scientific workflows, data systems, digital media, AI models, enterprise answers, and automated decisions.2

Key takeaway

Provenance records a production history, not merely an original location.

Question one

What Exactly Is Being Traced?

Search for AI provenance, and the results may appear to describe different subjects: foundation-model training data, model ancestry, Content Credentials for generated media, citations behind AI answers, or the reconstruction of automated decisions.

These are not necessarily competing definitions. They often apply the same underlying provenance idea to different objects.

A practical way to map the field is to ask what is being traced.

ObjectMain Provenance Question
Training dataWhere did the material come from, and how was it prepared?
ModelWhat upstream models, data, training, and versions produced it?
Digital contentWho or what created it, and how was it edited?
AI answerWhich evidence and processing steps produced its claims?
Decision or workflowWhich inputs, systems, rules, and people produced the outcome?

This is not a formal industry taxonomy. It is a practical way to organize provenance problems that are usually discussed separately.

AI provenance is broader than data provenance. Data provenance focuses on the origin and history of data, while AI provenance may also trace models, generated content, individual answers, and automated decisions.

Training data

Where did the material come from, and how was it prepared?

Model

What upstream models, data, training, and versions produced it?

Digital content

Who or what created it, and how was it edited?

AI answer

Which evidence and processing steps produced its claims?

Decision or workflow

Which inputs, systems, rules, and people produced the outcome?

Training-Data Provenance

Training-data provenance concerns the origin and preparation history of the data used to develop an AI model.

A useful record might include:

  • original sources;
  • collection dates and methods;
  • licensing or usage conditions;
  • filtering and deduplication;
  • labels and annotations;
  • augmentation;
  • excluded records;
  • dataset versions;
  • and inclusion in specific training runs.

NIST identifies maintaining training-data provenance and supporting attribution of AI decisions to relevant training data as practices that can assist transparency and accountability.3

The NIST AI Risk Management Framework Playbook also recommends documenting data sources, origins, transformations, augmentations, labels, dependencies, constraints, and related metadata.4

Dataset documentation can complement provenance without being identical to it.

For example, Datasheets for Datasets proposes structured documentation describing a dataset’s motivation, composition, collection process, preprocessing, intended uses, distribution, and maintenance.5

Documentation explains what the dataset is and why it was created.

Provenance traces the sources, activities, agents, versions, and derivations involved in producing it.

Neither automatically solves the underlying problems. A well-documented dataset can still contain inaccurate records, unresolved rights questions, harmful representation, or inappropriate collection practices. Provenance makes those issues easier to inspect; it does not resolve them by itself.

Model Provenance

Model provenance concerns how a model came to exist.

A record may include:

  • the upstream foundation model;
  • training or fine-tuning runs;
  • datasets used;
  • inherited architecture or weights;
  • model versions;
  • evaluation history;
  • deployment configuration;
  • and downstream derivative relationships.

Modern AI systems are often built through chains of adaptation. A model may begin as a general foundation model, then be instruction-tuned, fine-tuned for a domain, quantized, merged with another model, or deployed with additional adapters.

Recent model-provenance research argues that model and system cards fall short in areas including model genealogy and machine readability, and proposes a machine-readable format for recording relationships between foundation models and downstream models.6

Model provenance may be recorded through development logs and documentation, or inferred later through statistical testing intended to determine whether one model was derived from another.7 Those are different kinds of evidence.

Content Provenance

Content provenance concerns the history of a digital asset such as an image, video, audio recording, or document.

A content-provenance record may describe:

  • who or what created the asset;
  • when it was created;
  • which device, application, or model was used;
  • which edits occurred;
  • what was changed;
  • and which signed assertions are associated with the asset.

The Coalition for Content Provenance and Authenticity, or C2PA, has developed a technical standard for binding signed provenance assertions to digital content through Content Credentials.8

The C2PA specification represents provenance through assertions about the history of a digital asset. A C2PA Manifest combines one or more assertions, a claim, a claim signature, and content bindings.9

This is much richer than a badge that says “AI-generated.” But C2PA is a specialized implementation for digital-content provenance, not a universal provenance system for training data, model genealogy, enterprise answers, or automated decisions.

Answer and Evidence Provenance

Answer provenance concerns the evidence and activities behind a particular AI-generated answer.

A useful record might include:

  • the user’s request;
  • the time of the request;
  • the source documents consulted;
  • the versions of those documents;
  • the exact passages retrieved;
  • extraction or transformation steps;
  • tool calls;
  • rules applied;
  • intermediate claims;
  • human or automated actors;
  • and the final answer.

There is not yet one universally adopted answer-provenance schema. Still, general provenance concepts apply naturally to answer production: source documents and retrieved passages are entities; retrieval, extraction, rule evaluation, and answer assembly are activities; the application, user, and reviewer are agents; and the final answer is derived from the earlier entities.

This goes beyond simply placing citations beside a response.

Citation research distinguishes whether citations are present from whether they are correct and complete. A source can be cited even when it does not fully support the associated claim, and a response can cite some claims while leaving others unsupported.10

A citation can therefore be one component of answer provenance without being the complete answer-provenance record.

Decision and Workflow Provenance

Decision provenance applies the same principles to a consequential outcome.

A record might include:

  • input data;
  • active policy versions;
  • system components;
  • model outputs;
  • rules;
  • intermediate determinations;
  • human reviewers;
  • approvals;
  • timestamps;
  • and the final action.

This can matter when an organization needs to answer questions such as:

  • Why was this expense rejected?
  • Which policy version was active?
  • Which model handled the request?
  • Did a human approve the recommendation?
  • Which source introduced the error?
  • Which downstream decisions were affected?

A complete record does not guarantee that the decision was good. It may faithfully document a flawed, unfair, outdated, or unlawful process. Without the record, however, reconstructing what happened may be far more difficult.

Question two

Was the Provenance Recorded or Inferred?

Not every provenance claim rests on the same kind of evidence. Some histories are recorded as the process occurs; others are reconstructed later. This creates one of the most important distinctions in AI provenance:

Recorded provenance documents what happened. Inferred provenance estimates what probably happened.

Recorded Provenance

Recorded provenance is captured during or near the original activity.

Examples include:

  • dataset collection logs;
  • training-run records;
  • model-version histories;
  • signed Content Credentials;
  • source identifiers;
  • retrieval logs;
  • workflow execution traces;
  • and approval records.

The system does not need to guess afterward which policy version was used if that version was recorded at the time of the answer.

It does not need to infer which tool edited an image if the editing application signed and attached that assertion during the edit.

Inferred Provenance

Inferred provenance is produced through later analysis.

Examples include:

  • AI-content detectors;
  • watermark detectors;
  • model-ancestry tests;
  • authorship attribution;
  • stylistic analysis;
  • behavioral similarity;
  • and forensic reconstruction.

A detector might estimate that an image was probably generated by AI.

A model-provenance test might estimate that one model was derived from another.

These results can be useful, especially when original records are unavailable, but they are not equivalent to a contemporaneous record of the process.

PropertyRecorded ProvenanceInferred Provenance
Created whenDuring or near the original processAfterward
Evidence typeLogs, signed assertions, identifiers, execution tracesStatistical or forensic analysis
Primary questionWhat was recorded as happening?What most likely happened?
Main strengthDirect process historyUseful when original records are absent
Main riskIncomplete, false, stripped, or untrusted recordsFalse positives, false negatives, and uncertainty

Recorded provenance is not automatically reliable: a record can be incomplete, an actor can make a false assertion, metadata can be stripped, a signer can be untrusted, or one part of the chain can be preserved while another is omitted.

Inferred provenance is not automatically weak. Forensic analysis can be valuable when original records never existed or no longer survive. The important point is to describe the evidence honestly: a statistical conclusion should not be presented as a directly recorded chain of custody.

Recorded

Event happens

Record created during the process

Logs · signed assertions · identifiers · execution traces

Later verification of the recorded history

LogsSigned assertionsIdentifiersExecution traces
Inferred

Event happens

No complete contemporaneous record

Later forensic or statistical analysis

Probabilistic conclusion about what likely happened

DetectorAttribution testSimilarity analysisForensic reconstruction

Both can be useful. Neither is automatically complete or trustworthy.

Recorded provenance documents a process history as it occurs. Inferred provenance reconstructs a likely history from later evidence.

Question three

What Part of the History Is Actually Preserved?

The word provenance is often used alongside labels, watermarks, Content Credentials, detectors, citations, and lineage records. These mechanisms are related, but they are not interchangeable.

Mechanisms compared

Provenance

What produced this, and what happened along the way?

Provides: Connected origin and process history

Does not provide: Truth or correctness

Label

What disclosure should the user see?

Provides: A simplified presentation

Does not provide: The complete underlying record

Watermark

Is there an embedded or attached signal?

Provides: A marker or identifier

Does not provide: Complete history or factual accuracy

Content Credential

Are signed assertions bound to an asset?

Provides: Structured, authenticated provenance assertions

Does not provide: Proof that every assertion or message is true

Detector

Does analysis suggest AI was involved?

Provides: A probabilistic inference

Does not provide: A recorded creation history

Citation

What source is associated with this claim?

Provides: A source reference

Does not provide: Complete derivation or proof of support

Lineage

How did data move or transform?

Provides: Flow, dependencies, and transformations

Does not provide: A universally separate concept from provenance

Execution trace

What activities occurred during a run?

Provides: Intermediate steps and events

Does not provide: Broader origin or historical context unless connected

Different mechanisms reveal different parts of an object’s history; none automatically preserves the complete provenance chain.

Data lineage and data provenance overlap, and the boundary is not universal. Research literature sometimes uses lineage as another name for provenance or treats it as one form of provenance.11 A common industry distinction is that lineage emphasizes movement, dependencies, and transformations, while provenance may include broader context about origin, responsibility, and history.

Content Credentials and Their Limits

Content Credentials can provide signed provenance assertions associated with a digital asset. They are richer than a binary label because they may contain information about creation, tools, edits, and history.

C2PA also makes an important limitation explicit: provenance information alone cannot tell the viewer whether digital content is true, accurate, or factual.12

A successfully validated credential can help establish that signed assertions are bound to the asset, that the manifest has not changed since signing, and that the signer can be evaluated under the applicable trust model.

It does not turn every assertion into a fact.

The absence of a credential also proves very little. A creator may not have used compatible tools, metadata may have been removed, or a platform may not preserve or display it. C2PA’s own explainer says no assumption should be made about an asset’s trustworthiness solely from whether it uses Content Credentials.13

What a Useful Provenance Record May Preserve

Depending on the object and risk level, a provenance record may include:

  • object or event identifier;
  • original source;
  • source version;
  • timestamp;
  • responsible agent;
  • activity performed;
  • inputs used;
  • outputs produced;
  • derivation relationships;
  • tools or models involved;
  • active configuration or policy;
  • exact evidence locations;
  • integrity or signature information;
  • and missing or unresolved links.

There is no universal field list for every AI-provenance system. The appropriate record depends on what someone may later need to defend.

Practical principle: Collect enough provenance to answer the questions the system may later be required to defend.

Worked example

A Citation Versus Reconstructable Answer Provenance

Consider an employee who asks:

“Can I expense this $7,500 conference trip?”

Version A: Citation Only

The assistant responds:

“Yes. The trip is reimbursable under the company travel policy.”

It links to the policy page.

The answer looks grounded, but several questions remain:

  • Which version of the policy was used?
  • Which clause supported the answer?
  • Was the employee’s role considered?
  • Did the amount exceed an approval threshold?
  • Did the assistant actually retrieve the cited policy?
  • Was the answer based on the cited clause or on model memory?
  • Were any required details missing?
  • Should the system have abstained?

The citation tells the reader where to look; it does not reconstruct how the answer was produced.

Version B: Provenance-Rich Answer

A stronger record could preserve:

  1. the employee’s request;
  2. the request timestamp;
  3. the employee’s role and authorization context;
  4. the expense amount and category;
  5. the policy document identifier;
  6. the policy version and effective date;
  7. the exact clauses retrieved;
  8. the retrieval activity;
  9. the applicable approval rule;
  10. any intermediate determination;
  11. the responsible application or reviewer;
  12. the final recommendation;
  13. any missing evidence;
  14. the condition under which the system would abstain.

The answer might then say:

This trip is eligible for reimbursement, but expenses above $5,000 require manager approval under Travel Policy v3.2, Section 4.1. I could not verify whether approval has already been granted.

The provenance record does more than attach the policy. It connects the request, policy version, evidence, rule, processing activity, and final claim.

Key takeaway

A citation tells the reader where to look. Provenance shows how the source, system, and process produced the answer.

Citation only

Employee QuestionAI AnswerTravel Policy Page

Which version?

Which clause?

Which employee context?

Which rule?

Did the source actually influence the answer?

Was evidence missing?

Provenance-rich

Employee Question+Employee Context+Travel Policy v3.2
Retrieval ActivityExact ClausesRule Evaluation
RecommendationorAbstention
VersionEffective dateTimestampEvidence location
A citation points toward a source. Answer provenance connects the request, source version, exact evidence, processing activities, responsible actors, and final claim.

Question four

What Conclusion Can the Evidence Support?

Provenance is valuable because it makes evaluation possible. It should not be confused with the evaluation itself.

Provenance Can Support

Depending on the record and verification method, provenance can help support:

  • origin reconstruction;
  • attribution;
  • version history;
  • transformation history;
  • chain-of-custody analysis;
  • integrity checks;
  • claim-support review;
  • debugging;
  • auditing;
  • incident investigation;
  • and accountability.

NIST treats training-data provenance and decision attribution as practices that can assist transparency and accountability.3

W3C says provenance information can help someone form assessments about quality, reliability, or trustworthiness.1

The key phrase is help form assessments: provenance supplies evidence for judgment rather than replacing judgment.

Provenance Does Not Automatically Guarantee

Provenance does not by itself guarantee:

  • factual truth;
  • correctness;
  • fairness;
  • legality;
  • consent;
  • relevance;
  • current information;
  • complete records;
  • trustworthy actors;
  • unbiased inputs;
  • or sound reasoning.

Imagine an assistant that faithfully records every step it took while applying last year’s reimbursement policy. The provenance is excellent; the answer is still wrong.

Provenance gives you a record to evaluate. It does not evaluate the record for you.

Provenance may help show

  • Origin
  • Version
  • Transformation history
  • Responsible agents
  • Source-to-output path
  • Signed assertions
  • Missing links

Still requires evaluation

  • Truth
  • Correctness
  • Fairness
  • Legality
  • Consent
  • Relevance
  • Completeness
  • Trustworthiness

Record available ≠ conclusion proven

Provenance can support judgments about authenticity, reliability, and accountability without automatically proving that an output is true, correct, lawful, fair, or complete.

Production risk

Why Incomplete Provenance Matters in Production AI

The practical cost of weak provenance appears when something goes wrong.

Missing ProvenanceOperational Consequence
Unknown source versionThe answer cannot be reproduced against the same policy or data
Missing evidence locationA reviewer cannot determine whether the claim follows from the source
Missing transformation historyInvestigators cannot determine where an error entered
Unknown model or configurationBehavior cannot be tied to the system that produced it
Unclear human and automated rolesResponsibility is difficult to assign
Stripped or absent credentialsContent history may be unavailable or only inferable
Hidden gaps in the chainUsers may mistake incomplete evidence for complete support
No missing-evidence stateThe system may answer where it should abstain

Stronger provenance supports debugging, audits, incident response, governance, evidence review, and accountability. It should also make gaps visible: a provenance system should preserve what is known without disguising what is missing.

For the organizational operating model that depends on this evidence at each lifecycle decision, see What Is AI Governance?

Provenance alone is not the whole audit record — it is one evidence layer inside a larger reconstruction. For the broader requirements, see What Is AI Auditability?

Checklist

How to Evaluate an AI Provenance Claim

When a product, platform, policy, or article claims to provide AI provenance, use the following questions.

Object

  1. What is being traced? Dataset, model, content, answer, or decision?
  2. Where does the chain begin and end?

Method

  1. Was the history recorded or inferred?
  2. When was the evidence created?

Coverage

  1. Which sources, versions, activities, and agents are preserved?
  2. Can the path from inputs to outcome be reconstructed?
  3. Are gaps and uncertainty visible?

Integrity

  1. Can the record’s integrity be independently verified?
  2. Can the record survive editing, export, migration, or redistribution?

Conclusion

  1. What does the evidence establish—and what remains unproven?

Related properties

How Provenance Relates to Determinism, Auditability, and Correctness

AI provenance is one trust property among several, not a substitute for all of them.

PropertyMain Question
DeterminismWill the same conditions produce the same behavior?
ProvenanceWhere did this object or outcome come from?
TraceabilityCan the relevant path be followed through the system?
AuditabilityCan someone inspect and reconstruct what occurred?
TransparencyIs meaningful information about the system available?
CorrectnessIs the result actually right?
TrustworthinessDo the relevant technical and governance properties work together adequately?

A system can be deterministic without preserving useful provenance, provenance-rich while producing an incorrect answer, or auditable while containing probabilistic components. These are different questions about the same system.

The previous guide, What Is Deterministic AI?, explains why repeatability should not be confused with correctness, predictability, or auditability.

Closing

Conclusion

A label tells you something about an object. A watermark carries a signal. A citation points toward a source. A detector offers an inference.

Provenance is the larger record that helps reconstruct what happened.

The most useful question is not simply whether an AI system “has provenance.”

Ask:

  1. What is being traced?
  2. Was the history recorded or inferred?
  3. What part of the chain is preserved?
  4. What conclusion can the evidence legitimately support?

Strong provenance makes the relationship among evidence, processing, actors, and outcomes inspectable—and makes missing evidence harder to hide. When the available record is insufficient, a trustworthy system should not pretend otherwise.

Where Ziqqur fits

Ziqqur’s public position should stay narrower than “provenance guarantees trustworthy AI.” The relevant problem is whether an answer’s full chain—training data, retrieval, processing, and final claim—can be reconstructed and inspected when it matters most.

See how Ziqqur approaches source-traced answers

Provenance is one input to that larger case, not the whole of it. For the complete evidence-and-control standard that justifies reliance, see What Is Trustworthy AI?

Frequently asked questions

What is provenance in AI?

AI provenance is the recorded or reconstructed history of the data, models, systems, actors, and processes involved in producing an AI-related object or outcome.

Is AI provenance the same as data provenance?

No. Data provenance concerns the origin and history of data. AI provenance can also apply to models, generated content, AI answers, and automated decisions.

Is a watermark the same as provenance?

No. A watermark is a marker that may carry, signal, or help recover provenance information. Provenance is the broader origin and process history the marker may help establish.

Do Content Credentials prove that content is true?

No. Content Credentials can provide signed assertions about origin and editing history. They do not automatically prove that the content is factually true or accurate.

Is a citation enough to establish answer provenance?

No. A citation names a source, but it may not show which passage was used, whether the source supports the claim, whether all claims are supported, or how the source contributed to the answer.

What is the difference between recorded and inferred provenance?

Recorded provenance is captured during the underlying process through logs, credentials, identifiers, or execution traces. Inferred provenance is estimated afterward through detection, attribution, or forensic analysis.

References
  1. 1.

    World Wide Web Consortium. PROV-DM: The PROV Data Model. April 30, 2013. https://www.w3.org/TR/prov-dm/

  2. 2.

    World Wide Web Consortium. PROV-O: The PROV Ontology. April 30, 2013. https://www.w3.org/TR/prov-o/

  3. 3.

    National Institute of Standards and Technology. AI Risks and Trustworthiness. https://airc.nist.gov/airmf-resources/airmf/3-sec-characteristics/

  4. 4.

    National Institute of Standards and Technology. NIST AI RMF Playbook — Manage. https://airc.nist.gov/airmf-resources/playbook/manage/

  5. 5.

    Timnit Gebru et al.. Datasheets for Datasets. Communications of the ACM, 2021; preprint first published 2018. https://arxiv.org/abs/1803.09010

  6. 6.

    Keyu Wang et al.. Mitigating Downstream Model Risks via Model Provenance. 2024. https://arxiv.org/abs/2410.02230

  7. 7.

    Ivica Nikolic, Teodora Baluta, and Prateek Saxena. Model Provenance Testing for Large Language Models. revised 2025. https://arxiv.org/abs/2502.00706

  8. 8.

    Coalition for Content Provenance and Authenticity. C2PA and Content Credentials Explainer. version 2.4. https://spec.c2pa.org/specifications/specifications/2.4/explainer/Explainer.html

  9. 9.

    Coalition for Content Provenance and Authenticity. Content Credentials: C2PA Technical Specification. version 2.4. https://spec.c2pa.org/specifications/specifications/2.4/specs/C2PA_Specification.html

  10. 10.

    Tianyu Gao et al.. Enabling Large Language Models to Generate Text with Citations. Proceedings of EMNLP 2023. https://aclanthology.org/2023.emnlp-main.398/

  11. 11.

    S. S. Alqahtani et al.. Data Provenance in Security and Privacy. ACM Computing Surveys, 2023. https://dl.acm.org/doi/10.1145/3593294

  12. 12.

    Coalition for Content Provenance and Authenticity. C2PA and Content Credentials Explainer, FAQ 7.2.2. version 2.4. https://spec.c2pa.org/specifications/specifications/2.4/explainer/Explainer.html

  13. 13.

    Coalition for Content Provenance and Authenticity. C2PA and Content Credentials Explainer, FAQs 7.1.2–7.2.3. version 2.4. https://spec.c2pa.org/specifications/specifications/2.4/explainer/Explainer.html

Related reading

About this article

This guide was produced using our research and sourcing methodology, including AI-assisted tools during research and drafting.

Read the full editorial policy, including corrections and update practices.