Internet-Draft OAuth Mission Approval Revision July 2026
McGuinness Expires 8 January 2027 [Page]
Workgroup:
Web Authorization Protocol
Internet-Draft:
draft-mcguinness-oauth-mission-approval-revision-latest
Published:
Intended Status:
Experimental
Expires:
Author:
K. McGuinness
Independent

Mission Approval Revision for OAuth 2.0

Abstract

Mission Deferred Approval for OAuth 2.0 defers a Mission approval and lets a client poll for the decision. A reviewer commonly approves a narrowed subset of a proposed Mission rather than an all-or-nothing outcome. This document defines an experimental revisable approval mode on top of the deferred approval profile: when the Authorization Server can grant only a narrowed version of the proposed Mission, it invites the client to push a narrowing revision and continue the same deferred approval rather than abandon it and start over. Revisions can only narrow the proposed Mission.

About This Document

This note is to be removed before publishing as an RFC.

The latest revision of this draft can be found at https://mcguinness.github.io/mission-bound-authorization/draft-mcguinness-oauth-mission-approval-revision.html. Status information for this document may be found at https://datatracker.ietf.org/doc/draft-mcguinness-oauth-mission-approval-revision/.

Source for this draft and an issue tracker can be found at https://github.com/mcguinness/mission-bound-authorization.

Status of This Memo

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 8 January 2027.

Table of Contents

1. Introduction

Mission Deferred Approval [I-D.draft-mcguinness-oauth-mission-approval] (the "deferred approval profile") moves the issuance profile's approval event ([I-D.draft-mcguinness-oauth-mission]) to an asynchronous review surface: the client submits a proposed Mission, receives the deferred substrate's pending response ([I-D.draft-gerber-oauth-deferred-token-response]), and polls until the approval resolves. When a reviewer will grant only a narrowed subset of the proposal, that profile resolves to access_denied and the client submits a fresh, narrower Mission Intent.

This document defines a revisable approval mode that keeps the deferred approval open instead: the Mission Issuer signals which dimensions it refused and invites the client to push a narrowing revision, then continues the same deferred approval. The client keeps its place; the approval resolves over the narrowed proposal.

This is narrowing only. A revision can reduce the proposed Mission; it can never broaden it. Widening an approved Mission is a different operation with its own fresh approval ([I-D.draft-mcguinness-oauth-mission-expansion]).

2. Status: An EXPERIMENTAL Extension

This document is OPTIONAL and experimental: adopt it for evaluation, not as a stable interface. The stable path needs no revision mechanism at all. A deferred approval that cannot be granted as proposed resolves to access_denied, and the client submits a fresh, narrower Mission Intent via PAR [RFC9126]; the deferred approval profile and the issuance profile fully specify that path. What this document adds over deny-and-resubmit is continuity of a single deferred approval and machine-readable refusal hints, at the cost of a revision artifact and a per-dimension narrowing verification.

A deployment claims this profile only when it offers or consumes the revision handshake. A Mission Issuer or client that does not implement it remains fully conformant to the deferred approval profile: a revisable-unaware client polling a deferred approval observes only the substrate's ordinary pending responses (Section 6.1).

Like the deferred approval profile, this document tracks the in-progress deferred substrate ([I-D.draft-gerber-oauth-deferred-token-response]) and will track it as it evolves.

3. Relationship to the Deferred Approval Profile

This document depends normatively on the deferred approval profile [I-D.draft-mcguinness-oauth-mission-approval], on the issuance profile [I-D.draft-mcguinness-oauth-mission], and on the deferred substrate [I-D.draft-gerber-oauth-deferred-token-response], and is not implementable alone. It reuses, without restating, the deferred approval profile's sequencing of the approval event and its state machine, the issuance profile's Mission Intent, authority derivation, subset rule, and integrity anchors, and the deferred substrate's deferral response, continuation polling, cancellation, and sender-constraint rules. It uses Proposed Mission as the deferred approval profile defines it.

4. Conventions and Terminology

The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" 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.

Revision:

A narrowing of the proposed Mission, submitted by the client while the approval is deferred, that replaces the proposed Mission's Authority Set with a subset of it.

5. The Revision-Required State

