forked from w3c/wot-thing-description
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwotsec.template.html
72 lines (64 loc) · 1.61 KB
/
wotsec.template.html
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>Web of Things (WoT) Security Ontology</title>
<script src='https://www.w3.org/Tools/respec/respec-w3c' class='remove'></script>
<script class='remove'>
var respecConfig = {
specStatus: "ED",
latestVersion: null,
editors: [{
name: "Victor Charpenay"
}, {
name: "Michael McCool"
}],
edDraftURI: "https://www.w3.org/2019/wot/security",
shortName: "wot-td-ontology"
};
</script>
</head>
<body>
<section id='abstract'>
<p>
This is required.
</p>
</section>
<section id='sotd'>
<p>
Validation of the document by the Working Group is expected by the end of June 2019.
</p>
</section>
<section>
<h2>Introduction</h2>
</section>
<!-- axioms rendered from RDF definitions -->
%s
<section>
<h2>Usage Examples</h2>
<section>
<h3>Extended Configuration</h3>
<aside class="example" title="Bearer token authentication as a JSON-LD verifiable presentation">
<pre>
{
"@context": [
"https://www.w3.org/wot/td/v1",
{
"cred": "https://www.w3.org/2018/credentials#",
"sec": "https://w3id.org/security#"
}
],
"securityDefinitions": {
"extendedBearer": {
"scheme": "bearer",
"format": "cred:VerifiablePresentation",
"alg": "sec:RsaSignature2018"
}
}
}
</pre>
</aside>
</section>
</section>
</body>
</html>