Skip to content

Commit

Permalink
Revise and clarify Context and Vocabulary section.
Browse files Browse the repository at this point in the history
Co-authored-by: Michael Jones <[email protected]>
Co-authored-by: Dave Longley <[email protected]>
Co-authored-by: Manu Sporny <[email protected]>
  • Loading branch information
4 people authored Sep 16, 2024
1 parent 1709c9e commit cb5b922
Show file tree
Hide file tree
Showing 2 changed files with 237 additions and 157 deletions.
103 changes: 103 additions & 0 deletions context/v1.jsonld
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
{
"@context": {
"@protected": true,
"id": "@id",
"type": "@type",

"alsoKnownAs": {
"@id": "https://w3id.org/security#alsoKnownAs",
"@type": "@id",
"@container": "@set"
},
"assertionMethod": {
"@id": "https://w3id.org/security#assertionMethod",
"@type": "@id",
"@container": "@set"
},
"authentication": {
"@id": "https://w3id.org/security#authenticationMethod",
"@type": "@id",
"@container": "@set"
},
"capabilityDelegation": {
"@id": "https://w3id.org/security#capabilityDelegationMethod",
"@type": "@id",
"@container": "@set"
},
"capabilityInvocation": {
"@id": "https://w3id.org/security#capabilityInvocationMethod",
"@type": "@id",
"@container": "@set"
},
"controller": {
"@id": "https://w3id.org/security#controller",
"@type": "@id"
},
"keyAgreement": {
"@id": "https://w3id.org/security#keyAgreementMethod",
"@type": "@id",
"@container": "@set"
},
"verificationMethod": {
"@id": "https://w3id.org/security#verificationMethod",
"@type": "@id",
"@container": "@set"
},
"Multikey": {
"@id": "https://w3id.org/security#Multikey",
"@context": {
"@protected": true,
"id": "@id",
"type": "@type",
"controller": {
"@id": "https://w3id.org/security#controller",
"@type": "@id"
},
"revoked": {
"@id": "https://w3id.org/security#revoked",
"@type": "http://www.w3.org/2001/XMLSchema#dateTime"
},
"expires": {
"@id": "https://w3id.org/security#expiration",
"@type": "http://www.w3.org/2001/XMLSchema#dateTime"
},
"publicKeyMultibase": {
"@id": "https://w3id.org/security#publicKeyMultibase",
"@type": "https://w3id.org/security#multibase"
},
"secretKeyMultibase": {
"@id": "https://w3id.org/security#secretKeyMultibase",
"@type": "https://w3id.org/security#multibase"
}
}
},
"JsonWebKey": {
"@id": "https://w3id.org/security#JsonWebKey",
"@context": {
"@protected": true,
"id": "@id",
"type": "@type",
"controller": {
"@id": "https://w3id.org/security#controller",
"@type": "@id"
},
"revoked": {
"@id": "https://w3id.org/security#revoked",
"@type": "http://www.w3.org/2001/XMLSchema#dateTime"
},
"expires": {
"@id": "https://w3id.org/security#expiration",
"@type": "http://www.w3.org/2001/XMLSchema#dateTime"
},
"publicKeyJwk": {
"@id": "https://w3id.org/security#publicKeyJwk",
"@type": "@json"
},
"secretKeyJwk": {
"@id": "https://w3id.org/security#secretKeyJwk",
"@type": "@json"
}
}
}
}
}
Loading

0 comments on commit cb5b922

Please sign in to comment.