This profile extends the deferred approval profile's state machine ([I-D.draft-mcguinness-oauth-mission-approval]) with one state, revision_required. The Mission Issuer:

approved and denied remain the terminal states. Resolving a deferred approval and replacing its proposed Mission with a revision are atomic with respect to each other: a concurrent approval of a proposal that a revision has superseded cannot commit, and a revision accepted after the approval resolved cannot reopen it.

       submit (PAR + deferred)
                |
                v
           +---------+   accept revision   +------------------+
           | pending |<--------------------| revision_required|
           +---------+                     +------------------+
             |  |  |                              ^
   approve   |  |  | needs narrowing              |
             |  |  +------------------------------+
             |  |
             |  +----------------> denied  (terminal)
             v
          approved  (terminal; Mission created active)

6. Revisable Approval

A client signals that it accepts a narrowing revision by including revisable among its completion_mode values alongside deferred:

completion_mode=deferred revisable

revisable is a completion-mode value registered in the deferred substrate's OAuth Completion Mode Values registry (Section 12). It authorizes only the revision handshake defined here. A Mission Issuer MUST NOT invite a revision unless the client offered revisable. revisable has effect only together with deferred; a Mission Issuer that receives revisable without deferred MUST ignore it, because there is no deferred approval to revise.

6.1. The Revision Required signal

When the Mission Issuer determines that it cannot approve the proposed Mission as stated, but could approve a sufficiently narrowed version, and the client offered revisable, it returns the deferred substrate's authorization_pending response extended with revision parameters rather than resolving to access_denied. Using the substrate's existing pending response, as the substrate permits a profile to do, keeps a client that does not implement this profile polling normally; only a revisable-aware client acts on the added parameters.

HTTP/1.1 400 Bad Request
Content-Type: application/json
Cache-Control: no-store

{
  "error": "authorization_pending",
  "deferral_code": "dc_9P2K7zT1mX8b3N",
  "revision_required": true,
  "revision_handle": "rvh_4QFJ3P9",
  "rejected_scope": "crm:write",
  "rejected_authorization_details": [
    { "type": "payment", "limit": "10000" }
  ],
  "expires_in": 420,
  "interval": 5
}

revision_required (boolean) and revision_handle (string) are REQUIRED on this response. rejected_scope and rejected_authorization_details are OPTIONAL; they name the dimensions of the proposed Mission that were refused so the agent can plan a narrowed revision without further out-of-band interaction. A Mission Issuer MAY omit them when disclosure would reveal sensitive policy state.

rejected_scope is a space-delimited list of scope tokens, using the scope syntax of [RFC6749]. rejected_authorization_details is an array of authorization-details-shaped subtrees that the re-derived Authority Set MUST exclude or narrow: each subtree names a type and the members within it that must not survive re-derivation unchanged. The Mission Issuer verifies per-dimension narrowing after it re-derives the Authority Set from the revised Intent (Section 6.2); the client cannot author the Authority Set, so its obligation is scoped to the Intent members it does author (the resources, the expires_at, and the free-text constraints), which it revises to drive that narrowing.

The revision_handle is bound to the deferred approval and authorizes one revision submission. It is not a token, grant, or continuation handle, and it is sender-constrained to the same key as the deferral_code ([I-D.draft-gerber-oauth-deferred-token-response]). A client MUST NOT treat revision_required, the rejected dimensions, or the handle as evidence of any granted authority; the proposed Mission remains unapproved. Like the deferral_code, the revision_handle is pending-request state, not a grant ([I-D.draft-mcguinness-oauth-mission-approval]).

6.2. Submitting a revision

