-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
2131 lines (2107 loc) · 90.2 KB
/
index.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="resources/primer.css" media="screen" /> <link rel="stylesheet" href="resources/rec.css" media="screen" /> <link rel="stylesheet" href="resources/extra.css" media="screen" /> <link rel="stylesheet" href="resources/owl.css" media="screen" /> <title>IoT dependencies ontology</title>
<!-- SCHEMA.ORG METADATA -->
<script type="application/ld+json">{"@context":"https://schema.org","@type":"TechArticle","url":"http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD","image":"http://vowl.visualdataweb.org/webvowl/#iri=http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD","name":"IoT dependencies ontology", "headline":"IoT-D reprensents IoT systems context data that allows inference of dependencies between IoT systems.", "datePublished":"04/04/2022", "version":"0.0.4", "author":[{"@type":"Person","name":"Amal GUITTOUM"}], "contributor":[{"@type":"Person","name":"François AISSAOUI"},{"@type":"Person","name":"Sébastien BOLLE"},{"@type":"Person","name":"Fabienne Boyer","url":"https://lig-membres.imag.fr/boyer/html/index.html"},{"@type":"Person","name":"Noel De Palma","url":"https://lig-membres.imag.fr/depalma/"}]}</script>
<script src="resources/jquery.js"></script>
<script src="resources/marked.min.js"></script>
<script>
function loadHash() {
jQuery(".markdown").each(function(el){jQuery(this).after(marked(jQuery(this).text())).remove()});
var hash = location.hash;
if($(hash).offset()!=null){
$('html, body').animate({scrollTop: $(hash).offset().top}, 0);
}
loadTOC();
}
function loadTOC(){
//process toc dynamically
var t='<h2>Table of contents</h2><ul>';i = 1;j=0;
jQuery(".list").each(function(){
if(jQuery(this).is('h2')){
if(j>0){
t+='</ul>';
j=0;
}
t+= '<li>'+i+'. <a href=#'+ jQuery(this).attr('id')+'>'+ jQuery(this).ignore("span").text()+'</a></li>';
i++;
}
if(jQuery(this).is('h3')){
if(j==0){
t+='<ul>';
}
j++;
t+= '<li>'+(i-1)+'.'+j+'. '+'<a href=#'+ jQuery(this).attr('id')+'>'+ jQuery(this).ignore("span").text()+'</a></li>';
}
});
t+='</ul>';
$("#toc").html(t);
}
$(function(){
loadHash();
}); $.fn.ignore = function(sel){
return this.clone().find(sel||">*").remove().end();
};
</script>
</head>
<body>
<div class="container">
<div class="head">
<div style="float:right">language <a href="index-en.html"><b>en</b></a> </div>
<h1>IoT-D: IoT dependencies ontology</h1>
<h2>Release 04/04/2022</h2>
<dl>
<dt>This version:</dt>
<dd><a href="0.0.4">0.0.4</a></dd>
<dt>Latest version:</dt>
<dd><a href="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD">http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD</a></dd>
<dt>Revision:</dt>
<dd>0.0.4</dd>
<dt>Authors:</dt>
<dd>Amal GUITTOUM, <a href="https://www.orange.com/en"> Orange Innovation</a>, <a href="https://www.liglab.fr/en">LIG Lab</a> <a href="mailto:[email protected]">✉</a></dd>
<dt>Contributors:</dt>
<dd>François AISSAOUI, <a href="https://www.orange.com/en"> Orange Innovation</a> <a href="mailto:[email protected]">✉</a></dd><dd>Sébastien BOLLE, <a href="https://www.orange.com/en"> Orange Innovation</a><a href="mailto:[email protected]">✉</a></dd><dd><a href="https://lig-membres.imag.fr/boyer/html/index.html">Fabienne Boyer</a>, <a href="https://www.liglab.fr/en">LIG Lab</a> <a href="mailto:[email protected]">✉</a></dd><dd><a href="https://lig-membres.imag.fr/depalma/">Noel De Palma</a>, <a href="https://www.liglab.fr/en">LIG Lab</a> <a href="mailto:[email protected]">✉</a></dd>
<dt>Imported Ontologies:</dt>
<dd><a href="http://elite.polito.it/ontologies/eupont.owl">EuPont</a></dd><dd><a href="https://saref.etsi.org/core/">SAREF</a></dd><dd><a href="http://www.data-knowledge.org/dk/">DK</a></dd>
<dt>Download serialization:</dt><dd><span><a href="ontology.jsonld" target="_blank"><img src="https://img.shields.io/badge/Format-JSON_LD-blue.svg" alt="JSON-LD" /></a> </span><span><a href="ontology.rdf" target="_blank"><img src="https://img.shields.io/badge/Format-RDF/XML-blue.svg" alt="RDF/XML" /></a> </span><span><a href="ontology.nt" target="_blank"><img src="https://img.shields.io/badge/Format-N_Triples-blue.svg" alt="N-Triples" /></a> </span><span><a href="ontology.ttl" target="_blank"><img src="https://img.shields.io/badge/Format-TTL-blue.svg" alt="TTL" /></a> </span></dd><dt>License:</dt><dd><a href="http://insertlicenseURIhere.org" target="_blank"><img src="https://img.shields.io/badge/License-license%20name%20goes%20here-blue.svg" alt="http://insertlicenseURIhere.org" /></a>
</dd><dt>Visualization:</dt><dd><a href="webvowl/index.html#" target="_blank"><img src="https://img.shields.io/badge/Visualize_with-WebVowl-blue.svg" alt="Visualize with WebVowl" /></a></dd>
<!-- <dt>Evaluation:</dt><dd><a href="OOPSEvaluation/oopsEval.html#" target="_blank"><img src="https://img.shields.io/badge/Evaluate_with-OOPS! (OntOlogy Pitfall Scanner!)-blue.svg" alt="Evaluate with OOPS!" /></a></dd> --><dt>Cite as:</dt>
<dd> IoT dependencies ontology. Revision: 0.0.4.</dd>
</dl>
<hr/>
</div>
<div class="status">
<div>
<span>Ontology Documentation</span>
</div>
</div> <div id="abstract"><h2>Abstract</h2><span class="markdown">
IoT-D ontology reprensents contextual data that allows inference of dependencies between IoT devices across heteregenous DM solutions managed by multiple actors.</span>
</div>
<div id="toc"></div>
<!--INTRODUCTION SECTION-->
<div id="introduction"><h2 id="intro" class="list">Introduction <span class="backlink"> back to <a href="#toc">ToC</a></span></h2>
<span class="markdown">
IoT-D ontology describes IoT dependencies and their context that are distributed across heterogenous DM solutions. It allows the documentation and the characterization of IoT dependencies at diffrent levels at the device, the application, and the physical environment levels. It is designed to supports decision-making when addressing dependencies-related threats such as Cascading Failure.</span>
<div id="namespacedeclarations">
<h3 id="ns" class="list">Namespace declarations</h3>
<div id="ns" align="center">
<table>
<caption> <a href="#ns"> Table 1</a>: Namespaces used in the document </caption>
<tbody>
<tr><td><b>IoTd</b></td><td><http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD></td></tr>
<tr><td></td><td></td></tr>
<tr><td><b>ns</b></td><td><http://www.w3.org/2003/06/sw-vocab-status/ns></td></tr>
<tr><td><b>owl</b></td><td><http://www.w3.org/2002/07/owl></td></tr>
<tr><td><b>dk</b></td><td><http://www.data-knowledge.org/dk></td></tr>
<tr><td><b>xsd</b></td><td><http://www.w3.org/2001/XMLSchema></td></tr>
<tr><td><b>rdfs</b></td><td><http://www.w3.org/2000/01/rdf-schema></td></tr>
<tr><td><b>eupont</b></td><td><http://elite.polito.it/ontologies/eupont.owl></td></tr>
<tr><td><b>ns1</b></td><td><http://creativecommons.org/ns></td></tr>
<tr><td><b>core</b></td><td><https://saref.etsi.org/core></td></tr>
<tr><td><b>rdf</b></td><td><http://www.w3.org/1999/02/22-rdf-syntax-ns></td></tr>
<tr><td><b>terms</b></td><td><http://purl.org/dc/terms></td></tr>
<tr><td><b>xml</b></td><td><http://www.w3.org/XML/1998/namespace></td></tr>
<tr><td><b>vann</b></td><td><http://purl.org/vocab/vann></td></tr>
<tr><td><b>wot</b></td><td><http://xmlns.com/wot/0.1></td></tr>
<tr><td><b>foaf</b></td><td><http://xmlns.com/foaf/0.1></td></tr>
<tr><td><b>dc</b></td><td><http://purl.org/dc/elements/1.1></td></tr>
</tbody>
</table>
</div>
</div>
</div>
<!--OVERVIEW SECTION-->
<div id="overview"><h2 id="overv" class="list">IoT dependencies ontology: Overview <span class="backlink"> back to <a href="#toc">ToC</a></span></h2>
<span class="markdown">
This ontology has the following classes and properties.</span>
<h4>Classes</h4>
<ul xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="hlist">
<li>
<a href="#Action"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Action">
<span>action</span>
</a>
</li>
<li>
<a href="#Actuator"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Actuator">
<span>actuator</span>
</a>
</li>
<li>
<a href="#Application"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Application">
<span>application</span>
</a>
</li>
<li>
<a href="#Broker"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Broker">
<span>broker</span>
</a>
</li>
<li>
<a href="#ComplexTrigger"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#ComplexTrigger">
<span>complex trigger</span>
</a>
</li>
<li>
<a href="#ConnectivityDevice"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#ConnectivityDevice">
<span>connectivity device</span>
</a>
</li>
<li>
<a href="#ConnectivityService"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#ConnectivityService">
<span>connectivity service</span>
</a>
</li>
<li>
<a href="#http://www.data-knowledge.org/dk/DataFlow" title="http://www.data-knowledge.org/dk/DataFlow">Data Flow</a>
</li>
<li>
<a href="#DataFlow"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#DataFlow">Data Flow</a>
</li>
<li>
<a href="#Device"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Device">Device</a>
</li>
<li>
<a href="#FeatureOfInterest"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#FeatureOfInterest">
<span>feature of interest</span>
</a>
</li>
<li>
<a href="#IoTDevice"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#IoTDevice">
<span>io t device</span>
</a>
</li>
<li>
<a href="#Processor"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Processor">
<span>processor</span>
</a>
</li>
<li>
<a href="#Property"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Property">
<span>property</span>
</a>
</li>
<li>
<a href="#http://elite.polito.it/ontologies/eupont.owl#Rule"
title="http://elite.polito.it/ontologies/eupont.owl#Rule">
<span>rule</span>
</a>
</li>
<li>
<a href="#Sensor"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Sensor">
<span>sensor</span>
</a>
</li>
<li>
<a href="#Service"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Service">
<span>service</span>
</a>
</li>
<li>
<a href="#Smokesensor"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Smokesensor">
<span>smokesensor</span>
</a>
</li>
<li>
<a href="#State"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#State">
<span>state</span>
</a>
</li>
<li>
<a href="#Switch"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Switch">
<span>switch</span>
</a>
</li>
<li>
<a href="#Temperaturesensor"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Temperaturesensor">
<span>temperaturesensor</span>
</a>
</li>
<li>
<a href="#Trigger"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Trigger">
<span>trigger</span>
</a>
</li>
<li>
<a href="#triggerActionPlateform"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#triggerActionPlateform">
<span>trigger action plateform</span>
</a>
</li>
</ul><h4>Object Properties</h4><ul xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="hlist">
<li>
<a href="#allowsAction"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#allowsAction">
<span>allows action</span>
</a>
</li>
<li>
<a href="#consumes"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#consumes">
<span>consumes</span>
</a>
</li>
<li>
<a href="#controlsProperty"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#controlsProperty">
<span>controls property</span>
</a>
</li>
<li>
<a href="#http://www.data-knowledge.org/dk/flowsFrom" title="http://www.data-knowledge.org/dk/flowsFrom">flows from</a>
</li>
<li>
<a href="#flowsFrom"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#flowsFrom">
<span>flows from</span>
</a>
</li>
<li>
<a href="#http://www.data-knowledge.org/dk/flowsTo" title="http://www.data-knowledge.org/dk/flowsTo">flows to</a>
</li>
<li>
<a href="#flowsTo"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#flowsTo">
<span>flows to</span>
</a>
</li>
<li>
<a href="#hasAction"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#hasAction">
<span>has action</span>
</a>
</li>
<li>
<a href="#hasApplicationAction"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#hasApplicationAction">
<span>has application action</span>
</a>
</li>
<li>
<a href="#hasChildTrigger"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#hasChildTrigger">
<span>has child trigger</span>
</a>
</li>
<li>
<a href="#hasConnectivityDependency"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#hasConnectivityDependency">
<span>has connectivity dependency</span>
</a>
</li>
<li>
<a href="#hasEnvironmentDependencyTo"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#hasEnvironmentDependencyTo">
<span>has environment dependency to</span>
</a>
</li>
<li>
<a href="#hasImplicitServiceDependencyTo"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#hasImplicitServiceDependencyTo">
<span>has implicit service dependency to</span>
</a>
</li>
<li>
<a href="#hasProperty"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#hasProperty">
<span>has property</span>
</a>
</li>
<li>
<a href="#hasRule"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#hasRule">
<span>has rule</span>
</a>
</li>
<li>
<a href="#hasServiceDependencyTo"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#hasServiceDependencyTo">
<span>has service dependency to</span>
</a>
</li>
<li>
<a href="#hasState"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#hasState">
<span>has state</span>
</a>
</li>
<li>
<a href="#hasStateDependencyTo"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#hasStateDependencyTo">
<span>has state dependency to</span>
</a>
</li>
<li>
<a href="#hasTrigger"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#hasTrigger">
<span>has trigger</span>
</a>
</li>
<li>
<a href="#measuresProperty"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#measuresProperty">
<span>measures property</span>
</a>
</li>
<li>
<a href="#offers"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#offers">
<span>offers</span>
</a>
</li>
<li>
<a href="#relatedTo"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#relatedTo">
<span>related to</span>
</a>
</li>
</ul><h4>Data Properties</h4><ul xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="hlist">
<li>
<a href="#hasDeviceName"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#hasDeviceName">
<span>has device name</span>
</a>
</li>
<li>
<a href="#hasDeviceTypeName"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#hasDeviceTypeName">
<span>has device type name</span>
</a>
</li>
<li>
<a href="#hasIPAddress"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#hasIPAddress">
<span>has i p address</span>
</a>
</li>
<li>
<a href="#hasMacAddress"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#hasMacAddress">
<span>has mac address</span>
</a>
</li>
<li>
<a href="#hasManufacturerName"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#hasManufacturerName">
<span>has manufacturer name</span>
</a>
</li>
<li>
<a href="#hasServiceName"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#hasServiceName">
<span>has service name</span>
</a>
</li>
</ul><iframe align="center" width="100%" height ="500px" src="webvowl/index.html"></iframe>
</div>
<!--DESCRIPTION SECTION-->
<div id="description"><h2 id="desc" class="list">IoT dependencies ontology: Description <span class="backlink"> back to <a href="#toc">ToC</a></span></h2>
<span class="markdown">
Conceptually, the IoT-D ontology includes three modules: 1) Device-Device Interaction module: describes the capabilities of IoT devices in terms of service provisioning and usage to model the context of direct dependencies. It is based on the enrichment of the SAREF ontology by describing the direct exchange of services between devices through the relation IoTD:consumes and specializing the saref:Service and saref:Device to account for connectivity devices and services, allowing inference of service and connectivity dependencies; 2) Device-Environment interaction module: represents, using the SAREF ontology, the interaction of devices within the physical environment through sensing and ac- tuation, enabling the inference of environment-based dependencies; 3) Device- Application interaction module: describes device interactions in IoT applications. Based on the EuPont ontology, an IoT application is represented using a set of IoTD:Rule and IoTD:Action that are executed by saref:Service. IoTD:Rule is in the form if (IoTD:Trigger ) then IoTD:Action. Triggers are related to a change in devices state saref:State. This trigger-action-based model allows representing state dependencies between devices i.e. when an IoT application acts on one device based on the state of another. Also, it allows the representation of implicit service dependencies in the form of data flows between IoTD:Action, using the class dk:DataFlow of the DK Ontology.</span>
<figure>
<img src="modules.PNG" width="900"
height="500">
<figcaption class="list">IoT-D Modules</figcaption>
</figure>
</div>
<!--CROSSREF SECTION-->
<div id="crossref"><h2 id="crossreference" class="list">Cross-reference for IoT dependencies ontology classes, object properties and data properties <span class="backlink"> back to <a href="#toc">ToC</a></span></h2>
This section provides details for each class and property defined by IoT dependencies ontology.
<div xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" id="classes">
<h3 id="classes-headline" class="list">Classes</h3>
<ul class="hlist">
<li>
<a href="#Action"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Action">
<span>action</span>
</a>
</li>
<li>
<a href="#Actuator"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Actuator">
<span>actuator</span>
</a>
</li>
<li>
<a href="#Application"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Application">
<span>application</span>
</a>
</li>
<li>
<a href="#Broker"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Broker">
<span>broker</span>
</a>
</li>
<li>
<a href="#ComplexTrigger"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#ComplexTrigger">
<span>complex trigger</span>
</a>
</li>
<li>
<a href="#ConnectivityDevice"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#ConnectivityDevice">
<span>connectivity device</span>
</a>
</li>
<li>
<a href="#ConnectivityService"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#ConnectivityService">
<span>connectivity service</span>
</a>
</li>
<li>
<a href="#http://www.data-knowledge.org/dk/DataFlow" title="http://www.data-knowledge.org/dk/DataFlow">Data Flow</a>
</li>
<li>
<a href="#DataFlow"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#DataFlow">Data Flow</a>
</li>
<li>
<a href="#Device"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Device">Device</a>
</li>
<li>
<a href="#FeatureOfInterest"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#FeatureOfInterest">
<span>feature of interest</span>
</a>
</li>
<li>
<a href="#IoTDevice"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#IoTDevice">
<span>io t device</span>
</a>
</li>
<li>
<a href="#Processor"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Processor">
<span>processor</span>
</a>
</li>
<li>
<a href="#Property"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Property">
<span>property</span>
</a>
</li>
<li>
<a href="#http://elite.polito.it/ontologies/eupont.owl#Rule"
title="http://elite.polito.it/ontologies/eupont.owl#Rule">
<span>rule</span>
</a>
</li>
<li>
<a href="#Sensor"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Sensor">
<span>sensor</span>
</a>
</li>
<li>
<a href="#Service"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Service">
<span>service</span>
</a>
</li>
<li>
<a href="#Smokesensor"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Smokesensor">
<span>smokesensor</span>
</a>
</li>
<li>
<a href="#State"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#State">
<span>state</span>
</a>
</li>
<li>
<a href="#Switch"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Switch">
<span>switch</span>
</a>
</li>
<li>
<a href="#Temperaturesensor"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Temperaturesensor">
<span>temperaturesensor</span>
</a>
</li>
<li>
<a href="#Trigger"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Trigger">
<span>trigger</span>
</a>
</li>
<li>
<a href="#triggerActionPlateform"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#triggerActionPlateform">
<span>trigger action plateform</span>
</a>
</li>
</ul>
<div class="entity" id="Action">
<h3>action<sup class="type-c" title="class">c</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Action</p>
<div class="comment">
<span class="markdown">An action to perform by calling a service of an IoT device.</span>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd>
<a href="http://elite.polito.it/ontologies/eupont.owl#Action"
target="_blank"
title="http://elite.polito.it/ontologies/eupont.owl#Action">action</a>
<sup class="type-c" title="class">c</sup>
</dd>
<dt>is in range of</dt>
<dd>
<a href="#allowsAction"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#allowsAction">allows action</a>
<sup class="type-op" title="object property">op</sup>, <a href="#http://www.data-knowledge.org/dk/flowsFrom" title="http://www.data-knowledge.org/dk/flowsFrom">flows from</a>
<sup class="type-op" title="object property">op</sup>, <a href="#flowsFrom"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#flowsFrom">flows from</a>
<sup class="type-op" title="object property">op</sup>, <a href="#http://www.data-knowledge.org/dk/flowsTo" title="http://www.data-knowledge.org/dk/flowsTo">flows to</a>
<sup class="type-op" title="object property">op</sup>, <a href="#flowsTo"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#flowsTo">flows to</a>
<sup class="type-op" title="object property">op</sup>, <a href="#hasAction"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#hasAction">has action</a>
<sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="Actuator">
<h3>actuator<sup class="type-c" title="class">c</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Actuator</p>
<dl class="description">
<dt>is equivalent to</dt>
<dd>
<a href="https://saref.etsi.org/core/Actuator"
target="_blank"
title="https://saref.etsi.org/core/Actuator">actuator</a>
<sup class="type-c" title="class">c</sup>
</dd>
<dt>has super-classes</dt>
<dd>
<a href="#Device"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Device">Device</a>
<sup class="type-c" title="class">c</sup>, <a href="#IoTDevice"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#IoTDevice">io t device</a>
<sup class="type-c" title="class">c</sup>
</dd>
<dt>has sub-classes</dt>
<dd>
<a href="#Switch"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Switch">switch</a>
<sup class="type-c" title="class">c</sup>
</dd>
<dt>is in domain of</dt>
<dd>
<a href="#controlsProperty"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#controlsProperty">controls property</a>
<sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="Application">
<h3>application<sup class="type-c" title="class">c</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Application</p>
<div class="comment">
<span class="markdown">An IoT application that compose IoT devices services to create added value/complex services, it can be a trigger-action plateform.</span>
</div>
<dl class="description">
<dt>has sub-classes</dt>
<dd>
<a href="#Broker"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Broker">broker</a>
<sup class="type-c" title="class">c</sup>, <a href="#triggerActionPlateform"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#triggerActionPlateform">trigger action plateform</a>
<sup class="type-c" title="class">c</sup>
</dd>
<dt>is in domain of</dt>
<dd>
<a href="#hasApplicationAction"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#hasApplicationAction">has application action</a>
<sup class="type-op" title="object property">op</sup>, <a href="#hasRule"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#hasRule">has rule</a>
<sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="Broker">
<h3>broker<sup class="type-c" title="class">c</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Broker</p>
<div class="comment">
<span class="markdown">broker that connect equipments.</span>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd>
<a href="#Application"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Application">application</a>
<sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
<div class="entity" id="ComplexTrigger">
<h3>complex trigger<sup class="type-c" title="class">c</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#ComplexTrigger</p>
<dl class="description">
<dt>has super-classes</dt>
<dd>
<a href="#Trigger"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Trigger">trigger</a>
<sup class="type-c" title="class">c</sup>
</dd>
<dt>is in domain of</dt>
<dd>
<a href="#hasChildTrigger"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#hasChildTrigger">has child trigger</a>
<sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="ConnectivityDevice">
<h3>connectivity device<sup class="type-c" title="class">c</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#ConnectivityDevice</p>
<div class="comment">
<span class="markdown">A device that connectes home devices to the internet like: gateway, wifiRepeater, hub.</span>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd>
<a href="#Device"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Device">Device</a>
<sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
<div class="entity" id="ConnectivityService">
<h3>connectivity service<sup class="type-c" title="class">c</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#ConnectivityService</p>
<div class="comment">
<span class="markdown">A service offred by a connectivityDevice.</span>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd>
<a href="https://saref.etsi.org/core/Service"
target="_blank"
title="https://saref.etsi.org/core/Service">service</a>
<sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
<div class="entity" id="http://www.data-knowledge.org/dk/DataFlow">
<h3>Data Flow<sup class="type-c" title="class">c</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://www.data-knowledge.org/dk/DataFlow</p>
<div class="comment">
<span class="markdown">Indicates the actual connection and data exchange between two actions in an Iot application</span>
</div>
<dl class="description">
<dt>has sub-classes</dt>
<dd>
<a href="#DataFlow"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#DataFlow">Data Flow</a>
<sup class="type-c" title="class">c</sup>
</dd>
<dt>is in domain of</dt>
<dd>
<a href="#http://www.data-knowledge.org/dk/flowsFrom" title="http://www.data-knowledge.org/dk/flowsFrom">flows from</a>
<sup class="type-op" title="object property">op</sup>, <a href="#http://www.data-knowledge.org/dk/flowsTo" title="http://www.data-knowledge.org/dk/flowsTo">flows to</a>
<sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="DataFlow">
<h3>Data Flow<sup class="type-c" title="class">c</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#DataFlow</p>
<div class="comment">
<span class="markdown">Indicates the actual connection and data exchange between actions in one application.</span>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd>
<a href="#http://www.data-knowledge.org/dk/DataFlow" title="http://www.data-knowledge.org/dk/DataFlow">Data Flow</a>
<sup class="type-c" title="class">c</sup>
</dd>
<dt>is in domain of</dt>
<dd>
<a href="#flowsFrom"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#flowsFrom">flows from</a>
<sup class="type-op" title="object property">op</sup>, <a href="#flowsTo"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#flowsTo">flows to</a>
<sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="Device">
<h3>Device<sup class="type-c" title="class">c</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Device</p>
<div class="comment">
<span class="markdown">A tangible object designed to accomplish a particular task. In order to accomplish this task, the device performs one or more functions. For example, a washing machine is designed to wash (task) and to accomplish this task it performs a start and stop function.</span>
</div>
<dl class="description">
<dt>is equivalent to</dt>
<dd>
<a href="https://saref.etsi.org/core/Device"
target="_blank"
title="https://saref.etsi.org/core/Device">device</a>
<sup class="type-c" title="class">c</sup>
</dd>
<dt>has sub-classes</dt>
<dd>
<a href="#Actuator"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Actuator">actuator</a>
<sup class="type-c" title="class">c</sup>, <a href="#ConnectivityDevice"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#ConnectivityDevice">connectivity device</a>
<sup class="type-c" title="class">c</sup>, <a href="#IoTDevice"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#IoTDevice">io t device</a>
<sup class="type-c" title="class">c</sup>, <a href="#Processor"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Processor">processor</a>
<sup class="type-c" title="class">c</sup>, <a href="#Sensor"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Sensor">sensor</a>
<sup class="type-c" title="class">c</sup>
</dd>
<dt>is in domain of</dt>
<dd>
<a href="#hasImplicitServiceDependencyTo"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#hasImplicitServiceDependencyTo">has implicit service dependency to</a>
<sup class="type-op" title="object property">op</sup>, <a href="#hasState"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#hasState">has state</a>
<sup class="type-op" title="object property">op</sup>, <a href="#offers"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#offers">offers</a>
<sup class="type-op" title="object property">op</sup>
</dd>
<dt>is in range of</dt>
<dd>
<a href="#hasImplicitServiceDependencyTo"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#hasImplicitServiceDependencyTo">has implicit service dependency to</a>
<sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="FeatureOfInterest">
<h3>feature of interest<sup class="type-c" title="class">c</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#FeatureOfInterest</p>
<dl class="description">
<dt>is equivalent to</dt>
<dd>
<a href="https://saref.etsi.org/core/FeatureOfInterest"
target="_blank"
title="https://saref.etsi.org/core/FeatureOfInterest">feature of interest</a>
<sup class="type-c" title="class">c</sup>
</dd>
<dt>is in domain of</dt>
<dd>
<a href="#hasProperty"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#hasProperty">has property</a>
<sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="IoTDevice">
<h3>io t device<sup class="type-c" title="class">c</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#IoTDevice</p>
<div class="comment">
<span class="markdown">A device that is connected to the internet to share data it can be ether a sensor/actuator/processor or compositition.</span>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd>
<a href="#Device"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Device">Device</a>
<sup class="type-c" title="class">c</sup>
</dd>
<dt>has sub-classes</dt>
<dd>
<a href="#Actuator"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Actuator">actuator</a>
<sup class="type-c" title="class">c</sup>, <a href="#Sensor"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Sensor">sensor</a>
<sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
<div class="entity" id="Processor">
<h3>processor<sup class="type-c" title="class">c</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Processor</p>
<div class="comment">
<span class="markdown">A device that has the capability to perform computation operations on data.</span>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd>
<a href="#Device"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Device">Device</a>
<sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
<div class="entity" id="Property">
<h3>property<sup class="type-c" title="class">c</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Property</p>
<div class="comment">
<span class="markdown">A quality of a feature of interest that can be measured; an aspect of a feature of interest that is intrinsic to and cannot exist without the feature</span>
</div>
<dl class="description">
<dt>is equivalent to</dt>
<dd>
<a href="https://saref.etsi.org/core/Property"
target="_blank"
title="https://saref.etsi.org/core/Property">property</a>
<sup class="type-c" title="class">c</sup>
</dd>
<dt>is in range of</dt>
<dd>
<a href="#controlsProperty"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#controlsProperty">controls property</a>
<sup class="type-op" title="object property">op</sup>, <a href="#hasProperty"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#hasProperty">has property</a>
<sup class="type-op" title="object property">op</sup>, <a href="#measuresProperty"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#measuresProperty">measures property</a>
<sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="http://elite.polito.it/ontologies/eupont.owl#Rule">
<h3>rule<sup class="type-c" title="class">c</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://elite.polito.it/ontologies/eupont.owl#Rule</p>
<dl class="description">
<dt>is equivalent to</dt>
<dd>
<a href="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Rule"
target="_blank"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Rule">rule</a>
<sup class="type-c" title="class">c</sup>
</dd>
<dt>is in range of</dt>
<dd>
<a href="#hasRule"
title="http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#hasRule">has rule</a>
<sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="Sensor">
<h3>sensor<sup class="type-c" title="class">c</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://www.semanticweb.org/OrangeLab/ontologies/2021/9/IoTD#Sensor</p>
<dl class="description">
<dt>is equivalent to</dt>
<dd>
<a href="https://saref.etsi.org/core/Sensor"
target="_blank"
title="https://saref.etsi.org/core/Sensor">sensor</a>
<sup class="type-c" title="class">c</sup>
</dd>