forked from Sphereon-Opensource/SSI-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.schema.json
More file actions
34 lines (34 loc) · 957 Bytes
/
Copy pathplugin.schema.json
File metadata and controls
34 lines (34 loc) · 957 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"IWellKnownDidVerifier": {
"components": {
"schemas": {
"IVerifyDomainLinkageArgs": {
"type": "object",
"properties": {
"didUrl": {
"type": "string"
},
"signatureVerification": {
"type": "string"
},
"onlyVerifyServiceDids": {
"type": "boolean"
},
"additionalProperties": false
},
"required": ["didUrl", "signatureVerification"],
"description": "Arguments needed for {@link IWellKnownDidVerifier.verifyDomainLinkage } "
}
},
"methods": {
"verifyDomainLinkage": {
"description": "Verifies the relationship between the controller of an origin and a DID",
"arguments": {
"$ref": "#/components/schemas/IVerifyDomainLinkageArgs"
},
"returnType": "object"
}
}
}
}
}