The client submits the narrowed Mission Intent to the PAR endpoint [RFC9126] with the revision_handle as an additional parameter, sender-constrained as the deferred substrate requires. The Mission Issuer:

  1. verifies the revision_handle is bound to a deferred approval in the revision-required condition, is unexpired and single-use, and matches the client and sender-constraint of the deferred approval;

  2. re-derives the Authority Set for the revised Intent, under the same policy_version that governed the proposed Mission, and verifies it is a subset of the proposed Mission's Authority Set under the issuance profile's subset rule ([I-D.draft-mcguinness-oauth-mission]), with authorization_details narrowing per the inclusion semantics of [RFC9396]. The re-derived Authority Set MUST exclude or narrow every dimension named in rejected_scope or rejected_authorization_details (Section 6.1), verified per dimension, and MUST NOT broaden any dimension. Deriving under the proposed Mission's policy_version keeps the subset comparison reproducible; if policy has changed since the proposal, the Mission Issuer re-derives the proposed Authority Set under the current policy to re-establish the baseline before comparing, or refuses the revision;

  3. invalidates the revision_handle;

  4. replaces the proposed Mission's Authority Set with the revised one and re-reviews it.

The client continues polling the existing deferral_code; the revision does not start a new approval. If the Mission Issuer returns a PAR request_uri, it is an artifact of PAR and MUST NOT be used to start a separate authorization transaction.

6.3. Revision Errors

The PAR endpoint reports a failed revision with a specific error:

  • An expired or already-consumed revision_handle yields invalid_grant.

  • A malformed revision (unparseable, or structurally invalid against the Mission Intent member definitions) yields invalid_request.

  • A revision whose re-derived Authority Set does not narrow every dimension named in rejected_scope or rejected_authorization_details yields revision_not_narrowing (Section 12).

  • When the deferral resolved (to access_denied, expired_token, or an approval) while the revision was in flight, the endpoint yields invalid_grant and the resolution is conveyed on the next poll of the deferral_code.

For example, a revision that keeps a refused write action yields:

HTTP/1.1 400 Bad Request
Content-Type: application/json
Cache-Control: no-store

{
  "error": "revision_not_narrowing",
  "error_description":
    "The re-derived Authority Set retains journal-entries.write"
}

A malformed revision leaves the revision_handle reissuable: because the submission never advanced the approval, the client obtains a new handle from a subsequent authorization_pending response and retries. A consumed handle, and a handle whose deferral has resolved, are not reissuable.

A Mission Issuer MUST bound the number of revision cycles per deferred approval and MUST resolve to access_denied once the bound is reached or no acceptable narrowing remains, so a client cannot drive an unbounded revision loop.

A revised proposal remains subject to the deferred approval profile's pending lifetime and staleness rules ([I-D.draft-mcguinness-oauth-mission-approval]): a decision after a policy_version or capability-catalog change is made over a re-derived, re-rendered proposal.

7. Integration with the Mission Suite

Consent evidence:

A revised proposed Mission is a different disclosure. Where a deployment records Consent Evidence ([I-D.draft-mcguinness-oauth-mission-consent-evidence]), the re-reviewed revision MUST get a fresh consent_rendering_hash; prior consent does not transfer to the narrowed proposal. Each revision-required outcome produces Consent Evidence with decision narrowed, carrying the reviewed disclosure's consent_rendering_hash and the refused dimensions. The final evidence for the resulting approval MAY carry predecessor_intent_hashes committing the revision chain.

Shaping:

The rejected_scope and rejected_authorization_details parameters are the machine-readable input a client-side shaper ([I-D.draft-mcguinness-mission-shaping]) uses to plan the narrowed revision. Shaping narrows a proposal before submission; this profile narrows it during review. Together they let an orchestrator propose, learn what was refused, and re-propose without losing state.

Integrity anchors:

The approval commits the final, narrowed Authority Set. The intent_hash and authority_hash are computed over the revised Mission Intent and Authority Set actually approved, not the originating proposal.

This profile narrows only, and only while an approval is deferred. It is distinct from widening an approved Mission, which requires a fresh approval ([I-D.draft-mcguinness-oauth-mission-expansion]).

8. Worked Example

Agent s6BhdRkqt3, acting for alice, proposes a Mission to reconcile Q3 invoices that asks for both read and write on the ERP. It submits the Mission Intent through PAR and opts in to both deferral and revision on the token request:

POST /token HTTP/1.1
Host: as.example.com
Content-Type: application/x-www-form-urlencoded

grant_type=authorization_code&code=SplxlOBeZQQYbYS6WxSbIA&
client_id=s6BhdRkqt3&
completion_mode=deferred%20revisable

