Skip to content

Commit

Permalink
Deploying to gh-pages from @ 57b04c9 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
didwg[bot] committed Dec 11, 2024
0 parents commit 611a45c
Show file tree
Hide file tree
Showing 242 changed files with 18,181 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
node_modules
coverage
vocabs/shape_test.ttl
vocabs/v1/test.ttl

.vscode
.DS_Store
.idea
unresolveable-test-dids.json
Empty file added .nojekyll
Empty file.
4 changes: 4 additions & 0 deletions .pr-preview.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"src_file": "index.html",
"type": "respec"
}
8 changes: 8 additions & 0 deletions CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

# These owners will be the default owners for everything in
# the repo. Unless a later match takes precedence,
# they will be requested for review when someone opens a
# pull request.
* @msporny @apuchitnis @stenreijers @gatemezing @adam-burns @Steffytan @MizukiSonoko @rajivrajani @genaris @ajile-in @KDean-Dolphin

# See CODEOWNERS syntax here: https://help.github.com/articles/about-codeowners/#codeowners-syntax
5 changes: 5 additions & 0 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Code of Conduct

Contributing to all documentation, code, and communication under this
repository is covered by the
[W3C Code of Ethics and Professional Conduct](https://www.w3.org/Consortium/cepc/).
24 changes: 24 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Decentralized Identifier Working Group

Contributions to this repository are intended to become part of Recommendation-track documents governed by the
[W3C Patent Policy](https://www.w3.org/Consortium/Patent-Policy-20040205/) and
[Document License](https://www.w3.org/Consortium/Legal/copyright-documents). To make substantive contributions to specifications, you must either participate
in the relevant W3C Working Group or make a non-member patent licensing commitment.

If you are not the sole contributor to a contribution (pull request), please identify all
contributors in the pull request comment.

To add a contributor (other than yourself, that's automatic), mark them one per line as follows:

```
+@github_username
```

If you added a contributor by mistake, you can remove them in a comment with:

```
-@github_username
```

If you are making a pull request on behalf of someone else but you had no part in designing the
feature, you can remove yourself with the above syntax.
4 changes: 4 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
All documents in this Repository are licensed by contributors
under the
[W3C Document License](https://www.w3.org/Consortium/Legal/copyright-documents).

76 changes: 76 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
![W3C Logo](https://www.w3.org/Icons/w3c_home)

[![Echidna Auto-publish](https://github.com/w3c/did-extensions/actions/workflows/auto-publish.yml/badge.svg)](https://github.com/w3c/did-extensions/actions/workflows/auto-publish.yml)

# Decentralized Identifier Extensions

This repository contains a list of known DID Extensions that are tracked
by the
[W3C Decentralized Identifier Working Group](https://www.w3.org/2019/did-wg/)
(DID WG) for the purpose of enhancing DID ecosystem interoperability. There
might be extensions to DIDs other than the ones listed here; this is not
meant to be an exhaustive or centralized list of extensions.

An Editor's Draft of this repository is available at
https://w3c.github.io/did-extensions/.

## Adding a DID Method

In order to register a new DID method, you must add a JSON file
to the [./methods](./methods) directory and
[open a pull request](https://github.com/w3c/did-extensions/pulls)
to add the file to this repository.

Here is an [example registration entry](https://w3c.github.io/did-extensions/methods/example.json):

```jsonc
{
// These fields are required
"name": "example",
"status": "registered",
"specification": "https://w3c-ccg.github.io/did-spec/",
// These fields are optional
"contactName": "W3C Credentials Community Group",
"contactEmail": "",
"contactWebsite": "",
"verifiableDataRegistry": "DID Specification"
}
```

Your Pull Request will be automatically validated, please ensure
that all of the automated tests pass (no errors reported) or
your submission will not be reviewed. Common reasons for failed
validation includes invalidly formatted JSON files and missing
mandatory fields. There will be a checklist that you are expected
to complete and attest to its accuracy. Once you submit your request,
your pull request will be reviewed by the registry editors. Changes
regarding the required criteria may be requested. If there are at
least two reviews by registry maintainers listed in the CODEOWNERS file, and no objections or
changes requested, your DID method will be registered after a
minimum of 7 days and a maximum of 30 days.

## Adding Anything Else

Use the standard fork, branch, and pull request workflow to propose changes to
the registry. Please make branch names informative—by including the issue or
bug number for example.

Editorial changes that improve the readability of the registry or correct
spelling or grammatical mistakes are welcome.

Non-editorial changes MUST go through a review and approval process that is
[detailed in the registry](https://w3c.github.io/did-extensions/#the-registration-process).

Please read [CONTRIBUTING.md](CONTRIBUTING.md), about licensing contributions.

## Code of Conduct

W3C functions under a [code of conduct](https://www.w3.org/Consortium/cepc/).

## DID Working Group Repositories

- [W3C DID Core Specification v1.0](https://github.com/w3c/did-core)
- [W3C DID Working Group](https://github.com/w3c/did-wg)
- [W3C DID Rubric v1.0](https://github.com/w3c/did-rubric)
- [W3C DID Use Cases v1.0](https://github.com/w3c/did-use-cases)
- [W3C DID Test Suite and Implementation Report](https://github.com/w3c/did-test-suite)
Loading

0 comments on commit 611a45c

Please sign in to comment.