<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.30 (Ruby 3.4.8) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-abaris-aicdh-01" category="info" submissionType="independent" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.31.0 -->
  <front>
    <title abbrev="AI-Disclosure Header">AI Content Disclosure Header</title>
    <seriesInfo name="Internet-Draft" value="draft-abaris-aicdh-01"/>
    <author fullname="Dogu Abaris">
      <organization>Individual Contributor</organization>
      <address>
        <email>abaris@null.net</email>
      </address>
    </author>
    <date year="2026" month="January" day="30"/>
    <area>Applications</area>
    <workgroup>Independent Submission</workgroup>
    <keyword>AI</keyword>
    <keyword>disclosure</keyword>
    <keyword>http</keyword>
    <keyword>content transparency</keyword>
    <keyword>machine-readable</keyword>
    <keyword>metadata</keyword>
    <abstract>
      <?line 77?>

<t>This document proposes a machine-readable Hypertext Transfer Protocol (HTTP) response header field, <tt>AI-Disclosure</tt>, to disclose the presence and degree of Artificial Intelligence (AI) generated or AI-assisted content in web responses. The header is designed for compatibility with HTTP structured field syntax and provides metadata for user agents, bots, and archiving systems. It supports layered disclosure strategies alongside human-readable and structured metadata formats.</t>
    </abstract>
  </front>
  <middle>
    <?line 81?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>As AI-generated content proliferates across the web, users <xref target="BV-Report"/>, platforms, and regulators increasingly demand transparent disclosure of algorithmic involvement in content creation <xref target="PAI-Framework"/>. Existing approaches to disclosure (e.g., HTML disclaimers) lack machine-readability <xref target="GV-Prov"/>, making automation, indexing, and compliance challenging.</t>
      <t>Regulatory initiatives like the EU Artificial Intelligence Act include transparency obligations for AI-generated or manipulated content, and the European Commission is developing a Code of Practice on marking and labelling AI-generated content to support compliance with those obligations <xref target="EC-CodePractice">EU-AI-Act</xref>. A lightweight, machine-readable HTTP signal can complement these efforts by enabling automated detection and disclosure in web delivery.</t>
      <t>This document defines the <tt>AI-Disclosure</tt> HTTP header field, providing a lightweight, machine-readable mechanism focused specifically on signaling the presence and mode of AI involvement in the generation of an HTTP response's content. It utilizes HTTP Structured Fields <xref target="RFC9651"/> to offer a simple dictionary format directly within the HTTP response headers.</t>
      <t>The goal of <tt>AI-Disclosure</tt> is to offer a low-overhead, easily parsable signal primarily for automated systems like web crawlers, archiving tools, or user agents that may need a quick indication of AI usage without processing complex manifests. This header is intended to be applied at the entire response level.</t>
      <t>It is important to distinguish this mechanism from more comprehensive content provenance and authenticity frameworks like the Coalition for Content Provenance and Authenticity (C2PA) specification <xref target="C2PA-Spec"/>. C2PA provides richer, cryptographically signed assertions about content provenance, potentially covering detailed creation/modification history and applying to specific regions within an asset ("Regions of Interest"). C2PA information can be linked via methods including the HTTP <tt>Link</tt> header <xref target="RFC8288"/> pointing to an associated manifest.</t>
      <t><tt>AI-Disclosure</tt> can be seen as complementary to such systems within a layered disclosure strategy. While C2PA offers strong, verifiable, and granular provenance, <tt>AI-Disclosure</tt> provides a simpler, advisory signal directly in the HTTP interaction for basic AI involvement awareness. Systems requiring high assurance or sub-resource granularity should utilize frameworks like C2PA.</t>
    </section>
    <section anchor="terminology">
      <name>Terminology</name>
      <section anchor="acronyms-and-abbreviations">
        <name>Acronyms and Abbreviations</name>
        <t>AI: Artificial Intelligence</t>
        <t>HTTP: Hypertext Transfer Protocol</t>
        <t>C2PA: Content Provenance and Authenticity, refers to the specification developed by the Coalition for Content Provenance and Authenticity</t>
      </section>
    </section>
    <section anchor="conventions-and-definitions">
      <name>Conventions and Definitions</name>
      <t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
      <?line -18?>

