├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── auto-publish-methods.yml │ ├── auto-publish-properties.yml │ ├── auto-publish-resolution.yml │ ├── auto-publish.yml │ ├── lint.yml │ └── publish-did-extensions.yml ├── .gitignore ├── .pr-preview.json ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── index.html ├── json_schemas └── core.schema.json ├── methods ├── 3.json ├── abt.json ├── aergo.json ├── ala.json ├── amo.json ├── andorra.json ├── antelope.json ├── art.json ├── asset.json ├── bba.json ├── bee.json ├── bid.json ├── bit.json ├── bluetoqueagent.json ├── bluetoquedeed.json ├── bluetoquenfe.json ├── bluetoqueprocess.json ├── bnb.json ├── bryk.json ├── bsv.json ├── btco.json ├── btcr.json ├── candid.json ├── ccd.json ├── ccf.json ├── ccp.json ├── celo.json ├── cheqd.json ├── cn.json ├── cndid.json ├── com.json ├── content.json ├── corda.json ├── cosmos.json ├── cot.json ├── cr.json ├── ct.json ├── ctid.json ├── dht.json ├── did.json ├── dime.json ├── dns.json ├── dock.json ├── dom.json ├── dotbit.json ├── dsrv.json ├── dual.json ├── dweb.json ├── dxd.json ├── dyne.json ├── echo.json ├── elastos.json ├── elem.json ├── emtrust.json ├── ens.json ├── eosio.json ├── erat.json ├── erc725.json ├── etho.json ├── ethr.json ├── ev.json ├── evan.json ├── everscale.json ├── example.json ├── factom.json ├── fairx.json ├── fox.json ├── future.json ├── gatc.json ├── gns.json ├── grg.json ├── grn.json ├── gwm.json ├── health.json ├── hedera.json ├── hid.json ├── holo.json ├── hpass.json ├── hpo.json ├── hsk.json ├── iamx.json ├── ibmdc.json ├── icon.json ├── id.json ├── iden3.json ├── iid.json ├── index.html ├── indy.json ├── infra.json ├── io.json ├── ion.json ├── iota.json ├── ipid.json ├── is.json ├── iscc.json ├── ishare.json ├── itn.json ├── iwt.json ├── jlinc.json ├── jlinx.json ├── jnctn.json ├── jolo.json ├── jwk.json ├── jwks.json ├── kaname.json ├── kdid.json ├── keri.json ├── key.json ├── kilt.json ├── klay.json ├── klayr.json ├── knox.json ├── kr.json ├── kscirc.json ├── lac.json ├── ldid.json ├── life.json ├── ling.json ├── lit.json ├── m2m.json ├── meme.json ├── mesh.json ├── meta.json ├── midnight.json ├── moac.json ├── monid.json ├── morpheus.json ├── myDiD.json ├── mydata.json ├── near.json ├── next.json ├── nft.json ├── ni.json ├── nostr.json ├── ns.json ├── nuggets.json ├── nuts.json ├── object.json ├── ockam.json ├── omn.json ├── onion.json ├── ont.json ├── op.json ├── orb.json ├── os.json ├── oyd.json ├── panacea.json ├── peaq.json ├── peer.json ├── pid.json ├── pistis.json ├── pkh.json ├── plc.json ├── pml.json ├── polygon.json ├── polygonid.json ├── prism.json ├── psi.json ├── psqr.json ├── ptn.json ├── qes.json ├── qui.json ├── ray.json ├── real.json ├── resume.json ├── rm.json ├── safe.json ├── san.json ├── schema.json ├── scid.json ├── self.json ├── selfkey.json ├── sideos.json ├── signor.json ├── sirius.json ├── snail.json ├── snplab.json ├── sol.json ├── sov.json ├── ssb.json ├── ssw.json ├── stack.json ├── tangle.json ├── tdid.json ├── theseries.json ├── ti.json ├── tls.json ├── tr.json ├── trust.json ├── trustbloc.json ├── trx.json ├── ttm.json ├── twit.json ├── tyron.json ├── tys.json ├── tz.json ├── unik.json ├── unisot.json ├── unitrust.json ├── uns.json ├── uport.json ├── v1.json ├── vaa.json ├── valyu.json ├── vaultie.json ├── vertu.json ├── vid.json ├── vivid.json ├── vtid.json ├── vvo.json ├── wba.json ├── web.json ├── web7.json ├── webplus.json ├── webs.json ├── webvh.json ├── wlk.json ├── work.json ├── yourd.json ├── zk.json └── zkme.json ├── properties └── index.html ├── resolution └── index.html ├── tooling ├── README.md ├── did-method-registry-entry.yml ├── generate-index.js ├── package.json └── validate-registry.js ├── transitions ├── 2020 │ └── FPWD │ │ └── index.html └── 2024 │ └── NOTE │ ├── did-extensions-methods │ └── index.html │ ├── did-extensions-properties │ └── index.html │ ├── did-extensions-resolution │ └── index.html │ └── index.html ├── vocabs ├── README.md ├── did-v0.11.jsonld └── v1 │ ├── context.html │ ├── context.jsonld │ ├── readme.md │ ├── shacl.jsonld │ ├── shacl.ttl │ ├── shex.shex │ ├── vocab.html │ ├── vocab.jsonld │ ├── vocab.rdf │ └── vocab.ttl └── w3c.json /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/auto-publish-methods.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/.github/workflows/auto-publish-methods.yml -------------------------------------------------------------------------------- /.github/workflows/auto-publish-properties.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/.github/workflows/auto-publish-properties.yml -------------------------------------------------------------------------------- /.github/workflows/auto-publish-resolution.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/.github/workflows/auto-publish-resolution.yml -------------------------------------------------------------------------------- /.github/workflows/auto-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/.github/workflows/auto-publish.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/publish-did-extensions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/.github/workflows/publish-did-extensions.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/.gitignore -------------------------------------------------------------------------------- /.pr-preview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/.pr-preview.json -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/index.html -------------------------------------------------------------------------------- /json_schemas/core.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/json_schemas/core.schema.json -------------------------------------------------------------------------------- /methods/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/3.json -------------------------------------------------------------------------------- /methods/abt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/abt.json -------------------------------------------------------------------------------- /methods/aergo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/aergo.json -------------------------------------------------------------------------------- /methods/ala.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/ala.json -------------------------------------------------------------------------------- /methods/amo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/amo.json -------------------------------------------------------------------------------- /methods/andorra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/andorra.json -------------------------------------------------------------------------------- /methods/antelope.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/antelope.json -------------------------------------------------------------------------------- /methods/art.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/art.json -------------------------------------------------------------------------------- /methods/asset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/asset.json -------------------------------------------------------------------------------- /methods/bba.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/bba.json -------------------------------------------------------------------------------- /methods/bee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/bee.json -------------------------------------------------------------------------------- /methods/bid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/bid.json -------------------------------------------------------------------------------- /methods/bit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/bit.json -------------------------------------------------------------------------------- /methods/bluetoqueagent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/bluetoqueagent.json -------------------------------------------------------------------------------- /methods/bluetoquedeed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/bluetoquedeed.json -------------------------------------------------------------------------------- /methods/bluetoquenfe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/bluetoquenfe.json -------------------------------------------------------------------------------- /methods/bluetoqueprocess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/bluetoqueprocess.json -------------------------------------------------------------------------------- /methods/bnb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/bnb.json -------------------------------------------------------------------------------- /methods/bryk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/bryk.json -------------------------------------------------------------------------------- /methods/bsv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/bsv.json -------------------------------------------------------------------------------- /methods/btco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/btco.json -------------------------------------------------------------------------------- /methods/btcr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/btcr.json -------------------------------------------------------------------------------- /methods/candid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/candid.json -------------------------------------------------------------------------------- /methods/ccd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/ccd.json -------------------------------------------------------------------------------- /methods/ccf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/ccf.json -------------------------------------------------------------------------------- /methods/ccp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/ccp.json -------------------------------------------------------------------------------- /methods/celo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/celo.json -------------------------------------------------------------------------------- /methods/cheqd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/cheqd.json -------------------------------------------------------------------------------- /methods/cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/cn.json -------------------------------------------------------------------------------- /methods/cndid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/cndid.json -------------------------------------------------------------------------------- /methods/com.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/com.json -------------------------------------------------------------------------------- /methods/content.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/content.json -------------------------------------------------------------------------------- /methods/corda.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/corda.json -------------------------------------------------------------------------------- /methods/cosmos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/cosmos.json -------------------------------------------------------------------------------- /methods/cot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/cot.json -------------------------------------------------------------------------------- /methods/cr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/cr.json -------------------------------------------------------------------------------- /methods/ct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/ct.json -------------------------------------------------------------------------------- /methods/ctid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/ctid.json -------------------------------------------------------------------------------- /methods/dht.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/dht.json -------------------------------------------------------------------------------- /methods/did.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/did.json -------------------------------------------------------------------------------- /methods/dime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/dime.json -------------------------------------------------------------------------------- /methods/dns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/dns.json -------------------------------------------------------------------------------- /methods/dock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/dock.json -------------------------------------------------------------------------------- /methods/dom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/dom.json -------------------------------------------------------------------------------- /methods/dotbit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/dotbit.json -------------------------------------------------------------------------------- /methods/dsrv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/dsrv.json -------------------------------------------------------------------------------- /methods/dual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/dual.json -------------------------------------------------------------------------------- /methods/dweb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/dweb.json -------------------------------------------------------------------------------- /methods/dxd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/dxd.json -------------------------------------------------------------------------------- /methods/dyne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/dyne.json -------------------------------------------------------------------------------- /methods/echo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/echo.json -------------------------------------------------------------------------------- /methods/elastos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/elastos.json -------------------------------------------------------------------------------- /methods/elem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/elem.json -------------------------------------------------------------------------------- /methods/emtrust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/emtrust.json -------------------------------------------------------------------------------- /methods/ens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/ens.json -------------------------------------------------------------------------------- /methods/eosio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/eosio.json -------------------------------------------------------------------------------- /methods/erat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/erat.json -------------------------------------------------------------------------------- /methods/erc725.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/erc725.json -------------------------------------------------------------------------------- /methods/etho.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/etho.json -------------------------------------------------------------------------------- /methods/ethr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/ethr.json -------------------------------------------------------------------------------- /methods/ev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/ev.json -------------------------------------------------------------------------------- /methods/evan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/evan.json -------------------------------------------------------------------------------- /methods/everscale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/everscale.json -------------------------------------------------------------------------------- /methods/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/example.json -------------------------------------------------------------------------------- /methods/factom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/factom.json -------------------------------------------------------------------------------- /methods/fairx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/fairx.json -------------------------------------------------------------------------------- /methods/fox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/fox.json -------------------------------------------------------------------------------- /methods/future.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/future.json -------------------------------------------------------------------------------- /methods/gatc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/gatc.json -------------------------------------------------------------------------------- /methods/gns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/gns.json -------------------------------------------------------------------------------- /methods/grg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/grg.json -------------------------------------------------------------------------------- /methods/grn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/grn.json -------------------------------------------------------------------------------- /methods/gwm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/gwm.json -------------------------------------------------------------------------------- /methods/health.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/health.json -------------------------------------------------------------------------------- /methods/hedera.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/hedera.json -------------------------------------------------------------------------------- /methods/hid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/hid.json -------------------------------------------------------------------------------- /methods/holo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/holo.json -------------------------------------------------------------------------------- /methods/hpass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/hpass.json -------------------------------------------------------------------------------- /methods/hpo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/hpo.json -------------------------------------------------------------------------------- /methods/hsk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/hsk.json -------------------------------------------------------------------------------- /methods/iamx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/iamx.json -------------------------------------------------------------------------------- /methods/ibmdc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/ibmdc.json -------------------------------------------------------------------------------- /methods/icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/icon.json -------------------------------------------------------------------------------- /methods/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/id.json -------------------------------------------------------------------------------- /methods/iden3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/iden3.json -------------------------------------------------------------------------------- /methods/iid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/iid.json -------------------------------------------------------------------------------- /methods/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/index.html -------------------------------------------------------------------------------- /methods/indy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/indy.json -------------------------------------------------------------------------------- /methods/infra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/infra.json -------------------------------------------------------------------------------- /methods/io.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/io.json -------------------------------------------------------------------------------- /methods/ion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/ion.json -------------------------------------------------------------------------------- /methods/iota.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/iota.json -------------------------------------------------------------------------------- /methods/ipid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/ipid.json -------------------------------------------------------------------------------- /methods/is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/is.json -------------------------------------------------------------------------------- /methods/iscc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/iscc.json -------------------------------------------------------------------------------- /methods/ishare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/ishare.json -------------------------------------------------------------------------------- /methods/itn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/itn.json -------------------------------------------------------------------------------- /methods/iwt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/iwt.json -------------------------------------------------------------------------------- /methods/jlinc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/jlinc.json -------------------------------------------------------------------------------- /methods/jlinx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/jlinx.json -------------------------------------------------------------------------------- /methods/jnctn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/jnctn.json -------------------------------------------------------------------------------- /methods/jolo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/jolo.json -------------------------------------------------------------------------------- /methods/jwk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/jwk.json -------------------------------------------------------------------------------- /methods/jwks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/jwks.json -------------------------------------------------------------------------------- /methods/kaname.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/kaname.json -------------------------------------------------------------------------------- /methods/kdid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/kdid.json -------------------------------------------------------------------------------- /methods/keri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/keri.json -------------------------------------------------------------------------------- /methods/key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/key.json -------------------------------------------------------------------------------- /methods/kilt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/kilt.json -------------------------------------------------------------------------------- /methods/klay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/klay.json -------------------------------------------------------------------------------- /methods/klayr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/klayr.json -------------------------------------------------------------------------------- /methods/knox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/knox.json -------------------------------------------------------------------------------- /methods/kr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/kr.json -------------------------------------------------------------------------------- /methods/kscirc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/kscirc.json -------------------------------------------------------------------------------- /methods/lac.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/lac.json -------------------------------------------------------------------------------- /methods/ldid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/ldid.json -------------------------------------------------------------------------------- /methods/life.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/life.json -------------------------------------------------------------------------------- /methods/ling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/ling.json -------------------------------------------------------------------------------- /methods/lit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/lit.json -------------------------------------------------------------------------------- /methods/m2m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/m2m.json -------------------------------------------------------------------------------- /methods/meme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/meme.json -------------------------------------------------------------------------------- /methods/mesh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/mesh.json -------------------------------------------------------------------------------- /methods/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/meta.json -------------------------------------------------------------------------------- /methods/midnight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/midnight.json -------------------------------------------------------------------------------- /methods/moac.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/moac.json -------------------------------------------------------------------------------- /methods/monid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/monid.json -------------------------------------------------------------------------------- /methods/morpheus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/morpheus.json -------------------------------------------------------------------------------- /methods/myDiD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/myDiD.json -------------------------------------------------------------------------------- /methods/mydata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/mydata.json -------------------------------------------------------------------------------- /methods/near.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/near.json -------------------------------------------------------------------------------- /methods/next.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/next.json -------------------------------------------------------------------------------- /methods/nft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/nft.json -------------------------------------------------------------------------------- /methods/ni.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/ni.json -------------------------------------------------------------------------------- /methods/nostr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/nostr.json -------------------------------------------------------------------------------- /methods/ns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/ns.json -------------------------------------------------------------------------------- /methods/nuggets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/nuggets.json -------------------------------------------------------------------------------- /methods/nuts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/nuts.json -------------------------------------------------------------------------------- /methods/object.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/object.json -------------------------------------------------------------------------------- /methods/ockam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/ockam.json -------------------------------------------------------------------------------- /methods/omn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/omn.json -------------------------------------------------------------------------------- /methods/onion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/onion.json -------------------------------------------------------------------------------- /methods/ont.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/ont.json -------------------------------------------------------------------------------- /methods/op.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/op.json -------------------------------------------------------------------------------- /methods/orb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/orb.json -------------------------------------------------------------------------------- /methods/os.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/os.json -------------------------------------------------------------------------------- /methods/oyd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/oyd.json -------------------------------------------------------------------------------- /methods/panacea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/panacea.json -------------------------------------------------------------------------------- /methods/peaq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/peaq.json -------------------------------------------------------------------------------- /methods/peer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/peer.json -------------------------------------------------------------------------------- /methods/pid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/pid.json -------------------------------------------------------------------------------- /methods/pistis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/pistis.json -------------------------------------------------------------------------------- /methods/pkh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/pkh.json -------------------------------------------------------------------------------- /methods/plc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/plc.json -------------------------------------------------------------------------------- /methods/pml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/pml.json -------------------------------------------------------------------------------- /methods/polygon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/polygon.json -------------------------------------------------------------------------------- /methods/polygonid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/polygonid.json -------------------------------------------------------------------------------- /methods/prism.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/prism.json -------------------------------------------------------------------------------- /methods/psi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/psi.json -------------------------------------------------------------------------------- /methods/psqr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/psqr.json -------------------------------------------------------------------------------- /methods/ptn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/ptn.json -------------------------------------------------------------------------------- /methods/qes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/qes.json -------------------------------------------------------------------------------- /methods/qui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/qui.json -------------------------------------------------------------------------------- /methods/ray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/ray.json -------------------------------------------------------------------------------- /methods/real.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/real.json -------------------------------------------------------------------------------- /methods/resume.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/resume.json -------------------------------------------------------------------------------- /methods/rm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/rm.json -------------------------------------------------------------------------------- /methods/safe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/safe.json -------------------------------------------------------------------------------- /methods/san.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/san.json -------------------------------------------------------------------------------- /methods/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/schema.json -------------------------------------------------------------------------------- /methods/scid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/scid.json -------------------------------------------------------------------------------- /methods/self.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/self.json -------------------------------------------------------------------------------- /methods/selfkey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/selfkey.json -------------------------------------------------------------------------------- /methods/sideos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/sideos.json -------------------------------------------------------------------------------- /methods/signor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/signor.json -------------------------------------------------------------------------------- /methods/sirius.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/sirius.json -------------------------------------------------------------------------------- /methods/snail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/snail.json -------------------------------------------------------------------------------- /methods/snplab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/snplab.json -------------------------------------------------------------------------------- /methods/sol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/sol.json -------------------------------------------------------------------------------- /methods/sov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/sov.json -------------------------------------------------------------------------------- /methods/ssb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/ssb.json -------------------------------------------------------------------------------- /methods/ssw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/ssw.json -------------------------------------------------------------------------------- /methods/stack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/stack.json -------------------------------------------------------------------------------- /methods/tangle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/tangle.json -------------------------------------------------------------------------------- /methods/tdid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/tdid.json -------------------------------------------------------------------------------- /methods/theseries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/theseries.json -------------------------------------------------------------------------------- /methods/ti.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/ti.json -------------------------------------------------------------------------------- /methods/tls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/tls.json -------------------------------------------------------------------------------- /methods/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/tr.json -------------------------------------------------------------------------------- /methods/trust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/trust.json -------------------------------------------------------------------------------- /methods/trustbloc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/trustbloc.json -------------------------------------------------------------------------------- /methods/trx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/trx.json -------------------------------------------------------------------------------- /methods/ttm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/ttm.json -------------------------------------------------------------------------------- /methods/twit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/twit.json -------------------------------------------------------------------------------- /methods/tyron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/tyron.json -------------------------------------------------------------------------------- /methods/tys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/tys.json -------------------------------------------------------------------------------- /methods/tz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/tz.json -------------------------------------------------------------------------------- /methods/unik.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/unik.json -------------------------------------------------------------------------------- /methods/unisot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/unisot.json -------------------------------------------------------------------------------- /methods/unitrust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/unitrust.json -------------------------------------------------------------------------------- /methods/uns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/uns.json -------------------------------------------------------------------------------- /methods/uport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/uport.json -------------------------------------------------------------------------------- /methods/v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/v1.json -------------------------------------------------------------------------------- /methods/vaa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/vaa.json -------------------------------------------------------------------------------- /methods/valyu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/valyu.json -------------------------------------------------------------------------------- /methods/vaultie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/vaultie.json -------------------------------------------------------------------------------- /methods/vertu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/vertu.json -------------------------------------------------------------------------------- /methods/vid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/vid.json -------------------------------------------------------------------------------- /methods/vivid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/vivid.json -------------------------------------------------------------------------------- /methods/vtid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/vtid.json -------------------------------------------------------------------------------- /methods/vvo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/vvo.json -------------------------------------------------------------------------------- /methods/wba.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/wba.json -------------------------------------------------------------------------------- /methods/web.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/web.json -------------------------------------------------------------------------------- /methods/web7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/web7.json -------------------------------------------------------------------------------- /methods/webplus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/webplus.json -------------------------------------------------------------------------------- /methods/webs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/webs.json -------------------------------------------------------------------------------- /methods/webvh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/webvh.json -------------------------------------------------------------------------------- /methods/wlk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/wlk.json -------------------------------------------------------------------------------- /methods/work.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/work.json -------------------------------------------------------------------------------- /methods/yourd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/yourd.json -------------------------------------------------------------------------------- /methods/zk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/zk.json -------------------------------------------------------------------------------- /methods/zkme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/methods/zkme.json -------------------------------------------------------------------------------- /properties/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/properties/index.html -------------------------------------------------------------------------------- /resolution/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/resolution/index.html -------------------------------------------------------------------------------- /tooling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/tooling/README.md -------------------------------------------------------------------------------- /tooling/did-method-registry-entry.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/tooling/did-method-registry-entry.yml -------------------------------------------------------------------------------- /tooling/generate-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/tooling/generate-index.js -------------------------------------------------------------------------------- /tooling/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/tooling/package.json -------------------------------------------------------------------------------- /tooling/validate-registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/tooling/validate-registry.js -------------------------------------------------------------------------------- /transitions/2020/FPWD/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/transitions/2020/FPWD/index.html -------------------------------------------------------------------------------- /transitions/2024/NOTE/did-extensions-methods/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/transitions/2024/NOTE/did-extensions-methods/index.html -------------------------------------------------------------------------------- /transitions/2024/NOTE/did-extensions-properties/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/transitions/2024/NOTE/did-extensions-properties/index.html -------------------------------------------------------------------------------- /transitions/2024/NOTE/did-extensions-resolution/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/transitions/2024/NOTE/did-extensions-resolution/index.html -------------------------------------------------------------------------------- /transitions/2024/NOTE/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/transitions/2024/NOTE/index.html -------------------------------------------------------------------------------- /vocabs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/vocabs/README.md -------------------------------------------------------------------------------- /vocabs/did-v0.11.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/vocabs/did-v0.11.jsonld -------------------------------------------------------------------------------- /vocabs/v1/context.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/vocabs/v1/context.html -------------------------------------------------------------------------------- /vocabs/v1/context.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/vocabs/v1/context.jsonld -------------------------------------------------------------------------------- /vocabs/v1/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/vocabs/v1/readme.md -------------------------------------------------------------------------------- /vocabs/v1/shacl.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/vocabs/v1/shacl.jsonld -------------------------------------------------------------------------------- /vocabs/v1/shacl.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/vocabs/v1/shacl.ttl -------------------------------------------------------------------------------- /vocabs/v1/shex.shex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/vocabs/v1/shex.shex -------------------------------------------------------------------------------- /vocabs/v1/vocab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/vocabs/v1/vocab.html -------------------------------------------------------------------------------- /vocabs/v1/vocab.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/vocabs/v1/vocab.jsonld -------------------------------------------------------------------------------- /vocabs/v1/vocab.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/vocabs/v1/vocab.rdf -------------------------------------------------------------------------------- /vocabs/v1/vocab.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/vocabs/v1/vocab.ttl -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/did-extensions/HEAD/w3c.json --------------------------------------------------------------------------------