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

+

W3C Group Note

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

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: @@ -364,8 +267,6 @@

DID Methods

(W3C) (2020-2022) -

- Kyle Den Hartog (MATTR) (2020-2022)
Author:
The Decentralized Identifier Working Group (W3C) @@ -504,7 +405,7 @@

DID Methods

-
DID MethodRegistryContact
3Ceramic Network3Box Labs (email) (website)
abtABT NetworkArcBlock
aergoAergoBlocko (website)
alaAlastriaAlastria National Blockchain Ecosystem
amoAMO blockchain mainnetAMO Labs (website)
antelopeAntelopeTonomy Foundation (website)
artArtwork ID MethodMing-lam Ng (RealMatter) (email) (website)
assetLedger-independent generative DID method based on CAIP-19 identifiersBOTLabs GmbH (email) (website)
bbaArdorAttila Aldemir (email)
beeLedger agnosticmesur.io (email) (website)
bidbifteleinfo caict
bitd.idd.id (email) (website)
bluetoqueagentTrusted Digital WebHyperonomy Digital Identity Lab, Parallelspace Corporation (email) (website)
bluetoquedeedTrusted Digital WebHyperonomy Digital Identity Lab, Parallelspace Corporation (email) (website)
bluetoquenfeTrusted Digital WebHyperonomy Digital Identity Lab, Parallelspace Corporation (email) (website)
bluetoqueprocTrusted Digital WebHyperonomy Digital Identity Lab, Parallelspace Corporation (email) (website)
bnbBinance Smart ChainOntology Foundation
brykbrykMarcos Allende, Sandra Murcia, Flavia Munhoso, Ruben Cessa
bsvBSVThomas Moretti (email) (website)
btcoBTCAviary Tech (email) (website)
btcrBitcoinChristopher Allen, Ryan Grant, Kim Hamilton Duffy
candidQuorumEric Lin (email) (website)
ccdConcordiumConcordium development team (email) (website)
ccfConfidential Consortium Framework (CCF)Microsoft (email) (website)
ccpQuorumBaidu, Inc.
celoCeloOntology Foundation
cheqdcheqdCHEQD FOUNDATION LIMITED (email) (website)
comcommercio.networkCommercio Consortium
contentMizuki Sonoko (email) (website)
cordaCordaNitesh Solanki,Moritz Platt,Pranav Kirtani
cosmosCosmos application chainsShaun Conway (email) (website)
cotCoTChainCoTNetwork, Inc. (website)
crHyperledger Fabric (email)
ctCircular Trust (email) (website)
ctidBeijing Zhongdun Anxin Science and Technology Development Co., Ltd (email) (website)
dhtMainline DHTTBD (website)
didDecentralized IdentifiersSpruce Systems, Inc. (website)
dnsDomain Name System (DNS)Danube Tech (email) (website)
dockDockDock.io (website)
domEthereumDominode
dotbitd.idd.id (email) (website)
dsrvdsrv (email) (website)
dualEthereumSmart ID Card Alliance
dxdfabric.data-alliace.comData Alliance Co., Ltd. (email) (website)
dyneDyne.org FoundationAndrea D'Intino (email) (website)
echoEchoEcho Technological Solutions LLC
elastosElastos ID SidechainElastos Foundation
elemElement DIDTransmute
emtrustHyperledger FabricHalialabs Pte Ltd.
ensEthereumConsenSys MESH (email) (website)
eosioEOSIOGimly Blockchain (website)
eratDID SpecificationERATOSTHENES project (email) (website)
erc725EthereumMarkus Sabadello, Fabian Vogelsteller, Peter Kolarov (email)
ethoEthereumOntology Foundation
ethrEthereumuPort
evAny Ethereum or EVM-compatible ledgerDavid Ammouial (NTT DATA) (email) (website)
evanevan.networkevan GmbH
everscaleEverscale blockchainDmitry V. Samorodkin (email) (website)
exampleDID SpecificationW3C DID Working Group
factomFactomSphereon, Factomatic, Factom Inc
fairxFairX NodeMichael Dowling (email) (website)
futureNetease ChainNetease Blockchain Team
gatcEthereum, Hyperledger Fabric, Hyperledger Besu, AlastriaGataca (website)
gnsGNU Name SystemGNUnet (email) (website)
grgGrgChainGRGBanking Blockchain Express Co. Ltd.
grnAny CosmWasm-compatible ledgerEG-easy
healthDID Healthsupport (email) (website)
hederaHedera HashgraphHedera Hashgraph, Swisscom Blockchain AG
hidHypersign Blockchain NetworkHypermine Limited (email) (website)
holoHolochainHolo.Host
hpassHyperledger FabricIBM
hpoHippocrat DAO
hskPlatONHashKey DID (email)
iamxundefinedIAMX AG, 6300 Zug, Switzerland (email) (website)
ibmdcHyperledger FabricIBM Digital Credentials (email) (website)
iconICONICONLOOP
idID ServiceMastercard (website)
iden3EVM compatible chainsZK ID Labs AG, Polygon ID (website)
iidInspur Chainzoe Yian (email)
indyAny Hyperledger Indy LedgerStephen Curran (email)
infraInfraBlockchainBlockchain Labs
ioIoTeXIoTeX Foundation
ionBitcoinVarious DIF contributors
iotaIOTAIOTA Foundation (website)
ipidIPFSTranSendX
isBlockcoreBlockcore
isccPublic BlockchainsISCC Foundation (email) (website)
itnHyperledger Fabric (Private Network) and Arbitrum OneUmed Khudoiberdiev (email) (website)
iwtInfoWalletRaonsecure
jlincJLINC ProtocolVictor Grey
jlinxJLINX ProtocolVictor Grey (email)
jnctnJnctn NetworkJnctn Limited
joloEthereumJolocom
jwkLedger agnosticJeremie Miller (email)
kanameAny EVM Compatible Blockchains (website)
kdidFISCO BCOSKINGDOM FINTECH(BEIJING)CO,LTD. (email)
keriLedger agnosticDr. Sam Smith, Charles Cunningham, Phil Feairheller (email)
keyLedger-independent DID method based on public/private key pairsRick Astley (thank you for your inspiration), Manu Sporny, Dmitri Zagidulin, Dave Longley, Orie Steele
kiltKILT BlockchainBOTLabs GmbH (email) (website)
klayKlaytnOntology Foundation
klayrKlayr SidechainAldo Suhartono Putra (email) (website)
knoxKnox NetworksFrancis Kim (email) (website)
krKorea Mobile Identity SystemMinistry of the Interior and Safety, korea (website)
kscircKSChain BlockchainK4-Security (website)
lacLACChain NetworkLACChain Alliance
ldidChainMakerShujin Public Service (Qingdao) Co., Ltd. (email)
lifeRChainlifeID Foundation
lingLINGK4-Security (email) (website)
litLEDGISIBCT (website)
memeIPFS & DNS & HTTPDID Meme Maintainers (email) (website)
meshTrusted Digital WebHyperonomy Digital Identity Lab, Parallelspace Corporation (email) (website)
metaMetadiumMetadium Foundation
moacMOACMOAC Blockchain Tech, Inc.
monidEthereumMin Ju
morpheusHydraInternet of People (website)
myDiDDID Specification (email) (website)
mydataiGrant.ioiGrant.io (website)
nearNEAROntology Foundation
nextNextme DIDs NetworkNext Labs (email) (website)
nftCeramic Network3Box Labs (email) (website)
nuggetsNuggets NetworkNuggets Ltd (email) (website)
nutsNuts networkNuts community (email) (website)
objectTrusted Digital WebHyperonomy Digital Identity Lab, Parallelspace Corporation (email) (website)
ockamOckamOckam
omnOmniOneOmniOne
onionLedger agnosticBlockchain Commons (website)
ontOntologyOntology Foundation
opOcean ProtocolOcean Protocol
orbLedger agnosticAvast (email) (website)
oydLedger agnosticOwnYourData.eu (email) (website)
panaceaPanaceaMediBloc
peaqpeaq BlockchainPeaq Technology GmbH (email) (website)
peerpeerDaniel Hardman (email)
pidProofID BlockchainAlvin Reyes (email) (website)
pistisEthereumAndrea Taglia, Matteo Sinico
pkhLedger-independent generative DID method based on CAIP-10 keypair expressionsWayne Chang, Charles Lehner, Juan Caballero, Joel Thorstensson
plchttps://plc.directoryBluesky PBLLC (email) (website)
pmlPML ChainPurple Mountain Laboratories
polygonPolygon (Previously MATIC)AyanWorks, MATIC
polygonidEVM compatible chainsZK ID Labs AG, Polygon ID (website)
prismThe Cardano blockchainInput Output Global Inc (IOG) (email) (website)
psiLEDGISPolice Science Institution (website)
psqrPublic SquareChristian Gribneau (email) (website)
ptnPalletOnePalletOne
qesQESIDnow GmbH (email) (website)
quiQuiHyperonomy Digital Identity Lab, Parallelspace Corporation (email) (website)
rayEthereumRay Peng (email)
realEthereumReal Items (email) (website)
resumeResume DID Method and ProtocolMing-lam Ng with Real Matter Technology and Talent Connect (email) (website)
rmReal-world Asset Tokenization DID MethodMing-lam Ng (RealMatter) (email) (website)
safeSafeSafe Ecosystem Foundation (email) (website)
sanSAN CloudchainYLZ Inc.
schemaMultiple storage networks, currently public IPFS and evan.network IPFS51nodes GmbH
scidStraitsChainLorna (email) (website)
selfLedger agnosticNikos Fotiou (email) (website)
selfkeyEthereumSelfKey
sideosLedger agnosticsideos GmbH (website)
signorEthereum, Hedera Hashgraph, Quorum, Hyperledger BesuCryptonics (website)
siriusProximaX Sirius ChainProximaX Singapore Pte. Ltd. (website)
snailPenpal networkAmy Guy, Dmitri Zagidulin (email)
snplabSNPLab MyD NetworkSNPLab Inc. (email) (website)
solSolanaIdentity.com (email) (website)
sovSovrinMike Lodder
ssbSecure ScuttlebuttCharles E. Lehner
sswInitial NetworkSK telecom (website)
stackBitcoinJude Nelson
tangleIOTA TangleBiiLabs Co., Ltd.
tdidFISCO BCOSTencent Technology (Shenzhen) Co.Ltd (email) (website)
tiTiChainHunan tianhe Guoyun Technology Co.Ltd (email) (website)
tlsEthereumUlrich Gallersdörfer, Kilian Käslin
trustTrustChainTrustCerts GmbH
trustblocHyperledger FabricSecureKey
trxTRONOntology Foundation
ttmTMChainToken.TM
twitTwitDID Twit GitHub (website)
tyronZilliqaJulio Cabrapan Duarte
tysDID SpecificationChainyard
tzTezosSpruce Systems, Inc. (website)
unikuns.networkSpace Elephant SAS (website)
unisotBitcoin SVUNISOT AS (website)
unsuns.networkSpace Elephant SAS (website)
uportEthereumuPort
v1Veres One DLTVeres One Maintainer (Digital Bazaar) (email) (website)
vaabifChina Academy of Information and Communications Technology (CAICT)
valyuundefinedValyu Network LTD (email) (website)
vaultieEthereumVaultie Inc.
vertuVERTUV2 (email)
vidVPVP Inc.
vividNEO2, NEO3, ZilliqaVivid (website)
vtidJianKong (email)
vvoVivvoVivvo Application Studios
webWebOliver Terbu, Mike Xu, Dmitri Zagidulin, Amy Guy
web7Web 7.0 FoundationWeb 7.0 Foundation (email) (website)
websWeb, and Key Event Receipt Infrastructure (KERI)Trust over IP (ToIP) DID Method webs Task Force (email) (website)
wlkWeelink NetworkWeelink
workHyperledger FabricWorkday, Inc.
yourdYourD compatible chainsYourD (website)
zkArweavezCloak Network Research (email) (website)
zkmeEVM compatible chains. Primary on PolygonzkMe
+
DID MethodRegistryContact
3Ceramic Network3Box Labs (email) (website)
abtABT NetworkArcBlock
aergoAergoBlocko (website)
alaAlastriaAlastria National Blockchain Ecosystem
amoAMO blockchain mainnetAMO Labs (website)
antelopeAntelopeTonomy Foundation (website)
artArtwork ID MethodDaniel Chun (email) (website)
assetLedger-independent generative DID method based on CAIP-19 identifiersBOTLabs GmbH (email) (website)
bbaArdorAttila Aldemir (email)
beeLedger agnosticmesur.io (email) (website)
bidbifteleinfo caict
bitd.idd.id (email) (website)
bluetoqueagentTrusted Digital WebHyperonomy Digital Identity Lab, Parallelspace Corporation (email) (website)
bluetoquedeedTrusted Digital WebHyperonomy Digital Identity Lab, Parallelspace Corporation (email) (website)
bluetoquenfeTrusted Digital WebHyperonomy Digital Identity Lab, Parallelspace Corporation (email) (website)
bluetoqueprocTrusted Digital WebHyperonomy Digital Identity Lab, Parallelspace Corporation (email) (website)
bnbBinance Smart ChainOntology Foundation
brykbrykMarcos Allende, Sandra Murcia, Flavia Munhoso, Ruben Cessa
bsvBSVThomas Moretti (email) (website)
btcoBTCAviary Tech (email) (website)
btcrBitcoinChristopher Allen, Ryan Grant, Kim Hamilton Duffy
candidQuorumEric Lin (email) (website)
ccdConcordiumConcordium development team (email) (website)
ccfConfidential Consortium Framework (CCF)Microsoft (email) (website)
ccpQuorumBaidu, Inc.
celoCeloOntology Foundation
cheqdcheqdCHEQD FOUNDATION LIMITED (email) (website)
comcommercio.networkCommercio Consortium
contentMizuki Sonoko (email) (website)
cordaCordaNitesh Solanki,Moritz Platt,Pranav Kirtani
cosmosCosmos application chainsShaun Conway (email) (website)
cotCoTChainCoTNetwork, Inc. (website)
crHyperledger Fabric (email)
ctCircular Trust (email) (website)
ctidBeijing Zhongdun Anxin Science and Technology Development Co., Ltd (email) (website)
dhtMainline DHTTBD (website)
didDecentralized IdentifiersSpruce Systems, Inc. (website)
dnsDomain Name System (DNS)Danube Tech (email) (website)
dockDockDock.io (website)
domEthereumDominode
dotbitd.idd.id (email) (website)
dsrvdsrv (email) (website)
dualEthereumSmart ID Card Alliance
dxdfabric.data-alliace.comData Alliance Co., Ltd. (email) (website)
dyneDyne.org FoundationAndrea D'Intino (email) (website)
echoEchoEcho Technological Solutions LLC
elastosElastos ID SidechainElastos Foundation
elemElement DIDTransmute
emtrustHyperledger FabricHalialabs Pte Ltd.
ensEthereumConsenSys MESH (email) (website)
eosioEOSIOGimly Blockchain (website)
eratDID SpecificationERATOSTHENES project (email) (website)
erc725EthereumMarkus Sabadello, Fabian Vogelsteller, Peter Kolarov (email)
ethoEthereumOntology Foundation
ethrEthereumuPort
evAny Ethereum or EVM-compatible ledgerDavid Ammouial (NTT DATA) (email) (website)
evanevan.networkevan GmbH
everscaleEverscale blockchainDmitry V. Samorodkin (email) (website)
exampleDID SpecificationW3C DID Working Group
factomFactomSphereon, Factomatic, Factom Inc
fairxFairX NodeMichael Dowling (email) (website)
futureNetease ChainNetease Blockchain Team
gatcEthereum, Hyperledger Fabric, Hyperledger Besu, AlastriaGataca (website)
gnsGNU Name SystemGNUnet (email) (website)
grgGrgChainGRGBanking Blockchain Express Co. Ltd.
grnAny CosmWasm-compatible ledgerEG-easy
gwmGreat Wall ChainGreat Wall Motor Company Limited
healthDID Healthsupport (email) (website)
hederaHedera HashgraphHedera Hashgraph, Swisscom Blockchain AG
hidHypersign Blockchain NetworkHypermine Limited (email) (website)
holoHolochainHolo.Host
hpassHyperledger FabricIBM
hpoHippocrat DAO
hskPlatONHashKey DID (email)
iamxundefinedIAMX AG, 6300 Zug, Switzerland (email) (website)
ibmdcHyperledger FabricIBM Digital Credentials (email) (website)
iconICONICONLOOP
idID ServiceMastercard (website)
iden3EVM compatible chainsZK ID Labs AG, Polygon ID (website)
iidInspur Chainzoe Yian (email)
indyAny Hyperledger Indy LedgerStephen Curran (email)
infraInfraBlockchainBlockchain Labs
ioIoTeXIoTeX Foundation
ionBitcoinVarious DIF contributors
iotaIOTAIOTA Foundation (website)
ipidIPFSTranSendX
isBlockcoreBlockcore
isccPublic BlockchainsISCC Foundation (email) (website)
itnHyperledger Fabric (Private Network) and Arbitrum OneUmed Khudoiberdiev (email) (website)
iwtInfoWalletRaonsecure
jlincJLINC ProtocolVictor Grey
jlinxJLINX ProtocolVictor Grey (email)
jnctnJnctn NetworkJnctn Limited
joloEthereumJolocom
jwkLedger agnosticJeremie Miller (email)
kanameAny EVM Compatible Blockchains (website)
kdidFISCO BCOSKINGDOM FINTECH(BEIJING)CO,LTD. (email)
keriLedger agnosticDr. Sam Smith, Charles Cunningham, Phil Feairheller (email)
keyLedger-independent DID method based on public/private key pairsRick Astley (thank you for your inspiration), Manu Sporny, Dmitri Zagidulin, Dave Longley, Orie Steele
kiltKILT BlockchainBOTLabs GmbH (email) (website)
klayKlaytnOntology Foundation
klayrKlayr SidechainAldo Suhartono Putra (email) (website)
knoxKnox NetworksFrancis Kim (email) (website)
krKorea Mobile Identity SystemMinistry of the Interior and Safety, korea (website)
kscircKSChain BlockchainK4-Security (website)
lacLACChain NetworkLACChain Alliance
ldidChainMakerShujin Public Service (Qingdao) Co., Ltd. (email)
lifeRChainlifeID Foundation
lingLINGK4-Security (email) (website)
litLEDGISIBCT (website)
m2mHyperledger IndySmartM2M. Co., Ltd (email) (website)
memeIPFS & DNS & HTTPDID Meme Maintainers (email) (website)
meshTrusted Digital WebHyperonomy Digital Identity Lab, Parallelspace Corporation (email) (website)
metaMetadiumMetadium Foundation
moacMOACMOAC Blockchain Tech, Inc.
monidEthereumMin Ju
morpheusHydraInternet of People (website)
myDiDDID Specification (email) (website)
mydataiGrant.ioiGrant.io (website)
nearNEAROntology Foundation
nextNextme DIDs NetworkNext Labs (email) (website)
nftCeramic Network3Box Labs (email) (website)
nsWeb 7.0 FoundationWeb 7.0 Foundation (email) (website)
nuggetsNuggets NetworkNuggets Ltd (email) (website)
nutsNuts networkNuts community (email) (website)
objectTrusted Digital WebHyperonomy Digital Identity Lab, Parallelspace Corporation (email) (website)
ockamOckamOckam
omnOmniOneOmniOne
onionLedger agnosticBlockchain Commons (website)
ontOntologyOntology Foundation
opOcean ProtocolOcean Protocol
orbLedger agnosticAvast (email) (website)
oydLedger agnosticOwnYourData.eu (email) (website)
panaceaPanaceaMediBloc
peaqpeaq BlockchainPeaq Technology GmbH (email) (website)
peerpeerDaniel Hardman (email)
pidProofID BlockchainAlvin Reyes (email) (website)
pistisEthereumAndrea Taglia, Matteo Sinico
pkhLedger-independent generative DID method based on CAIP-10 keypair expressionsWayne Chang, Charles Lehner, Juan Caballero, Joel Thorstensson
plchttps://plc.directoryBluesky PBLLC (email) (website)
pmlPML ChainPurple Mountain Laboratories
polygonPolygon (Previously MATIC)AyanWorks, MATIC
polygonidEVM compatible chainsZK ID Labs AG, Polygon ID (website)
prismThe Cardano blockchainInput Output Global Inc (IOG) (email) (website)
psiLEDGISPolice Science Institution (website)
psqrPublic SquareChristian Gribneau (email) (website)
ptnPalletOnePalletOne
qesQESIDnow GmbH (email) (website)
quiQuiHyperonomy Digital Identity Lab, Parallelspace Corporation (email) (website)
rayEthereumRay Peng (email)
realEthereumReal Items (email) (website)
resumeResume DID Method and ProtocolMing-lam Ng with Real Matter Technology and Talent Connect (email) (website)
rmReal-world Asset Tokenization DID MethodMing-lam Ng (RealMatter) (email) (website)
safeSafeSafe Ecosystem Foundation (email) (website)
sanSAN CloudchainYLZ Inc.
schemaMultiple storage networks, currently public IPFS and evan.network IPFS51nodes GmbH
scidStraitsChainLorna (email) (website)
selfLedger agnosticNikos Fotiou (email) (website)
selfkeyEthereumSelfKey
sideosLedger agnosticsideos GmbH (website)
signorEthereum, Hedera Hashgraph, Quorum, Hyperledger BesuCryptonics (website)
siriusProximaX Sirius ChainProximaX Singapore Pte. Ltd. (website)
snailPenpal networkAmy Guy, Dmitri Zagidulin (email)
snplabSNPLab MyD NetworkSNPLab Inc. (email) (website)
solSolanaIdentity.com (email) (website)
sovSovrinMike Lodder
ssbSecure ScuttlebuttCharles E. Lehner
sswInitial NetworkSK telecom (website)
stackBitcoinJude Nelson
tangleIOTA TangleBiiLabs Co., Ltd.
tdidFISCO BCOSTencent Technology (Shenzhen) Co.Ltd (email) (website)
theseriesIPFSHang Hang (email)
tiTiChainHunan tianhe Guoyun Technology Co.Ltd (email) (website)
tlsEthereumUlrich Gallersdörfer, Kilian Käslin
trustTrustChainTrustCerts GmbH
trustblocHyperledger FabricSecureKey
trxTRONOntology Foundation
ttmTMChainToken.TM
twitTwitDID Twit GitHub (website)
tyronZilliqaJulio Cabrapan Duarte
tysDID SpecificationChainyard
tzTezosSpruce Systems, Inc. (website)
unikuns.networkSpace Elephant SAS (website)
unisotBitcoin SVUNISOT AS (website)
unsuns.networkSpace Elephant SAS (website)
uportEthereumuPort
v1Veres One DLTVeres One Maintainer (Digital Bazaar) (email) (website)
vaabifChina Academy of Information and Communications Technology (CAICT)
valyuundefinedValyu Network LTD (email) (website)
vaultieEthereumVaultie Inc.
vertuVERTUV2 (email)
vidVPVP Inc.
vividNEO2, NEO3, ZilliqaVivid (website)
vtidJianKong (email)
vvoVivvoVivvo Application Studios
webWebOliver Terbu, Mike Xu, Dmitri Zagidulin, Amy Guy
web7Web 7.0 FoundationWeb 7.0 Foundation (email) (website)
websWeb, and Key Event Receipt Infrastructure (KERI)Trust over IP (ToIP) DID Method webs Task Force (email) (website)
wlkWeelink NetworkWeelink
workHyperledger FabricWorkday, Inc.
yourdYourD compatible chainsYourD (website)
zkArweavezCloak Network Research (email) (website)
zkmeEVM compatible chains. Primary on PolygonzkMe
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

+

W3C Group Note

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

+

W3C Group Note

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

+

W3C Group Note

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.

1. Introduction

This section is non-normative.

- +

This document serves as an official repository for all known global parameters, @@ -477,7 +379,7 @@

Decentralized Identifier Extensions

2. The Registration Process

- +

Software implementers might find that the existing Decentralized Identifier Core specification [DID-CORE] is not entirely capable of addressing their use case @@ -581,7 +483,7 @@

Decentralized Identifier Extensions

3. Extensions

- +

The following documents list known extensions to the DID Ecosystem: @@ -622,7 +524,7 @@

Decentralized Identifier Extensions

A. References

A.1 Normative references

- +
[DID-CORE]
Decentralized Identifiers (DIDs) v1.0. Manu Sporny; Amy Guy; Markus Sabadello; Drummond Reed. W3C. 19 July 2022. W3C Recommendation. URL: https://www.w3.org/TR/did-core/
[RFC2119]