Skip to content

Commit

Permalink
Merge pull request #827 from swcurran/status-stalled
Browse files Browse the repository at this point in the history
Add status STALLED and change status of many proposed RFCs
  • Loading branch information
swcurran committed May 2, 2024
2 parents 50d148b + bd18889 commit 393c46a
Show file tree
Hide file tree
Showing 54 changed files with 246 additions and 231 deletions.
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,18 @@ Aries RFC includes an "implementations" section and all RFCs with a status great

RFCs go through a standard lifecycle.

![lifecycle](lifecycle.png)
<!-- To edit this lifecycle drawing:
- Copy the URL below
- Navigate to https://www.plantuml.com/plantuml/uml/
- Paste the URL into the text area in the middle of the screen beside the "Decode URL" button.
- Click the "Decode URL" button and the editable Plantuml definition of the drawing will be in the top of the box.
- Edit the lifecycle drawing as desired.
- When complete, copy the resulting URL from the box. Note that the copied URL is missing the leading "https:".
- Replace the URL below, ensuring to add the `https:` at the beginning.
- Done!
-->

![lifecycle](https://www.plantuml.com/plantuml/png/TP1DZeCm38NtEKK6rbnXHAKUe6gNg8iKN43AJ-GOUlsIoa60mYQs_Db-UQu3AQJ9QF570nYGy_X2PKayI178uWuq8dI5L45oBilbINm9MZFdVCjlwBmBiQR7Vg0U0IoZAnXd0w6YBBwqBVWJv3sw-O1MfQefVvLdzR_J43l1gdCVk-bCSeAJJ0Uh7lPeU5CJ7SSUlX0lESUyAeytLZ3wMpdVLt1Cq-iFqvoemNQJqLy0)

#### PROPOSED
To __propose__ an RFC, [use these instructions to raise a PR](
Expand All @@ -40,6 +51,10 @@ To get an RFC __adopted__, [socialize and implement](contributing.md#how-to-get-

To __refine__ an RFC, propose changes to it through additional PRs. Typically these changes are driven by experience that accumulates during or after adoption. Minor refinements that just improve clarity can happen inline with lightweight review. Status is still ADOPTED.

#### STALLED
An RFC is __stalled__ when a [proposed](#proposed) RFC makes
no progress towards implementation such that it is extremely unlikely it will ever move forward. The __stalled__ state differs from [retired](#retired) in that it is an RFC that has never been implemented or superseded. Like the [retired](#retired) state, it is (likely) an end state and the RFC will not proceed further. Such an RFC remains in the repository on the off chance it will ring a chord with others, be returned to the [proposed](#proposed) state, and continue to evolve.

#### RETIRED
An RFC is __retired__ when it is withdrawn from community consideration by its authors, when implementation seems permanently stalled, or when significant refinements require a superseding document. If a retired RFC has been superseded, its `Superseded By` field should contain a link to the newer spec, and the newer spec's `Supersedes` field should contain a link to the older spec. Permalinks are not broken.

Expand Down
3 changes: 3 additions & 0 deletions code/genSite.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ sed -e "s#/tags.md#tags.md#g" index.md > docs/RFCindex.md
# Features and Concept -- collect all of the RFCs
cp -r features concepts docs

# Update the index.md file
python code/generate_index.py

# Make a copy of AIP 2 RFCs using the right commit for each
python code/aipUpdates.py -v 2.0 -l "./code/cpAIPs.sh" | \
sed -e "/0317-please-ack/d" -e "/0587-encryption-envelope-v2/d" -e "/0627-static-peer-dids/d" \
Expand Down
2 changes: 1 addition & 1 deletion code/rfcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
' status_note start_date supersedes superseded_by tags content_idx impl_count impl_table')


status_list = ["ADOPTED", "ACCEPTED", "DEMONSTRATED", "PROPOSED", "RETIRED"]
status_list = ["ADOPTED", "ACCEPTED", "DEMONSTRATED", "PROPOSED", "STALLED", "RETIRED"]


root_folder = os.path.normpath(os.path.join(os.path.dirname(os.path.abspath(__file__)), '..'))
Expand Down
4 changes: 2 additions & 2 deletions concepts/0017-attachments/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Aries RFC 0017: Attachments

- Authors: [Daniel Hardman](daniel.hardman@gmail.com), Sam Curren, Andrew Whitehead
- Status: [ACCEPTED](/README.md#accepted)
- Since: 2019-01-31
- Status: [ADOPTED](/README.md#adopted)
- Since: 2024-05-01
- Status Note: Used in a number of other RFCs.
- Start Date: 2018-12-24
- Tags: [concept](/tags.md#concept)
Expand Down
6 changes: 3 additions & 3 deletions concepts/0029-message-trust-contexts/README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Aries RFC 0029: Message Trust Contexts

- Authors: [Daniel Hardman](daniel.hardman@gmail.com)
- Status: [DEMONSTRATED](/README.md#demonstrated)
- Since: 2019-05-10
- Status Note: Only implemented in one codebase and in the sample code here.
- Status: [STALLED](/README.md#stalled)
- Since: 2024-04-03
- Status Note: Not practically applied.
- Supersedes: [Indy HIPE PR #120](https://github.com/hyperledger/indy-hipe/pull/120)
- Start Date: 2018-02-10 (approx, backdated)
- Tags: [concept](/tags.md#concept)
Expand Down
6 changes: 3 additions & 3 deletions concepts/0051-dkms/README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Aries RFC 0051: Decentralized Key Management

- Authors: [Drummond Reed](drummond@connect.me) et al.
- Status: [DEMONSTRATED](/README.md#demonstrated)
- Since: 2019-03-29
- Status Note: Somewhat familiar to many in the community, and influential in the designs of other RFCs--but not yet deeply explored or socialized.
- Status: [RETIRED](/README.md#retired)
- Since: 2024-04-03
- Status Note: Covered elsewhere and not specific to Aries.
- Start Date: 2018-09-01 (approx, backdated)
- Tags: [concept](/tags.md#concept)

Expand Down
4 changes: 2 additions & 2 deletions concepts/0094-cross-domain-messaging/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Aries RFC 0094: Cross-Domain Messaging

- Authors: [Stephen Curran](swcurran@gmail.com)
- Status: [ACCEPTED](/README.md#accepted)
- Since: 2018-10-29
- Status: [ADOPTED](/README.md#adopted)
- Since: 2024-05-01
- Status Note: Socialized and broadly understood in other conceptual RFCs about routing.
- Supersedes: [0022-Cross-Domain-Messaging](https://github.com/hyperledger/indy-RFC/blob/master/text/0022-cross-domain-messaging/README.md)
- Start Date: 2018-08-13
Expand Down
6 changes: 3 additions & 3 deletions concepts/0207-credential-fraud-threat-model/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# 0207: Credential Fraud Threat Model
- Authors: [Daniel Hardman](daniel.hardman@gmail.com)
- Status: [PROPOSED](/README.md#proposed)
- Since: 2019-08-30
- Status Note: socialized on an informal credential fraud study group (https://groups.google.com/d/forum/credential-fraud-study) since ~May 2019.
- Status: [STALLED](/README.md#stalled)
- Since: 2024-04-03
- Status Note: No implementations have been created. Socialized on an informal credential fraud study group (https://groups.google.com/d/forum/credential-fraud-study) circa 2019.
- Start Date: 2019-05-23
- Tags: [concept](/tags.md#concept), [credentials](/tags.md#credentials)

Expand Down
6 changes: 3 additions & 3 deletions concepts/0217-linkable-message-paths/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Aries RFC 0217: Linkable Message Paths
- Authors: [Daniel Hardman](daniel.hardman@gmail.com)
- Status: [PROPOSED](/README.md#proposed)
- Since: 2019-09-10
- Status Note: Purely theoretical at this point, but may be relevant to efforts to join subprotocols to superprotocols. Mentioned in [RFC 0214 "Help Me Discover" Protocol](../../features/0214-help-me-discover/README.md).
- Status: [STALLED](/README.md#stalled)
- Since: 2024-04-03
- Status Note: No implementations have been created.
- Start Date: 2019-08-26
- Tags: [concept](/tags.md#concept)

Expand Down
6 changes: 3 additions & 3 deletions concepts/0250-rich-schemas/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# RFC 0250: Rich Schema Objects
- Author: [Ken Ebert](ken@sovrin.org), [Brent Zundel](brent.zundel@evernym.com)
- Status: [RETIRED](/README.md#retired)
- Since: 2019-10-08
- Status Note: Port of [this HIPE](https://github.com/hyperledger/indy-hipe/tree/main/text/0119-rich-schemas/README.md)
- Status: [STALLED](/README.md#stalled)
- Since: 2024-04-03
- Status Note: No recent progress and no implementations have been created.
- Supersedes: [this HIPE](https://github.com/hyperledger/indy-hipe/tree/main/text/0119-rich-schemas/README.md)
- Start Date: 2019-03-19
- Tags: [concept](/tags.md#concept), [rich-schemas](/tags.md#rich-schemas)
Expand Down
6 changes: 3 additions & 3 deletions concepts/0257-private-credential-issuance/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Aries RFC 0257: Private Credential Issuance
- Authors: Daniel Hardman and Lovesh Harchandani
- Status: [PROPOSED](/README.md#proposed)
- Since: 2019-10-16
- Status Note: under study
- Status: [STALLED](/README.md#stalled)
- Since: 2024-04-03
- Status Note: No recent progress and no implementations have been created.
- Start Date: 2019-08-26
- Tags: [concept](/tags.md#concept), [protocol](/tags.md#protocol)

Expand Down
4 changes: 2 additions & 2 deletions concepts/0268-unified-didcomm-agent-deeplinking/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Aries RFC 0268: Unified DIDCOMM Deeplinking
- Authors: [Dev Bharel](dev@spaceman.id), [Alexi Falquier](alexis@spaceman.id)
- Status: [PROPOSED](/README.md#proposed)
- Since: 2019-10-23
- Status Note: Proposed
- Since: 2019-10-23
- Status Note: Proposed
- Start Date: 2018-10-04
- Tags: [concept](/tags.md#concept)

Expand Down
6 changes: 3 additions & 3 deletions concepts/0289-toip-stack/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# 0289: The Trust Over IP Stack
- Authors: Matthew Davie, [Dan Gisolfi](dan.gisolfi@gmail.com), [Daniel Hardman](daniel.hardman@evernym.com), [John Jordan](john.jordan@gov.bc.ca), Darrell O'Donnell, [Drummond Reed](drummond.reed@evernym.com), [Oskar van Deventer](oskar.vandeventer@tno.nl)
- Status: [PROPOSED](/README.md#proposed)
- Since: 2019-11-04
- Status Note: Initial Proposal
- Status: [STALLED](/README.md#stalled)
- Since: 2024-04-03
- Status Note: No recent progress and no implementations have been created.
- Start Date: 2019-01-01
- Tags: [concept](/tags.md#concept), stack, trust layer, governance framework

Expand Down
6 changes: 3 additions & 3 deletions concepts/0420-rich-schemas-common/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# 0420: Rich Schema Objects Common
- Author: [Alexander Shcherbakov](mailto:alexander.shcherbakov@evernym.com), [Brent Zundel](mailto:brent.zundel@evernym.com), [Ken Ebert](mailto:ken@sovrin.org)
- Status: [PROPOSED](/README.md#proposed)
- Since: 2020-02-13
- Status Note: Part of proposed Rich Schema capabilities for credentials
- Status: [STALLED](/README.md#stalled)
- Since: 2024-04-03
- Status Note: No recent progress and no implementations have been created.
- Start Date: 2020-02-05
- Tags: [concept](/tags.md#concept), [rich-schemas](/tags.md#rich-schemas)

Expand Down
6 changes: 3 additions & 3 deletions concepts/0441-present-proof-best-practices/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# 0441: Prover and Verifier Best Practices for Proof Presentation
- Authors: [Stephen Klump](stephen.klump@becker-carroll.com)
- Status: [ACCEPTED](/README.md#accepted)
- Since: 2021-04-15
- Status Note: Interoperability guidance when using Indy AnonCreds Present Proof. An element of the Indy AnonCreds subtarget for [AIP v2.0](../../concepts/0302-aries-interop-profile/README.md).
- Status: [ADOPTED](/README.md#adopted)
- Since: 2024-05-01
- Status Note: Interoperability guidance when using AnonCreds Present Proof. An element of the AnonCreds subtarget for [AIP v2.0](../../concepts/0302-aries-interop-profile/README.md).
- Start Date: 2020-10-31
- Tags: [concept](/tags.md#concept), [credentials](/tags.md#credentials)

Expand Down
6 changes: 3 additions & 3 deletions concepts/0478-coprotocols/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Aries RFC 0478: Coprotocols
- Authors: [Daniel Hardman](daniel.hardman@gmail.com)
- Status: [PROPOSED](/README.md#proposed)
- Since: 2020-05-19
- Status Note: Sister RFC to [Aries RFC 0482](../../features/0482-coprotocol-protocol/README.md), which documents a specific protocol to facilitate protocol interactions. Socialized on Aries community call in Feb 2020, using [these slides](https://docs.google.com/presentation/d/17hk6QqLW5M9E4TBPZwXIUBu9eEinMNXReceyZTF4LpA/edit). Discussed again in May 2020. Source files for graphics are either checked in or are published at https://j.mp/2XgyjH3.
- Status: [STALLED](/README.md#stalled)
- Since: 2024-04-03
- Status Note: No recent progress and no implementations have been created.
- Start Date: 2020-02-03
- Tags: [concept](/tags.md#concept), [protocol](/tags.md#protocol)

Expand Down
4 changes: 2 additions & 2 deletions features/0015-acks/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Aries RFC 0015: ACKs

- Authors: [Daniel Hardman](daniel.hardman@gmail.com)
- Status: [ACCEPTED](/README.md#accepted)
- Since: 2021-04-15
- Status: [ADOPTED](/README.md#adopted)
- Since: 2024-05-01
- Status Note: Broadly implemented, adopted into many protocols and part of [AIP 1 and 2](../../concepts/0302-aries-interop-profile/README.md).
- Start Date: 2018-12-26
- Tags: [feature](/tags.md#feature)
Expand Down
6 changes: 3 additions & 3 deletions features/0024-didcomm-over-xmpp/README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Aries RFC 0024: DIDComm over XMPP

- Authors: [Oskar van Deventer](oskar.vandeventer@tno.nl), [Galit Rahim](galit.rahim@tno.nl), [Alexander Blom](alexander.blom@bloqzone.com)
- Status: [PROPOSED](/README.md#proposed)
- Since: 2019-06-14
- Status Note: , moving from Indy to Aries.
- Status: [STALLED](/README.md#stalled)
- Since: 2024-04-03
- Status Note: No implementations have been created.
- Supersedes: [Indy DIDComm-over-XMPP](https://github.com/Oskar-van-Deventer/indy-hipe/tree/main/text/didcom-over-xmpp)
- Start Date: 2019-04-23
- Tags: [feature](/tags.md#feature)
Expand Down
6 changes: 3 additions & 3 deletions features/0030-sync-connection/README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Aries RFC 0030: Sync Connection Protocol 1.0

- Authors: [Daniel Hardman](daniel.hardman@gmail.com)
- Status: [PROPOSED](/README.md#proposed)
- Since: 2019-07-03
- Status Note: used by the [peer DID method spec](https://openssi.github.io/peer-did-method-spec). Implementation beginning.
- Status: [STALLED](/README.md#stalled)
- Since: 2024-04-03
- Status Note: No implementations have been created.
- Supersedes: [Indy HIPE PR #104](https://github.com/hyperledger/indy-hipe/pull/104)
- Start Date: 2018-10-01
- Tags: [feature](/tags.md#feature), [decorator](/tags.md#decorator), [protocol](/tags.md#protocol)
Expand Down
4 changes: 2 additions & 2 deletions features/0035-report-problem/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Aries RFC 0035: Report Problem Protocol 1.0

- Authors: [Stephen Curran](swcurran@cloudcompass.ca), [Daniel Hardman](daniel.hardman@gmail.com)
- Status: [ACCEPTED](/README.md#accepted)
- Since: 2021-03-15
- Status: [ADOPTED](/README.md#adopted)
- Since: 2024-05-01
- Status Note: Implemented in multiple codebases.
- Supersedes: [Indy HIPE PR #65]( https://github.com/hyperledger/indy-hipe/pull/65)
- Start Date: 2018-11-26
Expand Down
6 changes: 3 additions & 3 deletions features/0075-payment-decorators/README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Aries RFC 0075: Payment Decorators

- Authors: [Sam Curren](sam@sovrin.org), [Daniel Hardman](daniel.hardman@gmail.com), Tomislav Markovski
- Status: [PROPOSED](/README.md#proposed)
- Since: 2019-06-11
- Status Note: Still being studied.
- Status: [STALLED](/README.md#stalled)
- Since: 2024-04-03
- Status Note: No implementations have been created.
- Supersedes: [Indy HIPE PR #129]( https://github.com/hyperledger/indy-hipe/pull/129)
- Start Date: 2019-04-22
- Tags: [feature](/tags.md#feature), [decorator](/tags.md#decorator)
Expand Down
4 changes: 2 additions & 2 deletions features/0092-transport-return-route/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Aries RFC 0092: Transports Return Route

- Authors: [Sam Curren](sam@sovrin.org)
- Status: [ACCEPTED](/README.md#accepted)
- Since: 2019-12-06
- Status: [ADOPTED](/README.md#adopted)
- Since: 2024-05-01
- Status Note:
- Supersedes: [INDY HIPE PR 116](https://github.com/hyperledger/indy-hipe/pull/116)
- Start Date: 2019-03-04
Expand Down
6 changes: 3 additions & 3 deletions features/0114-predefined-identities/README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Aries RFC 0114: Predefined Identities

- Authors: Daniel Hardman
- Status: [PROPOSED](/README.md#proposed)
- Since: 2019-07-10
- Status Note: (explanation of current status; if adopted, links to impls or derivative ideas; if superseded, link to replacement)
- Status: [STALLED](/README.md#stalled)
- Since: 2024-04-03
- Status Note: No implementations have been created.
- Start Date: 2019-07-10
- Tags: [feature](/tags.md#feature)

Expand Down
6 changes: 3 additions & 3 deletions features/0116-evidence-exchange/README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Aries RFC 0116: Evidence Exchange Protocol 0.9

- Authors: [Dan Gisolfi](mailto:dan.gisolfi@gmail.com)
- Status: [PROPOSED](/README.md#proposed)
- Since: 2019-07-26
- Status Note: Revised to address both physical and digital identity proofing methods and NIST assurance levels.
- Status: [STALLED](/README.md#stalled)
- Since: 2024-04-03
- Status Note: No implementations have been created.
- Start Date: 2019-07-05
- Tags: [feature](/tags.md#feature), [protocol](/tags.md#protocol)

Expand Down
4 changes: 2 additions & 2 deletions features/0183-revocation-notification/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Aries RFC 0183: Revocation Notification 1.0
- Authors: [Keith Smith]
- Status: [PROPOSED](/README.md#proposed)
- Since: 2019-08-12
- Status: [ACCEPTED](/README.md#accepted)
- Since: 2024-05-01
- Status Note: Initial proposal after discussion on rocketchat
- Supersedes:
- Start Date: 2018-08-12
Expand Down
6 changes: 3 additions & 3 deletions features/0193-coin-flip/README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Aries RFC 0193: Coin Flip Protocol 1.0

- Authors: [Daniel Hardman](daniel.hardman@gmail.com), [Patrick Stürmlinger](patrick@mindf.org)
- Status: [PROPOSED](/README.md#proposed)
- Since: 2019-08-19
- Status Note: minor update in late 2020
- Status: [STALLED](/README.md#stalled)
- Since: 2024-04-03
- Status Note: No implementations have been created.
- Start Date: 2019-08-19
- Tags: [feature](/tags.md#feature), [protocol](/tags.md#protocol)

Expand Down
4 changes: 2 additions & 2 deletions features/0211-route-coordination/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# 0211: Mediator Coordination Protocol
- Authors: [Sam Curren](telegramsam@gmail.com), [Daniel Bluhm](daniel@indicio.tech), [Adam Burdett](burdettadam@gmail.com)
- Status: [ACCEPTED](/README.md#accepted)
- Since: 2021-03-15
- Status: [ADOPTED](/README.md#adopted)
- Since: 2024-05-01
- Status Note: Discussed and implemented and part of AIP 2.0.
- Start Date: 2019-09-03
- Tags: [feature](/tags.md#feature), [protocol](/tags.md#protocol), [test-anomaly](/tags.md#test-anomaly)
Expand Down
2 changes: 1 addition & 1 deletion features/0213-transfer-policy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
- Authors: [Sam Curren](telegramsam@gmail.com)
- Status: [PROPOSED](/README.md#proposed)
- Since: 2019-09-03
- Status Note: Initial version
- Status Note: Initial version
- Start Date: 2019-09-03
- Tags: [feature](/tags.md#feature), [protocol](/tags.md#protocol)

Expand Down
2 changes: 1 addition & 1 deletion features/0214-help-me-discover/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
- Authors: [George Aristy](george.aristy@securekey.com), [Daniel Hardman](daniel.hardman@gmail.com)
- Status: [PROPOSED](/README.md#proposed)
- Since: 2019-09-10
- Status Note: implementation is being explored by SecureKey
- Status Note: implementation is being explored by SecureKey
- Start Date: 2018-08-20
- Tags: [feature](/tags.md#feature), [protocol](/tags.md#protocol)

Expand Down
6 changes: 3 additions & 3 deletions features/0249-rich-schema-contexts/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Aries RFC 0249: Aries Rich Schema Contexts
- Authors: [Brent Zundel](mailto:brent.zundel@evernym.com), [Ken Ebert](mailto:ken@sovrin.org), [Alexander Shcherbakov](mailto:alexander.shcherbakov@evernym.com)
- Status: [PROPOSED](/README.md#proposed)
- Since: 2019-10-08
- Status Note: Part of proposed Rich Schema capabilities for credentials
- Status: [STALLED](/README.md#stalled)
- Since: 2024-04-03
- Status Note: No implementations have been created.
- Supersedes:
- Start Date: 2019-06-07
- Tags: [feature](/tags.md#feature), [rich-schemas](/tags.md#rich-schemas)
Expand Down
6 changes: 3 additions & 3 deletions features/0281-rich-schemas/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Aries RFC 0281: Aries Rich Schemas
- Authors: [Brent Zundel](mailto:brent.zundel@evernym.com), [Ken Ebert](mailto:ken@sovrin.org), [Alexander Shcherbakov](mailto:alexander.shcherbakov@evernym.com)
- Status: [PROPOSED](/README.md#proposed)
- Since: 2019-10-30
- Status Note: Part of proposed Rich Schema capabilities for credentials
- Status: [STALLED](/README.md#stalled)
- Since: 2024-04-03
- Status Note: No implementations have been created.
- Supersedes:
- Start Date: 2019-06-07
- Tags: [feature](/tags.md#feature), [rich-schemas](/tags.md#rich-schemas)
Expand Down
6 changes: 3 additions & 3 deletions features/0309-didauthz/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Aries RFC 0309: DIDAuthZ
- Authors: [George Aristy](george.aristy@gmail.com) SecureKey Technologies
- Status: [PROPOSED](/README.md#proposed)
- Since: 2019-11-14
- Status Note: This RFC is under development.
- Status: [STALLED](/README.md#stalled)
- Since: 2024-04-03
- Status Note: No implementations have been created.
- Supersedes:
- Start Date: 2019-09-27
- Tags: [feature](/tags.md#feature), [credentials](/tags.md#credentials)
Expand Down
Loading

0 comments on commit 393c46a

Please sign in to comment.