| Internet-Draft | Authorization Evidence Chains | July 2026 |
| Schrock | Expires 3 January 2027 | [Page] |
A growing family of Internet-Drafts defines signed "receipts" about an AI agent's action: delegation receipts that attest an agent was authorized to act for a principal, policy or permit receipts that attest a policy allowed an external effect, decision and compliance receipts, route authorizations, and human-authorization receipts that attest a named, accountable human approved a specific action. The mature efforts independently converged on a common substrate: bind the action with a canonical digest (JSON Canonicalization Scheme, RFC 8785) and sign it. No specification, however, defines how a relying party verifies that, for one action, the several heterogeneous receipts it has been handed all bind the same canonical action and each verify under their own rules, yielding a single, offline, fail-closed ALLOW or DENY. This document defines the Authorization Evidence Chain (EP-AEC): a transport-agnostic composition object and an offline verification algorithm that references existing receipts, checks that every component binds one canonical action digest, dispatches each component to a verifier for its type, and evaluates a fail-closed requirement expression. EP-AEC introduces no new receipt type and replaces none; it is the verifier-side glue that lets independently specified receipts compose into one accountability decision.¶
This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.¶
Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet-Drafts is at https://datatracker.ietf.org/drafts/current/.¶
Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress."¶
This Internet-Draft will expire on 3 January 2027.¶
Copyright (c) 2026 IETF Trust and the persons identified as the document authors. All rights reserved.¶
This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document. Code Components extracted from this document must include Revised BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Revised BSD License.¶
As autonomous and semi-autonomous agents begin to take irreversible external actions -- moving funds, changing records, releasing data, invoking privileged APIs -- relying parties increasingly demand a verifiable artifact answering "was this exact action authorized, and by whom?" The IETF community has responded with a cluster of receipt formats, each answering one facet:¶
These are complementary layers, not competitors: a single high-risk action may warrant a delegation receipt AND a policy permit AND a human authorization. Yet each effort defines only its own receipt. The relying party is left to correlate heterogeneous artifacts by hand, and in practice implementers hand-roll ad-hoc "composite proofs" with no shared correctness model -- in particular, no guarantee that the several receipts authorize the same action rather than different ones spliced together (a cross-binding attack).¶
The Entity Attestation Token [RFC9711] provides a CBOR mechanism (detached submodules / detached EAT bundles) for composing claims from multiple attesting environments into one token. No equivalent exists for the predominantly JSON/JCS receipt cluster described above. This document fills that gap.¶
EP-AEC defines (1) a composition object that references component receipts and declares a requirement over them, and (2) an offline verification algorithm. EP-AEC does NOT define any component receipt format, does not require any particular component to be present, and does not bless any component specification. It is deliberately minimal: its only novel normative content is the same-action binding check and the requirement evaluation.¶
The key words "MUST", "MUST NOT", "SHOULD", and "MAY" in this document are to be interpreted as described in BCP 14 [RFC2119] [RFC8174] when, and only when, they appear in all capitals, as shown here.¶
{
"@version": "EP-AEC-v1",
"action": { ... Action Object ... },
"action_digest": "sha256:<hex>",
"components": [
{ "type": "ep-quorum",
"label": "two-person human authorization",
"evidence": { ... EP-QUORUM-v1 object ... } },
{ "type": "policy-permit",
"label": "machine policy permit",
"evidence": { ... permit receipt ... } },
{ "type": "delegation",
"label": "agent delegation",
"evidence": { ... delegation receipt ... } }
],
"requirement": "ep-quorum AND policy-permit"
}
¶
The chain carries the Action Object once; components reference the same action by digest rather than re-embedding it. This is what makes the same-action binding check possible and is the heart of the format.¶
A verifier is configured with a set of component verifiers keyed by type. Given a chain C, the verifier MUST proceed fail-closed:¶
For each component k:¶
The result SHOULD include, per component, whether it verified and whether it was bound, with a reason for any failure, to support audit.¶
A requirement is a Boolean expression with the grammar:¶
expr := term (('AND' | 'OR') term)*
term := '(' expr ')' | IDENT
¶
IDENT matches a component type or label in the satisfied set; an unknown identifier evaluates to false. Implementations MUST evaluate the expression with a bounded parser and MUST NOT use a general-purpose evaluator. AND and OR have EQUAL binding strength and are evaluated strictly left to right; implementations MUST NOT assume AND binds tighter than OR. Parentheses group explicitly and are the only precedence mechanism. Example: "ep-quorum AND (policy-permit OR delegation)" requires a human quorum plus either a policy permit or a delegation receipt, all bound to the same action.¶
The chain document's "requirement" member is supplied by the PRESENTER of the chain. A presenter must never be able to choose its own sufficiency bar: a chain that says "delegation" satisfies itself, however weak, if the verifier takes the document's word for what suffices. This is the same confused-deputy class as a quorum policy read from the object it governs.¶
Accordingly: a verifier MUST accept a requirement expression supplied out-of-band by the RELYING PARTY, and when one is supplied it MUST take precedence over the document's; the document's member is then treated as a recorded claim only. The result MUST record which source was evaluated (requirement_source: "relying_party" or "presenter"), and SHOULD note when a presenter requirement was ignored in favor of a pinned one. The document member remains REQUIRED for self-describing interchange, but relying parties SHOULD pin their own bar for any consequential decision. The reference implementations (JavaScript, Python, Go) implement this behavior and agree on shared conformance vectors covering both sources, including a vector where the presenter's weak bar would pass and the relying party's pinned bar correctly fails.¶
The generalization of this principle -- the entire sufficiency policy (requirement, freshness, revocation, required bindings) supplied by the relying party, with a purpose-relative classified verdict -- is specified in [I-D.schrock-ep-action-evidence-graph].¶
Of the receipt families enumerated in Section 1, only the EP human-authorization receipt binds a named, accountable human (or, via [EP-QUORUM], a quorum of distinct humans under separation of duties) to the exact action. Several policy/permit formats reserve a slot for a threshold or multi-party signature but specify no human semantics behind it. EP-AEC lets a relying party require the human leg explicitly (e.g. requirement includes "ep-quorum") while composing it with machine-side delegation and permit receipts. The built-in component verifiers "ep-quorum" and "ep-receipt" are defined by [EP-QUORUM] and [EP-RECEIPTS] respectively; all other types are supplied by the relying party.¶
Presenter-chosen sufficiency (fixed in -01). Prior to this revision the requirement was read only from the presented document, letting a presenter select the bar its own evidence would be judged against. Section "Whose requirement is it? (changed in -01)" closes this: relying-party-supplied requirements take precedence and the evaluated source is recorded. Deployments of -00 verifiers SHOULD upgrade or wrap verification with an out-of-band requirement check.¶
Cross-binding (action substitution). The core threat is splicing receipts that authorize different actions into one chain. Step 3c of Section 4 defeats this by requiring every satisfied component to attest the chain's exact canonical digest. The strength of this defense rests entirely on the canonical digest being byte-identical across implementations; the I-JSON profile ([EP-RECEIPTS] Section 3) is therefore normative, and one restriction in it is load-bearing enough to restate here: canonical payloads MUST NOT contain non-integer numbers (amounts travel as strings). Within that restriction the reference canonicalizers coincide with RFC 8785 output; full RFC 8785 number serialization (for payloads outside the profile) is an open conformance item, and implementations MUST reject payloads containing non-integer numbers rather than guess.¶
Component verifier trust. A chain is only as sound as its weakest registered verifier and the keys it trusts. Relying parties MUST configure verifiers and trust anchors explicitly; an unconfigured type is unsatisfied, never assumed.¶
Requirement under-specification. A weak requirement yields a weak decision. Requirements SHOULD name every leg the relying party depends on, including the human leg where accountability is required.¶
Freshness and revocation. EP-AEC composes point-in-time evidence; it does not by itself prove the absence of a later revocation. Components that carry status/freshness evidence SHOULD be verified against the relying party's freshness policy.¶
No transport assumptions. EP-AEC is a data structure; it inherits the confidentiality and integrity properties of whatever conveys it. It is fail-closed by construction (Section 4).¶
EP-AEC is complementary to, and composes, the efforts in Section 1. It is the JSON/JCS analogue of the EAT [RFC9711] detached-bundle composition model and can itself be registered as a SCITT [SCITT] signed statement for transparency. It neither extends nor constrains [DRP], [PERMIT], [ACTA], or [AGENTROA]; each plugs in as a component type.¶
This document has no IANA actions. A future revision may request a media type (e.g. "application/ep-aec+json") and a registry of component type identifiers should the work be adopted.¶
A reference verifier and a runnable demonstration (composing a real EP human quorum with a policy-permit leg, and rejecting both a cross-binding attack and a missing human leg; examples/authorization-chain.mjs in the repository) are maintained as open-source software and are exercised offline, with no network dependency, by the reference suite's three language implementations (JavaScript, Python, Go), which agree on a shared conformance vector set. These are one project's implementations -- a cross-language consistency check, not independently developed implementations; a third party has separately executed and verified the published artifacts against a pinned commit, as reported to the IETF SECDISPATCH mailing list on 23 June 2026.¶