The ECT workflow identifier (wid) can serve as a correlation point in SCITT Signed Statements, bridging per-step execution accountability with end-to-end supply chain transparency. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2867 lines
118 KiB
XML
2867 lines
118 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
||
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
|
||
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.31 (Ruby 3.4.5) -->
|
||
|
||
|
||
<!DOCTYPE rfc [
|
||
<!ENTITY nbsp " ">
|
||
<!ENTITY zwsp "​">
|
||
<!ENTITY nbhy "‑">
|
||
<!ENTITY wj "⁠">
|
||
|
||
]>
|
||
|
||
|
||
<rfc ipr="trust200902" docName="draft-nennemann-wimse-execution-context-00" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true">
|
||
<front>
|
||
<title abbrev="WIMSE Execution Context">Execution Context Tokens for Distributed Agentic Workflows</title>
|
||
|
||
<author fullname="Christian Nennemann">
|
||
<organization>Independent Researcher</organization>
|
||
<address>
|
||
<email>ietf@nennemann.de</email>
|
||
</address>
|
||
</author>
|
||
|
||
<date year="2026" month="February" day="24"/>
|
||
|
||
<area>Security</area>
|
||
|
||
<keyword>execution context</keyword> <keyword>workload identity</keyword> <keyword>agentic workflows</keyword> <keyword>audit trail</keyword> <keyword>compliance</keyword> <keyword>regulated systems</keyword>
|
||
|
||
<abstract>
|
||
|
||
|
||
<?line 85?>
|
||
|
||
<t>This document defines Execution Context Tokens (ECTs), an extension
|
||
to the Workload Identity in Multi System Environments (WIMSE)
|
||
architecture for distributed agentic workflows in regulated
|
||
environments. ECTs provide cryptographic proof of task execution
|
||
order, policy enforcement decisions, and compliance state across
|
||
agent-to-agent communication. By extending WIMSE Workload Identity
|
||
Tokens with execution context claims in JSON Web Token (JWT)
|
||
format, this specification enables regulated systems to maintain
|
||
structured audit trails that support compliance verification.
|
||
ECTs use a directed acyclic graph (DAG) structure to represent task
|
||
dependencies, record policy evaluation outcomes at each decision
|
||
point, and integrate with WIMSE Workload Identity Tokens (WIT) and
|
||
Workload Proof Tokens (WPT) using the same signing model and
|
||
cryptographic primitives. A new HTTP header field,
|
||
Execution-Context, is defined for transporting ECTs alongside
|
||
existing WIMSE headers. ECTs are a technical building block that
|
||
supports, but does not by itself constitute, compliance with
|
||
regulatory frameworks.</t>
|
||
|
||
|
||
|
||
</abstract>
|
||
|
||
|
||
|
||
</front>
|
||
|
||
<middle>
|
||
|
||
|
||
<?line 106?>
|
||
|
||
<section anchor="introduction"><name>Introduction</name>
|
||
|
||
<section anchor="motivation"><name>Motivation</name>
|
||
|
||
<t>The Workload Identity in Multi System Environments (WIMSE)
|
||
framework <xref target="I-D.ietf-wimse-arch"/> provides robust workload
|
||
authentication through Workload Identity Tokens (WIT) and Workload
|
||
Proof Tokens (WPT). The WIMSE service-to-service protocol
|
||
<xref target="I-D.ietf-wimse-s2s-protocol"/> defines how workloads authenticate
|
||
each other across call chains using the Workload-Identity and
|
||
Workload-Proof-Token HTTP headers.</t>
|
||
|
||
<t>However, workload identity alone does not address execution
|
||
accountability. Knowing who performed an action does not prove
|
||
what was done, what policy was applied, or whether compliance
|
||
requirements were satisfied at each decision point.</t>
|
||
|
||
<t>Regulated environments increasingly deploy autonomous agents that
|
||
coordinate across organizational boundaries. Multiple regulatory
|
||
frameworks motivate the need for structured execution records:</t>
|
||
|
||
<t><list style="symbols">
|
||
<t>The EU Artificial Intelligence Act <xref target="EU-AI-ACT"/> Article 12
|
||
requires high-risk AI systems to be designed with capabilities
|
||
enabling automatic recording of events ("logs") while the
|
||
system is operating.</t>
|
||
<t>The U.S. FDA 21 CFR Part 11 <xref target="FDA-21CFR11"/> requires
|
||
computer-generated, timestamped audit trails that independently
|
||
record the date, time, operator identity, and actions taken
|
||
(Section 11.10(e)).</t>
|
||
<t>The Markets in Financial Instruments Directive (MiFID II)
|
||
<xref target="MIFID-II"/> requires firms to maintain records of transactions
|
||
and orders that are sufficient to enable supervisory authorities
|
||
to monitor compliance.</t>
|
||
<t>The Digital Operational Resilience Act (DORA) <xref target="DORA"/> Article 12
|
||
requires financial entities to have logging policies that record
|
||
ICT activities and anomalies.</t>
|
||
</list></t>
|
||
|
||
<t>This document defines an extension to the WIMSE architecture that
|
||
addresses the gap between workload identity and execution
|
||
accountability. WIMSE authenticates agents; this extension records
|
||
what they did, in what order, and what policy was evaluated.</t>
|
||
|
||
<t>As identified in <xref target="I-D.ni-wimse-ai-agent-identity"/>, call context
|
||
in agentic workflows must always be visible and preserved. ECTs
|
||
provide a mechanism to address this requirement with cryptographic
|
||
assurances.</t>
|
||
|
||
</section>
|
||
<section anchor="problem-statement"><name>Problem Statement</name>
|
||
|
||
<t>Three core gaps exist in current approaches to regulated agentic
|
||
systems:</t>
|
||
|
||
<t><list style="numbers" type="1">
|
||
<t>WIMSE authenticates agents but does not record what they
|
||
actually did. A WIT proves "Agent A is authorized" but not
|
||
"Agent A executed Task X, under Policy Y, producing Output Z."</t>
|
||
<t>No standard mechanism exists to record policy evaluation
|
||
outcomes at each decision point in a multi-agent workflow.</t>
|
||
<t>No mechanism exists to cryptographically link compensation and
|
||
rollback decisions to original actions.</t>
|
||
</list></t>
|
||
|
||
<t>Existing observability tools such as distributed tracing
|
||
<xref target="OPENTELEMETRY"/> provide visibility for debugging and monitoring
|
||
but do not provide cryptographic assurances. Tracing data is not
|
||
cryptographically signed, not tamper-evident, and not designed for
|
||
regulatory audit scenarios.</t>
|
||
|
||
</section>
|
||
<section anchor="scope-and-applicability"><name>Scope and Applicability</name>
|
||
|
||
<t>This document defines:</t>
|
||
|
||
<t><list style="symbols">
|
||
<t>The Execution Context Token (ECT) format (<xref target="ect-format"/>)</t>
|
||
<t>DAG structure for task dependency ordering (<xref target="dag-validation"/>)</t>
|
||
<t>Policy checkpoint recording (<xref target="policy-claims"/>)</t>
|
||
<t>Integration with the WIMSE identity framework
|
||
(<xref target="wimse-integration"/>)</t>
|
||
<t>An HTTP header for ECT transport (<xref target="http-header"/>)</t>
|
||
<t>Audit ledger interface requirements (<xref target="ledger-interface"/>)</t>
|
||
</list></t>
|
||
|
||
<t>The following are out of scope and are handled by WIMSE:</t>
|
||
|
||
<t><list style="symbols">
|
||
<t>Workload authentication and identity provisioning</t>
|
||
<t>Key distribution and management</t>
|
||
<t>Trust domain establishment and management</t>
|
||
<t>Credential lifecycle management</t>
|
||
</list></t>
|
||
|
||
</section>
|
||
<section anchor="relationship-to-regulatory-compliance"><name>Relationship to Regulatory Compliance</name>
|
||
|
||
<t>ECTs are a technical mechanism that can support compliance programs
|
||
by providing structured, cryptographically signed execution
|
||
records. ECTs do not by themselves constitute compliance with any
|
||
regulatory framework referenced in this document.</t>
|
||
|
||
<t>Compliance with each referenced regulation requires organizational
|
||
controls, policies, procedures, validation, and governance measures
|
||
beyond the scope of this specification. The regulatory references
|
||
in this document are intended to motivate the design requirements,
|
||
not to claim that implementing ECTs satisfies these regulations.</t>
|
||
|
||
<t>ECTs provide evidence of claimed execution ordering and policy
|
||
evaluation. They do not independently verify that the claimed
|
||
execution actually occurred as described, that the policy
|
||
evaluation was correct, or that the agent faithfully performed the
|
||
stated action. The trustworthiness of ECT claims depends on the
|
||
trustworthiness of the signing agent and the integrity of the
|
||
broader deployment environment.</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?>
|
||
|
||
<t>The following terms are used in this document:</t>
|
||
|
||
<dl>
|
||
<dt>Agent:</dt>
|
||
<dd>
|
||
<t>An autonomous workload, as defined by WIMSE
|
||
<xref target="I-D.ietf-wimse-arch"/>, that executes tasks within a workflow.</t>
|
||
</dd>
|
||
<dt>Task:</dt>
|
||
<dd>
|
||
<t>A discrete unit of agent work that consumes inputs and produces
|
||
outputs.</t>
|
||
</dd>
|
||
<dt>Directed Acyclic Graph (DAG):</dt>
|
||
<dd>
|
||
<t>A graph structure representing task dependency ordering where
|
||
edges are directed and no cycles exist.</t>
|
||
</dd>
|
||
<dt>Execution Context Token (ECT):</dt>
|
||
<dd>
|
||
<t>A JSON Web Token <xref target="RFC7519"/> defined by this specification that
|
||
records task execution details and policy evaluation outcomes.</t>
|
||
</dd>
|
||
<dt>Audit Ledger:</dt>
|
||
<dd>
|
||
<t>An append-only, immutable log of all ECTs within a workflow or
|
||
set of workflows, used for regulatory audit and compliance
|
||
verification.</t>
|
||
</dd>
|
||
<dt>Policy Checkpoint:</dt>
|
||
<dd>
|
||
<t>A point in a workflow where a policy evaluation outcome is
|
||
recorded within an ECT.</t>
|
||
</dd>
|
||
<dt>Workload Identity Token (WIT):</dt>
|
||
<dd>
|
||
<t>A WIMSE credential proving a workload's identity within a trust
|
||
domain.</t>
|
||
</dd>
|
||
<dt>Workload Proof Token (WPT):</dt>
|
||
<dd>
|
||
<t>A WIMSE proof-of-possession token used for request-level
|
||
authentication.</t>
|
||
</dd>
|
||
<dt>Trust Domain:</dt>
|
||
<dd>
|
||
<t>A WIMSE concept representing an organizational boundary with a
|
||
shared identity issuer, corresponding to a SPIFFE <xref target="SPIFFE"/>
|
||
trust domain.</t>
|
||
</dd>
|
||
<dt>Witness:</dt>
|
||
<dd>
|
||
<t>A third-party entity that observes and attests to the execution
|
||
of a task, providing additional accountability.</t>
|
||
</dd>
|
||
</dl>
|
||
|
||
</section>
|
||
<section anchor="wimse-integration"><name>WIMSE Architecture Integration</name>
|
||
|
||
<section anchor="wimse-foundation"><name>WIMSE Foundation</name>
|
||
|
||
<t>The WIMSE architecture <xref target="I-D.ietf-wimse-arch"/> defines:</t>
|
||
|
||
<t><list style="symbols">
|
||
<t>Workload Identity Tokens (WIT) that prove a workload's identity
|
||
within a trust domain ("I am Agent X in trust domain Y")</t>
|
||
<t>Workload Proof Tokens (WPT) that prove possession of the private
|
||
key associated with a WIT ("I control the key for Agent X")</t>
|
||
<t>Multi-hop authentication via the service-to-service protocol
|
||
<xref target="I-D.ietf-wimse-s2s-protocol"/></t>
|
||
</list></t>
|
||
|
||
<t>The following execution accountability needs are complementary to
|
||
the WIMSE scope and are not addressed by workload identity alone:</t>
|
||
|
||
<t><list style="symbols">
|
||
<t>Recording what agents actually do with their authenticated
|
||
identity</t>
|
||
<t>Recording policy evaluation outcomes at each hop</t>
|
||
<t>Maintaining structured execution records</t>
|
||
<t>Linking compensation or rollback actions to original tasks</t>
|
||
</list></t>
|
||
|
||
</section>
|
||
<section anchor="extension-model"><name>Extension Model</name>
|
||
|
||
<t>ECTs extend WIMSE by adding an execution accountability layer
|
||
between the identity layer and the application layer:</t>
|
||
|
||
<figure title="WIMSE Extension Architecture Layers" anchor="fig-layers"><artwork type="ascii-art"><![CDATA[
|
||
+--------------------------------------------------+
|
||
| WIMSE Layer (Identity) |
|
||
| WIT: "I am Agent X (spiffe://td/agent/x)" |
|
||
| WPT: "I prove I control the key for Agent X" |
|
||
+--------------------------------------------------+
|
||
|
|
||
v
|
||
+--------------------------------------------------+
|
||
| ECT Layer (Execution Accountability) [This Spec]|
|
||
| ECT: "Task executed, dependencies met, |
|
||
| policy evaluated, outcome recorded" |
|
||
+--------------------------------------------------+
|
||
|
|
||
v
|
||
+--------------------------------------------------+
|
||
| Ledger Layer (Immutable Record) |
|
||
| "All ECTs appended to audit ledger" |
|
||
+--------------------------------------------------+
|
||
]]></artwork></figure>
|
||
|
||
<t>This extension reuses the WIMSE signing model, extends JWT claims
|
||
using standard JWT extensibility <xref target="RFC7519"/>, and maintains WIMSE
|
||
concepts including trust domains and workload identifiers.</t>
|
||
|
||
</section>
|
||
<section anchor="integration-points"><name>Integration Points</name>
|
||
|
||
<t>An ECT integrates with the WIMSE identity framework through the
|
||
following mechanisms:</t>
|
||
|
||
<t><list style="symbols">
|
||
<t>The ECT JOSE header "kid" parameter <bcp14>MUST</bcp14> reference the public
|
||
key identifier from the agent's WIT.</t>
|
||
<t>The ECT "iss" claim <bcp14>MUST</bcp14> use the WIMSE workload identifier
|
||
format (a SPIFFE ID <xref target="SPIFFE"/>).</t>
|
||
<t>The ECT <bcp14>MUST</bcp14> be signed with the same private key used to
|
||
generate the agent's WPT.</t>
|
||
<t>The ECT signing algorithm (JOSE header "alg" parameter) <bcp14>MUST</bcp14>
|
||
match the algorithm used in the corresponding WIT.</t>
|
||
</list></t>
|
||
|
||
<t>When an agent makes an HTTP request to another agent, the three
|
||
tokens are carried in their respective HTTP header fields:</t>
|
||
|
||
<figure title="HTTP Header Stacking" anchor="fig-http-headers"><artwork type="ascii-art"><![CDATA[
|
||
HTTP Request from Agent A to Agent B:
|
||
Workload-Identity: <WIT for Agent A>
|
||
Workload-Proof-Token: <WPT proving A controls key>
|
||
Execution-Context: <ECT recording what A did>
|
||
]]></artwork></figure>
|
||
|
||
<t>The receiving agent (Agent B) verifies in order:</t>
|
||
|
||
<t><list style="numbers" type="1">
|
||
<t>WIT and WPT (WIMSE layer): Proves who Agent A is and that the
|
||
request is authentic.</t>
|
||
<t>ECT (this extension): Records what Agent A did, what policy was
|
||
evaluated, and what precedent tasks exist.</t>
|
||
<t>Ledger: Appends the verified ECT to the audit ledger.</t>
|
||
</list></t>
|
||
|
||
</section>
|
||
</section>
|
||
<section anchor="ect-format"><name>Execution Context Token Format</name>
|
||
|
||
<t>An Execution Context Token is a JSON Web Token (JWT) <xref target="RFC7519"/>
|
||
signed as a JSON Web Signature (JWS) <xref target="RFC7515"/> using the Compact
|
||
Serialization. JWS JSON Serialization <bcp14>MUST NOT</bcp14> be used for ECTs.</t>
|
||
|
||
<section anchor="jose-header"><name>JOSE Header</name>
|
||
|
||
<t>The ECT JOSE header <bcp14>MUST</bcp14> contain the following parameters:</t>
|
||
|
||
<figure title="ECT JOSE Header Example" anchor="fig-header"><sourcecode type="json"><![CDATA[
|
||
{
|
||
"alg": "ES256",
|
||
"typ": "wimse-exec+jwt",
|
||
"kid": "agent-a-key-id-123"
|
||
}
|
||
]]></sourcecode></figure>
|
||
|
||
<dl>
|
||
<dt>alg:</dt>
|
||
<dd>
|
||
<t><bcp14>REQUIRED</bcp14>. The digital signature algorithm used to sign the ECT.
|
||
<bcp14>MUST</bcp14> match the algorithm in the corresponding WIT.
|
||
Implementations <bcp14>MUST</bcp14> support ES256 <xref target="RFC7518"/>. The "alg"
|
||
value <bcp14>MUST NOT</bcp14> be "none". Symmetric algorithms (e.g., HS256,
|
||
HS384, HS512) <bcp14>MUST NOT</bcp14> be used, as ECTs require asymmetric
|
||
signatures for non-repudiation.</t>
|
||
</dd>
|
||
<dt>typ:</dt>
|
||
<dd>
|
||
<t><bcp14>REQUIRED</bcp14>. <bcp14>MUST</bcp14> be set to "wimse-exec+jwt" to distinguish ECTs
|
||
from other JWT types, consistent with the WIMSE convention for
|
||
type parameter values.</t>
|
||
</dd>
|
||
<dt>kid:</dt>
|
||
<dd>
|
||
<t><bcp14>REQUIRED</bcp14>. The key identifier referencing the public key from
|
||
the agent's WIT <xref target="RFC7517"/>. Used by verifiers to look up the
|
||
correct public key for signature verification.</t>
|
||
</dd>
|
||
</dl>
|
||
|
||
</section>
|
||
<section anchor="jwt-claims"><name>JWT Claims</name>
|
||
|
||
<t>The ECT payload contains both WIMSE-compatible standard JWT claims
|
||
and execution context claims defined by this specification.</t>
|
||
|
||
<section anchor="wimse-compatible-claims"><name>WIMSE-Compatible Claims</name>
|
||
|
||
<t>The following standard JWT claims <xref target="RFC7519"/> <bcp14>MUST</bcp14> be present in
|
||
every ECT:</t>
|
||
|
||
<dl>
|
||
<dt>iss:</dt>
|
||
<dd>
|
||
<t><bcp14>REQUIRED</bcp14>. StringOrURI. The issuer of the ECT, which <bcp14>MUST</bcp14> be
|
||
the workload's SPIFFE ID in the format
|
||
<spanx style="verb">spiffe://<trust-domain>/<path></spanx>. This <bcp14>MUST</bcp14> match the "sub"
|
||
claim of the agent's WIT.</t>
|
||
</dd>
|
||
<dt>sub:</dt>
|
||
<dd>
|
||
<t><bcp14>OPTIONAL</bcp14>. StringOrURI. The subject of the ECT. When present,
|
||
<bcp14>MUST</bcp14> equal the "iss" claim.</t>
|
||
</dd>
|
||
<dt>aud:</dt>
|
||
<dd>
|
||
<t><bcp14>REQUIRED</bcp14>. StringOrURI or array of StringOrURI. The intended
|
||
recipient(s) of the ECT. Typically the next agent in the
|
||
workflow or the ledger endpoint.</t>
|
||
</dd>
|
||
<dt>iat:</dt>
|
||
<dd>
|
||
<t><bcp14>REQUIRED</bcp14>. NumericDate. The time at which the ECT was issued.
|
||
The ECT records a completed action, so the "iat" value reflects
|
||
when the record was created, not when task execution began.</t>
|
||
</dd>
|
||
<dt>exp:</dt>
|
||
<dd>
|
||
<t><bcp14>REQUIRED</bcp14>. NumericDate. The expiration time of the ECT.
|
||
Implementations <bcp14>SHOULD</bcp14> set this to 5 to 15 minutes after "iat"
|
||
to limit the replay window while allowing for reasonable clock
|
||
skew and processing time.</t>
|
||
</dd>
|
||
<dt>jti:</dt>
|
||
<dd>
|
||
<t><bcp14>OPTIONAL</bcp14>. String. A unique identifier for the ECT, useful for
|
||
additional replay detection.</t>
|
||
</dd>
|
||
</dl>
|
||
|
||
</section>
|
||
<section anchor="exec-claims"><name>Execution Context Claims</name>
|
||
|
||
<t>The following claims are defined by this specification:</t>
|
||
|
||
<dl>
|
||
<dt>wid:</dt>
|
||
<dd>
|
||
<t><bcp14>OPTIONAL</bcp14>. String. A workflow identifier that groups related
|
||
ECTs into a single workflow. When present, <bcp14>MUST</bcp14> be a UUID
|
||
<xref target="RFC9562"/>. When absent, the "tid" uniqueness requirement
|
||
applies globally across the entire ledger.</t>
|
||
</dd>
|
||
<dt>tid:</dt>
|
||
<dd>
|
||
<t><bcp14>REQUIRED</bcp14>. String. A globally unique task identifier in UUID
|
||
format <xref target="RFC9562"/>. Each task <bcp14>MUST</bcp14> have a unique "tid" value.
|
||
When "wid" is present, uniqueness is scoped to the workflow;
|
||
when "wid" is absent, uniqueness <bcp14>MUST</bcp14> be enforced globally
|
||
across the ledger.</t>
|
||
</dd>
|
||
<dt>exec_act:</dt>
|
||
<dd>
|
||
<t><bcp14>REQUIRED</bcp14>. String. The action or task type identifier describing
|
||
what the agent performed (e.g., "process_payment",
|
||
"validate_safety", "calculate_dosage"). Note: this claim is
|
||
intentionally named "exec_act" rather than "act" to avoid
|
||
collision with the "act" (Actor) claim registered by
|
||
<xref target="RFC8693"/>.</t>
|
||
</dd>
|
||
<dt>par:</dt>
|
||
<dd>
|
||
<t><bcp14>REQUIRED</bcp14>. Array of strings. Parent task identifiers
|
||
representing DAG dependencies. Each element <bcp14>MUST</bcp14> be a valid
|
||
"tid" from a previously executed task. An empty array indicates
|
||
a root task with no dependencies. A workflow <bcp14>MAY</bcp14> contain
|
||
multiple root tasks.</t>
|
||
</dd>
|
||
</dl>
|
||
|
||
</section>
|
||
<section anchor="policy-claims"><name>Policy Claims</name>
|
||
|
||
<t>The following claims record policy evaluation outcomes:</t>
|
||
|
||
<dl>
|
||
<dt>pol:</dt>
|
||
<dd>
|
||
<t><bcp14>REQUIRED</bcp14>. String. The identifier of the policy rule that was
|
||
evaluated for this task (e.g.,
|
||
"clinical_data_access_policy_v1").</t>
|
||
</dd>
|
||
<dt>pol_decision:</dt>
|
||
<dd>
|
||
<t><bcp14>REQUIRED</bcp14>. String. The result of the policy evaluation. <bcp14>MUST</bcp14>
|
||
be one of: "approved", "rejected", or "pending_human_review".</t>
|
||
</dd>
|
||
<dt>pol_enforcer:</dt>
|
||
<dd>
|
||
<t><bcp14>OPTIONAL</bcp14>. StringOrURI. The identity of the entity (system or
|
||
person) that evaluated the policy decision. When present,
|
||
<bcp14>SHOULD</bcp14> use SPIFFE ID format.</t>
|
||
</dd>
|
||
<dt>pol_timestamp:</dt>
|
||
<dd>
|
||
<t><bcp14>OPTIONAL</bcp14>. NumericDate. The time at which the policy decision
|
||
was made. When present, <bcp14>MUST</bcp14> be equal to or earlier than the
|
||
"iat" claim.</t>
|
||
</dd>
|
||
</dl>
|
||
|
||
</section>
|
||
<section anchor="data-integrity-claims"><name>Data Integrity Claims</name>
|
||
|
||
<t>The following claims provide integrity verification for task
|
||
inputs and outputs without revealing the data itself:</t>
|
||
|
||
<dl>
|
||
<dt>inp_hash:</dt>
|
||
<dd>
|
||
<t><bcp14>OPTIONAL</bcp14>. String. A cryptographic hash of the input data,
|
||
formatted as "hash-algorithm:base64url-encoded-hash" (e.g.,
|
||
"sha-256:n4bQgYhMfWWaL-qgxVrQFaO_TxsrC4Is0V1sFbDwCgg"). The
|
||
hash algorithm identifier <bcp14>SHOULD</bcp14> be "sha-256". The hash <bcp14>MUST</bcp14> be
|
||
computed over the raw octets of the input data.</t>
|
||
</dd>
|
||
<dt>out_hash:</dt>
|
||
<dd>
|
||
<t><bcp14>OPTIONAL</bcp14>. String. A cryptographic hash of the output data,
|
||
using the same format as "inp_hash".</t>
|
||
</dd>
|
||
<dt>inp_classification:</dt>
|
||
<dd>
|
||
<t><bcp14>OPTIONAL</bcp14>. String. The data sensitivity classification of the
|
||
input (e.g., "public", "confidential", "restricted").</t>
|
||
</dd>
|
||
</dl>
|
||
|
||
</section>
|
||
<section anchor="operational-claims"><name>Operational Claims</name>
|
||
|
||
<t>The following claims provide additional operational context:</t>
|
||
|
||
<dl>
|
||
<dt>exec_time_ms:</dt>
|
||
<dd>
|
||
<t><bcp14>OPTIONAL</bcp14>. Integer. The execution duration of the task in
|
||
milliseconds. <bcp14>MUST</bcp14> be a non-negative integer.</t>
|
||
</dd>
|
||
<dt>regulated_domain:</dt>
|
||
<dd>
|
||
<t><bcp14>OPTIONAL</bcp14>. String. The regulatory domain applicable to this
|
||
task. Values are drawn from an extensible set; initial values
|
||
include "medtech", "finance", and "military".</t>
|
||
</dd>
|
||
<dt>model_version:</dt>
|
||
<dd>
|
||
<t><bcp14>OPTIONAL</bcp14>. String. The version identifier of the AI or ML model
|
||
used to perform the task, if applicable.</t>
|
||
</dd>
|
||
</dl>
|
||
|
||
</section>
|
||
<section anchor="witness-claims"><name>Witness Claims</name>
|
||
|
||
<dl>
|
||
<dt>witnessed_by:</dt>
|
||
<dd>
|
||
<t><bcp14>OPTIONAL</bcp14>. Array of StringOrURI. Identifiers of third-party
|
||
entities that observed or attested to the execution of this
|
||
task. When present, each element <bcp14>SHOULD</bcp14> use SPIFFE ID format.
|
||
In regulated environments, implementations <bcp14>SHOULD</bcp14> use witness
|
||
attestation for critical decision points to mitigate the risk
|
||
of single-agent false claims.</t>
|
||
</dd>
|
||
</dl>
|
||
|
||
</section>
|
||
<section anchor="compensation-claims"><name>Compensation Claims</name>
|
||
|
||
<dl>
|
||
<dt>compensation_required:</dt>
|
||
<dd>
|
||
<t><bcp14>OPTIONAL</bcp14>. Boolean. Indicates whether this task is a
|
||
compensation or rollback action for a previous task.</t>
|
||
</dd>
|
||
<dt>compensation_reason:</dt>
|
||
<dd>
|
||
<t><bcp14>OPTIONAL</bcp14>. String. A human-readable reason for the compensation
|
||
action. <bcp14>MUST</bcp14> be present if "compensation_required" is true.</t>
|
||
</dd>
|
||
</dl>
|
||
|
||
<t>Note: compensation ECTs reference historical parent tasks via the
|
||
"par" claim. The referenced parent ECTs may have passed their own
|
||
"exp" time; ECT expiration applies to the verification window of
|
||
the ECT itself, not to its validity as a parent reference in the
|
||
ledger.</t>
|
||
|
||
</section>
|
||
<section anchor="extension-claims"><name>Extension Claims</name>
|
||
|
||
<dl>
|
||
<dt>ext:</dt>
|
||
<dd>
|
||
<t><bcp14>OPTIONAL</bcp14>. Object. An extension object for domain-specific
|
||
claims not defined by this specification. Implementations
|
||
that do not understand extension claims <bcp14>SHOULD</bcp14> ignore them.
|
||
To avoid key collisions between different domains, extension
|
||
key names <bcp14>SHOULD</bcp14> use reverse domain notation (e.g.,
|
||
"com.example.custom_field").</t>
|
||
</dd>
|
||
</dl>
|
||
|
||
<t>The "ext" claim is a generic extension mechanism; it is not
|
||
registered in the IANA JWT Claims registry because its semantics
|
||
depend on the domain-specific claims within it.</t>
|
||
|
||
</section>
|
||
</section>
|
||
<section anchor="complete-ect-example"><name>Complete ECT Example</name>
|
||
|
||
<t>The following is a complete ECT payload example:</t>
|
||
|
||
<figure title="Complete ECT Payload Example" anchor="fig-full-ect"><sourcecode type="json"><![CDATA[
|
||
{
|
||
"iss": "spiffe://example.com/agent/clinical",
|
||
"sub": "spiffe://example.com/agent/clinical",
|
||
"aud": "spiffe://example.com/agent/safety",
|
||
"iat": 1772064150,
|
||
"exp": 1772064750,
|
||
|
||
"wid": "a0b1c2d3-e4f5-6789-abcd-ef0123456789",
|
||
"tid": "550e8400-e29b-41d4-a716-446655440001",
|
||
"exec_act": "recommend_treatment",
|
||
"par": [],
|
||
|
||
"pol": "clinical_reasoning_policy_v2",
|
||
"pol_decision": "approved",
|
||
"pol_enforcer": "spiffe://example.com/policy/clinical-engine",
|
||
"pol_timestamp": 1772064145,
|
||
|
||
"inp_hash": "sha-256:n4bQgYhMfWWaL-qgxVrQFaO_TxsrC4Is0V1sFbDwCgg",
|
||
"out_hash": "sha-256:LCa0a2j_xo_5m0U8HTBBNBNCLXBkg7-g-YpeiGJm564",
|
||
"inp_classification": "confidential",
|
||
"exec_time_ms": 245,
|
||
"regulated_domain": "medtech",
|
||
"model_version": "clinical-reasoning-v4.2",
|
||
|
||
"witnessed_by": [
|
||
"spiffe://example.com/audit/observer-1"
|
||
]
|
||
}
|
||
]]></sourcecode></figure>
|
||
|
||
</section>
|
||
</section>
|
||
<section anchor="http-header"><name>HTTP Header Transport</name>
|
||
|
||
<section anchor="execution-context-header-field"><name>Execution-Context Header Field</name>
|
||
|
||
<t>This specification defines the Execution-Context HTTP header field
|
||
<xref target="RFC9110"/> for transporting ECTs between agents.</t>
|
||
|
||
<t>The header field value is the ECT in JWS Compact Serialization
|
||
format <xref target="RFC7515"/>. The value consists of three Base64url-encoded
|
||
parts separated by period (".") characters.</t>
|
||
|
||
<t>An agent sending a request to another agent includes the
|
||
Execution-Context header alongside the WIMSE Workload-Identity
|
||
and Workload-Proof-Token headers:</t>
|
||
|
||
<figure title="HTTP Request with ECT Header" anchor="fig-http-example"><artwork><![CDATA[
|
||
GET /api/safety-check HTTP/1.1
|
||
Host: safety-agent.example.com
|
||
Workload-Identity: eyJhbGci...WIT...
|
||
Workload-Proof-Token: eyJhbGci...WPT...
|
||
Execution-Context: eyJhbGci...ECT...
|
||
]]></artwork></figure>
|
||
|
||
<t>When multiple parent tasks contribute context to a single request,
|
||
multiple Execution-Context header field lines <bcp14>MAY</bcp14> be included, each
|
||
carrying a separate ECT in JWS Compact Serialization format.</t>
|
||
|
||
</section>
|
||
</section>
|
||
<section anchor="dag-validation"><name>DAG Validation</name>
|
||
|
||
<section anchor="overview"><name>Overview</name>
|
||
|
||
<t>ECTs form a Directed Acyclic Graph (DAG) where each task
|
||
references its parent tasks via the "par" claim. This structure
|
||
provides a cryptographically signed record of execution ordering,
|
||
enabling auditors to reconstruct the complete workflow and verify
|
||
that required predecessor tasks were recorded before dependent
|
||
tasks.</t>
|
||
|
||
</section>
|
||
<section anchor="validation-rules"><name>Validation Rules</name>
|
||
|
||
<t>When receiving and verifying an ECT, implementations <bcp14>MUST</bcp14> perform
|
||
the following DAG validation steps:</t>
|
||
|
||
<t><list style="numbers" type="1">
|
||
<t>Task ID Uniqueness: The "tid" claim <bcp14>MUST</bcp14> be unique within the
|
||
applicable scope (the workflow identified by "wid", or the
|
||
entire ledger if "wid" is absent). If a task with the same
|
||
"tid" already exists, the ECT <bcp14>MUST</bcp14> be rejected.</t>
|
||
<t>Parent Existence: Every task identifier listed in the "par"
|
||
array <bcp14>MUST</bcp14> correspond to a task that has been previously
|
||
recorded in the ledger. If any parent task is not found, the
|
||
ECT <bcp14>MUST</bcp14> be rejected.</t>
|
||
<t>Temporal Ordering: The "iat" value of every parent task <bcp14>MUST</bcp14> be
|
||
less than the "iat" value of the current task plus a
|
||
configurable clock skew tolerance (<bcp14>RECOMMENDED</bcp14>: 30 seconds).
|
||
If any parent task has an "iat" that violates this constraint,
|
||
the ECT <bcp14>MUST</bcp14> be rejected.</t>
|
||
<t>Acyclicity: Following the chain of parent references <bcp14>MUST NOT</bcp14>
|
||
lead back to the current task's "tid". If a cycle is detected,
|
||
the ECT <bcp14>MUST</bcp14> be rejected.</t>
|
||
<t>Trust Domain Consistency: Parent tasks <bcp14>SHOULD</bcp14> belong to the
|
||
same trust domain or to a trust domain with which a federation
|
||
relationship has been established.</t>
|
||
</list></t>
|
||
|
||
</section>
|
||
<section anchor="dag-validation-algorithm"><name>DAG Validation Algorithm</name>
|
||
|
||
<t>The following pseudocode describes the DAG validation procedure:</t>
|
||
|
||
<figure title="DAG Validation Pseudocode" anchor="fig-dag-validation"><sourcecode type="pseudocode"><![CDATA[
|
||
function validate_dag(ect, ledger, clock_skew_tolerance):
|
||
// Step 1: Uniqueness check
|
||
if ledger.contains(ect.tid, ect.wid):
|
||
return error("Task ID already exists in ledger")
|
||
|
||
// Step 2: Parent existence and temporal ordering
|
||
for parent_id in ect.par:
|
||
parent = ledger.get(parent_id)
|
||
if parent is null:
|
||
return error("Parent task not found: " + parent_id)
|
||
if parent.iat >= ect.iat + clock_skew_tolerance:
|
||
return error("Parent task not earlier than current")
|
||
|
||
// Step 3: Cycle detection
|
||
visited = set()
|
||
if has_cycle(ect.tid, ect.par, ledger, visited):
|
||
return error("Circular dependency detected")
|
||
|
||
return success
|
||
|
||
function has_cycle(target_tid, parent_ids, ledger, visited):
|
||
for parent_id in parent_ids:
|
||
if parent_id == target_tid:
|
||
return true
|
||
if parent_id in visited:
|
||
continue
|
||
visited.add(parent_id)
|
||
parent = ledger.get(parent_id)
|
||
if parent is not null:
|
||
if has_cycle(target_tid, parent.par, ledger, visited):
|
||
return true
|
||
return false
|
||
]]></sourcecode></figure>
|
||
|
||
<t>The cycle detection traverses the ancestor graph rooted at the
|
||
current task's parents. The complexity is O(V) where V is the
|
||
number of ancestor nodes reachable from the current task's parent
|
||
references. For typical workflows with shallow DAGs, this is
|
||
efficient. Implementations <bcp14>SHOULD</bcp14> cache cycle detection results
|
||
for previously verified tasks to avoid redundant traversals.</t>
|
||
|
||
</section>
|
||
</section>
|
||
<section anchor="verification"><name>Signature and Token Verification</name>
|
||
|
||
<section anchor="verification-procedure"><name>Verification Procedure</name>
|
||
|
||
<t>When an agent receives an ECT, it <bcp14>MUST</bcp14> perform the following
|
||
verification steps in order:</t>
|
||
|
||
<t><list style="numbers" type="1">
|
||
<t>Parse the JWS Compact Serialization to extract the JOSE header,
|
||
payload, and signature components per <xref target="RFC7515"/>.</t>
|
||
<t>Verify that the "typ" header parameter is "wimse-exec+jwt".</t>
|
||
<t>Verify that the "alg" header parameter is not "none" and is
|
||
not a symmetric algorithm.</t>
|
||
<t>Verify the "kid" header parameter references a known, valid
|
||
public key from a WIT within the trust domain.</t>
|
||
<t>Retrieve the public key identified by "kid" and verify the JWS
|
||
signature per <xref target="RFC7515"/> Section 5.2.</t>
|
||
<t>Verify the "alg" header parameter matches the algorithm in the
|
||
corresponding WIT.</t>
|
||
<t>Verify the "iss" claim matches the "sub" claim of the WIT
|
||
associated with the "kid" public key.</t>
|
||
<t>Verify the "aud" claim contains the verifier's own workload
|
||
identity or an expected recipient identifier.</t>
|
||
<t>Verify the "exp" claim indicates the ECT has not expired.</t>
|
||
<t>Verify the "iat" claim is not unreasonably far in the past
|
||
(implementation-specific threshold, <bcp14>RECOMMENDED</bcp14> maximum of
|
||
15 minutes).</t>
|
||
<t>Verify all required claims ("tid", "exec_act", "par", "pol",
|
||
"pol_decision") are present and well-formed.</t>
|
||
<t>Verify "pol_decision" is one of "approved", "rejected", or
|
||
"pending_human_review".</t>
|
||
<t>Perform DAG validation per <xref target="dag-validation"/>.</t>
|
||
<t>If all checks pass, the ECT <bcp14>MUST</bcp14> be appended to the audit
|
||
ledger.</t>
|
||
</list></t>
|
||
|
||
<t>If any verification step fails, the ECT <bcp14>MUST</bcp14> be rejected and the
|
||
failure <bcp14>MUST</bcp14> be logged for audit purposes. Error messages
|
||
<bcp14>SHOULD NOT</bcp14> reveal whether specific parent task IDs exist in the
|
||
ledger, to prevent information disclosure.</t>
|
||
|
||
</section>
|
||
<section anchor="verification-pseudocode"><name>Verification Pseudocode</name>
|
||
|
||
<figure title="ECT Verification Pseudocode" anchor="fig-verification"><sourcecode type="pseudocode"><![CDATA[
|
||
function verify_ect(ect_jws, verifier_id,
|
||
trust_domain_keys, ledger):
|
||
// Parse JWS
|
||
(header, payload, signature) = parse_jws(ect_jws)
|
||
|
||
// Verify header
|
||
if header.typ != "wimse-exec+jwt":
|
||
return reject("Invalid typ parameter")
|
||
|
||
if header.alg == "none" or is_symmetric(header.alg):
|
||
return reject("Prohibited algorithm")
|
||
|
||
// Look up public key
|
||
public_key = trust_domain_keys.get(header.kid)
|
||
if public_key is null:
|
||
return reject("Unknown key identifier")
|
||
|
||
// Verify signature
|
||
if not verify_jws_signature(header, payload,
|
||
signature, public_key):
|
||
return reject("Invalid signature")
|
||
|
||
// Verify algorithm alignment
|
||
wit = get_wit_for_key(header.kid)
|
||
if header.alg != wit.alg:
|
||
return reject("Algorithm mismatch with WIT")
|
||
|
||
// Verify issuer matches WIT subject
|
||
if payload.iss != wit.sub:
|
||
return reject("Issuer does not match WIT subject")
|
||
|
||
// Verify audience
|
||
if verifier_id not in payload.aud:
|
||
return reject("ECT not intended for this recipient")
|
||
|
||
// Verify not expired
|
||
if payload.exp < current_time():
|
||
return reject("ECT has expired")
|
||
|
||
// Verify iat freshness
|
||
if payload.iat < current_time() - max_age_threshold:
|
||
return reject("ECT issued too long ago")
|
||
|
||
// Verify required claims
|
||
for claim in ["tid", "exec_act", "par",
|
||
"pol", "pol_decision"]:
|
||
if claim not in payload:
|
||
return reject("Missing required claim: " + claim)
|
||
|
||
// Validate pol_decision value
|
||
if payload.pol_decision not in
|
||
["approved", "rejected", "pending_human_review"]:
|
||
return reject("Invalid pol_decision value")
|
||
|
||
// Validate DAG
|
||
result = validate_dag(payload, ledger,
|
||
clock_skew_tolerance)
|
||
if result is error:
|
||
return reject("DAG validation failed")
|
||
|
||
// All checks passed; append to ledger
|
||
ledger.append(payload)
|
||
return accept
|
||
]]></sourcecode></figure>
|
||
|
||
</section>
|
||
</section>
|
||
<section anchor="ledger-interface"><name>Audit Ledger Interface</name>
|
||
|
||
<section anchor="overview-1"><name>Overview</name>
|
||
|
||
<t>ECTs are designed to be recorded in an immutable audit ledger for
|
||
compliance verification and post-hoc analysis. This specification
|
||
defines the logical interface for the ledger but does not mandate
|
||
a specific storage technology. Implementations <bcp14>MAY</bcp14> use
|
||
append-only logs, databases with cryptographic commitment schemes,
|
||
distributed ledgers, or any storage mechanism that provides the
|
||
required properties.</t>
|
||
|
||
</section>
|
||
<section anchor="required-properties"><name>Required Properties</name>
|
||
|
||
<t>An audit ledger implementation <bcp14>MUST</bcp14> provide:</t>
|
||
|
||
<t><list style="numbers" type="1">
|
||
<t>Append-only semantics: Once an ECT is recorded, it <bcp14>MUST NOT</bcp14> be
|
||
modified or deleted.</t>
|
||
<t>Ordering: The ledger <bcp14>MUST</bcp14> maintain a total ordering of ECT
|
||
entries via a monotonically increasing sequence number.</t>
|
||
<t>Lookup by task ID: The ledger <bcp14>MUST</bcp14> support efficient retrieval
|
||
of ECT entries by "tid" value.</t>
|
||
<t>Integrity verification: The ledger <bcp14>SHOULD</bcp14> provide a mechanism
|
||
to verify that no entries have been tampered with (e.g.,
|
||
hash chains or Merkle trees).</t>
|
||
</list></t>
|
||
|
||
<t>The ledger <bcp14>SHOULD</bcp14> be maintained by an entity independent of the
|
||
workflow agents to reduce the risk of collusion.</t>
|
||
|
||
</section>
|
||
<section anchor="ledger-entry-structure"><name>Ledger Entry Structure</name>
|
||
|
||
<t>Each ledger entry is a logical record containing:</t>
|
||
|
||
<figure title="Ledger Entry Example" anchor="fig-ledger-entry"><sourcecode type="json"><![CDATA[
|
||
{
|
||
"ledger_sequence": 42,
|
||
"task_id": "550e8400-e29b-41d4-a716-446655440001",
|
||
"agent_id": "spiffe://example.com/agent/clinical",
|
||
"action": "recommend_treatment",
|
||
"parents": [],
|
||
"ect_jws": "eyJhbGciOiJFUzI1NiIs...<complete JWS>",
|
||
"signature_verified": true,
|
||
"verification_timestamp": "2026-02-24T15:42:31.000Z",
|
||
"stored_timestamp": "2026-02-24T15:42:31.050Z"
|
||
}
|
||
]]></sourcecode></figure>
|
||
|
||
<t>The "ect_jws" field contains the full JWS Compact Serialization
|
||
and is the authoritative record. The other fields ("agent_id",
|
||
"action", "parents") are convenience indexes derived from the
|
||
ECT payload; if they disagree with the JWS payload, the JWS
|
||
payload takes precedence.</t>
|
||
|
||
</section>
|
||
</section>
|
||
<section anchor="use-cases"><name>Use Cases</name>
|
||
|
||
<t>This section describes representative use cases demonstrating how
|
||
ECTs provide execution records in regulated environments. These
|
||
examples demonstrate ECT mechanics; production deployments would
|
||
include additional domain-specific requirements beyond the scope
|
||
of this specification.</t>
|
||
|
||
<t>Note: task identifiers in this section are abbreviated for
|
||
readability. In production, all "tid" values <bcp14>MUST</bcp14> be UUIDs per
|
||
<xref target="RFC9562"/>.</t>
|
||
|
||
<section anchor="medical-device-sdlc-workflow"><name>Medical Device SDLC Workflow</name>
|
||
|
||
<t>In a medical device software development lifecycle (SDLC),
|
||
AI agents assist across multiple phases from requirements
|
||
analysis through release approval. Regulatory frameworks
|
||
including <xref target="FDA-21CFR11"/> Section 11.10(e) and <xref target="EU-MDR"/> require
|
||
audit trails documenting the complete development process for
|
||
software used in medical devices.</t>
|
||
|
||
<figure title="Medical Device SDLC Workflow" anchor="fig-medtech-sdlc"><artwork><![CDATA[
|
||
Agent A (Spec Reviewer):
|
||
tid: task-001 par: []
|
||
exec_act: review_requirements_spec
|
||
pol: spec_review_policy_v2 pol_decision: approved
|
||
|
||
Agent B (Code Generator):
|
||
tid: task-002 par: [task-001]
|
||
exec_act: implement_module
|
||
pol: coding_standards_v3 pol_decision: approved
|
||
|
||
Agent C (Test Agent):
|
||
tid: task-003 par: [task-002]
|
||
exec_act: execute_test_suite
|
||
pol: test_coverage_policy_v1 pol_decision: approved
|
||
|
||
Agent D (Build Agent):
|
||
tid: task-004 par: [task-003]
|
||
exec_act: build_release_artifact
|
||
pol: build_validation_v2 pol_decision: approved
|
||
|
||
Human Release Manager:
|
||
tid: task-005 par: [task-004]
|
||
exec_act: approve_release
|
||
pol: release_approval_policy pol_decision: approved
|
||
pol_enforcer: spiffe://meddev.example/human/release-mgr-42
|
||
witnessed_by: [spiffe://meddev.example/audit/qa-observer-1]
|
||
]]></artwork></figure>
|
||
|
||
<t>ECTs record that requirements were reviewed before implementation
|
||
began, that tests were executed against the implemented code, that
|
||
the build artifact was validated, and that a human release manager
|
||
explicitly approved the release. The DAG structure ensures no
|
||
phase was skipped or reordered.</t>
|
||
|
||
<section anchor="fda-audit-with-dag-reconstruction"><name>FDA Audit with DAG Reconstruction</name>
|
||
|
||
<t>During a regulatory audit, an FDA reviewer requests evidence of
|
||
the development process for a specific software release. The
|
||
auditing authority retrieves all ECTs sharing the same workflow
|
||
identifier ("wid") from the audit ledger and reconstructs the
|
||
complete DAG:</t>
|
||
|
||
<figure title="Reconstructed DAG for FDA Audit" anchor="fig-fda-audit"><artwork><![CDATA[
|
||
task-001 (review_requirements_spec)
|
||
|
|
||
v
|
||
task-002 (implement_module)
|
||
|
|
||
v
|
||
task-003 (execute_test_suite)
|
||
|
|
||
v
|
||
task-004 (build_release_artifact)
|
||
|
|
||
v
|
||
task-005 (approve_release) [human, witnessed]
|
||
]]></artwork></figure>
|
||
|
||
<t>The reconstructed DAG provides cryptographic evidence that:</t>
|
||
|
||
<t><list style="symbols">
|
||
<t>Each phase was executed by an identified and authenticated agent.</t>
|
||
<t>Policy checkpoints were evaluated at every phase transition.</t>
|
||
<t>The execution sequence was maintained (no step was bypassed).</t>
|
||
<t>A human-in-the-loop approved the final release, with independent
|
||
witness attestation.</t>
|
||
<t>Timestamps and execution durations are recorded for each step.</t>
|
||
</list></t>
|
||
|
||
<t>This can contribute to compliance with:</t>
|
||
|
||
<t><list style="symbols">
|
||
<t><xref target="FDA-21CFR11"/> Section 11.10(e): Computer-generated audit trails
|
||
that record the date, time, and identity of the operator.</t>
|
||
<t><xref target="EU-MDR"/> Annex II: Technical documentation traceability for the
|
||
software development lifecycle.</t>
|
||
<t><xref target="EU-AI-ACT"/> Article 12: Automatic logging capabilities for
|
||
high-risk AI systems involved in the development process.</t>
|
||
<t><xref target="EU-AI-ACT"/> Article 14: ECTs can record evidence that human
|
||
oversight events occurred during the release process.</t>
|
||
</list></t>
|
||
|
||
</section>
|
||
</section>
|
||
<section anchor="financial-trading-workflow"><name>Financial Trading Workflow</name>
|
||
|
||
<t>In a financial trading workflow, agents perform risk assessment,
|
||
compliance verification, and trade execution. The DAG structure
|
||
records that compliance checks were evaluated before trade
|
||
execution.</t>
|
||
|
||
<figure title="Financial Trading Workflow" anchor="fig-finance"><artwork><![CDATA[
|
||
Agent A (Risk Assessment):
|
||
tid: task-001 par: []
|
||
exec_act: calculate_risk_exposure
|
||
pol: risk_limits_policy_v2 pol_decision: approved
|
||
|
||
Agent B (Compliance):
|
||
tid: task-002 par: [task-001]
|
||
exec_act: verify_compliance
|
||
pol: compliance_check_v1 pol_decision: approved
|
||
|
||
Agent C (Execution):
|
||
tid: task-003 par: [task-002]
|
||
exec_act: execute_trade
|
||
pol: execution_policy_v3 pol_decision: approved
|
||
]]></artwork></figure>
|
||
|
||
<t>This can contribute to compliance with:</t>
|
||
|
||
<t><list style="symbols">
|
||
<t><xref target="MIFID-II"/>: ECTs provide cryptographic records of the execution
|
||
sequence that can support transaction audit requirements.</t>
|
||
<t><xref target="DORA"/> Article 12: ECTs contribute to ICT activity logging.</t>
|
||
<t><xref target="EU-AI-ACT"/> Article 12: Logging of decisions made by AI-driven
|
||
systems.</t>
|
||
</list></t>
|
||
|
||
</section>
|
||
<section anchor="compensation-and-rollback"><name>Compensation and Rollback</name>
|
||
|
||
<t>When a compliance violation is discovered after execution, ECTs
|
||
provide a mechanism to record authorized compensation actions with
|
||
a cryptographic link to the original task:</t>
|
||
|
||
<figure title="Compensation ECT Example" anchor="fig-compensation"><sourcecode type="json"><![CDATA[
|
||
{
|
||
"iss": "spiffe://bank.com/agent/operations",
|
||
"sub": "spiffe://bank.com/agent/operations",
|
||
"aud": "spiffe://bank.com/system/ledger",
|
||
"iat": 1772150550,
|
||
"exp": 1772151150,
|
||
"wid": "d3e4f5a6-b7c8-9012-def0-123456789012",
|
||
"tid": "550e8400-e29b-41d4-a716-446655440099",
|
||
"exec_act": "initiate_trade_rollback",
|
||
"par": ["550e8400-e29b-41d4-a716-446655440003"],
|
||
"pol": "compensation_policy_v1",
|
||
"pol_decision": "approved",
|
||
"pol_enforcer": "spiffe://bank.com/human/compliance-officer",
|
||
"compensation_required": true,
|
||
"compensation_reason": "policy_violation_in_parent_trade"
|
||
}
|
||
]]></sourcecode></figure>
|
||
|
||
<t>The "par" claim links the compensation action to the original
|
||
trade, creating an auditable chain from execution through
|
||
violation discovery to remediation.</t>
|
||
|
||
</section>
|
||
<section anchor="autonomous-logistics-coordination"><name>Autonomous Logistics Coordination</name>
|
||
|
||
<t>In a logistics workflow, multiple compliance checks must complete
|
||
before shipment commitment. The DAG structure records that all
|
||
required checks were completed:</t>
|
||
|
||
<figure title="Logistics Workflow with Parallel Tasks" anchor="fig-logistics"><artwork><![CDATA[
|
||
Agent A (Route Planning):
|
||
tid: task-001 par: []
|
||
exec_act: plan_route
|
||
pol: route_policy_v1 pol_decision: approved
|
||
|
||
Agent B (Customs):
|
||
tid: task-002 par: [task-001]
|
||
exec_act: validate_customs
|
||
pol: customs_policy_v2 pol_decision: approved
|
||
|
||
Agent C (Safety):
|
||
tid: task-003 par: [task-001]
|
||
exec_act: verify_cargo_safety
|
||
pol: safety_policy_v1 pol_decision: approved
|
||
|
||
Agent D (Payment):
|
||
tid: task-004 par: [task-002, task-003]
|
||
exec_act: authorize_payment
|
||
pol: payment_policy_v3 pol_decision: approved
|
||
|
||
System (Commitment):
|
||
tid: task-005 par: [task-004]
|
||
exec_act: commit_shipment
|
||
pol: commitment_policy_v1 pol_decision: approved
|
||
]]></artwork></figure>
|
||
|
||
<t>Note that tasks 002 and 003 both depend only on task-001 and can
|
||
execute in parallel. Task 004 depends on both, demonstrating the
|
||
DAG's ability to represent parallel execution with a join point.</t>
|
||
|
||
</section>
|
||
</section>
|
||
<section anchor="security-considerations"><name>Security Considerations</name>
|
||
|
||
<t>This section addresses security considerations following the
|
||
guidance in <xref target="RFC3552"/>.</t>
|
||
|
||
<section anchor="threat-model"><name>Threat Model</name>
|
||
|
||
<t>The following threat actors are considered:</t>
|
||
|
||
<t><list style="symbols">
|
||
<t>Malicious agent (insider threat): An agent within the trust
|
||
domain that intentionally creates false ECT claims.</t>
|
||
<t>Compromised agent (external attacker): An agent whose private
|
||
key has been obtained by an external attacker.</t>
|
||
<t>Ledger tamperer: An entity attempting to modify or delete ledger
|
||
entries after they have been recorded.</t>
|
||
<t>Time manipulator: An entity attempting to manipulate timestamps
|
||
to alter perceived execution ordering.</t>
|
||
</list></t>
|
||
|
||
</section>
|
||
<section anchor="self-assertion-limitation"><name>Self-Assertion Limitation</name>
|
||
|
||
<t>ECTs are self-asserted by the executing agent. The agent claims
|
||
what it did, and this claim is signed with its private key. A
|
||
compromised or malicious agent could create ECTs with false claims
|
||
(e.g., setting "pol_decision" to "approved" without actually
|
||
evaluating the policy).</t>
|
||
|
||
<t>ECTs do not independently verify that:</t>
|
||
|
||
<t><list style="symbols">
|
||
<t>The claimed execution actually occurred as described</t>
|
||
<t>The policy evaluation was correctly performed</t>
|
||
<t>The input/output hashes correspond to the actual data processed</t>
|
||
<t>The agent faithfully performed the stated action</t>
|
||
</list></t>
|
||
|
||
<t>The trustworthiness of ECT claims depends on the trustworthiness
|
||
of the signing agent. To mitigate single-agent false claims,
|
||
regulated environments <bcp14>SHOULD</bcp14> use the "witnessed_by" mechanism
|
||
to include independent third-party observers at critical decision
|
||
points.</t>
|
||
|
||
</section>
|
||
<section anchor="organizational-prerequisites"><name>Organizational Prerequisites</name>
|
||
|
||
<t>ECTs operate within a broader trust framework. The guarantees
|
||
provided by ECTs are only meaningful when the following
|
||
organizational controls are in place:</t>
|
||
|
||
<t><list style="symbols">
|
||
<t>Key management governance: Controls over who provisions agent
|
||
keys and how keys are protected.</t>
|
||
<t>Ledger integrity governance: The ledger is maintained by an
|
||
entity independent of the workflow agents.</t>
|
||
<t>Policy lifecycle management: Policy identifiers in ECTs map to
|
||
actual, validated policy rules.</t>
|
||
<t>Agent deployment governance: Agents are deployed and maintained
|
||
in a manner that preserves their integrity.</t>
|
||
</list></t>
|
||
|
||
</section>
|
||
<section anchor="signature-verification"><name>Signature Verification</name>
|
||
|
||
<t>ECTs <bcp14>MUST</bcp14> be signed with the agent's private key using JWS
|
||
<xref target="RFC7515"/>. The signature algorithm <bcp14>MUST</bcp14> match the algorithm
|
||
specified in the agent's WIT. Receivers <bcp14>MUST</bcp14> verify the ECT
|
||
signature against the WIT public key before processing any
|
||
claims. Receivers <bcp14>MUST</bcp14> verify that the signing key has not been
|
||
revoked within the trust domain.</t>
|
||
|
||
<t>If signature verification fails, the ECT <bcp14>MUST</bcp14> be rejected entirely
|
||
and the failure <bcp14>MUST</bcp14> be logged.</t>
|
||
|
||
<t>Implementations <bcp14>MUST</bcp14> use established JWS libraries and <bcp14>MUST NOT</bcp14>
|
||
implement custom signature verification.</t>
|
||
|
||
</section>
|
||
<section anchor="replay-attack-prevention"><name>Replay Attack Prevention</name>
|
||
|
||
<t>ECTs include short expiration times (<bcp14>RECOMMENDED</bcp14>: 5-15 minutes) to
|
||
limit the window for replay attacks. The "aud" claim restricts
|
||
replay to unintended recipients: an ECT intended for Agent B
|
||
will be rejected by Agent C. The "iat" claim enables receivers to
|
||
reject ECTs that are too old, even if not yet expired.</t>
|
||
|
||
<t>The DAG structure provides additional replay protection: an ECT
|
||
referencing parent tasks that already have a recorded child task
|
||
with the same action can be flagged as a potential replay.</t>
|
||
|
||
<t>Implementations <bcp14>SHOULD</bcp14> maintain a cache of recently-seen "jti"
|
||
values (when present) to detect replayed ECTs within the
|
||
expiration window.</t>
|
||
|
||
</section>
|
||
<section anchor="man-in-the-middle-protection"><name>Man-in-the-Middle Protection</name>
|
||
|
||
<t>ECTs do not replace transport-layer security. ECTs <bcp14>MUST</bcp14> be
|
||
transmitted over TLS or mTLS connections. When used with the WIMSE
|
||
service-to-service protocol <xref target="I-D.ietf-wimse-s2s-protocol"/>,
|
||
transport security is already established. HTTP Message Signatures
|
||
<xref target="RFC9421"/> provide an alternative channel binding mechanism.</t>
|
||
|
||
<t>The defense-in-depth model provides:</t>
|
||
|
||
<t><list style="symbols">
|
||
<t>TLS/mTLS (transport layer): Prevents network-level tampering.</t>
|
||
<t>WIT/WPT (WIMSE identity layer): Proves agent identity and
|
||
request authorization.</t>
|
||
<t>ECT (execution accountability layer): Records what the agent did
|
||
and under what policy.</t>
|
||
</list></t>
|
||
|
||
</section>
|
||
<section anchor="key-compromise"><name>Key Compromise</name>
|
||
|
||
<t>If an agent's private key is compromised, an attacker can forge
|
||
ECTs that appear to originate from that agent. To mitigate this
|
||
risk:</t>
|
||
|
||
<t><list style="symbols">
|
||
<t>Implementations <bcp14>SHOULD</bcp14> use short-lived keys and rotate them
|
||
frequently (hours to days, not months).</t>
|
||
<t>Private keys <bcp14>SHOULD</bcp14> be stored in Hardware Security Modules (HSMs)
|
||
or equivalent secure key storage.</t>
|
||
<t>Trust domains <bcp14>MUST</bcp14> support rapid key revocation.</t>
|
||
<t>Upon suspected compromise, the trust domain <bcp14>MUST</bcp14> revoke the
|
||
compromised key and issue a new WIT with a fresh key pair.</t>
|
||
</list></t>
|
||
|
||
<t>ECTs signed with a compromised key that were recorded in the
|
||
ledger before revocation remain valid historical records but <bcp14>SHOULD</bcp14>
|
||
be flagged in the ledger as "signed with subsequently revoked key"
|
||
for audit purposes.</t>
|
||
|
||
</section>
|
||
<section anchor="collusion-and-false-claims"><name>Collusion and False Claims</name>
|
||
|
||
<t>A single malicious agent cannot forge parent task references
|
||
because DAG validation requires parent tasks to exist in the
|
||
ledger. However, multiple colluding agents could potentially
|
||
create a false execution history if they control the ledger.</t>
|
||
|
||
<t>Mitigations include:</t>
|
||
|
||
<t><list style="symbols">
|
||
<t>Independent ledger maintenance: The ledger <bcp14>SHOULD</bcp14> be maintained
|
||
by an entity independent of the workflow agents.</t>
|
||
<t>Witness attestation: Using the "witnessed_by" claim to include
|
||
independent third-party observers.</t>
|
||
<t>Cross-verification: Multiple independent ledger replicas can be
|
||
compared for consistency.</t>
|
||
<t>Out-of-band audit: External auditors periodically verify ledger
|
||
contents against expected workflow patterns.</t>
|
||
</list></t>
|
||
|
||
</section>
|
||
<section anchor="denial-of-service"><name>Denial of Service</name>
|
||
|
||
<t>ECT signature verification is computationally inexpensive
|
||
(approximately 1ms per ECT on modern hardware for ES256). DAG
|
||
validation complexity is O(V) where V is the number of ancestor
|
||
nodes reachable from the parent references; for typical shallow
|
||
DAGs this is efficient.</t>
|
||
|
||
<t>Implementations <bcp14>SHOULD</bcp14> apply rate limiting at the API layer to
|
||
prevent excessive ECT submissions. DAG validation <bcp14>SHOULD</bcp14> be
|
||
performed after signature verification to avoid wasting resources
|
||
on unsigned or incorrectly signed tokens.</t>
|
||
|
||
</section>
|
||
<section anchor="timestamp-accuracy"><name>Timestamp Accuracy</name>
|
||
|
||
<t>ECTs rely on timestamps ("iat", "exp") for temporal ordering.
|
||
Clock skew between agents can lead to incorrect ordering
|
||
judgments. Implementations <bcp14>SHOULD</bcp14> use synchronized time sources
|
||
(e.g., NTP) and <bcp14>SHOULD</bcp14> allow a configurable clock skew tolerance
|
||
(<bcp14>RECOMMENDED</bcp14>: 30 seconds).</t>
|
||
|
||
<t>The temporal ordering check in DAG validation incorporates the
|
||
clock skew tolerance to account for minor clock differences
|
||
between agents.</t>
|
||
|
||
</section>
|
||
<section anchor="ect-size-constraints"><name>ECT Size Constraints</name>
|
||
|
||
<t>ECTs with many parent tasks or large extension objects can
|
||
increase HTTP header size. Implementations <bcp14>SHOULD</bcp14> limit the "par"
|
||
array to a reasonable size and <bcp14>SHOULD</bcp14> set maximum size limits for
|
||
the "ext" object to prevent abuse.</t>
|
||
|
||
</section>
|
||
</section>
|
||
<section anchor="privacy-considerations"><name>Privacy Considerations</name>
|
||
|
||
<section anchor="data-exposure-in-ects"><name>Data Exposure in ECTs</name>
|
||
|
||
<t>ECTs necessarily reveal:</t>
|
||
|
||
<t><list style="symbols">
|
||
<t>Agent identities ("iss", "aud") for accountability purposes</t>
|
||
<t>Action descriptions ("exec_act") for audit trail completeness</t>
|
||
<t>Policy evaluation outcomes ("pol", "pol_decision") for
|
||
compliance verification</t>
|
||
<t>Timestamps ("iat", "exp") for temporal ordering</t>
|
||
</list></t>
|
||
|
||
<t>ECTs are designed to NOT reveal:</t>
|
||
|
||
<t><list style="symbols">
|
||
<t>Actual input or output data values (replaced with cryptographic
|
||
hashes via "inp_hash" and "out_hash")</t>
|
||
<t>Internal computation details or intermediate steps</t>
|
||
<t>Proprietary algorithms or intellectual property</t>
|
||
<t>Personally identifiable information (PII)</t>
|
||
</list></t>
|
||
|
||
</section>
|
||
<section anchor="data-minimization"><name>Data Minimization</name>
|
||
|
||
<t>Implementations <bcp14>SHOULD</bcp14> minimize the information included in ECTs.
|
||
The "exec_act" claim <bcp14>SHOULD</bcp14> use structured identifiers (e.g.,
|
||
"process_payment") rather than natural language descriptions.
|
||
The "pol" claim <bcp14>SHOULD</bcp14> reference policy identifiers rather than
|
||
embedding policy content.</t>
|
||
|
||
</section>
|
||
<section anchor="storage-and-access-control"><name>Storage and Access Control</name>
|
||
|
||
<t>ECTs stored in audit ledgers <bcp14>SHOULD</bcp14> be access-controlled so that
|
||
only authorized auditors and regulators can read them.
|
||
Implementations <bcp14>SHOULD</bcp14> consider encryption at rest for ledger
|
||
storage containing sensitive regulatory data.</t>
|
||
|
||
<t>Full input and output data (corresponding to the hashes in ECTs)
|
||
<bcp14>SHOULD</bcp14> be stored separately from the ledger with additional access
|
||
controls, since auditors may need to verify hash correctness but
|
||
general access to the data values is not needed.</t>
|
||
|
||
</section>
|
||
<section anchor="regulatory-access"><name>Regulatory Access</name>
|
||
|
||
<t>ECTs are designed for interpretation by qualified human auditors
|
||
and regulators. ECTs provide structural records of execution
|
||
ordering and policy evaluation; they are not intended for public
|
||
disclosure.</t>
|
||
|
||
</section>
|
||
</section>
|
||
<section anchor="iana-considerations"><name>IANA Considerations</name>
|
||
|
||
<section anchor="media-type-registration"><name>Media Type Registration</name>
|
||
|
||
<t>This document requests registration of the following media type
|
||
in the "Media Types" registry maintained by IANA:</t>
|
||
|
||
<dl>
|
||
<dt>Type name:</dt>
|
||
<dd>
|
||
<t>application</t>
|
||
</dd>
|
||
<dt>Subtype name:</dt>
|
||
<dd>
|
||
<t>wimse-exec+jwt</t>
|
||
</dd>
|
||
<dt>Required parameters:</dt>
|
||
<dd>
|
||
<t>none</t>
|
||
</dd>
|
||
<dt>Optional parameters:</dt>
|
||
<dd>
|
||
<t>none</t>
|
||
</dd>
|
||
<dt>Encoding considerations:</dt>
|
||
<dd>
|
||
<t>8bit; an ECT is a JWT that is a JWS using the Compact
|
||
Serialization, which is a sequence of Base64url-encoded values
|
||
separated by period characters.</t>
|
||
</dd>
|
||
<dt>Security considerations:</dt>
|
||
<dd>
|
||
<t>See the Security Considerations section of this document.</t>
|
||
</dd>
|
||
<dt>Interoperability considerations:</dt>
|
||
<dd>
|
||
<t>none</t>
|
||
</dd>
|
||
<dt>Published specification:</dt>
|
||
<dd>
|
||
<t>This document</t>
|
||
</dd>
|
||
<dt>Applications that use this media type:</dt>
|
||
<dd>
|
||
<t>Applications that implement regulated agentic workflows requiring
|
||
execution context tracing and audit trails.</t>
|
||
</dd>
|
||
<dt>Additional information:</dt>
|
||
<dd>
|
||
<t>Magic number(s): none
|
||
File extension(s): none
|
||
Macintosh file type code(s): none</t>
|
||
</dd>
|
||
<dt>Person and email address to contact for further information:</dt>
|
||
<dd>
|
||
<t>Christian Nennemann, ietf@nennemann.de</t>
|
||
</dd>
|
||
<dt>Intended usage:</dt>
|
||
<dd>
|
||
<t>COMMON</t>
|
||
</dd>
|
||
<dt>Restrictions on usage:</dt>
|
||
<dd>
|
||
<t>none</t>
|
||
</dd>
|
||
<dt>Author:</dt>
|
||
<dd>
|
||
<t>Christian Nennemann</t>
|
||
</dd>
|
||
<dt>Change controller:</dt>
|
||
<dd>
|
||
<t>IETF</t>
|
||
</dd>
|
||
</dl>
|
||
|
||
</section>
|
||
<section anchor="header-registration"><name>HTTP Header Field Registration</name>
|
||
|
||
<t>This document requests registration of the following header field
|
||
in the "Hypertext Transfer Protocol (HTTP) Field Name Registry"
|
||
maintained by IANA:</t>
|
||
|
||
<dl>
|
||
<dt>Field name:</dt>
|
||
<dd>
|
||
<t>Execution-Context</t>
|
||
</dd>
|
||
<dt>Status:</dt>
|
||
<dd>
|
||
<t>permanent</t>
|
||
</dd>
|
||
<dt>Specification document:</dt>
|
||
<dd>
|
||
<t>This document, <xref target="http-header"/></t>
|
||
</dd>
|
||
</dl>
|
||
|
||
</section>
|
||
<section anchor="claims-registration"><name>JWT Claims Registration</name>
|
||
|
||
<t>This document requests registration of the following claims in
|
||
the "JSON Web Token Claims" registry maintained by IANA:</t>
|
||
|
||
<texttable title="JWT Claims Registrations" anchor="_table-claims">
|
||
<ttcol align='center'>Claim Name</ttcol>
|
||
<ttcol align='left'>Claim Description</ttcol>
|
||
<ttcol align='center'>Change Controller</ttcol>
|
||
<ttcol align='center'>Reference</ttcol>
|
||
<c>wid</c>
|
||
<c>Workflow Identifier</c>
|
||
<c>IETF</c>
|
||
<c><xref target="exec-claims"/></c>
|
||
<c>tid</c>
|
||
<c>Task Identifier</c>
|
||
<c>IETF</c>
|
||
<c><xref target="exec-claims"/></c>
|
||
<c>exec_act</c>
|
||
<c>Action/Task Type</c>
|
||
<c>IETF</c>
|
||
<c><xref target="exec-claims"/></c>
|
||
<c>par</c>
|
||
<c>Parent Task Identifiers</c>
|
||
<c>IETF</c>
|
||
<c><xref target="exec-claims"/></c>
|
||
<c>pol</c>
|
||
<c>Policy Rule Identifier</c>
|
||
<c>IETF</c>
|
||
<c><xref target="policy-claims"/></c>
|
||
<c>pol_decision</c>
|
||
<c>Policy Decision Result</c>
|
||
<c>IETF</c>
|
||
<c><xref target="policy-claims"/></c>
|
||
<c>pol_enforcer</c>
|
||
<c>Policy Enforcer Identity</c>
|
||
<c>IETF</c>
|
||
<c><xref target="policy-claims"/></c>
|
||
<c>pol_timestamp</c>
|
||
<c>Policy Decision Timestamp</c>
|
||
<c>IETF</c>
|
||
<c><xref target="policy-claims"/></c>
|
||
<c>inp_hash</c>
|
||
<c>Input Data Hash</c>
|
||
<c>IETF</c>
|
||
<c><xref target="data-integrity-claims"/></c>
|
||
<c>out_hash</c>
|
||
<c>Output Data Hash</c>
|
||
<c>IETF</c>
|
||
<c><xref target="data-integrity-claims"/></c>
|
||
<c>inp_classification</c>
|
||
<c>Input Data Classification</c>
|
||
<c>IETF</c>
|
||
<c><xref target="data-integrity-claims"/></c>
|
||
<c>exec_time_ms</c>
|
||
<c>Execution Time (ms)</c>
|
||
<c>IETF</c>
|
||
<c><xref target="operational-claims"/></c>
|
||
<c>witnessed_by</c>
|
||
<c>Witness Identities</c>
|
||
<c>IETF</c>
|
||
<c><xref target="witness-claims"/></c>
|
||
<c>regulated_domain</c>
|
||
<c>Regulatory Domain</c>
|
||
<c>IETF</c>
|
||
<c><xref target="operational-claims"/></c>
|
||
<c>model_version</c>
|
||
<c>AI/ML Model Version</c>
|
||
<c>IETF</c>
|
||
<c><xref target="operational-claims"/></c>
|
||
<c>compensation_required</c>
|
||
<c>Compensation Flag</c>
|
||
<c>IETF</c>
|
||
<c><xref target="compensation-claims"/></c>
|
||
<c>compensation_reason</c>
|
||
<c>Compensation Reason</c>
|
||
<c>IETF</c>
|
||
<c><xref target="compensation-claims"/></c>
|
||
</texttable>
|
||
|
||
</section>
|
||
</section>
|
||
|
||
|
||
</middle>
|
||
|
||
<back>
|
||
|
||
|
||
<references title='References' anchor="sec-combined-references">
|
||
|
||
<references title='Normative References' anchor="sec-normative-references">
|
||
|
||
|
||
|
||
<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="RFC3339">
|
||
<front>
|
||
<title>Date and Time on the Internet: Timestamps</title>
|
||
<author fullname="G. Klyne" initials="G." surname="Klyne"/>
|
||
<author fullname="C. Newman" initials="C." surname="Newman"/>
|
||
<date month="July" year="2002"/>
|
||
<abstract>
|
||
<t>This document defines a date and time format for use in Internet protocols that is a profile of the ISO 8601 standard for representation of dates and times using the Gregorian calendar.</t>
|
||
</abstract>
|
||
</front>
|
||
<seriesInfo name="RFC" value="3339"/>
|
||
<seriesInfo name="DOI" value="10.17487/RFC3339"/>
|
||
</reference>
|
||
<reference anchor="RFC7515">
|
||
<front>
|
||
<title>JSON Web Signature (JWS)</title>
|
||
<author fullname="M. Jones" initials="M." surname="Jones"/>
|
||
<author fullname="J. Bradley" initials="J." surname="Bradley"/>
|
||
<author fullname="N. Sakimura" initials="N." surname="Sakimura"/>
|
||
<date month="May" year="2015"/>
|
||
<abstract>
|
||
<t>JSON Web Signature (JWS) represents content secured with digital signatures or Message Authentication Codes (MACs) using JSON-based data structures. Cryptographic algorithms and identifiers for use with this specification are described in the separate JSON Web Algorithms (JWA) specification and an IANA registry defined by that specification. Related encryption capabilities are described in the separate JSON Web Encryption (JWE) specification.</t>
|
||
</abstract>
|
||
</front>
|
||
<seriesInfo name="RFC" value="7515"/>
|
||
<seriesInfo name="DOI" value="10.17487/RFC7515"/>
|
||
</reference>
|
||
<reference anchor="RFC7519">
|
||
<front>
|
||
<title>JSON Web Token (JWT)</title>
|
||
<author fullname="M. Jones" initials="M." surname="Jones"/>
|
||
<author fullname="J. Bradley" initials="J." surname="Bradley"/>
|
||
<author fullname="N. Sakimura" initials="N." surname="Sakimura"/>
|
||
<date month="May" year="2015"/>
|
||
<abstract>
|
||
<t>JSON Web Token (JWT) is a compact, URL-safe means of representing claims to be transferred between two parties. The claims in a JWT are encoded as a JSON object that is used as the payload of a JSON Web Signature (JWS) structure or as the plaintext of a JSON Web Encryption (JWE) structure, enabling the claims to be digitally signed or integrity protected with a Message Authentication Code (MAC) and/or encrypted.</t>
|
||
</abstract>
|
||
</front>
|
||
<seriesInfo name="RFC" value="7519"/>
|
||
<seriesInfo name="DOI" value="10.17487/RFC7519"/>
|
||
</reference>
|
||
<reference anchor="RFC7518">
|
||
<front>
|
||
<title>JSON Web Algorithms (JWA)</title>
|
||
<author fullname="M. Jones" initials="M." surname="Jones"/>
|
||
<date month="May" year="2015"/>
|
||
<abstract>
|
||
<t>This specification registers cryptographic algorithms and identifiers to be used with the JSON Web Signature (JWS), JSON Web Encryption (JWE), and JSON Web Key (JWK) specifications. It defines several IANA registries for these identifiers.</t>
|
||
</abstract>
|
||
</front>
|
||
<seriesInfo name="RFC" value="7518"/>
|
||
<seriesInfo name="DOI" value="10.17487/RFC7518"/>
|
||
</reference>
|
||
<reference anchor="RFC9562">
|
||
<front>
|
||
<title>Universally Unique IDentifiers (UUIDs)</title>
|
||
<author fullname="K. Davis" initials="K." surname="Davis"/>
|
||
<author fullname="B. Peabody" initials="B." surname="Peabody"/>
|
||
<author fullname="P. Leach" initials="P." surname="Leach"/>
|
||
<date month="May" year="2024"/>
|
||
<abstract>
|
||
<t>This specification defines UUIDs (Universally Unique IDentifiers) --
|
||
also known as GUIDs (Globally Unique IDentifiers) -- and a Uniform
|
||
Resource Name namespace for UUIDs. A UUID is 128 bits long and is
|
||
intended to guarantee uniqueness across space and time. UUIDs were
|
||
originally used in the Apollo Network Computing System (NCS), later
|
||
in the Open Software Foundation's (OSF's) Distributed Computing
|
||
Environment (DCE), and then in Microsoft Windows platforms.</t>
|
||
<t>This specification is derived from the OSF DCE specification with the
|
||
kind permission of the OSF (now known as "The Open Group"). Information from earlier versions of the OSF DCE specification have
|
||
been incorporated into this document. This document obsoletes RFC
|
||
4122.</t>
|
||
</abstract>
|
||
</front>
|
||
<seriesInfo name="RFC" value="9562"/>
|
||
<seriesInfo name="DOI" value="10.17487/RFC9562"/>
|
||
</reference>
|
||
<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="I-D.ietf-wimse-arch">
|
||
<front>
|
||
<title>Workload Identity in a Multi System Environment (WIMSE) Architecture</title>
|
||
<author fullname="Joseph A. Salowey" initials="J. A." surname="Salowey">
|
||
<organization>CyberArk</organization>
|
||
</author>
|
||
<author fullname="Yaroslav Rosomakho" initials="Y." surname="Rosomakho">
|
||
<organization>Zscaler</organization>
|
||
</author>
|
||
<author fullname="Hannes Tschofenig" initials="H." surname="Tschofenig">
|
||
<organization>University of Applied Sciences Bonn-Rhein-Sieg</organization>
|
||
</author>
|
||
<date day="30" month="September" year="2025"/>
|
||
<abstract>
|
||
<t> The increasing prevalence of cloud computing and micro service
|
||
architectures has led to the rise of complex software functions being
|
||
built and deployed as workloads, where a workload is defined as a
|
||
running instance of software executing for a specific purpose. This
|
||
document discusses an architecture for designing and standardizing
|
||
protocols and payloads for conveying workload identity and security
|
||
context information.
|
||
|
||
</t>
|
||
</abstract>
|
||
</front>
|
||
<seriesInfo name="Internet-Draft" value="draft-ietf-wimse-arch-06"/>
|
||
|
||
</reference>
|
||
|
||
<reference anchor="I-D.ietf-wimse-s2s-protocol">
|
||
<front>
|
||
<title>WIMSE Workload-to-Workload Authentication</title>
|
||
<author fullname="Brian Campbell" initials="B." surname="Campbell">
|
||
<organization>Ping Identity</organization>
|
||
</author>
|
||
<author fullname="Joseph A. Salowey" initials="J. A." surname="Salowey">
|
||
<organization>CyberArk</organization>
|
||
</author>
|
||
<author fullname="Arndt Schwenkschuster" initials="A." surname="Schwenkschuster">
|
||
<organization>SPIRL</organization>
|
||
</author>
|
||
<author fullname="Yaron Sheffer" initials="Y." surname="Sheffer">
|
||
<organization>Intuit</organization>
|
||
</author>
|
||
<date day="16" month="October" year="2025"/>
|
||
<abstract>
|
||
<t> The WIMSE architecture defines authentication and authorization for
|
||
software workloads in a variety of runtime environments, from the
|
||
most basic ones up to complex multi-service, multi-cloud, multi-
|
||
tenant deployments. This document defines the simplest, atomic unit
|
||
of this architecture: the protocol between two workloads that need to
|
||
verify each other's identity in order to communicate securely. The
|
||
scope of this protocol is a single HTTP request-and-response pair.
|
||
To address the needs of different setups, we propose two protocols,
|
||
one at the application level and one that makes use of trusted TLS
|
||
transport. These two protocols are compatible, in the sense that a
|
||
single call chain can have some calls use one protocol and some use
|
||
the other. Workload A can call Workload B with mutual TLS
|
||
authentication, while the next call from Workload B to Workload C
|
||
would be authenticated at the application level.
|
||
|
||
</t>
|
||
</abstract>
|
||
</front>
|
||
<seriesInfo name="Internet-Draft" value="draft-ietf-wimse-s2s-protocol-07"/>
|
||
|
||
</reference>
|
||
|
||
|
||
|
||
</references>
|
||
|
||
<references title='Informative References' anchor="sec-informative-references">
|
||
|
||
|
||
|
||
<reference anchor="RFC3552">
|
||
<front>
|
||
<title>Guidelines for Writing RFC Text on Security Considerations</title>
|
||
<author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
|
||
<author fullname="B. Korver" initials="B." surname="Korver"/>
|
||
<date month="July" year="2003"/>
|
||
<abstract>
|
||
<t>All RFCs are required to have a Security Considerations section. Historically, such sections have been relatively weak. This document provides guidelines to RFC authors on how to write a good Security Considerations section. 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="72"/>
|
||
<seriesInfo name="RFC" value="3552"/>
|
||
<seriesInfo name="DOI" value="10.17487/RFC3552"/>
|
||
</reference>
|
||
<reference anchor="RFC7517">
|
||
<front>
|
||
<title>JSON Web Key (JWK)</title>
|
||
<author fullname="M. Jones" initials="M." surname="Jones"/>
|
||
<date month="May" year="2015"/>
|
||
<abstract>
|
||
<t>A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. This specification also defines a JWK Set JSON data structure that represents a set of JWKs. Cryptographic algorithms and identifiers for use with this specification are described in the separate JSON Web Algorithms (JWA) specification and IANA registries established by that specification.</t>
|
||
</abstract>
|
||
</front>
|
||
<seriesInfo name="RFC" value="7517"/>
|
||
<seriesInfo name="DOI" value="10.17487/RFC7517"/>
|
||
</reference>
|
||
<reference anchor="RFC8693">
|
||
<front>
|
||
<title>OAuth 2.0 Token Exchange</title>
|
||
<author fullname="M. Jones" initials="M." surname="Jones"/>
|
||
<author fullname="A. Nadalin" initials="A." surname="Nadalin"/>
|
||
<author fullname="B. Campbell" initials="B." role="editor" surname="Campbell"/>
|
||
<author fullname="J. Bradley" initials="J." surname="Bradley"/>
|
||
<author fullname="C. Mortimore" initials="C." surname="Mortimore"/>
|
||
<date month="January" year="2020"/>
|
||
<abstract>
|
||
<t>This specification defines a protocol for an HTTP- and JSON-based Security Token Service (STS) by defining how to request and obtain security tokens from OAuth 2.0 authorization servers, including security tokens employing impersonation and delegation.</t>
|
||
</abstract>
|
||
</front>
|
||
<seriesInfo name="RFC" value="8693"/>
|
||
<seriesInfo name="DOI" value="10.17487/RFC8693"/>
|
||
</reference>
|
||
<reference anchor="RFC9421">
|
||
<front>
|
||
<title>HTTP Message Signatures</title>
|
||
<author fullname="A. Backman" initials="A." role="editor" surname="Backman"/>
|
||
<author fullname="J. Richer" initials="J." role="editor" surname="Richer"/>
|
||
<author fullname="M. Sporny" initials="M." surname="Sporny"/>
|
||
<date month="February" year="2024"/>
|
||
<abstract>
|
||
<t>This document describes a mechanism for creating, encoding, and verifying digital signatures or message authentication codes over components of an HTTP message. This mechanism supports use cases where the full HTTP message may not be known to the signer and where the message may be transformed (e.g., by intermediaries) before reaching the verifier. This document also describes a means for requesting that a signature be applied to a subsequent HTTP message in an ongoing HTTP exchange.</t>
|
||
</abstract>
|
||
</front>
|
||
<seriesInfo name="RFC" value="9421"/>
|
||
<seriesInfo name="DOI" value="10.17487/RFC9421"/>
|
||
</reference>
|
||
|
||
<reference anchor="I-D.ni-wimse-ai-agent-identity">
|
||
<front>
|
||
<title>WIMSE Applicability for AI Agents</title>
|
||
<author fullname="Ni Yuan" initials="N." surname="Yuan">
|
||
<organization>Huawei</organization>
|
||
</author>
|
||
<author fullname="Peter Chunchi Liu" initials="P. C." surname="Liu">
|
||
<organization>Huawei</organization>
|
||
</author>
|
||
<date day="20" month="October" year="2025"/>
|
||
<abstract>
|
||
<t> This document discusses WIMSE applicability to Agentic AI, so as to
|
||
establish independent identities and credential management mechanisms
|
||
for AI agents.
|
||
|
||
</t>
|
||
</abstract>
|
||
</front>
|
||
<seriesInfo name="Internet-Draft" value="draft-ni-wimse-ai-agent-identity-01"/>
|
||
|
||
</reference>
|
||
|
||
<reference anchor="SPIFFE" target="https://spiffe.io/docs/latest/spiffe-about/overview/">
|
||
<front>
|
||
<title>Secure Production Identity Framework for Everyone (SPIFFE)</title>
|
||
<author >
|
||
<organization></organization>
|
||
</author>
|
||
<date />
|
||
</front>
|
||
</reference>
|
||
<reference anchor="EU-AI-ACT" target="https://eur-lex.europa.eu/eli/reg/2024/1689">
|
||
<front>
|
||
<title>Regulation (EU) 2024/1689 of the European Parliament and of the Council laying down harmonised rules on artificial intelligence (Artificial Intelligence Act)</title>
|
||
<author >
|
||
<organization>European Parliament and Council of the European Union</organization>
|
||
</author>
|
||
<date year="2024" month="June" day="13"/>
|
||
</front>
|
||
</reference>
|
||
<reference anchor="FDA-21CFR11" target="https://www.ecfr.gov/current/title-21/chapter-I/subchapter-A/part-11">
|
||
<front>
|
||
<title>Title 21, Code of Federal Regulations, Part 11: Electronic Records; Electronic Signatures</title>
|
||
<author >
|
||
<organization>U.S. Food and Drug Administration</organization>
|
||
</author>
|
||
<date />
|
||
</front>
|
||
</reference>
|
||
<reference anchor="MIFID-II" target="https://eur-lex.europa.eu/eli/dir/2014/65">
|
||
<front>
|
||
<title>Directive 2014/65/EU of the European Parliament and of the Council on markets in financial instruments (MiFID II)</title>
|
||
<author >
|
||
<organization>European Parliament and Council of the European Union</organization>
|
||
</author>
|
||
<date year="2014" month="May" day="15"/>
|
||
</front>
|
||
</reference>
|
||
<reference anchor="DORA" target="https://eur-lex.europa.eu/eli/reg/2022/2554">
|
||
<front>
|
||
<title>Regulation (EU) 2022/2554 on digital operational resilience for the financial sector (DORA)</title>
|
||
<author >
|
||
<organization>European Parliament and Council of the European Union</organization>
|
||
</author>
|
||
<date year="2022" month="December" day="14"/>
|
||
</front>
|
||
</reference>
|
||
<reference anchor="EU-MDR" target="https://eur-lex.europa.eu/eli/reg/2017/745">
|
||
<front>
|
||
<title>Regulation (EU) 2017/745 on medical devices (MDR)</title>
|
||
<author >
|
||
<organization>European Parliament and Council of the European Union</organization>
|
||
</author>
|
||
<date year="2017" month="April" day="05"/>
|
||
</front>
|
||
</reference>
|
||
<reference anchor="OPENTELEMETRY" target="https://opentelemetry.io/docs/specs/otel/">
|
||
<front>
|
||
<title>OpenTelemetry Specification</title>
|
||
<author >
|
||
<organization>Cloud Native Computing Foundation</organization>
|
||
</author>
|
||
<date />
|
||
</front>
|
||
</reference>
|
||
|
||
|
||
|
||
<reference anchor="I-D.ietf-scitt-architecture">
|
||
<front>
|
||
<title>An Architecture for Trustworthy and Transparent Digital Supply Chains</title>
|
||
<author fullname="Henk Birkholz" initials="H." surname="Birkholz">
|
||
<organization>Fraunhofer SIT</organization>
|
||
</author>
|
||
<author fullname="Antoine Delignat-Lavaud" initials="A." surname="Delignat-Lavaud">
|
||
<organization>Microsoft Research</organization>
|
||
</author>
|
||
<author fullname="Cedric Fournet" initials="C." surname="Fournet">
|
||
<organization>Microsoft Research</organization>
|
||
</author>
|
||
<author fullname="Yogesh Deshpande" initials="Y." surname="Deshpande">
|
||
<organization>ARM</organization>
|
||
</author>
|
||
<author fullname="Steve Lasker" initials="S." surname="Lasker">
|
||
</author>
|
||
<date day="10" month="October" year="2025"/>
|
||
<abstract>
|
||
<t> Traceability in supply chains is a growing security concern. While
|
||
verifiable data structures have addressed specific issues, such as
|
||
equivocation over digital certificates, they lack a universal
|
||
architecture for all supply chains. This document defines such an
|
||
architecture for single-issuer signed statement transparency. It
|
||
ensures extensibility, interoperability between different
|
||
transparency services, and compliance with various auditing
|
||
procedures and regulatory requirements.
|
||
|
||
</t>
|
||
</abstract>
|
||
</front>
|
||
<seriesInfo name="Internet-Draft" value="draft-ietf-scitt-architecture-22"/>
|
||
|
||
</reference>
|
||
|
||
|
||
|
||
</references>
|
||
|
||
</references>
|
||
|
||
|
||
<?line 1432?>
|
||
|
||
<section numbered="false" anchor="related-work"><name>Related Work</name>
|
||
|
||
<section numbered="false" anchor="wimse-workload-identity"><name>WIMSE Workload Identity</name>
|
||
|
||
<t>The WIMSE architecture <xref target="I-D.ietf-wimse-arch"/> and service-to-
|
||
service protocol <xref target="I-D.ietf-wimse-s2s-protocol"/> provide the
|
||
identity foundation upon which ECTs are built. WIT/WPT answer
|
||
"who is this agent?" and "does it control the claimed key?" while
|
||
ECTs record "what did this agent do?" and "what policy was
|
||
evaluated?" Together they form an identity-plus-accountability
|
||
framework for regulated agentic systems.</t>
|
||
|
||
</section>
|
||
<section numbered="false" anchor="oauth-20-token-exchange"><name>OAuth 2.0 Token Exchange</name>
|
||
|
||
<t><xref target="RFC8693"/> defines the OAuth 2.0 Token Exchange protocol and
|
||
registers the "act" (Actor) claim in the JWT Claims registry.
|
||
ECTs intentionally use the distinct claim name "exec_act" for the
|
||
action/task type to avoid collision with the "act" claim.
|
||
Transaction tokens in OAuth establish API authorization context;
|
||
ECTs serve the complementary purpose of recording execution
|
||
accountability across multi-step workflows.</t>
|
||
|
||
</section>
|
||
<section numbered="false" anchor="distributed-tracing-opentelemetry"><name>Distributed Tracing (OpenTelemetry)</name>
|
||
|
||
<t>OpenTelemetry <xref target="OPENTELEMETRY"/> and similar distributed tracing
|
||
systems provide observability for debugging and monitoring. ECTs
|
||
differ in several important ways: ECTs are cryptographically
|
||
signed per-task with the agent's private key; ECTs are
|
||
tamper-evident through JWS signatures; ECTs enforce DAG validation
|
||
rules; and ECTs are designed for regulatory audit rather than
|
||
operational monitoring. OpenTelemetry data is typically controlled
|
||
by the platform operator and can be modified or deleted without
|
||
detection. ECTs and distributed traces are complementary: traces
|
||
provide observability while ECTs provide signed execution records.
|
||
ECTs may reference OpenTelemetry trace identifiers in the "ext"
|
||
claim for correlation.</t>
|
||
|
||
</section>
|
||
<section numbered="false" anchor="blockchain-and-distributed-ledgers"><name>Blockchain and Distributed Ledgers</name>
|
||
|
||
<t>Both ECTs and blockchain systems provide immutable records. This
|
||
specification intentionally defines only the ECT token format and
|
||
is agnostic to the storage mechanism. ECTs can be stored in
|
||
append-only logs, databases with cryptographic commitments,
|
||
blockchain networks, or any storage providing the required
|
||
properties defined in <xref target="ledger-interface"/>.</t>
|
||
|
||
</section>
|
||
<section numbered="false" anchor="scitt-supply-chain-integrity-transparency-and-trust"><name>SCITT (Supply Chain Integrity, Transparency, and Trust)</name>
|
||
|
||
<t>The SCITT architecture <xref target="I-D.ietf-scitt-architecture"/> defines a
|
||
framework for creating transparent and auditable supply chain
|
||
records through Transparency Services, Signed Statements, and
|
||
Receipts. ECTs and SCITT are naturally complementary: the ECT
|
||
"wid" (Workflow Identifier) claim can serve as a correlation
|
||
identifier referenced in SCITT Signed Statements, linking a
|
||
complete ECT audit trail to a supply chain transparency record.
|
||
For example, in a regulated manufacturing workflow, each agent
|
||
step produces an ECT (recording what was done, by whom, under
|
||
what policy), while the overall workflow identified by "wid" is
|
||
registered as a SCITT Signed Statement on a Transparency Service.
|
||
This enables auditors to verify both the individual execution
|
||
steps (via ECT DAG validation) and the end-to-end supply chain
|
||
integrity (via SCITT Receipts) using the "wid" as the shared
|
||
correlation point. The "ext" claim in ECTs (<xref target="exec-claims"/>)
|
||
can carry SCITT-specific metadata such as Transparency Service
|
||
identifiers or Receipt references for tighter integration.</t>
|
||
|
||
</section>
|
||
<section numbered="false" anchor="w3c-verifiable-credentials"><name>W3C Verifiable Credentials</name>
|
||
|
||
<t>W3C Verifiable Credentials represent claims about subjects (e.g.,
|
||
identity, qualifications). ECTs represent execution records of
|
||
actions (what happened, in what order, under what policy). While
|
||
both use JWT/JWS as a serialization format, their semantics and
|
||
use cases are distinct.</t>
|
||
|
||
</section>
|
||
</section>
|
||
<section numbered="false" anchor="implementation-guidance"><name>Implementation Guidance</name>
|
||
|
||
<section numbered="false" anchor="minimal-implementation"><name>Minimal Implementation</name>
|
||
|
||
<t>A minimal conforming implementation should:</t>
|
||
|
||
<t><list style="numbers" type="1">
|
||
<t>Create JWTs with all required claims ("iss", "aud", "iat",
|
||
"exp", "tid", "exec_act", "par", "pol", "pol_decision").</t>
|
||
<t>Sign ECTs with the agent's private key using an algorithm
|
||
matching the WIT (ES256 recommended).</t>
|
||
<t>Verify ECT signatures against WIT public keys.</t>
|
||
<t>Perform DAG validation (parent existence, temporal ordering,
|
||
cycle detection).</t>
|
||
<t>Append verified ECTs to an audit ledger.</t>
|
||
</list></t>
|
||
|
||
</section>
|
||
<section numbered="false" anchor="storage-recommendations"><name>Storage Recommendations</name>
|
||
|
||
<t><list style="symbols">
|
||
<t>Append-only log: Simplest approach; immutability by design.</t>
|
||
<t>Database with hash chains: Periodic cryptographic commitments
|
||
over batches of entries.</t>
|
||
<t>Distributed ledger: Maximum immutability guarantees for
|
||
cross-organizational audit.</t>
|
||
<t>Hybrid: Hot storage in a database, cold archive in immutable
|
||
storage.</t>
|
||
</list></t>
|
||
|
||
</section>
|
||
<section numbered="false" anchor="performance-considerations"><name>Performance Considerations</name>
|
||
|
||
<t><list style="symbols">
|
||
<t>ES256 signature verification: approximately 1ms per ECT on
|
||
modern hardware.</t>
|
||
<t>DAG validation: O(V) where V is the number of reachable ancestor
|
||
nodes (typically small for shallow workflows).</t>
|
||
<t>JSON serialization: sub-millisecond per ECT.</t>
|
||
<t>Total per-request overhead: approximately 5-10ms, acceptable
|
||
for regulated workflows where correctness is prioritized over
|
||
latency.</t>
|
||
</list></t>
|
||
|
||
</section>
|
||
<section numbered="false" anchor="interoperability"><name>Interoperability</name>
|
||
|
||
<t>Implementations should use established JWT/JWS libraries (JOSE)
|
||
for token creation and verification. Custom cryptographic
|
||
implementations should not be used. Implementations should be
|
||
tested against multiple JWT libraries to ensure interoperability.</t>
|
||
|
||
</section>
|
||
</section>
|
||
<section numbered="false" anchor="regulatory-compliance-mapping"><name>Regulatory Compliance Mapping</name>
|
||
|
||
<t>The following table summarizes how ECTs can contribute to
|
||
compliance with various regulatory frameworks. ECTs are a
|
||
technical building block; achieving compliance requires
|
||
additional organizational measures beyond this specification.</t>
|
||
|
||
<texttable title="Regulatory Compliance Mapping" anchor="_table-regulatory">
|
||
<ttcol align='left'>Regulation</ttcol>
|
||
<ttcol align='left'>Requirement</ttcol>
|
||
<ttcol align='left'>ECT Contribution</ttcol>
|
||
<c>FDA 21 CFR Part 11</c>
|
||
<c>Audit trails recording date, time, operator, actions (11.10(e))</c>
|
||
<c>Cryptographic signatures and append-only ledger contribute to audit trail requirements</c>
|
||
<c>EU MDR</c>
|
||
<c>Technical documentation traceability (Annex II)</c>
|
||
<c>ECTs provide signed records of AI-assisted decision sequences</c>
|
||
<c>EU AI Act Art. 12</c>
|
||
<c>Automatic logging capabilities for high-risk AI</c>
|
||
<c>ECTs contribute cryptographic activity logging</c>
|
||
<c>EU AI Act Art. 14</c>
|
||
<c>Human oversight capability</c>
|
||
<c>ECTs can record evidence that human oversight events occurred</c>
|
||
<c>MiFID II</c>
|
||
<c>Transaction records for supervisory authorities</c>
|
||
<c>ECTs provide cryptographic execution sequence records</c>
|
||
<c>DORA Art. 12</c>
|
||
<c>ICT activity logging policies</c>
|
||
<c>ECT ledger contributes to ICT activity audit trail</c>
|
||
</texttable>
|
||
|
||
</section>
|
||
<section numbered="false" anchor="examples"><name>Examples</name>
|
||
|
||
<section numbered="false" anchor="example-1-simple-two-agent-workflow"><name>Example 1: Simple Two-Agent Workflow</name>
|
||
|
||
<t>Agent A executes a data retrieval task and sends the ECT to
|
||
Agent B:</t>
|
||
|
||
<t>ECT JOSE Header:</t>
|
||
|
||
<figure><sourcecode type="json"><![CDATA[
|
||
{
|
||
"alg": "ES256",
|
||
"typ": "wimse-exec+jwt",
|
||
"kid": "agent-a-key-2026-02"
|
||
}
|
||
]]></sourcecode></figure>
|
||
|
||
<t>ECT Payload:</t>
|
||
|
||
<figure><sourcecode type="json"><![CDATA[
|
||
{
|
||
"iss": "spiffe://example.com/agent/data-retrieval",
|
||
"sub": "spiffe://example.com/agent/data-retrieval",
|
||
"aud": "spiffe://example.com/agent/validator",
|
||
"iat": 1772064150,
|
||
"exp": 1772064750,
|
||
"wid": "b1c2d3e4-f5a6-7890-bcde-f01234567890",
|
||
"tid": "550e8400-e29b-41d4-a716-446655440001",
|
||
"exec_act": "fetch_patient_data",
|
||
"par": [],
|
||
"pol": "clinical_data_access_policy_v1",
|
||
"pol_decision": "approved",
|
||
"inp_hash": "sha-256:n4bQgYhMfWWaL-qgxVrQFaO_TxsrC4Is0V1sFbDwCgg",
|
||
"out_hash": "sha-256:LCa0a2j_xo_5m0U8HTBBNBNCLXBkg7-g-YpeiGJm564",
|
||
"exec_time_ms": 142,
|
||
"regulated_domain": "medtech"
|
||
}
|
||
]]></sourcecode></figure>
|
||
|
||
<t>Agent B receives the ECT, verifies it, executes a validation
|
||
task, and creates its own ECT:</t>
|
||
|
||
<figure><sourcecode type="json"><![CDATA[
|
||
{
|
||
"iss": "spiffe://example.com/agent/validator",
|
||
"sub": "spiffe://example.com/agent/validator",
|
||
"aud": "spiffe://example.com/system/ledger",
|
||
"iat": 1772064160,
|
||
"exp": 1772064760,
|
||
"wid": "b1c2d3e4-f5a6-7890-bcde-f01234567890",
|
||
"tid": "550e8400-e29b-41d4-a716-446655440002",
|
||
"exec_act": "validate_safety",
|
||
"par": ["550e8400-e29b-41d4-a716-446655440001"],
|
||
"pol": "safety_validation_policy_v2",
|
||
"pol_decision": "approved",
|
||
"exec_time_ms": 89,
|
||
"regulated_domain": "medtech"
|
||
}
|
||
]]></sourcecode></figure>
|
||
|
||
<t>The resulting DAG:</t>
|
||
|
||
<figure><artwork><![CDATA[
|
||
task-...-0001 (fetch_patient_data)
|
||
|
|
||
v
|
||
task-...-0002 (validate_safety)
|
||
]]></artwork></figure>
|
||
|
||
</section>
|
||
<section numbered="false" anchor="example-2-medical-device-sdlc-with-release-approval"><name>Example 2: Medical Device SDLC with Release Approval</name>
|
||
|
||
<t>A multi-step medical device software lifecycle workflow with
|
||
autonomous agents and human release approval:</t>
|
||
|
||
<t>Task 1 (Spec Review Agent):</t>
|
||
|
||
<figure><sourcecode type="json"><![CDATA[
|
||
{
|
||
"iss": "spiffe://meddev.example/agent/spec-reviewer",
|
||
"sub": "spiffe://meddev.example/agent/spec-reviewer",
|
||
"aud": "spiffe://meddev.example/agent/code-gen",
|
||
"iat": 1772064150,
|
||
"exp": 1772064750,
|
||
"wid": "c2d3e4f5-a6b7-8901-cdef-012345678901",
|
||
"tid": "a1b2c3d4-0001-0000-0000-000000000001",
|
||
"exec_act": "review_requirements_spec",
|
||
"par": [],
|
||
"pol": "spec_review_policy_v2",
|
||
"pol_decision": "approved",
|
||
"regulated_domain": "medtech",
|
||
"model_version": "spec-review-v3.1",
|
||
"inp_hash": "sha-256:n4bQgYhMfWWaL-qgxVrQFaO_TxsrC4Is0V1sFbDwCgg",
|
||
"out_hash": "sha-256:LCa0a2j_xo_5m0U8HTBBNBNCLXBkg7-g-YpeiGJm564"
|
||
}
|
||
]]></sourcecode></figure>
|
||
|
||
<t>Task 2 (Code Generation Agent):</t>
|
||
|
||
<figure><sourcecode type="json"><![CDATA[
|
||
{
|
||
"iss": "spiffe://meddev.example/agent/code-gen",
|
||
"sub": "spiffe://meddev.example/agent/code-gen",
|
||
"aud": "spiffe://meddev.example/agent/test-runner",
|
||
"iat": 1772064200,
|
||
"exp": 1772064800,
|
||
"wid": "c2d3e4f5-a6b7-8901-cdef-012345678901",
|
||
"tid": "a1b2c3d4-0001-0000-0000-000000000002",
|
||
"exec_act": "implement_module",
|
||
"par": ["a1b2c3d4-0001-0000-0000-000000000001"],
|
||
"pol": "coding_standards_v3",
|
||
"pol_decision": "approved",
|
||
"regulated_domain": "medtech",
|
||
"model_version": "codegen-v2.4"
|
||
}
|
||
]]></sourcecode></figure>
|
||
|
||
<t>Task 3 (Autonomous Test Agent):</t>
|
||
|
||
<figure><sourcecode type="json"><![CDATA[
|
||
{
|
||
"iss": "spiffe://meddev.example/agent/test-runner",
|
||
"sub": "spiffe://meddev.example/agent/test-runner",
|
||
"aud": "spiffe://meddev.example/agent/build",
|
||
"iat": 1772064260,
|
||
"exp": 1772064860,
|
||
"wid": "c2d3e4f5-a6b7-8901-cdef-012345678901",
|
||
"tid": "a1b2c3d4-0001-0000-0000-000000000003",
|
||
"exec_act": "execute_test_suite",
|
||
"par": ["a1b2c3d4-0001-0000-0000-000000000002"],
|
||
"pol": "test_coverage_policy_v1",
|
||
"pol_decision": "approved",
|
||
"regulated_domain": "medtech",
|
||
"exec_time_ms": 4523
|
||
}
|
||
]]></sourcecode></figure>
|
||
|
||
<t>Task 4 (Build Agent):</t>
|
||
|
||
<figure><sourcecode type="json"><![CDATA[
|
||
{
|
||
"iss": "spiffe://meddev.example/agent/build",
|
||
"sub": "spiffe://meddev.example/agent/build",
|
||
"aud": "spiffe://meddev.example/human/release-mgr-42",
|
||
"iat": 1772064310,
|
||
"exp": 1772064910,
|
||
"wid": "c2d3e4f5-a6b7-8901-cdef-012345678901",
|
||
"tid": "a1b2c3d4-0001-0000-0000-000000000004",
|
||
"exec_act": "build_release_artifact",
|
||
"par": ["a1b2c3d4-0001-0000-0000-000000000003"],
|
||
"pol": "build_validation_v2",
|
||
"pol_decision": "approved",
|
||
"regulated_domain": "medtech",
|
||
"out_hash": "sha-256:Ry1YfOoW2XpC5Mq8HkGzNx3dL9vBa4sUjE7iKt0wPZc"
|
||
}
|
||
]]></sourcecode></figure>
|
||
|
||
<t>Task 5 (Human Release Manager Approval):</t>
|
||
|
||
<figure><sourcecode type="json"><![CDATA[
|
||
{
|
||
"iss": "spiffe://meddev.example/human/release-mgr-42",
|
||
"sub": "spiffe://meddev.example/human/release-mgr-42",
|
||
"aud": "spiffe://meddev.example/system/ledger",
|
||
"iat": 1772064510,
|
||
"exp": 1772065110,
|
||
"wid": "c2d3e4f5-a6b7-8901-cdef-012345678901",
|
||
"tid": "a1b2c3d4-0001-0000-0000-000000000005",
|
||
"exec_act": "approve_release",
|
||
"par": ["a1b2c3d4-0001-0000-0000-000000000004"],
|
||
"pol": "release_approval_policy",
|
||
"pol_decision": "approved",
|
||
"pol_enforcer": "spiffe://meddev.example/human/release-mgr-42",
|
||
"witnessed_by": [
|
||
"spiffe://meddev.example/audit/qa-observer-1"
|
||
],
|
||
"regulated_domain": "medtech"
|
||
}
|
||
]]></sourcecode></figure>
|
||
|
||
<t>The resulting DAG records the complete SDLC: spec review preceded
|
||
implementation, implementation preceded testing, testing preceded
|
||
build, and a human release manager approved the final release
|
||
with independent witness attestation.</t>
|
||
|
||
<figure><artwork><![CDATA[
|
||
task-...-0001 (review_requirements_spec)
|
||
|
|
||
v
|
||
task-...-0002 (implement_module)
|
||
|
|
||
v
|
||
task-...-0003 (execute_test_suite)
|
||
|
|
||
v
|
||
task-...-0004 (build_release_artifact)
|
||
|
|
||
v
|
||
task-...-0005 (approve_release) [human, witnessed]
|
||
]]></artwork></figure>
|
||
|
||
<t>An FDA auditor reconstructs this DAG by querying the audit ledger
|
||
for all ECTs with wid "c2d3e4f5-a6b7-8901-cdef-012345678901" and
|
||
verifying each signature. The DAG provides cryptographic evidence
|
||
that the SDLC followed the prescribed process with human oversight
|
||
at the release gate.</t>
|
||
|
||
</section>
|
||
<section numbered="false" anchor="example-3-parallel-execution-with-join"><name>Example 3: Parallel Execution with Join</name>
|
||
|
||
<t>A workflow where two tasks execute in parallel and a third task
|
||
depends on both:</t>
|
||
|
||
<figure><artwork><![CDATA[
|
||
task-...-0001 (assess_risk)
|
||
| \
|
||
v v
|
||
task-...-0002 task-...-0003
|
||
(check (verify
|
||
compliance) liquidity)
|
||
| /
|
||
v v
|
||
task-...-0004 (execute_trade)
|
||
]]></artwork></figure>
|
||
|
||
<t>Task 004 ECT payload:</t>
|
||
|
||
<figure><sourcecode type="json"><![CDATA[
|
||
{
|
||
"iss": "spiffe://bank.example/agent/execution",
|
||
"sub": "spiffe://bank.example/agent/execution",
|
||
"aud": "spiffe://bank.example/system/ledger",
|
||
"iat": 1772064250,
|
||
"exp": 1772064850,
|
||
"wid": "d3e4f5a6-b7c8-9012-def0-123456789012",
|
||
"tid": "f1e2d3c4-0004-0000-0000-000000000004",
|
||
"exec_act": "execute_trade",
|
||
"par": [
|
||
"f1e2d3c4-0002-0000-0000-000000000002",
|
||
"f1e2d3c4-0003-0000-0000-000000000003"
|
||
],
|
||
"pol": "trade_execution_policy_v3",
|
||
"pol_decision": "approved",
|
||
"regulated_domain": "finance"
|
||
}
|
||
]]></sourcecode></figure>
|
||
|
||
<t>The "par" array with two entries records that both compliance
|
||
checking and liquidity verification were completed before trade
|
||
execution.</t>
|
||
|
||
</section>
|
||
</section>
|
||
<section numbered="false" anchor="acknowledgments"><name>Acknowledgments</name>
|
||
|
||
<t>The author thanks the WIMSE working group for their foundational
|
||
work on workload identity in multi-system environments. The
|
||
concepts of Workload Identity Tokens and Workload Proof Tokens
|
||
provide the identity foundation upon which execution context
|
||
tracing is built.</t>
|
||
|
||
</section>
|
||
|
||
|
||
</back>
|
||
|
||
<!-- ##markdown-source:
|
||
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
|
||
|
||
-->
|
||
|
||
</rfc>
|
||
|