-
Notifications
You must be signed in to change notification settings - Fork 63
/
tm.template.html
108 lines (97 loc) · 4.23 KB
/
tm.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>Web of Things (WoT) Thing Model (TM) Ontology</title>
<script src='https://www.w3.org/Tools/respec/respec-w3c' class='remove'></script>
<script class='remove'>
var respecConfig = {
specStatus: "ED",
latestVersion: null,
// publishDate: "2023-12-05",
group: "wg/wot",
editors: [{
name: "Mahda Noura"
, company: "Siemens AG"
, companyURL: "http://www.siemens.com/"
}, {
name: "Sebastian Käbisch"
, company: "Siemens AG"
, companyURL: "http://www.siemens.com/"
}],
edDraftURI: "https://www.w3.org/2019/wot/td",
shortName: "wot-tm-ontology",
otherLinks: [{
key: "Ontology in RDF",
data: [
{
value: "Web of Things (WoT) Thing Model (TM) Ontology in RDF",
href: "tm.ttl",
}
]
}
]
};
</script>
<style>
span.indent {
margin-left: 2em;
}
</style>
</head>
<body>
<section id='abstract'>
<p>
The Thing Model (TM) ontology is an RDF axiomatization of the TM concepts,
one of the building blocks of the Web of Things (WoT). Besides providing an alternative
to the standard JSON representation format for TM documents, the TM ontology can also
be used to process contextual information on Things and for alignments with other
WoT-related ontologies.
</p>
</section>
<section id='sotd'>
</section>
<section>
<h2>Introduction</h2>
<p>
The TM ontology is an idiomatic RDF axiomatization of the <a href="https://www.w3.org/TR/wot-thing-description11/#thing-model">TM concepts</a>
, which can be used as a template for instantiating Thing Descriptions (TD)s. The TM ontology imports
the <a href="https://www.w3.org/2019/wot/td">TD</a> ontology.
</p>
<p>
Please note that the Turtle version of the ontology can be always obtained by doing content negotiation as explained in
<a href="https://www.w3.org/TR/2023/REC-wot-thing-description11-20231205/#json-ld-ctx-usage">Appendix D of the Thing
Description Recommendation</a>.
You can include <code>Accept: text/turtle</code> in the request to obtain the Turtle version of this ontology.
</p>
</section>
<section id="conformance"></section>
<section id="terminology">
<h2>Terminology</h2>
<p>The fundamental WoT terminology such as
<dfn class="lint-ignore">Thing</dfn>,
<dfn class="lint-ignore">Consumer</dfn>,
<dfn class="lint-ignore">Thing Description</dfn> (<dfn class="lint-ignore">TD</dfn>),
<dfn class="lint-ignore">Interaction Model</dfn>,
<dfn class="lint-ignore">Interaction Affordance</dfn>,
<dfn class="lint-ignore">Property</dfn>,
<dfn class="lint-ignore">Action</dfn>,
<dfn class="lint-ignore">Event</dfn>,
<dfn class="lint-ignore">Protocol Binding</dfn>,
<dfn class="lint-ignore">Servient</dfn>,
etc. is defined in <a href="https://www.w3.org/TR/wot-architecture/#terminology">Section 3</a>
of the WoT Architecture specification [[WOT-ARCHITECTURE]].
</p>
<p>
The Thing Description terminology such as
<dfn class="lint-ignore">TD Information Model</dfn>,
<dfn class="lint-ignore">TD Document</dfn>,
<dfn class="lint-ignore">Term</dfn> (<dfn class="lint-ignore">Vocabulary Term</dfn>),
etc. is defined in <a href="https://www.w3.org/TR/wot-thing-description/#terminology">Section 3</a>
of the WoT Thing Description specification [[WOT-THING-DESCRIPTION]].
</p>
</section>
<!-- axioms rendered from RDF definitions -->
%s
</body>
</html>