</section>
    <section anchor="field-definition">
      <name>Field Definition</name>
      <t>The <tt>AI-Disclosure</tt> field is defined as a Structured Field of type Dictionary, as described in <xref target="RFC9651"/>.</t>
      <table>
        <thead>
          <tr>
            <th align="left">Header Field Name</th>
            <th align="left">Structured Type</th>
            <th align="left">Template</th>
            <th align="left">Protocol</th>
            <th align="left">Status</th>
            <th align="left">Reference</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">AI-Disclosure</td>
            <td align="left">Dictionary</td>
            <td align="left">(blank)</td>
            <td align="left">http</td>
            <td align="left">provisional</td>
            <td align="left">[this document]</td>
          </tr>
        </tbody>
      </table>
    </section>
    <section anchor="field-syntax">
      <name>Field Syntax</name>
      <t>The <tt>AI-Disclosure</tt> field value <bcp14>MUST</bcp14> conform to the syntax for Dictionary structures defined in Section 3.2 of <xref target="RFC9651"/>. Each key in the dictionary conveys a distinct aspect of AI disclosure.</t>
      <section anchor="example">
        <name>Example</name>
        <artwork><![CDATA[
AI-Disclosure: mode=ai-originated;
               model="gpt-4";
               provider="OpenAI";
               reviewed-by="editorial-team";
               date=@1745286896
]]></artwork>
      </section>
      <section anchor="field-keys">
        <name>Field Keys</name>
        <table>
          <thead>
            <tr>
              <th align="left">Key</th>
              <th align="left">Type</th>
              <th align="left">Description</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">
                <tt>mode</tt></td>
              <td align="left">Token</td>
              <td align="left">Indicates the nature of AI involvement: <tt>none</tt>, <tt>ai-modified</tt>, <tt>ai-originated</tt>, <tt>machine-generated</tt></td>
            </tr>
            <tr>
              <td align="left">
                <tt>model</tt></td>
              <td align="left">String</td>
              <td align="left">Identifier of the AI model used (e.g., <tt>gpt-4</tt>)</td>
            </tr>
            <tr>
              <td align="left">
                <tt>provider</tt></td>
              <td align="left">String</td>
              <td align="left">Organization providing the AI system</td>
            </tr>
            <tr>
              <td align="left">
                <tt>reviewed-by</tt></td>
              <td align="left">String</td>
              <td align="left">Entity or team who reviewed the AI content</td>
            </tr>
            <tr>
              <td align="left">
                <tt>date</tt></td>
              <td align="left">Date</td>
              <td align="left">Generation timestamp as a numeric epoch value, conforming to RFC9651.</td>
            </tr>
          </tbody>
        </table>
      </section>
    </section>
    <section anchor="semantics">
      <name>Semantics</name>
      <t>The <tt>AI-Disclosure</tt> header field is an optional and advisory header providing information about the use of AI in generating the response content. Its presence indicates voluntary disclosure by the server. Absence of the header implies nothing about AI usage.</t>
      <t>The meaning of the header is primarily defined by the <tt>mode</tt> key, whose possible values are described below:</t>
      <table>
        <thead>
          <tr>
            <th align="left">Mode Value</th>
            <th align="left">Description</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">
              <tt>none</tt></td>
            <td align="left">Indicates that AI was not used in the creation or substantive modification of the content.</td>
          </tr>
          <tr>
            <td align="left">
              <tt>ai-modified</tt></td>
            <td align="left">Indicates AI was used to assist with or modify content primarily created by humans. The source material was not AI-generated. Examples include AI-based grammar checking, style suggestions, or generating highlights or summaries of human-written text.</td>
          </tr>
          <tr>
            <td align="left">
              <tt>ai-originated</tt></td>
            <td align="left">Indicates the core content was initially generated by AI but subsequently reviewed, edited, or significantly guided by humans. This suggests human oversight for accuracy or appropriateness, even if the originality for copyright purposes might be affected.</td>
          </tr>
          <tr>
            <td align="left">
              <tt>machine-generated</tt></td>
            <td align="left">Indicates the content was primarily or entirely generated by AI with minimal or no human intervention or review post-generation. AI may be responsible for substantive assertions or conclusions.</td>
          </tr>
        </tbody>
      </table>
      <t>Other keys like <tt>model</tt>, <tt>provider</tt>, <tt>reviewed-by</tt>, and <tt>date</tt> provide optional, additional context about the AI model used, the provider, human review, or the generation time, respectively.</t>
      <t>Recipients should treat this header as informational only and refer to the Security Considerations (Section 7) regarding its trustworthiness.</t>
      <t><strong>Note:</strong> The <tt>AI-Disclosure</tt> header applies to the entire content of the HTTP response payload. The <tt>ai-modified</tt> and <tt>ai-originated</tt> values indicate AI involvement, but this header does not provide information about specific locations or the exact nature of the partial involvement. For expressing provenance information about specific parts of a resource, more comprehensive mechanisms such as C2PA <xref target="C2PA-Spec"/> should be used. The distinction between <tt>ai-modified</tt> and <tt>ai-originated</tt> aims to address whether the foundational content was human or AI, reflecting concerns about originality and the nature of the transformation. The distinction between <tt>ai-originated</tt> and <tt>machine-generated</tt> primarily reflects the level of human review or intervention post-generation.</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The <tt>AI-Disclosure</tt> field is intended to provide advisory metadata about AI-generated or AI-assisted content and does not include any form of integrity protection. As such, the field can be trivially spoofed or altered by intermediaries unless the response is delivered over a secure transport such as HTTPS.</t>
      <t>Clients and intermediaries <bcp14>MUST NOT</bcp14> rely on the presence, absence, or value of the <tt>AI-Disclosure</tt> field for making security-critical decisions. The field is not authenticated and <bcp14>SHOULD</bcp14> be treated as untrusted input.</t>
      <t>This document does not define any mechanisms for cryptographic verification or provenance validation of the header's content. Implementations that require trustworthy disclosure metadata <bcp14>SHOULD</bcp14> rely on additional application-layer integrity mechanisms or signed metadata systems, such as those defined by C2PA <xref target="C2PA-Spec"/>.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>IANA is requested to register the <tt>AI-Disclosure</tt> header field in the "Hypertext Transfer Protocol (HTTP) Field Name Registry" maintained at <eref target="https://www.iana.org/assignments/http-fields/">https://www.iana.org/assignments/http-fields/</eref>, according to the procedures outlined in <xref target="RFC9110"/>.</t>
      <table>
        <thead>
          <tr>
            <th align="left">Header Field Name</th>
            <th align="left">Applicable Protocol</th>
            <th align="left">Status</th>
            <th align="left">Reference</th>
            <th align="left">Structured Type</th>
            <th align="left">Notes</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">AI-Disclosure</td>
            <td align="left">http</td>
            <td align="left">provisional</td>
            <td align="left">[this document]</td>
            <td align="left">Dictionary</td>
            <td align="left">Discloses AI involvement in content creation</td>
          </tr>
        </tbody>
      </table>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC9110">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document describes the overall architecture of HTTP, establishes common terminology, and defines aspects of the protocol that are shared by all versions. In this definition are core protocol elements, extensibility mechanisms, and the "http" and "https" Uniform Resource Identifier (URI) schemes.</t>
              <t>This document updates RFC 3864 and obsoletes RFCs 2818, 7231, 7232, 7233, 7235, 7538, 7615, 7694, and portions of 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="97"/>
          <seriesInfo name="RFC" value="9110"/>
          <seriesInfo name="DOI" value="10.17487/RFC9110"/>
        </reference>
        <reference anchor="RFC9651">
          <front>
            <title>Structured Field Values for HTTP</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
            <author fullname="P-H. Kamp" surname="P-H. Kamp"/>
            <date month="September" year="2024"/>
            <abstract>
              <t>This document describes a set of data types and associated algorithms that are intended to make it easier and safer to define and handle HTTP header and trailer fields, known as "Structured Fields", "Structured Headers", or "Structured Trailers". It is intended for use by specifications of new HTTP fields.</t>
              <t>This document obsoletes RFC 8941.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9651"/>
          <seriesInfo name="DOI" value="10.17487/RFC9651"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC8288">
          <front>
            <title>Web Linking</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
            <date month="October" year="2017"/>
            <abstract>
              <t>This specification defines a model for the relationships between resources on the Web ("links") and the type of those relationships ("link relation types").</t>
              <t>It also defines the serialisation of such links in HTTP headers with the Link header field.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8288"/>
          <seriesInfo name="DOI" value="10.17487/RFC8288"/>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="C2PA-Spec" target="https://c2pa.org/specifications/specifications/2.1/specs/C2PA_Specification.html">
          <front>
            <title>C2PA Specification Version 2.1</title>
            <author>
              <organization>Coalition for Content Provenance and Authenticity (C2PA)</organization>
            </author>
            <date year="2024" month="July"/>
          </front>
        </reference>
        <reference anchor="PAI-Framework" target="https://syntheticmedia.partnershiponai.org/">
          <front>
            <title>PAI's Responsible Practices for Synthetic Media: A Framework for Collective Action</title>
            <author>
              <organization>Partnership on AI</organization>
            </author>
            <date year="2023" month="February" day="27"/>
          </front>
        </reference>
        <reference anchor="BV-Report" target="https://bigvalley.co/wp-content/uploads/2024/11/BV-AI-Research-Report.pdf">
          <front>
            <title>AI Disclosure and Transparency: Closing the Trust Gap</title>
            <author>
              <organization>Big Valley Marketing</organization>
            </author>
            <date year="2024" month="November"/>
          </front>
        </reference>
        <reference anchor="GV-Prov" target="https://www.globalvoices.org.au/post/content-provenance-and-disclosure-requirements-for-ai-generated-content-on-digital-and-traditional-m">
          <front>
            <title>Content Provenance and Disclosure Requirements for AI Generated Content on Digital and Traditional Media Platforms</title>
            <author initials="S." surname="Hofmann">
              <organization/>
            </author>
            <date year="2025" month="March" day="31"/>
          </front>
        </reference>
        <reference anchor="EC-CodePractice" target="https://digital-strategy.ec.europa.eu/en/policies/code-practice-ai-generated-content">
          <front>
            <title>Code of Practice on marking and labelling of AI-generated content</title>
            <author>
              <organization>European Commission</organization>
            </author>
            <date year="2026" month="January" day="27"/>
          </front>
        </reference>
        <reference anchor="EU-AI-Act" target="https://eur-lex.europa.eu/eli/reg/2024/1689/oj">
          <front>
            <title>Regulation (EU) 2024/1689 (Artificial Intelligence Act)</title>
            <author>
              <organization>European Union</organization>
            </author>
            <date year="2024" month="June" day="13"/>
          </front>
        </reference>
      </references>
    </references>
    <?line 196?>

<section numbered="false" anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>The author thanks Michael Andrews from Teradata for helpful comments and feedback on early staging of this document.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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

-->

</rfc>