The Mission Issuer routes the proposed Mission to alice for review and defers. The agent polls with the deferred grant type. On review alice approves read but not write. Rather than deny, the Mission Issuer narrows and invites a revision, extending the pending response:

HTTP/1.1 400 Bad Request
Content-Type: application/json
Cache-Control: no-store

{ "error": "authorization_pending",
  "deferral_code": "dfc_7M2R4kP9sT1x",
  "revision_required": true,
  "revision_handle": "rvh_4QFJ3P9wZ2",
  "rejected_authorization_details": [
    { "type": "mission_resource_access",
      "resource": "https://erp.example.com",
      "actions": ["journal-entries.write"] } ],
  "expires_in": 540, "interval": 5 }

Where the deployment records Consent Evidence ([I-D.draft-mcguinness-oauth-mission-consent-evidence]), this revision-required outcome is recorded with decision narrowed, carrying the reviewed disclosure's consent_rendering_hash and the refused dimensions; the anchor values are those of that profile's worked disclosure and test vector:

{
  "evidence_id": "cns_5tN8wQ2rD6",
  "mission": {
    "issuer": "https://as.example.com",
    "intent_hash":
      "sha-256:6mIFoCz79uCHNzKLfBpBwqFjoFXdpmpuc65486IqimQ",
    "authority_hash":
      "sha-256:vUCCfjGulit9u0qJ0Z6pQSNerZtXMqRlfJNCr4PzLro"
  },
  "approver": {
    "iss": "https://idp.example.com",
    "sub": "user_3p2q8mN1a0kV7tR"
  },
  "narrowed_at": "2026-06-30T18:02:00Z",
  "decision": "narrowed",
  "refused_dimensions": {
    "rejected_authorization_details": [
      { "type": "mission_resource_access",
        "resource": "https://erp.example.com",
        "actions": ["journal-entries.write"] }
    ]
  },
  "policy_version": "approval-policy:v12",
  "sequence": 91427,
  "disclosure": {
    "uri": "https://as.example.com/consent-evidence/disc_4pQ9z",
    "consent_rendering_hash":
      "sha-256:W-aXkM2quCh07XvdixCTk8qHoMWOs2tA0hZej4kLGr0"
  },
  "evidence_envelope": {
    "format": "jws-compact",
    "value": "eyJhbGciOiJFUzI1NiIsImtpZCI6ImNvbnNlbnQt..."
  }
}

No Mission exists yet, so the mission descriptor carries the proposal's anchors and no id.

The agent pushes a narrowed Mission Intent, dropping the write, to PAR with the revision handle:

POST /par HTTP/1.1
Host: as.example.com
Content-Type: application/x-www-form-urlencoded

mission_intent=%7B...read-only%20Q3%20invoices...%7D&
client_id=s6BhdRkqt3&
revision_handle=rvh_4QFJ3P9wZ2

The Mission Issuer verifies the handle, confirms the revised Authority Set is a subset of the proposed one, updates the deferred approval, and returns it to pending. alice reviews the narrowed read-only proposal and approves it. Every revision resolution requires a fresh approval event with its own rendering; prior consent does not transfer, and the recorded approver is the principal who approved the final set. The agent keeps polling the same deferral_code, which now resolves to a Mission-bound token over the final, narrowed authority:

HTTP/1.1 200 OK
Content-Type: application/json
Cache-Control: no-store

{ "access_token": "eyJ...",
  "token_type": "DPoP",
  "expires_in": 300,
  "authorization_details": [
    { "type": "mission_resource_access",
      "resource": "https://erp.example.com",
      "actions": ["invoices.read"],
      "constraints": { "period": "2026-Q3" } } ],
  "mission_id": "msn_5Jt9wX4kP7rN2vQ8yL3sD6zB0mF1hG-" }

The token carries the mission claim and its authority_hash as the issuance profile defines. The agent never abandoned its request; the approval resolved over the narrowed proposal, and the committed authority_hash is over the read-only Authority Set actually approved.

9. Conformance

A Mission Issuer conforming to this profile is a conforming Mission Issuer of the deferred approval profile ([I-D.draft-mcguinness-oauth-mission-approval]) and MUST additionally:

