@twin.org/standards-w3c-did 0.0.3-next.2 → 0.0.3-next.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -6,35 +6,83 @@
|
|
|
6
6
|
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
7
7
|
export const DidContexts = {
|
|
8
8
|
/**
|
|
9
|
-
* The
|
|
9
|
+
* The canonical RDF namespace URI for DID.
|
|
10
|
+
*/
|
|
11
|
+
Namespace: "https://www.w3.org/ns/did/v1",
|
|
12
|
+
/**
|
|
13
|
+
* The value to use in JSON-LD context for DID.
|
|
14
|
+
* Note: Context matches Namespace (no trailing slash) as per W3C DID specification.
|
|
15
|
+
* The W3C DID JSON-LD context URL format does not include a trailing slash.
|
|
10
16
|
*/
|
|
11
17
|
Context: "https://www.w3.org/ns/did/v1",
|
|
12
18
|
/**
|
|
13
|
-
* The
|
|
19
|
+
* The canonical RDF namespace URI for DID VC v1.
|
|
20
|
+
*/
|
|
21
|
+
NamespaceVCv1: "https://www.w3.org/2018/credentials/v1",
|
|
22
|
+
/**
|
|
23
|
+
* The value to use in JSON-LD context for DID VC v1.
|
|
24
|
+
* Note: ContextVCv1 matches NamespaceVCv1 (no trailing slash) as per W3C Verifiable Credentials v1 specification.
|
|
25
|
+
* The W3C VC v1 JSON-LD context URL format does not include a trailing slash.
|
|
14
26
|
*/
|
|
15
27
|
ContextVCv1: "https://www.w3.org/2018/credentials/v1",
|
|
16
28
|
/**
|
|
17
|
-
* The
|
|
29
|
+
* The canonical RDF namespace URI for DID VC v2.
|
|
30
|
+
*/
|
|
31
|
+
NamespaceVCv2: "https://www.w3.org/ns/credentials/v2",
|
|
32
|
+
/**
|
|
33
|
+
* The value to use in JSON-LD context for DID VC v2.
|
|
34
|
+
* Note: ContextVCv2 matches NamespaceVCv2 (no trailing slash) as per W3C Verifiable Credentials v2 specification.
|
|
35
|
+
* The W3C VC v2 JSON-LD context URL format does not include a trailing slash.
|
|
18
36
|
*/
|
|
19
37
|
ContextVCv2: "https://www.w3.org/ns/credentials/v2",
|
|
20
38
|
/**
|
|
21
|
-
* The
|
|
39
|
+
* The canonical RDF namespace URI for security ed25519 suites.
|
|
40
|
+
*/
|
|
41
|
+
NamespaceSecurityEd25519: "https://w3id.org/security/suites/ed25519-2020/v1",
|
|
42
|
+
/**
|
|
43
|
+
* The value to use in JSON-LD context for security ed25519 suites.
|
|
44
|
+
* Note: ContextSecurityEd25519 matches NamespaceSecurityEd25519 (no trailing slash) as per W3C Security Suites specification.
|
|
45
|
+
* The ed25519-2020 JSON-LD context URL format does not include a trailing slash.
|
|
22
46
|
*/
|
|
23
47
|
ContextSecurityEd25519: "https://w3id.org/security/suites/ed25519-2020/v1",
|
|
24
48
|
/**
|
|
25
|
-
* The
|
|
49
|
+
* The canonical RDF namespace URI for security jws-2020 suites.
|
|
50
|
+
*/
|
|
51
|
+
NamespaceSecurityJws2020: "https://w3id.org/security/suites/jws-2020/v1",
|
|
52
|
+
/**
|
|
53
|
+
* The value to use in JSON-LD context for security jws-2020 suites.
|
|
54
|
+
* Note: ContextSecurityJws2020 matches NamespaceSecurityJws2020 (no trailing slash) as per W3C Security Suites specification.
|
|
55
|
+
* The jws-2020 JSON-LD context URL format does not include a trailing slash.
|
|
26
56
|
*/
|
|
27
57
|
ContextSecurityJws2020: "https://w3id.org/security/suites/jws-2020/v1",
|
|
28
58
|
/**
|
|
29
|
-
* The
|
|
59
|
+
* The canonical RDF namespace URI for VC Data Integrity.
|
|
60
|
+
*/
|
|
61
|
+
NamespaceDataIntegrity: "https://www.w3.org/ns/credentials/v2",
|
|
62
|
+
/**
|
|
63
|
+
* The value to use in JSON-LD context for VC Data Integrity.
|
|
64
|
+
* Note: ContextDataIntegrity matches NamespaceDataIntegrity (no trailing slash) as per W3C Data Integrity specification.
|
|
65
|
+
* The Data Integrity JSON-LD context URL format does not include a trailing slash.
|
|
30
66
|
*/
|
|
31
67
|
ContextDataIntegrity: "https://www.w3.org/ns/credentials/v2",
|
|
32
68
|
/**
|
|
33
|
-
* The
|
|
69
|
+
* The canonical RDF namespace URI for controller identifiers.
|
|
70
|
+
*/
|
|
71
|
+
NamespaceControllerIdentifiers: "https://www.w3.org/ns/cid/v1",
|
|
72
|
+
/**
|
|
73
|
+
* The value to use in JSON-LD context for controller identifiers.
|
|
74
|
+
* Note: ContextControllerIdentifiers matches NamespaceControllerIdentifiers (no trailing slash) as per W3C Controller Identifiers specification.
|
|
75
|
+
* The Controller Identifiers JSON-LD context URL format does not include a trailing slash.
|
|
34
76
|
*/
|
|
35
77
|
ContextControllerIdentifiers: "https://www.w3.org/ns/cid/v1",
|
|
36
78
|
/**
|
|
37
|
-
* The
|
|
79
|
+
* The canonical RDF namespace URI for security multikey suites.
|
|
80
|
+
*/
|
|
81
|
+
NamespaceSecurityMultikey: "https://w3id.org/security/multikey/v1",
|
|
82
|
+
/**
|
|
83
|
+
* The value to use in JSON-LD context for security multikey suites.
|
|
84
|
+
* Note: ContextSecurityMultikey matches NamespaceSecurityMultikey (no trailing slash) as per W3C Security Suites specification.
|
|
85
|
+
* The multikey JSON-LD context URL format does not include a trailing slash.
|
|
38
86
|
*/
|
|
39
87
|
ContextSecurityMultikey: "https://w3id.org/security/multikey/v1"
|
|
40
88
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"didContexts.js","sourceRoot":"","sources":["../../../src/models/didContexts.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AAEvC;;GAEG;AACH,gEAAgE;AAChE,MAAM,CAAC,MAAM,WAAW,GAAG;IAC1B;;OAEG;IACH,OAAO,EAAE,8BAA8B;IAEvC;;OAEG;IACH,WAAW,EAAE,wCAAwC;IAErD;;OAEG;IACH,WAAW,EAAE,sCAAsC;IAEnD;;OAEG;IACH,sBAAsB,EAAE,kDAAkD;IAE1E;;OAEG;IACH,sBAAsB,EAAE,8CAA8C;IAEtE;;OAEG;IACH,oBAAoB,EAAE,sCAAsC;IAE5D;;OAEG;IACH,4BAA4B,EAAE,8BAA8B;IAE5D;;OAEG;IACH,uBAAuB,EAAE,uCAAuC;CACvD,CAAC","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\n\n/**\n * The contexts for DIDs.\n */\n// eslint-disable-next-line @typescript-eslint/naming-convention\nexport const DidContexts = {\n\t/**\n\t * The
|
|
1
|
+
{"version":3,"file":"didContexts.js","sourceRoot":"","sources":["../../../src/models/didContexts.ts"],"names":[],"mappings":"AAAA,gCAAgC;AAChC,uCAAuC;AAEvC;;GAEG;AACH,gEAAgE;AAChE,MAAM,CAAC,MAAM,WAAW,GAAG;IAC1B;;OAEG;IACH,SAAS,EAAE,8BAA8B;IAEzC;;;;OAIG;IACH,OAAO,EAAE,8BAA8B;IAEvC;;OAEG;IACH,aAAa,EAAE,wCAAwC;IAEvD;;;;OAIG;IACH,WAAW,EAAE,wCAAwC;IAErD;;OAEG;IACH,aAAa,EAAE,sCAAsC;IAErD;;;;OAIG;IACH,WAAW,EAAE,sCAAsC;IAEnD;;OAEG;IACH,wBAAwB,EAAE,kDAAkD;IAE5E;;;;OAIG;IACH,sBAAsB,EAAE,kDAAkD;IAE1E;;OAEG;IACH,wBAAwB,EAAE,8CAA8C;IAExE;;;;OAIG;IACH,sBAAsB,EAAE,8CAA8C;IAEtE;;OAEG;IACH,sBAAsB,EAAE,sCAAsC;IAE9D;;;;OAIG;IACH,oBAAoB,EAAE,sCAAsC;IAE5D;;OAEG;IACH,8BAA8B,EAAE,8BAA8B;IAE9D;;;;OAIG;IACH,4BAA4B,EAAE,8BAA8B;IAE5D;;OAEG;IACH,yBAAyB,EAAE,uCAAuC;IAElE;;;;OAIG;IACH,uBAAuB,EAAE,uCAAuC;CACvD,CAAC","sourcesContent":["// Copyright 2024 IOTA Stiftung.\n// SPDX-License-Identifier: Apache-2.0.\n\n/**\n * The contexts for DIDs.\n */\n// eslint-disable-next-line @typescript-eslint/naming-convention\nexport const DidContexts = {\n\t/**\n\t * The canonical RDF namespace URI for DID.\n\t */\n\tNamespace: \"https://www.w3.org/ns/did/v1\",\n\n\t/**\n\t * The value to use in JSON-LD context for DID.\n\t * Note: Context matches Namespace (no trailing slash) as per W3C DID specification.\n\t * The W3C DID JSON-LD context URL format does not include a trailing slash.\n\t */\n\tContext: \"https://www.w3.org/ns/did/v1\",\n\n\t/**\n\t * The canonical RDF namespace URI for DID VC v1.\n\t */\n\tNamespaceVCv1: \"https://www.w3.org/2018/credentials/v1\",\n\n\t/**\n\t * The value to use in JSON-LD context for DID VC v1.\n\t * Note: ContextVCv1 matches NamespaceVCv1 (no trailing slash) as per W3C Verifiable Credentials v1 specification.\n\t * The W3C VC v1 JSON-LD context URL format does not include a trailing slash.\n\t */\n\tContextVCv1: \"https://www.w3.org/2018/credentials/v1\",\n\n\t/**\n\t * The canonical RDF namespace URI for DID VC v2.\n\t */\n\tNamespaceVCv2: \"https://www.w3.org/ns/credentials/v2\",\n\n\t/**\n\t * The value to use in JSON-LD context for DID VC v2.\n\t * Note: ContextVCv2 matches NamespaceVCv2 (no trailing slash) as per W3C Verifiable Credentials v2 specification.\n\t * The W3C VC v2 JSON-LD context URL format does not include a trailing slash.\n\t */\n\tContextVCv2: \"https://www.w3.org/ns/credentials/v2\",\n\n\t/**\n\t * The canonical RDF namespace URI for security ed25519 suites.\n\t */\n\tNamespaceSecurityEd25519: \"https://w3id.org/security/suites/ed25519-2020/v1\",\n\n\t/**\n\t * The value to use in JSON-LD context for security ed25519 suites.\n\t * Note: ContextSecurityEd25519 matches NamespaceSecurityEd25519 (no trailing slash) as per W3C Security Suites specification.\n\t * The ed25519-2020 JSON-LD context URL format does not include a trailing slash.\n\t */\n\tContextSecurityEd25519: \"https://w3id.org/security/suites/ed25519-2020/v1\",\n\n\t/**\n\t * The canonical RDF namespace URI for security jws-2020 suites.\n\t */\n\tNamespaceSecurityJws2020: \"https://w3id.org/security/suites/jws-2020/v1\",\n\n\t/**\n\t * The value to use in JSON-LD context for security jws-2020 suites.\n\t * Note: ContextSecurityJws2020 matches NamespaceSecurityJws2020 (no trailing slash) as per W3C Security Suites specification.\n\t * The jws-2020 JSON-LD context URL format does not include a trailing slash.\n\t */\n\tContextSecurityJws2020: \"https://w3id.org/security/suites/jws-2020/v1\",\n\n\t/**\n\t * The canonical RDF namespace URI for VC Data Integrity.\n\t */\n\tNamespaceDataIntegrity: \"https://www.w3.org/ns/credentials/v2\",\n\n\t/**\n\t * The value to use in JSON-LD context for VC Data Integrity.\n\t * Note: ContextDataIntegrity matches NamespaceDataIntegrity (no trailing slash) as per W3C Data Integrity specification.\n\t * The Data Integrity JSON-LD context URL format does not include a trailing slash.\n\t */\n\tContextDataIntegrity: \"https://www.w3.org/ns/credentials/v2\",\n\n\t/**\n\t * The canonical RDF namespace URI for controller identifiers.\n\t */\n\tNamespaceControllerIdentifiers: \"https://www.w3.org/ns/cid/v1\",\n\n\t/**\n\t * The value to use in JSON-LD context for controller identifiers.\n\t * Note: ContextControllerIdentifiers matches NamespaceControllerIdentifiers (no trailing slash) as per W3C Controller Identifiers specification.\n\t * The Controller Identifiers JSON-LD context URL format does not include a trailing slash.\n\t */\n\tContextControllerIdentifiers: \"https://www.w3.org/ns/cid/v1\",\n\n\t/**\n\t * The canonical RDF namespace URI for security multikey suites.\n\t */\n\tNamespaceSecurityMultikey: \"https://w3id.org/security/multikey/v1\",\n\n\t/**\n\t * The value to use in JSON-LD context for security multikey suites.\n\t * Note: ContextSecurityMultikey matches NamespaceSecurityMultikey (no trailing slash) as per W3C Security Suites specification.\n\t * The multikey JSON-LD context URL format does not include a trailing slash.\n\t */\n\tContextSecurityMultikey: \"https://w3id.org/security/multikey/v1\"\n} as const;\n\n/**\n * The contexts for DIDs.\n */\nexport type DidContexts = (typeof DidContexts)[keyof typeof DidContexts];\n"]}
|
|
@@ -3,35 +3,83 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export declare const DidContexts: {
|
|
5
5
|
/**
|
|
6
|
-
* The
|
|
6
|
+
* The canonical RDF namespace URI for DID.
|
|
7
|
+
*/
|
|
8
|
+
readonly Namespace: "https://www.w3.org/ns/did/v1";
|
|
9
|
+
/**
|
|
10
|
+
* The value to use in JSON-LD context for DID.
|
|
11
|
+
* Note: Context matches Namespace (no trailing slash) as per W3C DID specification.
|
|
12
|
+
* The W3C DID JSON-LD context URL format does not include a trailing slash.
|
|
7
13
|
*/
|
|
8
14
|
readonly Context: "https://www.w3.org/ns/did/v1";
|
|
9
15
|
/**
|
|
10
|
-
* The
|
|
16
|
+
* The canonical RDF namespace URI for DID VC v1.
|
|
17
|
+
*/
|
|
18
|
+
readonly NamespaceVCv1: "https://www.w3.org/2018/credentials/v1";
|
|
19
|
+
/**
|
|
20
|
+
* The value to use in JSON-LD context for DID VC v1.
|
|
21
|
+
* Note: ContextVCv1 matches NamespaceVCv1 (no trailing slash) as per W3C Verifiable Credentials v1 specification.
|
|
22
|
+
* The W3C VC v1 JSON-LD context URL format does not include a trailing slash.
|
|
11
23
|
*/
|
|
12
24
|
readonly ContextVCv1: "https://www.w3.org/2018/credentials/v1";
|
|
13
25
|
/**
|
|
14
|
-
* The
|
|
26
|
+
* The canonical RDF namespace URI for DID VC v2.
|
|
27
|
+
*/
|
|
28
|
+
readonly NamespaceVCv2: "https://www.w3.org/ns/credentials/v2";
|
|
29
|
+
/**
|
|
30
|
+
* The value to use in JSON-LD context for DID VC v2.
|
|
31
|
+
* Note: ContextVCv2 matches NamespaceVCv2 (no trailing slash) as per W3C Verifiable Credentials v2 specification.
|
|
32
|
+
* The W3C VC v2 JSON-LD context URL format does not include a trailing slash.
|
|
15
33
|
*/
|
|
16
34
|
readonly ContextVCv2: "https://www.w3.org/ns/credentials/v2";
|
|
17
35
|
/**
|
|
18
|
-
* The
|
|
36
|
+
* The canonical RDF namespace URI for security ed25519 suites.
|
|
37
|
+
*/
|
|
38
|
+
readonly NamespaceSecurityEd25519: "https://w3id.org/security/suites/ed25519-2020/v1";
|
|
39
|
+
/**
|
|
40
|
+
* The value to use in JSON-LD context for security ed25519 suites.
|
|
41
|
+
* Note: ContextSecurityEd25519 matches NamespaceSecurityEd25519 (no trailing slash) as per W3C Security Suites specification.
|
|
42
|
+
* The ed25519-2020 JSON-LD context URL format does not include a trailing slash.
|
|
19
43
|
*/
|
|
20
44
|
readonly ContextSecurityEd25519: "https://w3id.org/security/suites/ed25519-2020/v1";
|
|
21
45
|
/**
|
|
22
|
-
* The
|
|
46
|
+
* The canonical RDF namespace URI for security jws-2020 suites.
|
|
47
|
+
*/
|
|
48
|
+
readonly NamespaceSecurityJws2020: "https://w3id.org/security/suites/jws-2020/v1";
|
|
49
|
+
/**
|
|
50
|
+
* The value to use in JSON-LD context for security jws-2020 suites.
|
|
51
|
+
* Note: ContextSecurityJws2020 matches NamespaceSecurityJws2020 (no trailing slash) as per W3C Security Suites specification.
|
|
52
|
+
* The jws-2020 JSON-LD context URL format does not include a trailing slash.
|
|
23
53
|
*/
|
|
24
54
|
readonly ContextSecurityJws2020: "https://w3id.org/security/suites/jws-2020/v1";
|
|
25
55
|
/**
|
|
26
|
-
* The
|
|
56
|
+
* The canonical RDF namespace URI for VC Data Integrity.
|
|
57
|
+
*/
|
|
58
|
+
readonly NamespaceDataIntegrity: "https://www.w3.org/ns/credentials/v2";
|
|
59
|
+
/**
|
|
60
|
+
* The value to use in JSON-LD context for VC Data Integrity.
|
|
61
|
+
* Note: ContextDataIntegrity matches NamespaceDataIntegrity (no trailing slash) as per W3C Data Integrity specification.
|
|
62
|
+
* The Data Integrity JSON-LD context URL format does not include a trailing slash.
|
|
27
63
|
*/
|
|
28
64
|
readonly ContextDataIntegrity: "https://www.w3.org/ns/credentials/v2";
|
|
29
65
|
/**
|
|
30
|
-
* The
|
|
66
|
+
* The canonical RDF namespace URI for controller identifiers.
|
|
67
|
+
*/
|
|
68
|
+
readonly NamespaceControllerIdentifiers: "https://www.w3.org/ns/cid/v1";
|
|
69
|
+
/**
|
|
70
|
+
* The value to use in JSON-LD context for controller identifiers.
|
|
71
|
+
* Note: ContextControllerIdentifiers matches NamespaceControllerIdentifiers (no trailing slash) as per W3C Controller Identifiers specification.
|
|
72
|
+
* The Controller Identifiers JSON-LD context URL format does not include a trailing slash.
|
|
31
73
|
*/
|
|
32
74
|
readonly ContextControllerIdentifiers: "https://www.w3.org/ns/cid/v1";
|
|
33
75
|
/**
|
|
34
|
-
* The
|
|
76
|
+
* The canonical RDF namespace URI for security multikey suites.
|
|
77
|
+
*/
|
|
78
|
+
readonly NamespaceSecurityMultikey: "https://w3id.org/security/multikey/v1";
|
|
79
|
+
/**
|
|
80
|
+
* The value to use in JSON-LD context for security multikey suites.
|
|
81
|
+
* Note: ContextSecurityMultikey matches NamespaceSecurityMultikey (no trailing slash) as per W3C Security Suites specification.
|
|
82
|
+
* The multikey JSON-LD context URL format does not include a trailing slash.
|
|
35
83
|
*/
|
|
36
84
|
readonly ContextSecurityMultikey: "https://w3id.org/security/multikey/v1";
|
|
37
85
|
};
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,138 @@
|
|
|
1
1
|
# @twin.org/standards-w3c-did - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.3-next.21](https://github.com/twinfoundation/standards/compare/standards-w3c-did-v0.0.3-next.20...standards-w3c-did-v0.0.3-next.21) (2026-01-23)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* **standards-w3c-did:** Synchronize repo versions
|
|
9
|
+
|
|
10
|
+
## [0.0.3-next.20](https://github.com/twinfoundation/standards/compare/standards-w3c-did-v0.0.3-next.19...standards-w3c-did-v0.0.3-next.20) (2026-01-21)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Miscellaneous Chores
|
|
14
|
+
|
|
15
|
+
* **standards-w3c-did:** Synchronize repo versions
|
|
16
|
+
|
|
17
|
+
## [0.0.3-next.19](https://github.com/twinfoundation/standards/compare/standards-w3c-did-v0.0.3-next.18...standards-w3c-did-v0.0.3-next.19) (2026-01-21)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Miscellaneous Chores
|
|
21
|
+
|
|
22
|
+
* **standards-w3c-did:** Synchronize repo versions
|
|
23
|
+
|
|
24
|
+
## [0.0.3-next.18](https://github.com/twinfoundation/standards/compare/standards-w3c-did-v0.0.3-next.17...standards-w3c-did-v0.0.3-next.18) (2026-01-21)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Miscellaneous Chores
|
|
28
|
+
|
|
29
|
+
* **standards-w3c-did:** Synchronize repo versions
|
|
30
|
+
|
|
31
|
+
## [0.0.3-next.17](https://github.com/twinfoundation/standards/compare/standards-w3c-did-v0.0.3-next.16...standards-w3c-did-v0.0.3-next.17) (2026-01-21)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
### Bug Fixes
|
|
35
|
+
|
|
36
|
+
* updating the missing packages ([#114](https://github.com/twinfoundation/standards/issues/114)) ([90b03f8](https://github.com/twinfoundation/standards/commit/90b03f8bdcd81506284d74a445840386c2da2d35))
|
|
37
|
+
|
|
38
|
+
## [0.0.3-next.16](https://github.com/twinfoundation/standards/compare/standards-w3c-did-v0.0.3-next.15...standards-w3c-did-v0.0.3-next.16) (2026-01-19)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
### Miscellaneous Chores
|
|
42
|
+
|
|
43
|
+
* **standards-w3c-did:** Synchronize repo versions
|
|
44
|
+
|
|
45
|
+
## [0.0.3-next.15](https://github.com/twinfoundation/standards/compare/standards-w3c-did-v0.0.3-next.14...standards-w3c-did-v0.0.3-next.15) (2026-01-16)
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
### Miscellaneous Chores
|
|
49
|
+
|
|
50
|
+
* **standards-w3c-did:** Synchronize repo versions
|
|
51
|
+
|
|
52
|
+
## [0.0.3-next.14](https://github.com/twinfoundation/standards/compare/standards-w3c-did-v0.0.3-next.13...standards-w3c-did-v0.0.3-next.14) (2026-01-15)
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
### Miscellaneous Chores
|
|
56
|
+
|
|
57
|
+
* **standards-w3c-did:** Synchronize repo versions
|
|
58
|
+
|
|
59
|
+
## [0.0.3-next.13](https://github.com/twinfoundation/standards/compare/standards-w3c-did-v0.0.3-next.12...standards-w3c-did-v0.0.3-next.13) (2026-01-14)
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
### Miscellaneous Chores
|
|
63
|
+
|
|
64
|
+
* **standards-w3c-did:** Synchronize repo versions
|
|
65
|
+
|
|
66
|
+
## [0.0.3-next.12](https://github.com/twinfoundation/standards/compare/standards-w3c-did-v0.0.3-next.11...standards-w3c-did-v0.0.3-next.12) (2026-01-14)
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
### Miscellaneous Chores
|
|
70
|
+
|
|
71
|
+
* **standards-w3c-did:** Synchronize repo versions
|
|
72
|
+
|
|
73
|
+
## [0.0.3-next.11](https://github.com/twinfoundation/standards/compare/standards-w3c-did-v0.0.3-next.10...standards-w3c-did-v0.0.3-next.11) (2026-01-14)
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
### Features
|
|
77
|
+
|
|
78
|
+
* improved namespaces and contexts ([#102](https://github.com/twinfoundation/standards/issues/102)) ([c74c370](https://github.com/twinfoundation/standards/commit/c74c370cd8145d6166ca4454353f3774c302ac3b))
|
|
79
|
+
|
|
80
|
+
## [0.0.3-next.10](https://github.com/twinfoundation/standards/compare/standards-w3c-did-v0.0.3-next.9...standards-w3c-did-v0.0.3-next.10) (2026-01-13)
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
### Miscellaneous Chores
|
|
84
|
+
|
|
85
|
+
* **standards-w3c-did:** Synchronize repo versions
|
|
86
|
+
|
|
87
|
+
## [0.0.3-next.9](https://github.com/twinfoundation/standards/compare/standards-w3c-did-v0.0.3-next.8...standards-w3c-did-v0.0.3-next.9) (2026-01-09)
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
### Miscellaneous Chores
|
|
91
|
+
|
|
92
|
+
* **standards-w3c-did:** Synchronize repo versions
|
|
93
|
+
|
|
94
|
+
## [0.0.3-next.8](https://github.com/twinfoundation/standards/compare/standards-w3c-did-v0.0.3-next.7...standards-w3c-did-v0.0.3-next.8) (2026-01-08)
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
### Miscellaneous Chores
|
|
98
|
+
|
|
99
|
+
* **standards-w3c-did:** Synchronize repo versions
|
|
100
|
+
|
|
101
|
+
## [0.0.3-next.7](https://github.com/twinfoundation/standards/compare/standards-w3c-did-v0.0.3-next.6...standards-w3c-did-v0.0.3-next.7) (2026-01-06)
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
### Miscellaneous Chores
|
|
105
|
+
|
|
106
|
+
* **standards-w3c-did:** Synchronize repo versions
|
|
107
|
+
|
|
108
|
+
## [0.0.3-next.6](https://github.com/twinfoundation/standards/compare/standards-w3c-did-v0.0.3-next.5...standards-w3c-did-v0.0.3-next.6) (2025-12-03)
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
### Miscellaneous Chores
|
|
112
|
+
|
|
113
|
+
* **standards-w3c-did:** Synchronize repo versions
|
|
114
|
+
|
|
115
|
+
## [0.0.3-next.5](https://github.com/twinfoundation/standards/compare/standards-w3c-did-v0.0.3-next.4...standards-w3c-did-v0.0.3-next.5) (2025-11-28)
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
### Miscellaneous Chores
|
|
119
|
+
|
|
120
|
+
* **standards-w3c-did:** Synchronize repo versions
|
|
121
|
+
|
|
122
|
+
## [0.0.3-next.4](https://github.com/twinfoundation/standards/compare/standards-w3c-did-v0.0.3-next.3...standards-w3c-did-v0.0.3-next.4) (2025-11-18)
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
### Miscellaneous Chores
|
|
126
|
+
|
|
127
|
+
* **standards-w3c-did:** Synchronize repo versions
|
|
128
|
+
|
|
129
|
+
## [0.0.3-next.3](https://github.com/twinfoundation/standards/compare/standards-w3c-did-v0.0.3-next.2...standards-w3c-did-v0.0.3-next.3) (2025-11-18)
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
### Miscellaneous Chores
|
|
133
|
+
|
|
134
|
+
* **standards-w3c-did:** Synchronize repo versions
|
|
135
|
+
|
|
3
136
|
## [0.0.3-next.2](https://github.com/twinfoundation/standards/compare/standards-w3c-did-v0.0.3-next.1...standards-w3c-did-v0.0.3-next.2) (2025-11-11)
|
|
4
137
|
|
|
5
138
|
|
|
@@ -6,50 +6,114 @@ The contexts for DIDs.
|
|
|
6
6
|
|
|
7
7
|
## Type Declaration
|
|
8
8
|
|
|
9
|
+
### Namespace
|
|
10
|
+
|
|
11
|
+
> `readonly` **Namespace**: `"https://www.w3.org/ns/did/v1"` = `"https://www.w3.org/ns/did/v1"`
|
|
12
|
+
|
|
13
|
+
The canonical RDF namespace URI for DID.
|
|
14
|
+
|
|
9
15
|
### Context
|
|
10
16
|
|
|
11
17
|
> `readonly` **Context**: `"https://www.w3.org/ns/did/v1"` = `"https://www.w3.org/ns/did/v1"`
|
|
12
18
|
|
|
13
|
-
The context
|
|
19
|
+
The value to use in JSON-LD context for DID.
|
|
20
|
+
Note: Context matches Namespace (no trailing slash) as per W3C DID specification.
|
|
21
|
+
The W3C DID JSON-LD context URL format does not include a trailing slash.
|
|
22
|
+
|
|
23
|
+
### NamespaceVCv1
|
|
24
|
+
|
|
25
|
+
> `readonly` **NamespaceVCv1**: `"https://www.w3.org/2018/credentials/v1"` = `"https://www.w3.org/2018/credentials/v1"`
|
|
26
|
+
|
|
27
|
+
The canonical RDF namespace URI for DID VC v1.
|
|
14
28
|
|
|
15
29
|
### ContextVCv1
|
|
16
30
|
|
|
17
31
|
> `readonly` **ContextVCv1**: `"https://www.w3.org/2018/credentials/v1"` = `"https://www.w3.org/2018/credentials/v1"`
|
|
18
32
|
|
|
19
|
-
The context
|
|
33
|
+
The value to use in JSON-LD context for DID VC v1.
|
|
34
|
+
Note: ContextVCv1 matches NamespaceVCv1 (no trailing slash) as per W3C Verifiable Credentials v1 specification.
|
|
35
|
+
The W3C VC v1 JSON-LD context URL format does not include a trailing slash.
|
|
36
|
+
|
|
37
|
+
### NamespaceVCv2
|
|
38
|
+
|
|
39
|
+
> `readonly` **NamespaceVCv2**: `"https://www.w3.org/ns/credentials/v2"` = `"https://www.w3.org/ns/credentials/v2"`
|
|
40
|
+
|
|
41
|
+
The canonical RDF namespace URI for DID VC v2.
|
|
20
42
|
|
|
21
43
|
### ContextVCv2
|
|
22
44
|
|
|
23
45
|
> `readonly` **ContextVCv2**: `"https://www.w3.org/ns/credentials/v2"` = `"https://www.w3.org/ns/credentials/v2"`
|
|
24
46
|
|
|
25
|
-
The context
|
|
47
|
+
The value to use in JSON-LD context for DID VC v2.
|
|
48
|
+
Note: ContextVCv2 matches NamespaceVCv2 (no trailing slash) as per W3C Verifiable Credentials v2 specification.
|
|
49
|
+
The W3C VC v2 JSON-LD context URL format does not include a trailing slash.
|
|
50
|
+
|
|
51
|
+
### NamespaceSecurityEd25519
|
|
52
|
+
|
|
53
|
+
> `readonly` **NamespaceSecurityEd25519**: `"https://w3id.org/security/suites/ed25519-2020/v1"` = `"https://w3id.org/security/suites/ed25519-2020/v1"`
|
|
54
|
+
|
|
55
|
+
The canonical RDF namespace URI for security ed25519 suites.
|
|
26
56
|
|
|
27
57
|
### ContextSecurityEd25519
|
|
28
58
|
|
|
29
59
|
> `readonly` **ContextSecurityEd25519**: `"https://w3id.org/security/suites/ed25519-2020/v1"` = `"https://w3id.org/security/suites/ed25519-2020/v1"`
|
|
30
60
|
|
|
31
|
-
The context
|
|
61
|
+
The value to use in JSON-LD context for security ed25519 suites.
|
|
62
|
+
Note: ContextSecurityEd25519 matches NamespaceSecurityEd25519 (no trailing slash) as per W3C Security Suites specification.
|
|
63
|
+
The ed25519-2020 JSON-LD context URL format does not include a trailing slash.
|
|
64
|
+
|
|
65
|
+
### NamespaceSecurityJws2020
|
|
66
|
+
|
|
67
|
+
> `readonly` **NamespaceSecurityJws2020**: `"https://w3id.org/security/suites/jws-2020/v1"` = `"https://w3id.org/security/suites/jws-2020/v1"`
|
|
68
|
+
|
|
69
|
+
The canonical RDF namespace URI for security jws-2020 suites.
|
|
32
70
|
|
|
33
71
|
### ContextSecurityJws2020
|
|
34
72
|
|
|
35
73
|
> `readonly` **ContextSecurityJws2020**: `"https://w3id.org/security/suites/jws-2020/v1"` = `"https://w3id.org/security/suites/jws-2020/v1"`
|
|
36
74
|
|
|
37
|
-
The context
|
|
75
|
+
The value to use in JSON-LD context for security jws-2020 suites.
|
|
76
|
+
Note: ContextSecurityJws2020 matches NamespaceSecurityJws2020 (no trailing slash) as per W3C Security Suites specification.
|
|
77
|
+
The jws-2020 JSON-LD context URL format does not include a trailing slash.
|
|
78
|
+
|
|
79
|
+
### NamespaceDataIntegrity
|
|
80
|
+
|
|
81
|
+
> `readonly` **NamespaceDataIntegrity**: `"https://www.w3.org/ns/credentials/v2"` = `"https://www.w3.org/ns/credentials/v2"`
|
|
82
|
+
|
|
83
|
+
The canonical RDF namespace URI for VC Data Integrity.
|
|
38
84
|
|
|
39
85
|
### ContextDataIntegrity
|
|
40
86
|
|
|
41
87
|
> `readonly` **ContextDataIntegrity**: `"https://www.w3.org/ns/credentials/v2"` = `"https://www.w3.org/ns/credentials/v2"`
|
|
42
88
|
|
|
43
|
-
The context
|
|
89
|
+
The value to use in JSON-LD context for VC Data Integrity.
|
|
90
|
+
Note: ContextDataIntegrity matches NamespaceDataIntegrity (no trailing slash) as per W3C Data Integrity specification.
|
|
91
|
+
The Data Integrity JSON-LD context URL format does not include a trailing slash.
|
|
92
|
+
|
|
93
|
+
### NamespaceControllerIdentifiers
|
|
94
|
+
|
|
95
|
+
> `readonly` **NamespaceControllerIdentifiers**: `"https://www.w3.org/ns/cid/v1"` = `"https://www.w3.org/ns/cid/v1"`
|
|
96
|
+
|
|
97
|
+
The canonical RDF namespace URI for controller identifiers.
|
|
44
98
|
|
|
45
99
|
### ContextControllerIdentifiers
|
|
46
100
|
|
|
47
101
|
> `readonly` **ContextControllerIdentifiers**: `"https://www.w3.org/ns/cid/v1"` = `"https://www.w3.org/ns/cid/v1"`
|
|
48
102
|
|
|
49
|
-
The context
|
|
103
|
+
The value to use in JSON-LD context for controller identifiers.
|
|
104
|
+
Note: ContextControllerIdentifiers matches NamespaceControllerIdentifiers (no trailing slash) as per W3C Controller Identifiers specification.
|
|
105
|
+
The Controller Identifiers JSON-LD context URL format does not include a trailing slash.
|
|
106
|
+
|
|
107
|
+
### NamespaceSecurityMultikey
|
|
108
|
+
|
|
109
|
+
> `readonly` **NamespaceSecurityMultikey**: `"https://w3id.org/security/multikey/v1"` = `"https://w3id.org/security/multikey/v1"`
|
|
110
|
+
|
|
111
|
+
The canonical RDF namespace URI for security multikey suites.
|
|
50
112
|
|
|
51
113
|
### ContextSecurityMultikey
|
|
52
114
|
|
|
53
115
|
> `readonly` **ContextSecurityMultikey**: `"https://w3id.org/security/multikey/v1"` = `"https://w3id.org/security/multikey/v1"`
|
|
54
116
|
|
|
55
|
-
The context
|
|
117
|
+
The value to use in JSON-LD context for security multikey suites.
|
|
118
|
+
Note: ContextSecurityMultikey matches NamespaceSecurityMultikey (no trailing slash) as per W3C Security Suites specification.
|
|
119
|
+
The multikey JSON-LD context URL format does not include a trailing slash.
|