diff --git a/.github/workflows/auto-publish-methods.yml b/.github/workflows/auto-publish-methods.yml
new file mode 100644
index 00000000..56d6d032
--- /dev/null
+++ b/.github/workflows/auto-publish-methods.yml
@@ -0,0 +1,21 @@
+# .github/workflows/pr-push.yml
+name: Echidna Auto-publish did-extensions-methods
+on:
+ push:
+ branches: [main]
+ paths: ["methods/**"]
+jobs:
+ main:
+ name: Echidna Auto-publish WD
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+ - uses: w3c/spec-prod@v2
+ with:
+ SOURCE: methods/index.html
+ TOOLCHAIN: respec
+ W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN_METHODS }}
+ W3C_WG_DECISION_URL: https://www.w3.org/2024/09/24-did-minutes.html#r02
+ W3C_BUILD_OVERRIDE: |
+ shortName: did-extensions-methods
+ specStatus: NOTE
diff --git a/.github/workflows/auto-publish-properties.yml b/.github/workflows/auto-publish-properties.yml
new file mode 100644
index 00000000..d972cd10
--- /dev/null
+++ b/.github/workflows/auto-publish-properties.yml
@@ -0,0 +1,21 @@
+# .github/workflows/pr-push.yml
+name: Echidna Auto-publish did-extensions-properties
+on:
+ push:
+ branches: [main]
+ paths: ["properties/**"]
+jobs:
+ main:
+ name: Echidna Auto-publish WD
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+ - uses: w3c/spec-prod@v2
+ with:
+ SOURCE: properties/index.html
+ TOOLCHAIN: respec
+ W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN_PROPERTIES }}
+ W3C_WG_DECISION_URL: https://www.w3.org/2024/09/24-did-minutes.html#r02
+ W3C_BUILD_OVERRIDE: |
+ shortName: did-extensions-properties
+ specStatus: NOTE
diff --git a/.github/workflows/auto-publish-resolution.yml b/.github/workflows/auto-publish-resolution.yml
new file mode 100644
index 00000000..6f4523c0
--- /dev/null
+++ b/.github/workflows/auto-publish-resolution.yml
@@ -0,0 +1,21 @@
+# .github/workflows/pr-push.yml
+name: Echidna Auto-publish did-extensions-resolution
+on:
+ push:
+ branches: [main]
+ paths: ["resolutions/**"]
+jobs:
+ main:
+ name: Echidna Auto-publish WD
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+ - uses: w3c/spec-prod@v2
+ with:
+ SOURCE: resolutions/index.html
+ TOOLCHAIN: respec
+ W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN_RESOLUTION }}
+ W3C_WG_DECISION_URL: https://www.w3.org/2024/09/24-did-minutes.html#r02
+ W3C_BUILD_OVERRIDE: |
+ shortName: did-extensions-resolution
+ specStatus: NOTE
diff --git a/.github/workflows/auto-publish.yml b/.github/workflows/auto-publish.yml
index 4ac48392..6d582722 100644
--- a/.github/workflows/auto-publish.yml
+++ b/.github/workflows/auto-publish.yml
@@ -1,32 +1,34 @@
# .github/workflows/pr-push.yml
-name: Echidna Auto-publish
+name: Echidna Auto-publish did-extensions
on:
push:
branches: [main]
jobs:
main:
name: Build, Validate and Deploy
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-latest
steps:
- name: Begin spec-prod...
- uses: actions/checkout@v2
- - name: Setup Node 16...
- uses: actions/setup-node@v1
+ uses: actions/checkout@v4
+ - name: Setup Node 22...
+ uses: actions/setup-node@v4
with:
- node-version: 16.x
- - name: Install did-spec-registries tooling...
+ node-version: 22.x
+ - name: Install did-extensions tooling...
working-directory: tooling
run: npm i
- - name: Validate did-spec-registries DID method entries
+ - name: Validate did-extensions DID method entries
working-directory: tooling
- run: npm run registry:validate
- - name: Generate did-spec-registries registry index
+ run: npm run validate
+ - name: Generate did-extensions registry index
working-directory: tooling
- run: npm run registry:generate:index
+ run: npm run generate
- uses: w3c/spec-prod@v2
with:
- W3C_ECHIDNA_TOKEN: ${{ secrets.W3C_TR_TOKEN }}
- W3C_WG_DECISION_URL: https://www.w3.org/2019/did-wg/Meetings/Minutes/2020-06-09-did#resolution1
+ SOURCE: index.html
+ TOOLCHAIN: respec
+ W3C_ECHIDNA_TOKEN: ${{ secrets.ECHIDNA_TOKEN_EXTENSIONS }}
+ W3C_WG_DECISION_URL: https://www.w3.org/2024/09/24-did-minutes.html#r02
W3C_BUILD_OVERRIDE: |
- shortName: did-spec-registries
+ shortName: did-extensions
specStatus: NOTE
diff --git a/.github/workflows/lint-did-method-registry.yml b/.github/workflows/lint.yml
similarity index 67%
rename from .github/workflows/lint-did-method-registry.yml
rename to .github/workflows/lint.yml
index 4139ad48..67eb76ad 100644
--- a/.github/workflows/lint-did-method-registry.yml
+++ b/.github/workflows/lint.yml
@@ -7,17 +7,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source code...
- uses: actions/checkout@v2
- - name: Setup Node 16...
- uses: actions/setup-node@v2
+ uses: actions/checkout@v4
+ - name: Setup Node 22...
+ uses: actions/setup-node@v4
with:
- node-version: 16.x
+ node-version: 22.x
- name: Install did-extensions tooling...
working-directory: tooling
run: npm i
- name: Validate did-extensions DID method entries
working-directory: tooling
- run: npm run registry:validate
+ run: npm run validate
- name: Generate did-extensions registry index
working-directory: tooling
- run: npm run registry:generate:index
+ run: npm run generate
diff --git a/.github/workflows/publish-did-extensions.yml b/.github/workflows/publish-did-extensions.yml
index 77e0c6f7..fbf6d4f9 100644
--- a/.github/workflows/publish-did-extensions.yml
+++ b/.github/workflows/publish-did-extensions.yml
@@ -9,22 +9,22 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout source code...
- uses: actions/checkout@v2
- - name: Setup Node 16...
- uses: actions/setup-node@v2
+ uses: actions/checkout@v4
+ - name: Setup Node 22...
+ uses: actions/setup-node@v4
with:
- node-version: 16.x
+ node-version: 22.x
- name: Install did-extensions tooling...
working-directory: tooling
run: npm i
- name: Validate did-extensions DID method entries
working-directory: tooling
- run: npm run registry:validate
+ run: npm run validate
- name: Generate did-extensions registry index
working-directory: tooling
- run: npm run registry:generate:index
+ run: npm run generate
- name: Deploy to Github Pages
- uses: JamesIves/github-pages-deploy-action@4.1.5
+ uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: .
diff --git a/index.html b/index.html
index ffe5b390..5603ddcc 100644
--- a/index.html
+++ b/index.html
@@ -22,6 +22,7 @@
// the specification's short name, as in http://www.w3.org/TR/short-name/
shortName: "did-extensions",
+ prevRecShortname: "did-spec-registries",
edDraftURI: "https://w3c.github.io/did-extensions/",
@@ -29,7 +30,7 @@
subtitle: "Known Extensions for the Decentralized Identifier Ecosystem",
// if you wish the publication date to be other than today, set this
- //publishDate: "2019-11-07",
+ // publishDate: "2024-11-19",
// if there is a previously published draft, uncomment this and set its YYYY-MM-DD date
// and its maturity status
@@ -44,14 +45,14 @@
includePermalinks: false,
editors: [{
- name: "Manu Sporny", url: "http://manu.sporny.org/",
+ name: "Manu Sporny", url: "https://www.linkedin.com/in/manusporny/",
company: "Digital Bazaar", companyURL: "https://digitalbazaar.com/",
w3cid: 41758, note: "2017-present"
}, {
name: "Markus Sabadello", url: "https://www.linkedin.com/in/markus-sabadello-353a0821",
company: "Danube Tech", companyURL: "https://danubetech.com/",
w3cid: 46729, note: "2020-present"
- }, {
+ }/*, {
name: "Apurva Chitnis",
url: "https://apuchitnis.github.io/",
company: "Koodos",
@@ -60,12 +61,12 @@
name: "Sten Reijers", url: "https://github.com/stenreijers",
note: "2024-present"
}, {
- name: "Ghislain", url: "https://w3id.org/people/gatemezing",
+ name: "Ghislain Atemezing", url: "https://w3id.org/people/gatemezing",
company: "European Union Agency for Railways", "companyURL": "https://www.era.europa.eu/",
- note: "2024-present"
+ w3cid: 116776, note: "2024-present"
}, {
name: "Adam Burns", url: "https://www.linkedin.com/in/adampeterburns/",
- note: "2024-present"
+ w2cid: 160312, note: "2024-present"
}, {
name: "Stefannie Tan (ステファニー タン)", url: "https://github.com/Steffytan",
company: "SBI Group (SBIホールディングス)", "companyURL": "https://sbigroup.co.jp/",
@@ -76,7 +77,7 @@
note: "2024-present"
}, {
name: "Rajiv Rajani", url: "https://github.com/rajivrajani",
- note: "2024-present"
+ w3cid: 161889, note: "2024-present"
}, {
name: "Ariel Gentile", url: "https://github.com/genaris",
company: "GenAris Tech", "companyURL": "https://genaris.tech/",
@@ -93,7 +94,7 @@
name: "Kevin Dean", url: "https://www.linkedin.com/in/kdean/",
company: "Dolphin Data Development Ltd.",
note: "2024-present"
- }],
+ }*/],
formerEditors: [{
name: "Orie Steele", url: "https://www.linkedin.com/in/or13b/",
company: "Transmute", companyURL: "https://www.transmute.industries/",
@@ -106,11 +107,11 @@
name: "Ivan Herman", url: "https://www.w3.org/People/Ivan/",
company: "W3C", companyURL: "https://www.w3.org",
note: "2020-2022", w3cid: 7382, orcid: "0000-0003-0782-2704"
- }, {
+ }/*, {
name: "Kyle Den Hartog", url: "https://www.linkedin.com/in/kyledenhartog/",
company: "MATTR", companyURL: "https://mattr.global/",
note: "2020-2022"
- }],
+ }*/],
// authors, add as many as you like.
// This is optional, uncomment if you have authors as well as editors.
diff --git a/methods/art.json b/methods/art.json
index 39063977..b19e5cda 100644
--- a/methods/art.json
+++ b/methods/art.json
@@ -2,8 +2,8 @@
"name": "art",
"status": "registered",
"specification": "https://github.com/ArtracID/ArtracID-DID-ART-Method",
- "contactName": "Ming-lam Ng (RealMatter)",
- "contactEmail": "did_inquiry@artrac.id",
+ "contactName": "Daniel Chun",
+ "contactEmail": "did_inquiry@artgrouplimited.com",
"contactWebsite": "www.artracx.com",
"verifiableDataRegistry": "Artwork ID Method"
}
diff --git a/methods/fairx.json b/methods/fairx.json
index c2955141..8791520f 100644
--- a/methods/fairx.json
+++ b/methods/fairx.json
@@ -1,9 +1,9 @@
{
"name": "fairx",
- "status": "registered",
+ "status": "deprecated",
"verifiableDataRegistry": "FairX Node",
"contactName": "Michael Dowling",
"contactEmail": "mdowling@gmail.com",
"contactWebsite": "https://github.com/fairxio/",
"specification": "https://github.com/fairxio/protocol/tree/main/did"
- }
\ No newline at end of file
+ }
diff --git a/methods/gwm.json b/methods/gwm.json
new file mode 100644
index 00000000..68c4e741
--- /dev/null
+++ b/methods/gwm.json
@@ -0,0 +1,9 @@
+{
+ "name": "gwm",
+ "status": "registered",
+ "verifiableDataRegistry": "Great Wall Chain",
+ "contactName": "Great Wall Motor Company Limited",
+ "contactEmail": "",
+ "contactWebsite": "",
+ "specification": "https://github.com/GreatWall-Blockchain/GWDID-Method-Specification/blob/main/README.md"
+}
diff --git a/methods/index.html b/methods/index.html
index 715f5dd5..cbafcbc9 100644
--- a/methods/index.html
+++ b/methods/index.html
@@ -69,7 +69,7 @@
subtitle: "Known DID Methods in the Decentralized Identifier Ecosystem",
// if you wish the publication date to be other than today, set this
- //publishDate: "2019-11-07",
+ // publishDate: "2024-11-19",
// if there is a previously published draft, uncomment this and set its YYYY-MM-DD date
// and its maturity status
@@ -85,14 +85,14 @@
includePermalinks: false,
editors: [{
- name: "Manu Sporny", url: "http://manu.sporny.org/",
+ name: "Manu Sporny", url: "https://www.linkedin.com/in/manusporny/",
company: "Digital Bazaar", companyURL: "https://digitalbazaar.com/",
w3cid: 41758, note: "2017-present"
}, {
name: "Markus Sabadello", url: "https://www.linkedin.com/in/markus-sabadello-353a0821",
company: "Danube Tech", companyURL: "https://danubetech.com/",
w3cid: 46729, note: "2020-present"
- }, {
+ }/*, {
name: "Apurva Chitnis",
url: "https://apuchitnis.github.io/",
company: "Koodos",
@@ -101,12 +101,12 @@
name: "Sten Reijers", url: "https://github.com/stenreijers",
note: "2024-present"
}, {
- name: "Ghislain", url: "https://w3id.org/people/gatemezing",
+ name: "Ghislain Atemezing", url: "https://w3id.org/people/gatemezing",
company: "European Union Agency for Railways", "companyURL": "https://www.era.europa.eu/",
note: "2024-present"
}, {
name: "Adam Burns", url: "https://www.linkedin.com/in/adampeterburns/",
- note: "2024-present"
+ w3cid: 160312, note: "2024-present"
}, {
name: "Stefannie Tan (ステファニー タン)", url: "https://github.com/Steffytan",
company: "SBI Group (SBIホールディングス)", "companyURL": "https://sbigroup.co.jp/",
@@ -117,7 +117,7 @@
note: "2024-present"
}, {
name: "Rajiv Rajani", url: "https://github.com/rajivrajani",
- note: "2024-present"
+ w3cid: 161889, note: "2024-present"
}, {
name: "Ariel Gentile", url: "https://github.com/genaris",
company: "GenAris Tech", "companyURL": "https://genaris.tech/",
@@ -134,7 +134,7 @@
name: "Kevin Dean", url: "https://www.linkedin.com/in/kdean/",
company: "Dolphin Data Development Ltd.",
note: "2024-present"
- }],
+ }*/],
formerEditors: [{
name: "Orie Steele", url: "https://www.linkedin.com/in/or13b/",
company: "Transmute", companyURL: "https://www.transmute.industries/",
@@ -147,11 +147,11 @@
name: "Ivan Herman", url: "https://www.w3.org/People/Ivan/",
company: "W3C", companyURL: "https://www.w3.org",
note: "2020-2022", w3cid: 7382, orcid: "0000-0003-0782-2704"
- }, {
+ }/*, {
name: "Kyle Den Hartog", url: "https://www.linkedin.com/in/kyledenhartog/",
company: "MATTR", companyURL: "https://mattr.global/",
note: "2020-2022"
- }],
+ }*/],
// authors, add as many as you like.
// This is optional, uncomment if you have authors as well as editors.
diff --git a/methods/m2m.json b/methods/m2m.json
new file mode 100644
index 00000000..c5137920
--- /dev/null
+++ b/methods/m2m.json
@@ -0,0 +1,9 @@
+{
+ "name": "m2m",
+ "status": "registered",
+ "verifiableDataRegistry": "Hyperledger Indy",
+ "contactName": "SmartM2M. Co., Ltd",
+ "contactEmail": "smartm2m@smartm2m.co.kr",
+ "contactWebsite": "https://www.smartm2m.co.kr/",
+ "specification": "https://github.com/m2mblockchain/DID-Method-m2m/blob/main/README.md"
+}
diff --git a/methods/tangle.json b/methods/tangle.json
index e1c1e484..854fafd6 100644
--- a/methods/tangle.json
+++ b/methods/tangle.json
@@ -1,9 +1,9 @@
{
"name": "tangle",
- "status": "registered",
+ "status": "deprecated",
"verifiableDataRegistry": "IOTA Tangle",
"contactName": "BiiLabs Co., Ltd.",
"contactEmail": "",
"contactWebsite": "",
"specification": "https://github.com/TangleID/TangleID/blob/develop/did-method-spec.md"
-}
\ No newline at end of file
+}
diff --git a/methods/theseries.json b/methods/theseries.json
new file mode 100644
index 00000000..b5e49f51
--- /dev/null
+++ b/methods/theseries.json
@@ -0,0 +1,9 @@
+{
+ "name": "theseries",
+ "status": "registered",
+ "specification": "https://github.com/theseriesteam/tsid-method/blob/main/ts-did-method-specification.md",
+ "contactName": "Hang Hang",
+ "contactEmail": "hanghang.dev@gmail.com",
+ "contactWebsite": "",
+ "verifiableDataRegistry": "IPFS"
+}
diff --git a/properties/index.html b/properties/index.html
index 730f5538..9fc2faf1 100644
--- a/properties/index.html
+++ b/properties/index.html
@@ -28,7 +28,7 @@
subtitle: "Known Extensions for DID Document properties and values",
// if you wish the publication date to be other than today, set this
- //publishDate: "2019-11-07",
+ // publishDate: "2024-11-19",
// if there is a previously published draft, uncomment this and set its YYYY-MM-DD date
// and its maturity status
@@ -44,14 +44,14 @@
includePermalinks: false,
editors: [{
- name: "Manu Sporny", url: "http://manu.sporny.org/",
+ name: "Manu Sporny", url: "https://www.linkedin.com/in/manusporny/",
company: "Digital Bazaar", companyURL: "https://digitalbazaar.com/",
w3cid: 41758, note: "2017-present"
}, {
name: "Markus Sabadello", url: "https://www.linkedin.com/in/markus-sabadello-353a0821",
company: "Danube Tech", companyURL: "https://danubetech.com/",
w3cid: 46729, note: "2020-present"
- }, {
+ }/*, {
name: "Apurva Chitnis",
url: "https://apuchitnis.github.io/",
company: "Koodos",
@@ -60,12 +60,12 @@
name: "Sten Reijers", url: "https://github.com/stenreijers",
note: "2024-present"
}, {
- name: "Ghislain", url: "https://w3id.org/people/gatemezing",
+ name: "Ghislain Atemezing", url: "https://w3id.org/people/gatemezing",
company: "European Union Agency for Railways", "companyURL": "https://www.era.europa.eu/",
note: "2024-present"
}, {
name: "Adam Burns", url: "https://www.linkedin.com/in/adampeterburns/",
- note: "2024-present"
+ w3cid: 160312, note: "2024-present"
}, {
name: "Stefannie Tan (ステファニー タン)", url: "https://github.com/Steffytan",
company: "SBI Group (SBIホールディングス)", "companyURL": "https://sbigroup.co.jp/",
@@ -76,7 +76,7 @@
note: "2024-present"
}, {
name: "Rajiv Rajani", url: "https://github.com/rajivrajani",
- note: "2024-present"
+ w3cid: 161889, note: "2024-present"
}, {
name: "Ariel Gentile", url: "https://github.com/genaris",
company: "GenAris Tech", "companyURL": "https://genaris.tech/",
@@ -93,7 +93,7 @@
name: "Kevin Dean", url: "https://www.linkedin.com/in/kdean/",
company: "Dolphin Data Development Ltd.",
note: "2024-present"
- }],
+ }*/],
formerEditors: [{
name: "Orie Steele", url: "https://www.linkedin.com/in/or13b/",
company: "Transmute", companyURL: "https://www.transmute.industries/",
@@ -102,7 +102,7 @@
name: "Amy Guy", url: "https://rhiaro.co.uk/",
company: "Digital Bazaar", companyURL: "https://digitalbazaar.com/",
w3cid: 69000, note: "2020-2022"
- }, {
+ }/*, {
name: "Ivan Herman", url: "https://www.w3.org/People/Ivan/",
company: "W3C", companyURL: "https://www.w3.org",
note: "2020-2022", w3cid: 7382, orcid: "0000-0003-0782-2704"
@@ -110,7 +110,7 @@
name: "Kyle Den Hartog", url: "https://www.linkedin.com/in/kyledenhartog/",
company: "MATTR", companyURL: "https://mattr.global/",
note: "2020-2022"
- }],
+ }*/],
// authors, add as many as you like.
// This is optional, uncomment if you have authors as well as editors.
@@ -332,7 +332,7 @@
controller
- DID Core
+ DID Core
DID Core
@@ -463,7 +463,7 @@ service
- DID Core
+ DID Core
DID Core
diff --git a/resolution/index.html b/resolution/index.html
index d816bbbf..86dd3c64 100644
--- a/resolution/index.html
+++ b/resolution/index.html
@@ -28,7 +28,7 @@
subtitle: "Known Extensions for DID Resolution and Dereferencing",
// if you wish the publication date to be other than today, set this
- //publishDate: "2019-11-07",
+ // publishDate: "2024-11-19",
// if there is a previously published draft, uncomment this and set its YYYY-MM-DD date
// and its maturity status
@@ -44,14 +44,14 @@
includePermalinks: false,
editors: [{
- name: "Manu Sporny", url: "http://manu.sporny.org/",
+ name: "Manu Sporny", url: "https://www.linkedin.com/in/manusporny/",
company: "Digital Bazaar", companyURL: "https://digitalbazaar.com/",
w3cid: 41758, note: "2017-present"
}, {
name: "Markus Sabadello", url: "https://www.linkedin.com/in/markus-sabadello-353a0821",
company: "Danube Tech", companyURL: "https://danubetech.com/",
w3cid: 46729, note: "2020-present"
- }, {
+ }/*, {
name: "Apurva Chitnis",
url: "https://apuchitnis.github.io/",
company: "Koodos",
@@ -60,12 +60,12 @@
name: "Sten Reijers", url: "https://github.com/stenreijers",
note: "2024-present"
}, {
- name: "Ghislain", url: "https://w3id.org/people/gatemezing",
+ name: "Ghislain Atemezing", url: "https://w3id.org/people/gatemezing",
company: "European Union Agency for Railways", "companyURL": "https://www.era.europa.eu/",
note: "2024-present"
}, {
name: "Adam Burns", url: "https://www.linkedin.com/in/adampeterburns/",
- note: "2024-present"
+ w3cid: 160312, note: "2024-present"
}, {
name: "Stefannie Tan (ステファニー タン)", url: "https://github.com/Steffytan",
company: "SBI Group (SBIホールディングス)", "companyURL": "https://sbigroup.co.jp/",
@@ -76,7 +76,7 @@
note: "2024-present"
}, {
name: "Rajiv Rajani", url: "https://github.com/rajivrajani",
- note: "2024-present"
+ w3cid: 161889, note: "2024-present"
}, {
name: "Ariel Gentile", url: "https://github.com/genaris",
company: "GenAris Tech", "companyURL": "https://genaris.tech/",
@@ -93,7 +93,7 @@
name: "Kevin Dean", url: "https://www.linkedin.com/in/kdean/",
company: "Dolphin Data Development Ltd.",
note: "2024-present"
- }],
+ }*/],
formerEditors: [{
name: "Orie Steele", url: "https://www.linkedin.com/in/or13b/",
company: "Transmute", companyURL: "https://www.transmute.industries/",
@@ -106,11 +106,11 @@
name: "Ivan Herman", url: "https://www.w3.org/People/Ivan/",
company: "W3C", companyURL: "https://www.w3.org",
note: "2020-2022", w3cid: 7382, orcid: "0000-0003-0782-2704"
- }, {
+ }/*, {
name: "Kyle Den Hartog", url: "https://www.linkedin.com/in/kyledenhartog/",
company: "MATTR", companyURL: "https://mattr.global/",
note: "2020-2022"
- }],
+ }*/],
// authors, add as many as you like.
// This is optional, uncomment if you have authors as well as editors.
@@ -353,7 +353,7 @@ CBOR
These are entries in DID documents that are specific to the
-CBOR representation .
+CBOR representation .
(No entries yet)
@@ -534,7 +534,7 @@
methodNotSupported
- DID Resolution
+ DID Resolution
@@ -558,7 +558,7 @@ internalError
- DID Resolution
+ DID Resolution
@@ -581,7 +581,7 @@ invalidPublicKey
- DID Resolution
+ DID Resolution
@@ -604,7 +604,7 @@ invalidPublicKeyLength
- DID Resolution
+ DID Resolution
@@ -627,7 +627,7 @@ invalidPublicKeyType
- DID Resolution
+ DID Resolution
@@ -651,7 +651,7 @@ unsupportedPublicKeyType
- DID Resolution
+ DID Resolution
@@ -1113,7 +1113,7 @@ equivalentId
- DID Core
+ DID Core
@@ -1177,7 +1177,7 @@ hl
- DID Core
+ DID Core
diff --git a/tooling/package-lock.json b/tooling/package-lock.json
deleted file mode 100644
index f1bc9ef9..00000000
--- a/tooling/package-lock.json
+++ /dev/null
@@ -1,73 +0,0 @@
-{
- "name": "did-spec-registries-converter",
- "version": "0.0.1",
- "lockfileVersion": 1,
- "requires": true,
- "dependencies": {
- "ajv": {
- "version": "8.6.3",
- "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.6.3.tgz",
- "integrity": "sha512-SMJOdDP6LqTkD0Uq8qLi+gMwSt0imXLSV080qFVwJCpH9U6Mb+SUGHAXM0KNbcBPguytWyvFxcHgMLe2D2XSpw==",
- "requires": {
- "fast-deep-equal": "^3.1.1",
- "json-schema-traverse": "^1.0.0",
- "require-from-string": "^2.0.2",
- "uri-js": "^4.2.2"
- }
- },
- "argparse": {
- "version": "2.0.1",
- "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
- "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
- },
- "fast-deep-equal": {
- "version": "3.1.3",
- "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
- "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
- },
- "js-yaml": {
- "version": "4.1.0",
- "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
- "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
- "requires": {
- "argparse": "^2.0.1"
- }
- },
- "json-schema-traverse": {
- "version": "1.0.0",
- "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz",
- "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="
- },
- "minimist": {
- "version": "1.2.5",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
- "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="
- },
- "mkdirp": {
- "version": "0.5.5",
- "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz",
- "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==",
- "requires": {
- "minimist": "^1.2.5"
- }
- },
- "punycode": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
- "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="
- },
- "require-from-string": {
- "version": "2.0.2",
- "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz",
- "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw=="
- },
- "uri-js": {
- "version": "4.4.1",
- "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
- "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
- "requires": {
- "punycode": "^2.1.0"
- }
- }
- }
-}
diff --git a/tooling/package.json b/tooling/package.json
index 71f00c89..b0c9706e 100644
--- a/tooling/package.json
+++ b/tooling/package.json
@@ -9,8 +9,8 @@
"js-yaml": "^4.1.0"
},
"scripts": {
- "registry:validate": "node ./validate-registry.js",
- "registry:generate:index": "node ./generate-index.js"
+ "generate": "node ./generate-index.js",
+ "validate": "node ./validate-registry.js"
},
"author": "Manu Sporny (https://manu.sporny.org/)",
"contributors": [
diff --git a/transitions/2024/NOTE/did-extensions-methods/index.html b/transitions/2024/NOTE/did-extensions-methods/index.html
index 8db54db4..623f7bbb 100644
--- a/transitions/2024/NOTE/did-extensions-methods/index.html
+++ b/transitions/2024/NOTE/did-extensions-methods/index.html
@@ -122,6 +122,7 @@
"shortName": "did-extensions-methods",
"edDraftURI": "https://w3c.github.io/did-extensions/methods/",
"subtitle": "Known DID Methods in the Decentralized Identifier Ecosystem",
+ "publishDate": "2024-11-19",
"github": {
"repoURL": "https://github.com/w3c/did-extensions/",
"branch": "main"
@@ -130,7 +131,7 @@
"editors": [
{
"name": "Manu Sporny",
- "url": "http://manu.sporny.org/",
+ "url": "https://www.linkedin.com/in/manusporny/",
"company": "Digital Bazaar",
"companyURL": "https://digitalbazaar.com/",
"w3cid": 41758,
@@ -143,75 +144,6 @@
"companyURL": "https://danubetech.com/",
"w3cid": 46729,
"note": "2020-present"
- },
- {
- "name": "Apurva Chitnis",
- "url": "https://apuchitnis.github.io/",
- "company": "Koodos",
- "note": "2024-present"
- },
- {
- "name": "Sten Reijers",
- "url": "https://github.com/stenreijers",
- "note": "2024-present"
- },
- {
- "name": "Ghislain",
- "url": "https://w3id.org/people/gatemezing",
- "company": "European Union Agency for Railways",
- "companyURL": "https://www.era.europa.eu/",
- "note": "2024-present"
- },
- {
- "name": "Adam Burns",
- "url": "https://www.linkedin.com/in/adampeterburns/",
- "note": "2024-present"
- },
- {
- "name": "Stefannie Tan (ステファニー タン)",
- "url": "https://github.com/Steffytan",
- "company": "SBI Group (SBIホールディングス)",
- "companyURL": "https://sbigroup.co.jp/",
- "note": "2024-present"
- },
- {
- "name": "MIZUKI Sonoko (五十嵐 太清)",
- "url": "https://mizuki.io/",
- "company": "kataru Co., Ltd.",
- "companyURL": "https://mizuki.io/",
- "note": "2024-present"
- },
- {
- "name": "Rajiv Rajani",
- "url": "https://github.com/rajivrajani",
- "note": "2024-present"
- },
- {
- "name": "Ariel Gentile",
- "url": "https://github.com/genaris",
- "company": "GenAris Tech",
- "companyURL": "https://genaris.tech/",
- "note": "2024-present"
- },
- {
- "name": "Harley Thomas",
- "url": "https://github.com/harleyjackthomas",
- "company": "Trust Provenance",
- "companyURL": "https://www.trustprovenance.com/",
- "note": "2024-present"
- },
- {
- "name": "Ajay Jadhav",
- "url": "https://github.com/ajile-in",
- "company": "Ayan Works",
- "companyURL": "https://ayanworks.com/",
- "note": "2024-present"
- },
- {
- "name": "Kevin Dean",
- "url": "https://www.linkedin.com/in/kdean/",
- "company": "Dolphin Data Development Ltd.",
- "note": "2024-present"
}
],
"formerEditors": [
@@ -239,13 +171,6 @@
"note": "2020-2022",
"w3cid": 7382,
"orcid": "https://orcid.org/0000-0003-0782-2704"
- },
- {
- "name": "Kyle Den Hartog",
- "url": "https://www.linkedin.com/in/kyledenhartog/",
- "company": "MATTR",
- "companyURL": "https://mattr.global/",
- "note": "2020-2022"
}
],
"authors": [
@@ -290,20 +215,20 @@
"id": "did-extensions"
}
},
- "publishISODate": "2024-10-30T00:00:00.000Z",
- "generatedSubtitle": "W3C Group Note 30 October 2024"
+ "publishISODate": "2024-11-19T00:00:00.000Z",
+ "generatedSubtitle": "W3C Group Note 19 November 2024"
}
DID Methods Known DID Methods in the Decentralized Identifier Ecosystem
-
W3C Group Note 30 October 2024
+
W3C Group Note 19 November 2024
More details about this document
This version:
- https://www.w3.org/TR/2024/NOTE-did-extensions-methods-20241030/
+ https://www.w3.org/TR/2024/NOTE-did-extensions-methods-20241119/
Latest published version:
https://www.w3.org/TR/did-extensions-methods/
@@ -320,31 +245,9 @@ DID Methods
- Kyle Den Hartog (MATTR ) (2020-2022)
Author:
The Decentralized Identifier Working Group (W3C )
@@ -504,7 +405,7 @@ DID Methods
- DID Method Registry Contact 3 Ceramic Network 3Box Labs (email ) (website ) abt ABT Network ArcBlock aergo Aergo Blocko (website ) ala Alastria Alastria National Blockchain Ecosystem amo AMO blockchain mainnet AMO Labs (website ) antelope Antelope Tonomy Foundation (website ) art Artwork ID Method Ming-lam Ng (RealMatter) (email ) (website ) asset Ledger-independent generative DID method based on CAIP-19 identifiers BOTLabs GmbH (email ) (website ) bba Ardor Attila Aldemir (email ) bee Ledger agnostic mesur.io (email ) (website ) bid bif teleinfo caict bit d.id d.id (email ) (website ) bluetoqueagent Trusted Digital Web Hyperonomy Digital Identity Lab, Parallelspace Corporation (email ) (website ) bluetoquedeed Trusted Digital Web Hyperonomy Digital Identity Lab, Parallelspace Corporation (email ) (website ) bluetoquenfe Trusted Digital Web Hyperonomy Digital Identity Lab, Parallelspace Corporation (email ) (website ) bluetoqueproc Trusted Digital Web Hyperonomy Digital Identity Lab, Parallelspace Corporation (email ) (website ) bnb Binance Smart Chain Ontology Foundation bryk bryk Marcos Allende, Sandra Murcia, Flavia Munhoso, Ruben Cessa bsv BSV Thomas Moretti (email ) (website ) btco BTC Aviary Tech (email ) (website ) btcr Bitcoin Christopher Allen, Ryan Grant, Kim Hamilton Duffy candid Quorum Eric Lin (email ) (website ) ccd Concordium Concordium development team (email ) (website ) ccf Confidential Consortium Framework (CCF) Microsoft (email ) (website ) ccp Quorum Baidu, Inc. celo Celo Ontology Foundation cheqd cheqd CHEQD FOUNDATION LIMITED (email ) (website ) com commercio.network Commercio Consortium content Mizuki Sonoko (email ) (website ) corda Corda Nitesh Solanki,Moritz Platt,Pranav Kirtani cosmos Cosmos application chains Shaun Conway (email ) (website ) cot CoTChain CoTNetwork, Inc. (website ) cr Hyperledger Fabric (email ) ct Circular Trust (email ) (website ) ctid Beijing Zhongdun Anxin Science and Technology Development Co., Ltd (email ) (website ) dht Mainline DHT TBD (website ) did Decentralized Identifiers Spruce Systems, Inc. (website ) dns Domain Name System (DNS) Danube Tech (email ) (website ) dock Dock Dock.io (website ) dom Ethereum Dominode dotbit d.id d.id (email ) (website ) dsrv dsrv (email ) (website ) dual Ethereum Smart ID Card Alliance dxd fabric.data-alliace.com Data Alliance Co., Ltd. (email ) (website ) dyne Dyne.org Foundation Andrea D'Intino (email ) (website ) echo Echo Echo Technological Solutions LLC elastos Elastos ID Sidechain Elastos Foundation elem Element DID Transmute emtrust Hyperledger Fabric Halialabs Pte Ltd. ens Ethereum ConsenSys MESH (email ) (website ) eosio EOSIO Gimly Blockchain (website ) erat DID Specification ERATOSTHENES project (email ) (website ) erc725 Ethereum Markus Sabadello, Fabian Vogelsteller, Peter Kolarov (email ) etho Ethereum Ontology Foundation ethr Ethereum uPort ev Any Ethereum or EVM-compatible ledger David Ammouial (NTT DATA) (email ) (website ) evan evan.network evan GmbH everscale Everscale blockchain Dmitry V. Samorodkin (email ) (website ) example DID Specification W3C DID Working Group factom Factom Sphereon, Factomatic, Factom Inc fairx FairX Node Michael Dowling (email ) (website ) future Netease Chain Netease Blockchain Team gatc Ethereum, Hyperledger Fabric, Hyperledger Besu, Alastria Gataca (website ) gns GNU Name System GNUnet (email ) (website ) grg GrgChain GRGBanking Blockchain Express Co. Ltd. grn Any CosmWasm-compatible ledger EG-easy health DID Health support (email ) (website ) hedera Hedera Hashgraph Hedera Hashgraph, Swisscom Blockchain AG hid Hypersign Blockchain Network Hypermine Limited (email ) (website ) holo Holochain Holo.Host hpass Hyperledger Fabric IBM hpo Hippocrat DAO hsk PlatON HashKey DID (email ) iamx undefined IAMX AG, 6300 Zug, Switzerland (email ) (website ) ibmdc Hyperledger Fabric IBM Digital Credentials (email ) (website ) icon ICON ICONLOOP id ID Service Mastercard (website ) iden3 EVM compatible chains ZK ID Labs AG, Polygon ID (website ) iid Inspur Chain zoe Yian (email ) indy Any Hyperledger Indy Ledger Stephen Curran (email ) infra InfraBlockchain Blockchain Labs io IoTeX IoTeX Foundation ion Bitcoin Various DIF contributors iota IOTA IOTA Foundation (website ) ipid IPFS TranSendX is Blockcore Blockcore iscc Public Blockchains ISCC Foundation (email ) (website ) itn Hyperledger Fabric (Private Network) and Arbitrum One Umed Khudoiberdiev (email ) (website ) iwt InfoWallet Raonsecure jlinc JLINC Protocol Victor Grey jlinx JLINX Protocol Victor Grey (email ) jnctn Jnctn Network Jnctn Limited jolo Ethereum Jolocom jwk Ledger agnostic Jeremie Miller (email ) kaname Any EVM Compatible Blockchains (website ) kdid FISCO BCOS KINGDOM FINTECH(BEIJING)CO,LTD. (email ) keri Ledger agnostic Dr. Sam Smith, Charles Cunningham, Phil Feairheller (email ) key Ledger-independent DID method based on public/private key pairs Rick Astley (thank you for your inspiration), Manu Sporny, Dmitri Zagidulin, Dave Longley, Orie Steele kilt KILT Blockchain BOTLabs GmbH (email ) (website ) klay Klaytn Ontology Foundation klayr Klayr Sidechain Aldo Suhartono Putra (email ) (website ) knox Knox Networks Francis Kim (email ) (website ) kr Korea Mobile Identity System Ministry of the Interior and Safety, korea (website ) kscirc KSChain Blockchain K4-Security (website ) lac LACChain Network LACChain Alliance ldid ChainMaker Shujin Public Service (Qingdao) Co., Ltd. (email ) life RChain lifeID Foundation ling LING K4-Security (email ) (website ) lit LEDGIS IBCT (website ) meme IPFS & DNS & HTTP DID Meme Maintainers (email ) (website ) mesh Trusted Digital Web Hyperonomy Digital Identity Lab, Parallelspace Corporation (email ) (website ) meta Metadium Metadium Foundation moac MOAC MOAC Blockchain Tech, Inc. monid Ethereum Min Ju morpheus Hydra Internet of People (website ) myDiD DID Specification (email ) (website ) mydata iGrant.io iGrant.io (website ) near NEAR Ontology Foundation next Nextme DIDs Network Next Labs (email ) (website ) nft Ceramic Network 3Box Labs (email ) (website ) nuggets Nuggets Network Nuggets Ltd (email ) (website ) nuts Nuts network Nuts community (email ) (website ) object Trusted Digital Web Hyperonomy Digital Identity Lab, Parallelspace Corporation (email ) (website ) ockam Ockam Ockam omn OmniOne OmniOne onion Ledger agnostic Blockchain Commons (website ) ont Ontology Ontology Foundation op Ocean Protocol Ocean Protocol orb Ledger agnostic Avast (email ) (website ) oyd Ledger agnostic OwnYourData.eu (email ) (website ) panacea Panacea MediBloc peaq peaq Blockchain Peaq Technology GmbH (email ) (website ) peer peer Daniel Hardman (email ) pid ProofID Blockchain Alvin Reyes (email ) (website ) pistis Ethereum Andrea Taglia, Matteo Sinico pkh Ledger-independent generative DID method based on CAIP-10 keypair expressions Wayne Chang, Charles Lehner, Juan Caballero, Joel Thorstensson plc https://plc.directory Bluesky PBLLC (email ) (website ) pml PML Chain Purple Mountain Laboratories polygon Polygon (Previously MATIC) AyanWorks, MATIC polygonid EVM compatible chains ZK ID Labs AG, Polygon ID (website ) prism The Cardano blockchain Input Output Global Inc (IOG) (email ) (website ) psi LEDGIS Police Science Institution (website ) psqr Public Square Christian Gribneau (email ) (website ) ptn PalletOne PalletOne qes QES IDnow GmbH (email ) (website ) qui Qui Hyperonomy Digital Identity Lab, Parallelspace Corporation (email ) (website ) ray Ethereum Ray Peng (email ) real Ethereum Real Items (email ) (website ) resume Resume DID Method and Protocol Ming-lam Ng with Real Matter Technology and Talent Connect (email ) (website ) rm Real-world Asset Tokenization DID Method Ming-lam Ng (RealMatter) (email ) (website ) safe Safe Safe Ecosystem Foundation (email ) (website ) san SAN Cloudchain YLZ Inc. schema Multiple storage networks, currently public IPFS and evan.network IPFS 51nodes GmbH scid StraitsChain Lorna (email ) (website ) self Ledger agnostic Nikos Fotiou (email ) (website ) selfkey Ethereum SelfKey sideos Ledger agnostic sideos GmbH (website ) signor Ethereum, Hedera Hashgraph, Quorum, Hyperledger Besu Cryptonics (website ) sirius ProximaX Sirius Chain ProximaX Singapore Pte. Ltd. (website ) snail Penpal network Amy Guy, Dmitri Zagidulin (email ) snplab SNPLab MyD Network SNPLab Inc. (email ) (website ) sol Solana Identity.com (email ) (website ) sov Sovrin Mike Lodder ssb Secure Scuttlebutt Charles E. Lehner ssw Initial Network SK telecom (website ) stack Bitcoin Jude Nelson tangle IOTA Tangle BiiLabs Co., Ltd. tdid FISCO BCOS Tencent Technology (Shenzhen) Co.Ltd (email ) (website ) ti TiChain Hunan tianhe Guoyun Technology Co.Ltd (email ) (website ) tls Ethereum Ulrich Gallersdörfer, Kilian Käslin trust TrustChain TrustCerts GmbH trustbloc Hyperledger Fabric SecureKey trx TRON Ontology Foundation ttm TMChain Token.TM twit Twit DID Twit GitHub (website ) tyron Zilliqa Julio Cabrapan Duarte tys DID Specification Chainyard tz Tezos Spruce Systems, Inc. (website ) unik uns.network Space Elephant SAS (website ) unisot Bitcoin SV UNISOT AS (website ) uns uns.network Space Elephant SAS (website ) uport Ethereum uPort v1 Veres One DLT Veres One Maintainer (Digital Bazaar) (email ) (website ) vaa bif China Academy of Information and Communications Technology (CAICT) valyu undefined Valyu Network LTD (email ) (website ) vaultie Ethereum Vaultie Inc. vertu VERTU V2 (email ) vid VP VP Inc. vivid NEO2, NEO3, Zilliqa Vivid (website ) vtid JianKong (email ) vvo Vivvo Vivvo Application Studios web Web Oliver Terbu, Mike Xu, Dmitri Zagidulin, Amy Guy web7 Web 7.0 Foundation Web 7.0 Foundation (email ) (website ) webs Web, and Key Event Receipt Infrastructure (KERI) Trust over IP (ToIP) DID Method webs Task Force (email ) (website ) wlk Weelink Network Weelink work Hyperledger Fabric Workday, Inc. yourd YourD compatible chains YourD (website ) zk Arweave zCloak Network Research (email ) (website ) zkme EVM compatible chains. Primary on Polygon zkMe
+ DID Method Registry Contact 3 Ceramic Network 3Box Labs (email ) (website ) abt ABT Network ArcBlock aergo Aergo Blocko (website ) ala Alastria Alastria National Blockchain Ecosystem amo AMO blockchain mainnet AMO Labs (website ) antelope Antelope Tonomy Foundation (website ) art Artwork ID Method Daniel Chun (email ) (website ) asset Ledger-independent generative DID method based on CAIP-19 identifiers BOTLabs GmbH (email ) (website ) bba Ardor Attila Aldemir (email ) bee Ledger agnostic mesur.io (email ) (website ) bid bif teleinfo caict bit d.id d.id (email ) (website ) bluetoqueagent Trusted Digital Web Hyperonomy Digital Identity Lab, Parallelspace Corporation (email ) (website ) bluetoquedeed Trusted Digital Web Hyperonomy Digital Identity Lab, Parallelspace Corporation (email ) (website ) bluetoquenfe Trusted Digital Web Hyperonomy Digital Identity Lab, Parallelspace Corporation (email ) (website ) bluetoqueproc Trusted Digital Web Hyperonomy Digital Identity Lab, Parallelspace Corporation (email ) (website ) bnb Binance Smart Chain Ontology Foundation bryk bryk Marcos Allende, Sandra Murcia, Flavia Munhoso, Ruben Cessa bsv BSV Thomas Moretti (email ) (website ) btco BTC Aviary Tech (email ) (website ) btcr Bitcoin Christopher Allen, Ryan Grant, Kim Hamilton Duffy candid Quorum Eric Lin (email ) (website ) ccd Concordium Concordium development team (email ) (website ) ccf Confidential Consortium Framework (CCF) Microsoft (email ) (website ) ccp Quorum Baidu, Inc. celo Celo Ontology Foundation cheqd cheqd CHEQD FOUNDATION LIMITED (email ) (website ) com commercio.network Commercio Consortium content Mizuki Sonoko (email ) (website ) corda Corda Nitesh Solanki,Moritz Platt,Pranav Kirtani cosmos Cosmos application chains Shaun Conway (email ) (website ) cot CoTChain CoTNetwork, Inc. (website ) cr Hyperledger Fabric (email ) ct Circular Trust (email ) (website ) ctid Beijing Zhongdun Anxin Science and Technology Development Co., Ltd (email ) (website ) dht Mainline DHT TBD (website ) did Decentralized Identifiers Spruce Systems, Inc. (website ) dns Domain Name System (DNS) Danube Tech (email ) (website ) dock Dock Dock.io (website ) dom Ethereum Dominode dotbit d.id d.id (email ) (website ) dsrv dsrv (email ) (website ) dual Ethereum Smart ID Card Alliance dxd fabric.data-alliace.com Data Alliance Co., Ltd. (email ) (website ) dyne Dyne.org Foundation Andrea D'Intino (email ) (website ) echo Echo Echo Technological Solutions LLC elastos Elastos ID Sidechain Elastos Foundation elem Element DID Transmute emtrust Hyperledger Fabric Halialabs Pte Ltd. ens Ethereum ConsenSys MESH (email ) (website ) eosio EOSIO Gimly Blockchain (website ) erat DID Specification ERATOSTHENES project (email ) (website ) erc725 Ethereum Markus Sabadello, Fabian Vogelsteller, Peter Kolarov (email ) etho Ethereum Ontology Foundation ethr Ethereum uPort ev Any Ethereum or EVM-compatible ledger David Ammouial (NTT DATA) (email ) (website ) evan evan.network evan GmbH everscale Everscale blockchain Dmitry V. Samorodkin (email ) (website ) example DID Specification W3C DID Working Group factom Factom Sphereon, Factomatic, Factom Inc fairx FairX Node Michael Dowling (email ) (website ) future Netease Chain Netease Blockchain Team gatc Ethereum, Hyperledger Fabric, Hyperledger Besu, Alastria Gataca (website ) gns GNU Name System GNUnet (email ) (website ) grg GrgChain GRGBanking Blockchain Express Co. Ltd. grn Any CosmWasm-compatible ledger EG-easy gwm Great Wall Chain Great Wall Motor Company Limited health DID Health support (email ) (website ) hedera Hedera Hashgraph Hedera Hashgraph, Swisscom Blockchain AG hid Hypersign Blockchain Network Hypermine Limited (email ) (website ) holo Holochain Holo.Host hpass Hyperledger Fabric IBM hpo Hippocrat DAO hsk PlatON HashKey DID (email ) iamx undefined IAMX AG, 6300 Zug, Switzerland (email ) (website ) ibmdc Hyperledger Fabric IBM Digital Credentials (email ) (website ) icon ICON ICONLOOP id ID Service Mastercard (website ) iden3 EVM compatible chains ZK ID Labs AG, Polygon ID (website ) iid Inspur Chain zoe Yian (email ) indy Any Hyperledger Indy Ledger Stephen Curran (email ) infra InfraBlockchain Blockchain Labs io IoTeX IoTeX Foundation ion Bitcoin Various DIF contributors iota IOTA IOTA Foundation (website ) ipid IPFS TranSendX is Blockcore Blockcore iscc Public Blockchains ISCC Foundation (email ) (website ) itn Hyperledger Fabric (Private Network) and Arbitrum One Umed Khudoiberdiev (email ) (website ) iwt InfoWallet Raonsecure jlinc JLINC Protocol Victor Grey jlinx JLINX Protocol Victor Grey (email ) jnctn Jnctn Network Jnctn Limited jolo Ethereum Jolocom jwk Ledger agnostic Jeremie Miller (email ) kaname Any EVM Compatible Blockchains (website ) kdid FISCO BCOS KINGDOM FINTECH(BEIJING)CO,LTD. (email ) keri Ledger agnostic Dr. Sam Smith, Charles Cunningham, Phil Feairheller (email ) key Ledger-independent DID method based on public/private key pairs Rick Astley (thank you for your inspiration), Manu Sporny, Dmitri Zagidulin, Dave Longley, Orie Steele kilt KILT Blockchain BOTLabs GmbH (email ) (website ) klay Klaytn Ontology Foundation klayr Klayr Sidechain Aldo Suhartono Putra (email ) (website ) knox Knox Networks Francis Kim (email ) (website ) kr Korea Mobile Identity System Ministry of the Interior and Safety, korea (website ) kscirc KSChain Blockchain K4-Security (website ) lac LACChain Network LACChain Alliance ldid ChainMaker Shujin Public Service (Qingdao) Co., Ltd. (email ) life RChain lifeID Foundation ling LING K4-Security (email ) (website ) lit LEDGIS IBCT (website ) m2m Hyperledger Indy SmartM2M. Co., Ltd (email ) (website ) meme IPFS & DNS & HTTP DID Meme Maintainers (email ) (website ) mesh Trusted Digital Web Hyperonomy Digital Identity Lab, Parallelspace Corporation (email ) (website ) meta Metadium Metadium Foundation moac MOAC MOAC Blockchain Tech, Inc. monid Ethereum Min Ju morpheus Hydra Internet of People (website ) myDiD DID Specification (email ) (website ) mydata iGrant.io iGrant.io (website ) near NEAR Ontology Foundation next Nextme DIDs Network Next Labs (email ) (website ) nft Ceramic Network 3Box Labs (email ) (website ) ns Web 7.0 Foundation Web 7.0 Foundation (email ) (website ) nuggets Nuggets Network Nuggets Ltd (email ) (website ) nuts Nuts network Nuts community (email ) (website ) object Trusted Digital Web Hyperonomy Digital Identity Lab, Parallelspace Corporation (email ) (website ) ockam Ockam Ockam omn OmniOne OmniOne onion Ledger agnostic Blockchain Commons (website ) ont Ontology Ontology Foundation op Ocean Protocol Ocean Protocol orb Ledger agnostic Avast (email ) (website ) oyd Ledger agnostic OwnYourData.eu (email ) (website ) panacea Panacea MediBloc peaq peaq Blockchain Peaq Technology GmbH (email ) (website ) peer peer Daniel Hardman (email ) pid ProofID Blockchain Alvin Reyes (email ) (website ) pistis Ethereum Andrea Taglia, Matteo Sinico pkh Ledger-independent generative DID method based on CAIP-10 keypair expressions Wayne Chang, Charles Lehner, Juan Caballero, Joel Thorstensson plc https://plc.directory Bluesky PBLLC (email ) (website ) pml PML Chain Purple Mountain Laboratories polygon Polygon (Previously MATIC) AyanWorks, MATIC polygonid EVM compatible chains ZK ID Labs AG, Polygon ID (website ) prism The Cardano blockchain Input Output Global Inc (IOG) (email ) (website ) psi LEDGIS Police Science Institution (website ) psqr Public Square Christian Gribneau (email ) (website ) ptn PalletOne PalletOne qes QES IDnow GmbH (email ) (website ) qui Qui Hyperonomy Digital Identity Lab, Parallelspace Corporation (email ) (website ) ray Ethereum Ray Peng (email ) real Ethereum Real Items (email ) (website ) resume Resume DID Method and Protocol Ming-lam Ng with Real Matter Technology and Talent Connect (email ) (website ) rm Real-world Asset Tokenization DID Method Ming-lam Ng (RealMatter) (email ) (website ) safe Safe Safe Ecosystem Foundation (email ) (website ) san SAN Cloudchain YLZ Inc. schema Multiple storage networks, currently public IPFS and evan.network IPFS 51nodes GmbH scid StraitsChain Lorna (email ) (website ) self Ledger agnostic Nikos Fotiou (email ) (website ) selfkey Ethereum SelfKey sideos Ledger agnostic sideos GmbH (website ) signor Ethereum, Hedera Hashgraph, Quorum, Hyperledger Besu Cryptonics (website ) sirius ProximaX Sirius Chain ProximaX Singapore Pte. Ltd. (website ) snail Penpal network Amy Guy, Dmitri Zagidulin (email ) snplab SNPLab MyD Network SNPLab Inc. (email ) (website ) sol Solana Identity.com (email ) (website ) sov Sovrin Mike Lodder ssb Secure Scuttlebutt Charles E. Lehner ssw Initial Network SK telecom (website ) stack Bitcoin Jude Nelson tangle IOTA Tangle BiiLabs Co., Ltd. tdid FISCO BCOS Tencent Technology (Shenzhen) Co.Ltd (email ) (website ) theseries IPFS Hang Hang (email ) ti TiChain Hunan tianhe Guoyun Technology Co.Ltd (email ) (website ) tls Ethereum Ulrich Gallersdörfer, Kilian Käslin trust TrustChain TrustCerts GmbH trustbloc Hyperledger Fabric SecureKey trx TRON Ontology Foundation ttm TMChain Token.TM twit Twit DID Twit GitHub (website ) tyron Zilliqa Julio Cabrapan Duarte tys DID Specification Chainyard tz Tezos Spruce Systems, Inc. (website ) unik uns.network Space Elephant SAS (website ) unisot Bitcoin SV UNISOT AS (website ) uns uns.network Space Elephant SAS (website ) uport Ethereum uPort v1 Veres One DLT Veres One Maintainer (Digital Bazaar) (email ) (website ) vaa bif China Academy of Information and Communications Technology (CAICT) valyu undefined Valyu Network LTD (email ) (website ) vaultie Ethereum Vaultie Inc. vertu VERTU V2 (email ) vid VP VP Inc. vivid NEO2, NEO3, Zilliqa Vivid (website ) vtid JianKong (email ) vvo Vivvo Vivvo Application Studios web Web Oliver Terbu, Mike Xu, Dmitri Zagidulin, Amy Guy web7 Web 7.0 Foundation Web 7.0 Foundation (email ) (website ) webs Web, and Key Event Receipt Infrastructure (KERI) Trust over IP (ToIP) DID Method webs Task Force (email ) (website ) wlk Weelink Network Weelink work Hyperledger Fabric Workday, Inc. yourd YourD compatible chains YourD (website ) zk Arweave zCloak Network Research (email ) (website ) zkme EVM compatible chains. Primary on Polygon zkMe
diff --git a/transitions/2024/NOTE/did-extensions-properties/index.html b/transitions/2024/NOTE/did-extensions-properties/index.html
index 800d0422..04daadb2 100644
--- a/transitions/2024/NOTE/did-extensions-properties/index.html
+++ b/transitions/2024/NOTE/did-extensions-properties/index.html
@@ -160,6 +160,7 @@
"shortName": "did-extensions-properties",
"edDraftURI": "https://w3c.github.io/did-extensions/properties/",
"subtitle": "Known Extensions for DID Document properties and values",
+ "publishDate": "2024-11-19",
"github": {
"repoURL": "https://github.com/w3c/did-extensions/",
"branch": "main"
@@ -168,7 +169,7 @@
"editors": [
{
"name": "Manu Sporny",
- "url": "http://manu.sporny.org/",
+ "url": "https://www.linkedin.com/in/manusporny/",
"company": "Digital Bazaar",
"companyURL": "https://digitalbazaar.com/",
"w3cid": 41758,
@@ -181,75 +182,6 @@
"companyURL": "https://danubetech.com/",
"w3cid": 46729,
"note": "2020-present"
- },
- {
- "name": "Apurva Chitnis",
- "url": "https://apuchitnis.github.io/",
- "company": "Koodos",
- "note": "2024-present"
- },
- {
- "name": "Sten Reijers",
- "url": "https://github.com/stenreijers",
- "note": "2024-present"
- },
- {
- "name": "Ghislain",
- "url": "https://w3id.org/people/gatemezing",
- "company": "European Union Agency for Railways",
- "companyURL": "https://www.era.europa.eu/",
- "note": "2024-present"
- },
- {
- "name": "Adam Burns",
- "url": "https://www.linkedin.com/in/adampeterburns/",
- "note": "2024-present"
- },
- {
- "name": "Stefannie Tan (ステファニー タン)",
- "url": "https://github.com/Steffytan",
- "company": "SBI Group (SBIホールディングス)",
- "companyURL": "https://sbigroup.co.jp/",
- "note": "2024-present"
- },
- {
- "name": "MIZUKI Sonoko (五十嵐 太清)",
- "url": "https://mizuki.io/",
- "company": "kataru Co., Ltd.",
- "companyURL": "https://mizuki.io/",
- "note": "2024-present"
- },
- {
- "name": "Rajiv Rajani",
- "url": "https://github.com/rajivrajani",
- "note": "2024-present"
- },
- {
- "name": "Ariel Gentile",
- "url": "https://github.com/genaris",
- "company": "GenAris Tech",
- "companyURL": "https://genaris.tech/",
- "note": "2024-present"
- },
- {
- "name": "Harley Thomas",
- "url": "https://github.com/harleyjackthomas",
- "company": "Trust Provenance",
- "companyURL": "https://www.trustprovenance.com/",
- "note": "2024-present"
- },
- {
- "name": "Ajay Jadhav",
- "url": "https://github.com/ajile-in",
- "company": "Ayan Works",
- "companyURL": "https://ayanworks.com/",
- "note": "2024-present"
- },
- {
- "name": "Kevin Dean",
- "url": "https://www.linkedin.com/in/kdean/",
- "company": "Dolphin Data Development Ltd.",
- "note": "2024-present"
}
],
"formerEditors": [
@@ -268,22 +200,6 @@
"companyURL": "https://digitalbazaar.com/",
"w3cid": 69000,
"note": "2020-2022"
- },
- {
- "name": "Ivan Herman",
- "url": "https://www.w3.org/People/Ivan/",
- "company": "W3C",
- "companyURL": "https://www.w3.org",
- "note": "2020-2022",
- "w3cid": 7382,
- "orcid": "https://orcid.org/0000-0003-0782-2704"
- },
- {
- "name": "Kyle Den Hartog",
- "url": "https://www.linkedin.com/in/kyledenhartog/",
- "company": "MATTR",
- "companyURL": "https://mattr.global/",
- "note": "2020-2022"
}
],
"authors": [
@@ -326,20 +242,20 @@
"id": "did-extensions"
}
},
- "publishISODate": "2024-10-30T00:00:00.000Z",
- "generatedSubtitle": "W3C Group Note 30 October 2024"
+ "publishISODate": "2024-11-19T00:00:00.000Z",
+ "generatedSubtitle": "W3C Group Note 19 November 2024"
}
DID Document Property Extensions Known Extensions for DID Document properties and values
-
W3C Group Note 30 October 2024
+
W3C Group Note 19 November 2024
More details about this document
This version:
- https://www.w3.org/TR/2024/NOTE-did-extensions-properties-20241030/
+ https://www.w3.org/TR/2024/NOTE-did-extensions-properties-20241119/
Latest published version:
https://www.w3.org/TR/did-extensions-properties/
@@ -356,31 +272,9 @@ DID Document Property Extensions
- Manu Sporny (Digital Bazaar ) (2017-present)
+ Manu Sporny (Digital Bazaar ) (2017-present)
Markus Sabadello (Danube Tech ) (2020-present)
-
- Apurva Chitnis (Koodos ) (2024-present)
-
- Sten Reijers (2024-present)
-
- Ghislain (European Union Agency for Railways ) (2024-present)
-
- Adam Burns (2024-present)
-
- Stefannie Tan (ステファニー タン) (SBI Group (SBIホールディングス) ) (2024-present)
-
- MIZUKI Sonoko (五十嵐 太清) (kataru Co., Ltd. ) (2024-present)
-
- Rajiv Rajani (2024-present)
-
- Ariel Gentile (GenAris Tech ) (2024-present)
-
- Harley Thomas (Trust Provenance ) (2024-present)
-
- Ajay Jadhav (Ayan Works ) (2024-present)
-
- Kevin Dean (Dolphin Data Development Ltd. ) (2024-present)
Former editors:
@@ -388,20 +282,6 @@ DID Document Property Extensions Orie Steele (Transmute ) (2020-2022)
Amy Guy (Digital Bazaar ) (2020-2022)
-
- Ivan Herman
-
-
-
- (W3C ) (2020-2022)
-
- Kyle Den Hartog (MATTR ) (2020-2022)
Author:
The Decentralized Identifier Working Group (W3C )
@@ -629,7 +509,7 @@ DID Document Property Extensions DID Core
+ DID Core
DID Core
@@ -766,7 +646,7 @@ DID Document Property Extensions DID Core
+ DID Core
DID Core
diff --git a/transitions/2024/NOTE/did-extensions-resolution/index.html b/transitions/2024/NOTE/did-extensions-resolution/index.html
index bb165c87..e8d7d83b 100644
--- a/transitions/2024/NOTE/did-extensions-resolution/index.html
+++ b/transitions/2024/NOTE/did-extensions-resolution/index.html
@@ -160,6 +160,7 @@
"shortName": "did-extensions-resolution",
"edDraftURI": "https://w3c.github.io/did-extensions/resolution/",
"subtitle": "Known Extensions for DID Resolution and Dereferencing",
+ "publishDate": "2024-11-19",
"github": {
"repoURL": "https://github.com/w3c/did-extensions/",
"branch": "main"
@@ -168,7 +169,7 @@
"editors": [
{
"name": "Manu Sporny",
- "url": "http://manu.sporny.org/",
+ "url": "https://www.linkedin.com/in/manusporny/",
"company": "Digital Bazaar",
"companyURL": "https://digitalbazaar.com/",
"w3cid": 41758,
@@ -181,75 +182,6 @@
"companyURL": "https://danubetech.com/",
"w3cid": 46729,
"note": "2020-present"
- },
- {
- "name": "Apurva Chitnis",
- "url": "https://apuchitnis.github.io/",
- "company": "Koodos",
- "note": "2024-present"
- },
- {
- "name": "Sten Reijers",
- "url": "https://github.com/stenreijers",
- "note": "2024-present"
- },
- {
- "name": "Ghislain",
- "url": "https://w3id.org/people/gatemezing",
- "company": "European Union Agency for Railways",
- "companyURL": "https://www.era.europa.eu/",
- "note": "2024-present"
- },
- {
- "name": "Adam Burns",
- "url": "https://www.linkedin.com/in/adampeterburns/",
- "note": "2024-present"
- },
- {
- "name": "Stefannie Tan (ステファニー タン)",
- "url": "https://github.com/Steffytan",
- "company": "SBI Group (SBIホールディングス)",
- "companyURL": "https://sbigroup.co.jp/",
- "note": "2024-present"
- },
- {
- "name": "MIZUKI Sonoko (五十嵐 太清)",
- "url": "https://mizuki.io/",
- "company": "kataru Co., Ltd.",
- "companyURL": "https://mizuki.io/",
- "note": "2024-present"
- },
- {
- "name": "Rajiv Rajani",
- "url": "https://github.com/rajivrajani",
- "note": "2024-present"
- },
- {
- "name": "Ariel Gentile",
- "url": "https://github.com/genaris",
- "company": "GenAris Tech",
- "companyURL": "https://genaris.tech/",
- "note": "2024-present"
- },
- {
- "name": "Harley Thomas",
- "url": "https://github.com/harleyjackthomas",
- "company": "Trust Provenance",
- "companyURL": "https://www.trustprovenance.com/",
- "note": "2024-present"
- },
- {
- "name": "Ajay Jadhav",
- "url": "https://github.com/ajile-in",
- "company": "Ayan Works",
- "companyURL": "https://ayanworks.com/",
- "note": "2024-present"
- },
- {
- "name": "Kevin Dean",
- "url": "https://www.linkedin.com/in/kdean/",
- "company": "Dolphin Data Development Ltd.",
- "note": "2024-present"
}
],
"formerEditors": [
@@ -277,13 +209,6 @@
"note": "2020-2022",
"w3cid": 7382,
"orcid": "https://orcid.org/0000-0003-0782-2704"
- },
- {
- "name": "Kyle Den Hartog",
- "url": "https://www.linkedin.com/in/kyledenhartog/",
- "company": "MATTR",
- "companyURL": "https://mattr.global/",
- "note": "2020-2022"
}
],
"authors": [
@@ -326,20 +251,20 @@
"id": "did-extensions"
}
},
- "publishISODate": "2024-10-30T00:00:00.000Z",
- "generatedSubtitle": "W3C Group Note 30 October 2024"
+ "publishISODate": "2024-11-19T00:00:00.000Z",
+ "generatedSubtitle": "W3C Group Note 19 November 2024"
}
DID Resolution Extensions Known Extensions for DID Resolution and Dereferencing
-
W3C Group Note 30 October 2024
+
W3C Group Note 19 November 2024
More details about this document
This version:
- https://www.w3.org/TR/2024/NOTE-did-extensions-resolution-20241030/
+ https://www.w3.org/TR/2024/NOTE-did-extensions-resolution-20241119/
Latest published version:
https://www.w3.org/TR/did-extensions-resolution/
@@ -356,31 +281,9 @@ DID Resolution Extensions Editors:
- Manu Sporny (Digital Bazaar ) (2017-present)
+ Manu Sporny (Digital Bazaar ) (2017-present)
Markus Sabadello (Danube Tech ) (2020-present)
-
- Apurva Chitnis (Koodos ) (2024-present)
-
- Sten Reijers (2024-present)
-
- Ghislain (European Union Agency for Railways ) (2024-present)
-
- Adam Burns (2024-present)
-
- Stefannie Tan (ステファニー タン) (SBI Group (SBIホールディングス) ) (2024-present)
-
- MIZUKI Sonoko (五十嵐 太清) (kataru Co., Ltd. ) (2024-present)
-
- Rajiv Rajani (2024-present)
-
- Ariel Gentile (GenAris Tech ) (2024-present)
-
- Harley Thomas (Trust Provenance ) (2024-present)
-
- Ajay Jadhav (Ayan Works ) (2024-present)
-
- Kevin Dean (Dolphin Data Development Ltd. ) (2024-present)
Former editors:
@@ -400,8 +303,6 @@ DID Resolution Extensions
(W3C ) (2020-2022)
-
- Kyle Den Hartog (MATTR ) (2020-2022)
Author:
The Decentralized Identifier Working Group (W3C )
@@ -641,7 +542,7 @@ DID Resolution Extensions
These are entries in DID documents that are specific to the
-CBOR representation .
+CBOR representation .
(No entries yet)
@@ -834,7 +735,7 @@
DID Resolution Extensions
- DID Resolution
+ DID Resolution
@@ -860,7 +761,7 @@ DID Resolution Extensions
- DID Resolution
+ DID Resolution
@@ -885,7 +786,7 @@ DID Resolution Extensions
- DID Resolution
+ DID Resolution
@@ -910,7 +811,7 @@ DID Resolution Extensions
- DID Resolution
+ DID Resolution
@@ -935,7 +836,7 @@ DID Resolution Extensions
- DID Resolution
+ DID Resolution
@@ -961,7 +862,7 @@ DID Resolution Extensions
- DID Resolution
+ DID Resolution
@@ -1457,7 +1358,7 @@ DID Resolution Extensions
- DID Core
+ DID Core
@@ -1525,7 +1426,7 @@ DID Resolution Extensions
- DID Core
+ DID Core
diff --git a/transitions/2024/NOTE/index.html b/transitions/2024/NOTE/index.html
index ac0a6521..1ef4fb5a 100644
--- a/transitions/2024/NOTE/index.html
+++ b/transitions/2024/NOTE/index.html
@@ -22,11 +22,11 @@
.dfn-panel li{margin-left:1em}
.dfn-panel.docked{position:fixed;left:.5em;top:unset;bottom:2em;margin:0 auto;max-width:calc(100vw - .75em * 2 - .5em - .2em * 2);max-height:30vh;overflow:auto}
-
+
Decentralized Identifier Extensions
-
-
+
+
-
-
+
+
@@ -120,8 +120,10 @@
"group": "did",
"specStatus": "NOTE",
"shortName": "did-extensions",
+ "prevRecShortname": "did-spec-registries",
"edDraftURI": "https://w3c.github.io/did-extensions/",
"subtitle": "Known Extensions for the Decentralized Identifier Ecosystem",
+ "publishDate": "2024-11-19",
"github": {
"repoURL": "https://github.com/w3c/did-extensions/",
"branch": "main"
@@ -130,7 +132,7 @@
"editors": [
{
"name": "Manu Sporny",
- "url": "http://manu.sporny.org/",
+ "url": "https://www.linkedin.com/in/manusporny/",
"company": "Digital Bazaar",
"companyURL": "https://digitalbazaar.com/",
"w3cid": 41758,
@@ -143,75 +145,6 @@
"companyURL": "https://danubetech.com/",
"w3cid": 46729,
"note": "2020-present"
- },
- {
- "name": "Apurva Chitnis",
- "url": "https://apuchitnis.github.io/",
- "company": "Koodos",
- "note": "2024-present"
- },
- {
- "name": "Sten Reijers",
- "url": "https://github.com/stenreijers",
- "note": "2024-present"
- },
- {
- "name": "Ghislain",
- "url": "https://w3id.org/people/gatemezing",
- "company": "European Union Agency for Railways",
- "companyURL": "https://www.era.europa.eu/",
- "note": "2024-present"
- },
- {
- "name": "Adam Burns",
- "url": "https://www.linkedin.com/in/adampeterburns/",
- "note": "2024-present"
- },
- {
- "name": "Stefannie Tan (ステファニー タン)",
- "url": "https://github.com/Steffytan",
- "company": "SBI Group (SBIホールディングス)",
- "companyURL": "https://sbigroup.co.jp/",
- "note": "2024-present"
- },
- {
- "name": "MIZUKI Sonoko (五十嵐 太清)",
- "url": "https://mizuki.io/",
- "company": "kataru Co., Ltd.",
- "companyURL": "https://mizuki.io/",
- "note": "2024-present"
- },
- {
- "name": "Rajiv Rajani",
- "url": "https://github.com/rajivrajani",
- "note": "2024-present"
- },
- {
- "name": "Ariel Gentile",
- "url": "https://github.com/genaris",
- "company": "GenAris Tech",
- "companyURL": "https://genaris.tech/",
- "note": "2024-present"
- },
- {
- "name": "Harley Thomas",
- "url": "https://github.com/harleyjackthomas",
- "company": "Trust Provenance",
- "companyURL": "https://www.trustprovenance.com/",
- "note": "2024-present"
- },
- {
- "name": "Ajay Jadhav",
- "url": "https://github.com/ajile-in",
- "company": "Ayan Works",
- "companyURL": "https://ayanworks.com/",
- "note": "2024-present"
- },
- {
- "name": "Kevin Dean",
- "url": "https://www.linkedin.com/in/kdean/",
- "company": "Dolphin Data Development Ltd.",
- "note": "2024-present"
}
],
"formerEditors": [
@@ -239,13 +172,6 @@
"note": "2020-2022",
"w3cid": 7382,
"orcid": "https://orcid.org/0000-0003-0782-2704"
- },
- {
- "name": "Kyle Den Hartog",
- "url": "https://www.linkedin.com/in/kyledenhartog/",
- "company": "MATTR",
- "companyURL": "https://mattr.global/",
- "note": "2020-2022"
}
],
"authors": [
@@ -276,61 +202,39 @@
}
],
"postProcess": [],
- "publishISODate": "2024-10-30T00:00:00.000Z",
- "generatedSubtitle": "W3C Group Note 30 October 2024"
+ "publishISODate": "2024-11-19T00:00:00.000Z",
+ "generatedSubtitle": "W3C Group Note 19 November 2024"
}
Decentralized Identifier Extensions Known Extensions for the Decentralized Identifier Ecosystem
-
W3C Group Note 30 October 2024
+
W3C Group Note 19 November 2024
More details about this document
This version:
- https://www.w3.org/TR/2024/NOTE-did-extensions-20241030/
+ https://www.w3.org/TR/2024/NOTE-did-extensions-20241119/
Latest published version:
https://www.w3.org/TR/did-extensions/
Latest editor's draft: https://w3c.github.io/did-extensions/
History:
- https://www.w3.org/standards/history/did-extensions/
+ https://www.w3.org/standards/history/did-extensions/
Commit history
-
-
-
-
-
+
+
+
+
+ Latest Recommendation: https://www.w3.org/TR/did-spec-registries
Editors:
- Manu Sporny (Digital Bazaar ) (2017-present)
+ Manu Sporny (Digital Bazaar ) (2017-present)
Markus Sabadello (Danube Tech ) (2020-present)
-
- Apurva Chitnis (Koodos ) (2024-present)
-
- Sten Reijers (2024-present)
-
- Ghislain (European Union Agency for Railways ) (2024-present)
-
- Adam Burns (2024-present)
-
- Stefannie Tan (ステファニー タン) (SBI Group (SBIホールディングス) ) (2024-present)
-
- MIZUKI Sonoko (五十嵐 太清) (kataru Co., Ltd. ) (2024-present)
-
- Rajiv Rajani (2024-present)
-
- Ariel Gentile (GenAris Tech ) (2024-present)
-
- Harley Thomas (Trust Provenance ) (2024-present)
-
- Ajay Jadhav (Ayan Works ) (2024-present)
-
- Kevin Dean (Dolphin Data Development Ltd. ) (2024-present)
Former editors:
@@ -345,13 +249,11 @@ Decentralized Identifier Extensions
(W3C ) (2020-2022)
-
- Kyle Den Hartog (MATTR ) (2020-2022)
Author:
The Decentralized Identifier Working Group (W3C )
@@ -362,7 +264,7 @@ Decentralized Identifier Extensions new issue,
open issues )
public-did-wg@w3.org with subject line [did-extensions] … message topic … (archives )
-
+
Related Documents
DID Core
@@ -372,13 +274,13 @@ Decentralized Identifier Extensions
Copyright
©
2024
-
+
World Wide Web Consortium .
W3C ®
liability ,
@@ -435,7 +337,7 @@ Decentralized Identifier Extensions Decentralized Identifier Working Group as
a Group Note using the
- Note track .
+ Note track .
This Group Note is endorsed by
the Decentralized Identifier Working Group , but is not endorsed by
W3C itself nor its
@@ -443,23 +345,23 @@
Decentralized Identifier Extensions
-
+
The
W3C Patent
Policy
does not carry any licensing requirements or commitments on this
document.
-
-
+
+
This document is governed by the
03 November 2023 W3C Process Document .
Table of Contents Abstract Status of This Document 1. Introduction1.1 Conformance2. The Registration Process3. ExtensionsA. ReferencesA.1 Normative references