@twin.org/standards-ld-contexts 0.0.2-next.9 → 0.0.3-next.10
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.
- package/dist/es/index.js +4 -0
- package/dist/es/index.js.map +1 -0
- package/dist/es/ldContexts/dataspace-protocol.json +451 -0
- package/dist/es/ldContexts/dublin-core-dcmitype.json +19 -0
- package/dist/es/ldContexts/dublin-core-terms.json +226 -0
- package/dist/es/ldContexts/foaf.json +43 -0
- package/dist/es/ldContexts/gaia-x-v24.11.json +2397 -0
- package/dist/es/ldContexts/odrl-dataspace-protocol.json +96 -0
- package/dist/es/ldContexts/schema.org.json +9029 -0
- package/dist/es/ldContexts/un-cefact-vocab.json +12614 -0
- package/dist/es/ldContexts/w3c-activity-streams.json +379 -0
- package/dist/es/ldContexts/w3c-dcat.json +6607 -0
- package/dist/es/ldContexts/w3c-odrl.json +178 -0
- package/dist/es/ldContexts/w3c-rdf.json +38 -0
- package/dist/es/ldContexts/w3c-vc-data-model-v2.json +301 -0
- package/dist/es/ldContexts/w3id-jws-2020-v1.json +78 -0
- package/dist/es/ldContexts.js +84 -0
- package/dist/es/ldContexts.js.map +1 -0
- package/dist/types/index.d.ts +1 -1
- package/docs/changelog.md +138 -0
- package/package.json +20 -8
- package/dist/cjs/index.cjs +0 -217747
- package/dist/esm/index.mjs +0 -217743
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
{
|
|
2
|
+
"@context": {
|
|
3
|
+
"odrl": "http://www.w3.org/ns/odrl/2/",
|
|
4
|
+
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
|
|
5
|
+
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
|
|
6
|
+
"owl": "http://www.w3.org/2002/07/owl#",
|
|
7
|
+
"skos": "http://www.w3.org/2004/02/skos/core#",
|
|
8
|
+
"dct": "http://purl.org/dc/terms/",
|
|
9
|
+
"xsd": "http://www.w3.org/2001/XMLSchema#",
|
|
10
|
+
"vcard": "http://www.w3.org/2006/vcard/ns#",
|
|
11
|
+
"foaf": "http://xmlns.com/foaf/0.1/",
|
|
12
|
+
"schema": "http://schema.org/",
|
|
13
|
+
"cc": "http://creativecommons.org/ns#",
|
|
14
|
+
"uid": "@id",
|
|
15
|
+
"type": "@type",
|
|
16
|
+
"Policy": "odrl:Policy",
|
|
17
|
+
"Rule": "odrl:Rule",
|
|
18
|
+
"profile": { "@type": "@id", "@id": "odrl:profile" },
|
|
19
|
+
"inheritFrom": { "@type": "@id", "@id": "odrl:inheritFrom" },
|
|
20
|
+
"ConflictTerm": "odrl:ConflictTerm",
|
|
21
|
+
"conflict": { "@type": "@vocab", "@id": "odrl:conflict" },
|
|
22
|
+
"perm": "odrl:perm",
|
|
23
|
+
"prohibit": "odrl:prohibit",
|
|
24
|
+
"invalid": "odrl:invalid",
|
|
25
|
+
"Agreement": "odrl:Agreement",
|
|
26
|
+
"Assertion": "odrl:Assertion",
|
|
27
|
+
"Offer": "odrl:Offer",
|
|
28
|
+
"Privacy": "odrl:Privacy",
|
|
29
|
+
"Request": "odrl:Request",
|
|
30
|
+
"Set": "odrl:Set",
|
|
31
|
+
"Ticket": "odrl:Ticket",
|
|
32
|
+
"Asset": "odrl:Asset",
|
|
33
|
+
"AssetCollection": "odrl:AssetCollection",
|
|
34
|
+
"relation": { "@type": "@id", "@id": "odrl:relation" },
|
|
35
|
+
"hasPolicy": { "@type": "@id", "@id": "odrl:hasPolicy" },
|
|
36
|
+
"target": { "@type": "@id", "@id": "odrl:target" },
|
|
37
|
+
"output": { "@type": "@id", "@id": "odrl:output" },
|
|
38
|
+
"partOf": { "@type": "@id", "@id": "odrl:partOf" },
|
|
39
|
+
"source": { "@type": "@id", "@id": "odrl:source" },
|
|
40
|
+
"Party": "odrl:Party",
|
|
41
|
+
"PartyCollection": "odrl:PartyCollection",
|
|
42
|
+
"function": { "@type": "@vocab", "@id": "odrl:function" },
|
|
43
|
+
"PartyScope": "odrl:PartyScope",
|
|
44
|
+
"assignee": { "@type": "@id", "@id": "odrl:assignee" },
|
|
45
|
+
"assigner": { "@type": "@id", "@id": "odrl:assigner" },
|
|
46
|
+
"assigneeOf": { "@type": "@id", "@id": "odrl:assigneeOf" },
|
|
47
|
+
"assignerOf": { "@type": "@id", "@id": "odrl:assignerOf" },
|
|
48
|
+
"attributedParty": { "@type": "@id", "@id": "odrl:attributedParty" },
|
|
49
|
+
"attributingParty": { "@type": "@id", "@id": "odrl:attributingParty" },
|
|
50
|
+
"compensatedParty": { "@type": "@id", "@id": "odrl:compensatedParty" },
|
|
51
|
+
"compensatingParty": { "@type": "@id", "@id": "odrl:compensatingParty" },
|
|
52
|
+
"consentingParty": { "@type": "@id", "@id": "odrl:consentingParty" },
|
|
53
|
+
"consentedParty": { "@type": "@id", "@id": "odrl:consentedParty" },
|
|
54
|
+
"informedParty": { "@type": "@id", "@id": "odrl:informedParty" },
|
|
55
|
+
"informingParty": { "@type": "@id", "@id": "odrl:informingParty" },
|
|
56
|
+
"trackingParty": { "@type": "@id", "@id": "odrl:trackingParty" },
|
|
57
|
+
"trackedParty": { "@type": "@id", "@id": "odrl:trackedParty" },
|
|
58
|
+
"contractingParty": { "@type": "@id", "@id": "odrl:contractingParty" },
|
|
59
|
+
"contractedParty": { "@type": "@id", "@id": "odrl:contractedParty" },
|
|
60
|
+
"Action": "odrl:Action",
|
|
61
|
+
"action": { "@type": "@vocab", "@id": "odrl:action" },
|
|
62
|
+
"includedIn": { "@type": "@id", "@id": "odrl:includedIn" },
|
|
63
|
+
"implies": { "@type": "@id", "@id": "odrl:implies" },
|
|
64
|
+
"Permission": "odrl:Permission",
|
|
65
|
+
"permission": { "@type": "@id", "@id": "odrl:permission" },
|
|
66
|
+
"Prohibition": "odrl:Prohibition",
|
|
67
|
+
"prohibition": { "@type": "@id", "@id": "odrl:prohibition" },
|
|
68
|
+
"obligation": { "@type": "@id", "@id": "odrl:obligation" },
|
|
69
|
+
"use": "odrl:use",
|
|
70
|
+
"grantUse": "odrl:grantUse",
|
|
71
|
+
"aggregate": "odrl:aggregate",
|
|
72
|
+
"annotate": "odrl:annotate",
|
|
73
|
+
"anonymize": "odrl:anonymize",
|
|
74
|
+
"archive": "odrl:archive",
|
|
75
|
+
"concurrentUse": "odrl:concurrentUse",
|
|
76
|
+
"derive": "odrl:derive",
|
|
77
|
+
"digitize": "odrl:digitize",
|
|
78
|
+
"display": "odrl:display",
|
|
79
|
+
"distribute": "odrl:distribute",
|
|
80
|
+
"execute": "odrl:execute",
|
|
81
|
+
"extract": "odrl:extract",
|
|
82
|
+
"give": "odrl:give",
|
|
83
|
+
"index": "odrl:index",
|
|
84
|
+
"install": "odrl:install",
|
|
85
|
+
"modify": "odrl:modify",
|
|
86
|
+
"move": "odrl:move",
|
|
87
|
+
"play": "odrl:play",
|
|
88
|
+
"present": "odrl:present",
|
|
89
|
+
"print": "odrl:print",
|
|
90
|
+
"read": "odrl:read",
|
|
91
|
+
"reproduce": "odrl:reproduce",
|
|
92
|
+
"sell": "odrl:sell",
|
|
93
|
+
"stream": "odrl:stream",
|
|
94
|
+
"textToSpeech": "odrl:textToSpeech",
|
|
95
|
+
"transfer": "odrl:transfer",
|
|
96
|
+
"transform": "odrl:transform",
|
|
97
|
+
"translate": "odrl:translate",
|
|
98
|
+
"Duty": "odrl:Duty",
|
|
99
|
+
"duty": { "@type": "@id", "@id": "odrl:duty" },
|
|
100
|
+
"consequence": { "@type": "@id", "@id": "odrl:consequence" },
|
|
101
|
+
"remedy": { "@type": "@id", "@id": "odrl:remedy" },
|
|
102
|
+
"acceptTracking": "odrl:acceptTracking",
|
|
103
|
+
"attribute": "odrl:attribute",
|
|
104
|
+
"compensate": "odrl:compensate",
|
|
105
|
+
"delete": "odrl:delete",
|
|
106
|
+
"ensureExclusivity": "odrl:ensureExclusivity",
|
|
107
|
+
"include": "odrl:include",
|
|
108
|
+
"inform": "odrl:inform",
|
|
109
|
+
"nextPolicy": "odrl:nextPolicy",
|
|
110
|
+
"obtainConsent": "odrl:obtainConsent",
|
|
111
|
+
"reviewPolicy": "odrl:reviewPolicy",
|
|
112
|
+
"uninstall": "odrl:uninstall",
|
|
113
|
+
"watermark": "odrl:watermark",
|
|
114
|
+
"Constraint": "odrl:Constraint",
|
|
115
|
+
"LogicalConstraint": "odrl:LogicalConstraint",
|
|
116
|
+
"constraint": { "@type": "@id", "@id": "odrl:constraint" },
|
|
117
|
+
"refinement": { "@type": "@id", "@id": "odrl:refinement" },
|
|
118
|
+
"Operator": "odrl:Operator",
|
|
119
|
+
"operator": { "@type": "@vocab", "@id": "odrl:operator" },
|
|
120
|
+
"RightOperand": "odrl:RightOperand",
|
|
121
|
+
"rightOperand": "odrl:rightOperand",
|
|
122
|
+
"rightOperandReference": { "@type": "xsd:anyURI", "@id": "odrl:rightOperandReference" },
|
|
123
|
+
"LeftOperand": "odrl:LeftOperand",
|
|
124
|
+
"leftOperand": { "@type": "@vocab", "@id": "odrl:leftOperand" },
|
|
125
|
+
"unit": "odrl:unit",
|
|
126
|
+
"dataType": { "@type": "xsd:anyType", "@id": "odrl:datatype" },
|
|
127
|
+
"status": "odrl:status",
|
|
128
|
+
"absolutePosition": "odrl:absolutePosition",
|
|
129
|
+
"absoluteSpatialPosition": "odrl:absoluteSpatialPosition",
|
|
130
|
+
"absoluteTemporalPosition": "odrl:absoluteTemporalPosition",
|
|
131
|
+
"absoluteSize": "odrl:absoluteSize",
|
|
132
|
+
"count": "odrl:count",
|
|
133
|
+
"dateTime": "odrl:dateTime",
|
|
134
|
+
"delayPeriod": "odrl:delayPeriod",
|
|
135
|
+
"deliveryChannel": "odrl:deliveryChannel",
|
|
136
|
+
"elapsedTime": "odrl:elapsedTime",
|
|
137
|
+
"event": "odrl:event",
|
|
138
|
+
"fileFormat": "odrl:fileFormat",
|
|
139
|
+
"industry": "odrl:industry:",
|
|
140
|
+
"language": "odrl:language",
|
|
141
|
+
"media": "odrl:media",
|
|
142
|
+
"meteredTime": "odrl:meteredTime",
|
|
143
|
+
"payAmount": "odrl:payAmount",
|
|
144
|
+
"percentage": "odrl:percentage",
|
|
145
|
+
"product": "odrl:product",
|
|
146
|
+
"purpose": "odrl:purpose",
|
|
147
|
+
"recipient": "odrl:recipient",
|
|
148
|
+
"relativePosition": "odrl:relativePosition",
|
|
149
|
+
"relativeSpatialPosition": "odrl:relativeSpatialPosition",
|
|
150
|
+
"relativeTemporalPosition": "odrl:relativeTemporalPosition",
|
|
151
|
+
"relativeSize": "odrl:relativeSize",
|
|
152
|
+
"resolution": "odrl:resolution",
|
|
153
|
+
"spatial": "odrl:spatial",
|
|
154
|
+
"spatialCoordinates": "odrl:spatialCoordinates",
|
|
155
|
+
"systemDevice": "odrl:systemDevice",
|
|
156
|
+
"timeInterval": "odrl:timeInterval",
|
|
157
|
+
"unitOfCount": "odrl:unitOfCount",
|
|
158
|
+
"version": "odrl:version",
|
|
159
|
+
"virtualLocation": "odrl:virtualLocation",
|
|
160
|
+
"eq": "odrl:eq",
|
|
161
|
+
"gt": "odrl:gt",
|
|
162
|
+
"gteq": "odrl:gteq",
|
|
163
|
+
"lt": "odrl:lt",
|
|
164
|
+
"lteq": "odrl:lteq",
|
|
165
|
+
"neq": "odrl:neg",
|
|
166
|
+
"isA": "odrl:isA",
|
|
167
|
+
"hasPart": "odrl:hasPart",
|
|
168
|
+
"isPartOf": "odrl:isPartOf",
|
|
169
|
+
"isAllOf": "odrl:isAllOf",
|
|
170
|
+
"isAnyOf": "odrl:isAnyOf",
|
|
171
|
+
"isNoneOf": "odrl:isNoneOf",
|
|
172
|
+
"or": "odrl:or",
|
|
173
|
+
"xone": "odrl:xone",
|
|
174
|
+
"and": "odrl:and",
|
|
175
|
+
"andSequence": "odrl:andSequence",
|
|
176
|
+
"policyUsage": "odrl:policyUsage"
|
|
177
|
+
}
|
|
178
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"@context": {
|
|
3
|
+
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
|
|
4
|
+
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
|
|
5
|
+
"Resource": "rdfs:Resource",
|
|
6
|
+
"Class": "rdfs:Class",
|
|
7
|
+
"Literal": "rdfs:Literal",
|
|
8
|
+
"Datatype": "rdfs:Datatype",
|
|
9
|
+
"langString": "rdf:langString",
|
|
10
|
+
"HTML": "rdf:HTML",
|
|
11
|
+
"XMLLiteral": "rdf:XMLLiteral",
|
|
12
|
+
"Property": "rdf:Property",
|
|
13
|
+
"Statement": "rdf:Statement",
|
|
14
|
+
"Container": "rdfs:Container",
|
|
15
|
+
"Bag": "rdf:Bag",
|
|
16
|
+
"Seq": "rdf:Seq",
|
|
17
|
+
"Alt": "rdf:Alt",
|
|
18
|
+
"ContainerMembershipProperty": "rdfs:ContainerMembershipProperty",
|
|
19
|
+
"List": "rdf:List",
|
|
20
|
+
"type": "rdf:type",
|
|
21
|
+
"subClassOf": "rdfs:subClassOf",
|
|
22
|
+
"subPropertyOf": "rdfs:subPropertyOf",
|
|
23
|
+
"domain": "rdfs:domain",
|
|
24
|
+
"range": "rdfs:range",
|
|
25
|
+
"label": "rdfs:label",
|
|
26
|
+
"comment": "rdfs:comment",
|
|
27
|
+
"member": "rdfs:member",
|
|
28
|
+
"first": "rdf:first",
|
|
29
|
+
"rest": "rdf:rest",
|
|
30
|
+
"nil": "rdf:nil",
|
|
31
|
+
"subject": "rdf:subject",
|
|
32
|
+
"predicate": "rdf:predicate",
|
|
33
|
+
"object": "rdf:object",
|
|
34
|
+
"seeAlso": "rdfs:seeAlso",
|
|
35
|
+
"isDefinedBy": "rdfs:isDefinedBy",
|
|
36
|
+
"value": "rdf:value"
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -0,0 +1,301 @@
|
|
|
1
|
+
{
|
|
2
|
+
"@context": {
|
|
3
|
+
"@protected": true,
|
|
4
|
+
"id": "@id",
|
|
5
|
+
"type": "@type",
|
|
6
|
+
"description": "https://schema.org/description",
|
|
7
|
+
"digestMultibase": {
|
|
8
|
+
"@id": "https://w3id.org/security#digestMultibase",
|
|
9
|
+
"@type": "https://w3id.org/security#multibase"
|
|
10
|
+
},
|
|
11
|
+
"digestSRI": {
|
|
12
|
+
"@id": "https://www.w3.org/2018/credentials#digestSRI",
|
|
13
|
+
"@type": "https://www.w3.org/2018/credentials#sriString"
|
|
14
|
+
},
|
|
15
|
+
"mediaType": {
|
|
16
|
+
"@id": "https://schema.org/encodingFormat"
|
|
17
|
+
},
|
|
18
|
+
"name": "https://schema.org/name",
|
|
19
|
+
"VerifiableCredential": {
|
|
20
|
+
"@id": "https://www.w3.org/2018/credentials#VerifiableCredential",
|
|
21
|
+
"@context": {
|
|
22
|
+
"@protected": true,
|
|
23
|
+
"id": "@id",
|
|
24
|
+
"type": "@type",
|
|
25
|
+
"confidenceMethod": {
|
|
26
|
+
"@id": "https://www.w3.org/2018/credentials#confidenceMethod",
|
|
27
|
+
"@type": "@id"
|
|
28
|
+
},
|
|
29
|
+
"credentialSchema": {
|
|
30
|
+
"@id": "https://www.w3.org/2018/credentials#credentialSchema",
|
|
31
|
+
"@type": "@id"
|
|
32
|
+
},
|
|
33
|
+
"credentialStatus": {
|
|
34
|
+
"@id": "https://www.w3.org/2018/credentials#credentialStatus",
|
|
35
|
+
"@type": "@id"
|
|
36
|
+
},
|
|
37
|
+
"credentialSubject": {
|
|
38
|
+
"@id": "https://www.w3.org/2018/credentials#credentialSubject",
|
|
39
|
+
"@type": "@id"
|
|
40
|
+
},
|
|
41
|
+
"description": "https://schema.org/description",
|
|
42
|
+
"evidence": {
|
|
43
|
+
"@id": "https://www.w3.org/2018/credentials#evidence",
|
|
44
|
+
"@type": "@id"
|
|
45
|
+
},
|
|
46
|
+
"issuer": {
|
|
47
|
+
"@id": "https://www.w3.org/2018/credentials#issuer",
|
|
48
|
+
"@type": "@id"
|
|
49
|
+
},
|
|
50
|
+
"name": "https://schema.org/name",
|
|
51
|
+
"proof": {
|
|
52
|
+
"@id": "https://w3id.org/security#proof",
|
|
53
|
+
"@type": "@id",
|
|
54
|
+
"@container": "@graph"
|
|
55
|
+
},
|
|
56
|
+
"refreshService": {
|
|
57
|
+
"@id": "https://www.w3.org/2018/credentials#refreshService",
|
|
58
|
+
"@type": "@id"
|
|
59
|
+
},
|
|
60
|
+
"relatedResource": {
|
|
61
|
+
"@id": "https://www.w3.org/2018/credentials#relatedResource",
|
|
62
|
+
"@type": "@id"
|
|
63
|
+
},
|
|
64
|
+
"renderMethod": {
|
|
65
|
+
"@id": "https://www.w3.org/2018/credentials#renderMethod",
|
|
66
|
+
"@type": "@id"
|
|
67
|
+
},
|
|
68
|
+
"termsOfUse": {
|
|
69
|
+
"@id": "https://www.w3.org/2018/credentials#termsOfUse",
|
|
70
|
+
"@type": "@id"
|
|
71
|
+
},
|
|
72
|
+
"validFrom": {
|
|
73
|
+
"@id": "https://www.w3.org/2018/credentials#validFrom",
|
|
74
|
+
"@type": "http://www.w3.org/2001/XMLSchema#dateTime"
|
|
75
|
+
},
|
|
76
|
+
"validUntil": {
|
|
77
|
+
"@id": "https://www.w3.org/2018/credentials#validUntil",
|
|
78
|
+
"@type": "http://www.w3.org/2001/XMLSchema#dateTime"
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
"EnvelopedVerifiableCredential": "https://www.w3.org/2018/credentials#EnvelopedVerifiableCredential",
|
|
83
|
+
"VerifiablePresentation": {
|
|
84
|
+
"@id": "https://www.w3.org/2018/credentials#VerifiablePresentation",
|
|
85
|
+
"@context": {
|
|
86
|
+
"@protected": true,
|
|
87
|
+
"id": "@id",
|
|
88
|
+
"type": "@type",
|
|
89
|
+
"holder": {
|
|
90
|
+
"@id": "https://www.w3.org/2018/credentials#holder",
|
|
91
|
+
"@type": "@id"
|
|
92
|
+
},
|
|
93
|
+
"proof": {
|
|
94
|
+
"@id": "https://w3id.org/security#proof",
|
|
95
|
+
"@type": "@id",
|
|
96
|
+
"@container": "@graph"
|
|
97
|
+
},
|
|
98
|
+
"termsOfUse": {
|
|
99
|
+
"@id": "https://www.w3.org/2018/credentials#termsOfUse",
|
|
100
|
+
"@type": "@id"
|
|
101
|
+
},
|
|
102
|
+
"verifiableCredential": {
|
|
103
|
+
"@id": "https://www.w3.org/2018/credentials#verifiableCredential",
|
|
104
|
+
"@type": "@id",
|
|
105
|
+
"@container": "@graph",
|
|
106
|
+
"@context": null
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
"EnvelopedVerifiablePresentation": "https://www.w3.org/2018/credentials#EnvelopedVerifiablePresentation",
|
|
111
|
+
"JsonSchemaCredential": "https://www.w3.org/2018/credentials#JsonSchemaCredential",
|
|
112
|
+
"JsonSchema": {
|
|
113
|
+
"@id": "https://www.w3.org/2018/credentials#JsonSchema",
|
|
114
|
+
"@context": {
|
|
115
|
+
"@protected": true,
|
|
116
|
+
"id": "@id",
|
|
117
|
+
"type": "@type",
|
|
118
|
+
"jsonSchema": {
|
|
119
|
+
"@id": "https://www.w3.org/2018/credentials#jsonSchema",
|
|
120
|
+
"@type": "@json"
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
},
|
|
124
|
+
"BitstringStatusListCredential": "https://www.w3.org/ns/credentials/status#BitstringStatusListCredential",
|
|
125
|
+
"BitstringStatusList": {
|
|
126
|
+
"@id": "https://www.w3.org/ns/credentials/status#BitstringStatusList",
|
|
127
|
+
"@context": {
|
|
128
|
+
"@protected": true,
|
|
129
|
+
"id": "@id",
|
|
130
|
+
"type": "@type",
|
|
131
|
+
"encodedList": {
|
|
132
|
+
"@id": "https://www.w3.org/ns/credentials/status#encodedList",
|
|
133
|
+
"@type": "https://w3id.org/security#multibase"
|
|
134
|
+
},
|
|
135
|
+
"statusPurpose": "https://www.w3.org/ns/credentials/status#statusPurpose",
|
|
136
|
+
"ttl": "https://www.w3.org/ns/credentials/status#ttl"
|
|
137
|
+
}
|
|
138
|
+
},
|
|
139
|
+
"BitstringStatusListEntry": {
|
|
140
|
+
"@id": "https://www.w3.org/ns/credentials/status#BitstringStatusListEntry",
|
|
141
|
+
"@context": {
|
|
142
|
+
"@protected": true,
|
|
143
|
+
"id": "@id",
|
|
144
|
+
"type": "@type",
|
|
145
|
+
"statusListCredential": {
|
|
146
|
+
"@id": "https://www.w3.org/ns/credentials/status#statusListCredential",
|
|
147
|
+
"@type": "@id"
|
|
148
|
+
},
|
|
149
|
+
"statusListIndex": "https://www.w3.org/ns/credentials/status#statusListIndex",
|
|
150
|
+
"statusPurpose": "https://www.w3.org/ns/credentials/status#statusPurpose",
|
|
151
|
+
"statusMessage": {
|
|
152
|
+
"@id": "https://www.w3.org/ns/credentials/status#statusMessage",
|
|
153
|
+
"@context": {
|
|
154
|
+
"@protected": true,
|
|
155
|
+
"id": "@id",
|
|
156
|
+
"type": "@type",
|
|
157
|
+
"message": "https://www.w3.org/ns/credentials/status#message",
|
|
158
|
+
"status": "https://www.w3.org/ns/credentials/status#status"
|
|
159
|
+
}
|
|
160
|
+
},
|
|
161
|
+
"statusReference": {
|
|
162
|
+
"@id": "https://www.w3.org/ns/credentials/status#statusReference",
|
|
163
|
+
"@type": "@id"
|
|
164
|
+
},
|
|
165
|
+
"statusSize": {
|
|
166
|
+
"@id": "https://www.w3.org/ns/credentials/status#statusSize",
|
|
167
|
+
"@type": "https://www.w3.org/2001/XMLSchema#integer"
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
"DataIntegrityProof": {
|
|
172
|
+
"@id": "https://w3id.org/security#DataIntegrityProof",
|
|
173
|
+
"@context": {
|
|
174
|
+
"@protected": true,
|
|
175
|
+
"id": "@id",
|
|
176
|
+
"type": "@type",
|
|
177
|
+
"challenge": "https://w3id.org/security#challenge",
|
|
178
|
+
"created": {
|
|
179
|
+
"@id": "http://purl.org/dc/terms/created",
|
|
180
|
+
"@type": "http://www.w3.org/2001/XMLSchema#dateTime"
|
|
181
|
+
},
|
|
182
|
+
"cryptosuite": {
|
|
183
|
+
"@id": "https://w3id.org/security#cryptosuite",
|
|
184
|
+
"@type": "https://w3id.org/security#cryptosuiteString"
|
|
185
|
+
},
|
|
186
|
+
"domain": "https://w3id.org/security#domain",
|
|
187
|
+
"expires": {
|
|
188
|
+
"@id": "https://w3id.org/security#expiration",
|
|
189
|
+
"@type": "http://www.w3.org/2001/XMLSchema#dateTime"
|
|
190
|
+
},
|
|
191
|
+
"nonce": "https://w3id.org/security#nonce",
|
|
192
|
+
"previousProof": {
|
|
193
|
+
"@id": "https://w3id.org/security#previousProof",
|
|
194
|
+
"@type": "@id"
|
|
195
|
+
},
|
|
196
|
+
"proofPurpose": {
|
|
197
|
+
"@id": "https://w3id.org/security#proofPurpose",
|
|
198
|
+
"@type": "@vocab",
|
|
199
|
+
"@context": {
|
|
200
|
+
"@protected": true,
|
|
201
|
+
"id": "@id",
|
|
202
|
+
"type": "@type",
|
|
203
|
+
"assertionMethod": {
|
|
204
|
+
"@id": "https://w3id.org/security#assertionMethod",
|
|
205
|
+
"@type": "@id",
|
|
206
|
+
"@container": "@set"
|
|
207
|
+
},
|
|
208
|
+
"authentication": {
|
|
209
|
+
"@id": "https://w3id.org/security#authenticationMethod",
|
|
210
|
+
"@type": "@id",
|
|
211
|
+
"@container": "@set"
|
|
212
|
+
},
|
|
213
|
+
"capabilityDelegation": {
|
|
214
|
+
"@id": "https://w3id.org/security#capabilityDelegationMethod",
|
|
215
|
+
"@type": "@id",
|
|
216
|
+
"@container": "@set"
|
|
217
|
+
},
|
|
218
|
+
"capabilityInvocation": {
|
|
219
|
+
"@id": "https://w3id.org/security#capabilityInvocationMethod",
|
|
220
|
+
"@type": "@id",
|
|
221
|
+
"@container": "@set"
|
|
222
|
+
},
|
|
223
|
+
"keyAgreement": {
|
|
224
|
+
"@id": "https://w3id.org/security#keyAgreementMethod",
|
|
225
|
+
"@type": "@id",
|
|
226
|
+
"@container": "@set"
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
},
|
|
230
|
+
"proofValue": {
|
|
231
|
+
"@id": "https://w3id.org/security#proofValue",
|
|
232
|
+
"@type": "https://w3id.org/security#multibase"
|
|
233
|
+
},
|
|
234
|
+
"verificationMethod": {
|
|
235
|
+
"@id": "https://w3id.org/security#verificationMethod",
|
|
236
|
+
"@type": "@id"
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
},
|
|
240
|
+
"...": {
|
|
241
|
+
"@id": "https://www.iana.org/assignments/jwt#..."
|
|
242
|
+
},
|
|
243
|
+
"_sd": {
|
|
244
|
+
"@id": "https://www.iana.org/assignments/jwt#_sd",
|
|
245
|
+
"@type": "@json"
|
|
246
|
+
},
|
|
247
|
+
"_sd_alg": {
|
|
248
|
+
"@id": "https://www.iana.org/assignments/jwt#_sd_alg"
|
|
249
|
+
},
|
|
250
|
+
"aud": {
|
|
251
|
+
"@id": "https://www.iana.org/assignments/jwt#aud",
|
|
252
|
+
"@type": "@id"
|
|
253
|
+
},
|
|
254
|
+
"cnf": {
|
|
255
|
+
"@id": "https://www.iana.org/assignments/jwt#cnf",
|
|
256
|
+
"@context": {
|
|
257
|
+
"@protected": true,
|
|
258
|
+
"kid": {
|
|
259
|
+
"@id": "https://www.iana.org/assignments/jwt#kid",
|
|
260
|
+
"@type": "@id"
|
|
261
|
+
},
|
|
262
|
+
"jwk": {
|
|
263
|
+
"@id": "https://www.iana.org/assignments/jwt#jwk",
|
|
264
|
+
"@type": "@json"
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
},
|
|
268
|
+
"exp": {
|
|
269
|
+
"@id": "https://www.iana.org/assignments/jwt#exp",
|
|
270
|
+
"@type": "https://www.w3.org/2001/XMLSchema#nonNegativeInteger"
|
|
271
|
+
},
|
|
272
|
+
"iat": {
|
|
273
|
+
"@id": "https://www.iana.org/assignments/jwt#iat",
|
|
274
|
+
"@type": "https://www.w3.org/2001/XMLSchema#nonNegativeInteger"
|
|
275
|
+
},
|
|
276
|
+
"iss": {
|
|
277
|
+
"@id": "https://www.iana.org/assignments/jose#iss",
|
|
278
|
+
"@type": "@id"
|
|
279
|
+
},
|
|
280
|
+
"jku": {
|
|
281
|
+
"@id": "https://www.iana.org/assignments/jose#jku",
|
|
282
|
+
"@type": "@id"
|
|
283
|
+
},
|
|
284
|
+
"kid": {
|
|
285
|
+
"@id": "https://www.iana.org/assignments/jose#kid",
|
|
286
|
+
"@type": "@id"
|
|
287
|
+
},
|
|
288
|
+
"nbf": {
|
|
289
|
+
"@id": "https://www.iana.org/assignments/jwt#nbf",
|
|
290
|
+
"@type": "https://www.w3.org/2001/XMLSchema#nonNegativeInteger"
|
|
291
|
+
},
|
|
292
|
+
"sub": {
|
|
293
|
+
"@id": "https://www.iana.org/assignments/jose#sub",
|
|
294
|
+
"@type": "@id"
|
|
295
|
+
},
|
|
296
|
+
"x5u": {
|
|
297
|
+
"@id": "https://www.iana.org/assignments/jose#x5u",
|
|
298
|
+
"@type": "@id"
|
|
299
|
+
}
|
|
300
|
+
}
|
|
301
|
+
}
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
{
|
|
2
|
+
"@context": {
|
|
3
|
+
"privateKeyJwk": {
|
|
4
|
+
"@id": "https://w3id.org/security#privateKeyJwk",
|
|
5
|
+
"@type": "@json"
|
|
6
|
+
},
|
|
7
|
+
"JsonWebKey2020": {
|
|
8
|
+
"@id": "https://w3id.org/security#JsonWebKey2020",
|
|
9
|
+
"@context": {
|
|
10
|
+
"@protected": true,
|
|
11
|
+
"id": "@id",
|
|
12
|
+
"type": "@type",
|
|
13
|
+
"publicKeyJwk": {
|
|
14
|
+
"@id": "https://w3id.org/security#publicKeyJwk",
|
|
15
|
+
"@type": "@json"
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"JsonWebSignature2020": {
|
|
20
|
+
"@id": "https://w3id.org/security#JsonWebSignature2020",
|
|
21
|
+
"@context": {
|
|
22
|
+
"@protected": true,
|
|
23
|
+
"id": "@id",
|
|
24
|
+
"type": "@type",
|
|
25
|
+
"challenge": "https://w3id.org/security#challenge",
|
|
26
|
+
"created": {
|
|
27
|
+
"@id": "http://purl.org/dc/terms/created",
|
|
28
|
+
"@type": "http://www.w3.org/2001/XMLSchema#dateTime"
|
|
29
|
+
},
|
|
30
|
+
"domain": "https://w3id.org/security#domain",
|
|
31
|
+
"expires": {
|
|
32
|
+
"@id": "https://w3id.org/security#expiration",
|
|
33
|
+
"@type": "http://www.w3.org/2001/XMLSchema#dateTime"
|
|
34
|
+
},
|
|
35
|
+
"jws": "https://w3id.org/security#jws",
|
|
36
|
+
"nonce": "https://w3id.org/security#nonce",
|
|
37
|
+
"proofPurpose": {
|
|
38
|
+
"@id": "https://w3id.org/security#proofPurpose",
|
|
39
|
+
"@type": "@vocab",
|
|
40
|
+
"@context": {
|
|
41
|
+
"@protected": true,
|
|
42
|
+
"id": "@id",
|
|
43
|
+
"type": "@type",
|
|
44
|
+
"assertionMethod": {
|
|
45
|
+
"@id": "https://w3id.org/security#assertionMethod",
|
|
46
|
+
"@type": "@id",
|
|
47
|
+
"@container": "@set"
|
|
48
|
+
},
|
|
49
|
+
"authentication": {
|
|
50
|
+
"@id": "https://w3id.org/security#authenticationMethod",
|
|
51
|
+
"@type": "@id",
|
|
52
|
+
"@container": "@set"
|
|
53
|
+
},
|
|
54
|
+
"capabilityInvocation": {
|
|
55
|
+
"@id": "https://w3id.org/security#capabilityInvocationMethod",
|
|
56
|
+
"@type": "@id",
|
|
57
|
+
"@container": "@set"
|
|
58
|
+
},
|
|
59
|
+
"capabilityDelegation": {
|
|
60
|
+
"@id": "https://w3id.org/security#capabilityDelegationMethod",
|
|
61
|
+
"@type": "@id",
|
|
62
|
+
"@container": "@set"
|
|
63
|
+
},
|
|
64
|
+
"keyAgreement": {
|
|
65
|
+
"@id": "https://w3id.org/security#keyAgreementMethod",
|
|
66
|
+
"@type": "@id",
|
|
67
|
+
"@container": "@set"
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"verificationMethod": {
|
|
72
|
+
"@id": "https://w3id.org/security#verificationMethod",
|
|
73
|
+
"@type": "@id"
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|