A client conforming to this profile MUST treat a revision-required response as unapproved, submit only narrowing revisions, and continue polling the existing deferral_code.

10. Security Considerations

The deferred substrate's and the deferred approval profile's security considerations apply in full, including deferral-code entropy, sender-constraint continuity, cancellation, oracle resistance, and the approval-event authentication requirements on the asynchronous review surface. This section adds only what the revision handshake introduces.

11. Privacy Considerations

The rejected-dimension parameters and the revision history reveal what authority an agent sought and was refused. A Mission Issuer SHOULD treat them as sensitive, minimize what it discloses, and retain revision history under the same controls as other approval-event records.

12. IANA Considerations

This document registers one value in the OAuth Completion Mode Values registry established by the deferred substrate ([I-D.draft-gerber-oauth-deferred-token-response]):

This document registers the following in the "OAuth Parameters" registry. For each: Change Controller IETF; Reference this document, Section 6.1.

PAR [RFC9126] carries authorization-request parameters without a distinct usage location, so the pushed submission of the narrowed Intent and revision_handle needs no separate registration, as the issuance profile states ([I-D.draft-mcguinness-oauth-mission]).

This document registers the following in the "OAuth Extensions Error" registry:

13. References

13.1. Normative References

[I-D.draft-gerber-oauth-deferred-token-response]
Jacobsen, F. K., de Oliveira Niero, G., and M. Gerber, "Deferred Token Response", Work in Progress, Internet-Draft, draft-gerber-oauth-deferred-token-response-00, , <https://datatracker.ietf.org/doc/html/draft-gerber-oauth-deferred-token-response-00>.
[I-D.draft-mcguinness-oauth-mission]
McGuinness, K., "Mission-Bound Authorization for OAuth 2.0", , <https://mcguinness.github.io/mission-bound-authorization/draft-mcguinness-oauth-mission.html>.
[I-D.draft-mcguinness-oauth-mission-approval]
McGuinness, K., "Mission Deferred Approval for OAuth 2.0", , <https://mcguinness.github.io/mission-bound-authorization/draft-mcguinness-oauth-mission-approval.html>.
[RFC2119]
Bradner, S., "Key words for use in RFCs to Indicate Requirement Levels", BCP 14, RFC 2119, DOI 10.17487/RFC2119, , <https://www.rfc-editor.org/rfc/rfc2119>.
[RFC6749]
Hardt, D., Ed., "The OAuth 2.0 Authorization Framework", RFC 6749, DOI 10.17487/RFC6749, , <https://www.rfc-editor.org/rfc/rfc6749>.
[RFC8174]
Leiba, B., "Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words", BCP 14, RFC 8174, DOI 10.17487/RFC8174, , <https://www.rfc-editor.org/rfc/rfc8174>.
[RFC9126]
Lodderstedt, T., Campbell, B., Sakimura, N., Tonge, D., and F. Skokan, "OAuth 2.0 Pushed Authorization Requests", RFC 9126, DOI 10.17487/RFC9126, , <https://www.rfc-editor.org/rfc/rfc9126>.
[RFC9396]
Lodderstedt, T., Richer, J., and B. Campbell, "OAuth 2.0 Rich Authorization Requests", RFC 9396, DOI 10.17487/RFC9396, , <https://www.rfc-editor.org/rfc/rfc9396>.

13.2. Informative References

[I-D.draft-mcguinness-mission-shaping]
McGuinness, K., "Mission Intent Shaping", , <https://mcguinness.github.io/mission-bound-authorization/draft-mcguinness-mission-shaping.html>.
McGuinness, K., "Mission Consent Evidence for OAuth 2.0", , <https://mcguinness.github.io/mission-bound-authorization/draft-mcguinness-oauth-mission-consent-evidence.html>.
[I-D.draft-mcguinness-oauth-mission-expansion]
McGuinness, K., "Mission Expansion for OAuth 2.0", , <https://mcguinness.github.io/mission-bound-authorization/draft-mcguinness-oauth-mission-expansion.html>.

Acknowledgments

This document is part of the Mission-Bound Authorization for OAuth 2.0 work and extends Mission Deferred Approval with an experimental narrowing-revision handshake.

Author's Address

Karl McGuinness
Independent