-
Notifications
You must be signed in to change notification settings - Fork 2
/
swot-o.owl
1645 lines (998 loc) · 72.8 KB
/
swot-o.owl
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
<?xml version="1.0"?>
<rdf:RDF xmlns="http://www.w3.org/2000/01/rdf-schema#"
xml:base="http://www.w3.org/2000/01/rdf-schema"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:ns="http://www.w3.org/2003/06/sw-vocab-status/ns#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:msm="http://iserve.kmi.open.ac.uk/ns/msm#"
xmlns:cpannotationschema="http://www.ontologydesignpatterns.org/schemas/cpannotationschema.owl#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:voaf="http://purl.org/vocommons/voaf#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:ssn="http://purl.oclc.org/NET/ssnx/ssn#"
xmlns:dct="http://purl.org/dc/terms/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:DUL="http://www.loa-cnr.it/ontologies/DUL.owl#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:swot="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<owl:Ontology rdf:about="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl">
<comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Please report any errors to the author's email - "[email protected]" or "[email protected]"</comment>
<dc:creator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Yunong Yang and Zhenyu Wu, BUPT</dc:creator>
<dc:title>Semantic Web of Things Ontology</dc:title>
<comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">To provide a uniform ontology of CPS applications, the SWoT base ontology (SWoT-O) is mainly referred to and extended from SSN ontology, as well as reusing other IoT ontologies</comment>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://creativecommons.org/ns#license -->
<owl:AnnotationProperty rdf:about="http://creativecommons.org/ns#license"/>
<!-- http://purl.org/dc/elements/1.1/creator -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/creator"/>
<!-- http://purl.org/dc/elements/1.1/date -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/date"/>
<!-- http://purl.org/dc/elements/1.1/identifier -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/identifier"/>
<!-- http://purl.org/dc/elements/1.1/rights -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/rights"/>
<!-- http://purl.org/dc/elements/1.1/source -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/source"/>
<!-- http://purl.org/dc/elements/1.1/title -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/title"/>
<!-- http://purl.org/dc/terms/created -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/created"/>
<!-- http://purl.org/dc/terms/modified -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/modified"/>
<!-- http://www.w3.org/2000/01/rdf-schema#comment -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#comment"/>
<!-- http://www.w3.org/2000/01/rdf-schema#isDefinedBy -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#isDefinedBy"/>
<!-- http://www.w3.org/2000/01/rdf-schema#label -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#label"/>
<!-- http://www.w3.org/2000/01/rdf-schema#seeAlso -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#seeAlso"/>
<!-- https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#changeStateTo -->
<owl:AnnotationProperty rdf:about="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#changeStateTo"/>
<!-- https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#defaultObserved -->
<owl:AnnotationProperty rdf:about="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#defaultObserved"/>
<!-- https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#equalsProcess -->
<owl:AnnotationProperty rdf:about="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#equalsProcess"/>
<!-- https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#hasIntInfl -->
<owl:AnnotationProperty rdf:about="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#hasIntInfl"/>
<!-- https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#hasNegInfl -->
<owl:AnnotationProperty rdf:about="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#hasNegInfl">
<swot:equalsProcess rdf:resource="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#NegativeCorrelationProcess"/>
<subPropertyOf rdf:resource="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#hasIntInfl"/>
</owl:AnnotationProperty>
<!-- https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#hasPosInfl -->
<owl:AnnotationProperty rdf:about="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#hasPosInfl">
<swot:equalsProcess rdf:resource="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#PositiveCorrelationProcess"/>
<subPropertyOf rdf:resource="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#hasIntInfl"/>
</owl:AnnotationProperty>
<!-- https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#highThreshold -->
<owl:AnnotationProperty rdf:about="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#highThreshold"/>
<!-- https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#lowThreshold -->
<owl:AnnotationProperty rdf:about="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#lowThreshold"/>
<!-- https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#optionalProp -->
<owl:AnnotationProperty rdf:about="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#optionalProp"/>
<!-- https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#requiresProperty -->
<owl:AnnotationProperty rdf:about="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#requiresProperty"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://iserve.kmi.open.ac.uk/ns/msm#hasOperation -->
<owl:ObjectProperty rdf:about="http://iserve.kmi.open.ac.uk/ns/msm#hasOperation"/>
<!-- http://purl.oclc.org/NET/ssnx/ssn#attachedSystem -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#attachedSystem">
<subPropertyOf rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#isLocationOf"/>
<owl:inverseOf rdf:resource="http://purl.oclc.org/NET/ssnx/ssn#onPlatform"/>
<comment>Relation between a Platform and any Systems (e.g., Sensors) that are attached to the Platform.</comment>
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>attached system</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Deploy#PlatformSite</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#deployedOnPlatform -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#deployedOnPlatform">
<subPropertyOf rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#hasParticipant"/>
<owl:inverseOf rdf:resource="http://purl.oclc.org/NET/ssnx/ssn#inDeployment"/>
<comment>Relation between a deployment and the platform on which the system was deployed.</comment>
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>deployed on platform</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Deploy#Deployment</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#deployedSystem -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#deployedSystem">
<subPropertyOf rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#hasParticipant"/>
<owl:inverseOf rdf:resource="http://purl.oclc.org/NET/ssnx/ssn#hasDeployment"/>
<comment>Relation between a deployment and the deployed system.</comment>
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>deployed system</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Deploy#Deployment</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#deploymentProcessPart -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#deploymentProcessPart">
<subPropertyOf rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#hasPart"/>
<comment>Has part relation between a deployment process and its constituent processes.</comment>
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>deployment process part</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Deploy#Deployment</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#detects -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#detects">
<comment>A relation from a sensor to the Stimulus that the sensor can detect.
The Stimulus itself will be serving as a proxy for (see isProxyOf) some observable property.</comment>
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>detects</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Skeleton#Skeleton</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#endTime -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#endTime">
<subPropertyOf rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#hasRegion"/>
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>end time</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Base#Time</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#featureOfInterest -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#featureOfInterest">
<subPropertyOf rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#isSettingFor"/>
<dc:source>skos:exactMatch 'featureOfInterest' [O&M - ISO/DIS 19156]
http://portal.opengeospatial.org/files/?artifact_id=41579</dc:source>
<comment>A relation between an observation and the entity whose quality was observed. For example, in an observation of the weight of a person, the feature of interest is the person and the quality is weight.</comment>
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>feature of interest</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Skeleton#Skeleton</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#forProperty -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#forProperty">
<comment>A relation between some aspect of a sensing entity and a property. For example, from a sensor to the properties it can observe, or from a deployment to the properties it was installed to observe. Also from a measurement capability to the property the capability is described for. (Used in conjunction with ofFeature).</comment>
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>for property</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Skeleton#Skeleton</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#hasDeployment -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#hasDeployment">
<subPropertyOf rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#isParticipantIn"/>
<comment>Relation between a System and a Deployment, recording that the System/Sensor was deployed in that Deployment.</comment>
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>has deployment</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Deploy#Deployment</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#hasInput -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#hasInput">
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>has input</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Model#Process</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#hasMeasurementCapability -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#hasMeasurementCapability">
<subPropertyOf rdf:resource="http://purl.oclc.org/NET/ssnx/ssn#hasProperty"/>
<comment>Relation from a Sensor to a MeasurementCapability describing the measurement properties of the sensor.</comment>
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>has measurement capability</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Sensor#MeasuringCapability</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#hasMeasurementProperty -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#hasMeasurementProperty">
<subPropertyOf rdf:resource="http://purl.oclc.org/NET/ssnx/ssn#hasProperty"/>
<comment>Relation from a MeasurementCapability to a MeasurementProperty. For example, to an accuracy (see notes at MeasurementCapability).</comment>
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>has measurement property</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Sensor#MeasuringCapability</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#hasOutput -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#hasOutput">
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>has output</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Model#Process</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#hasProperty -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#hasProperty">
<subPropertyOf rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#hasQuality"/>
<owl:inverseOf rdf:resource="http://purl.oclc.org/NET/ssnx/ssn#isPropertyOf"/>
<comment>A relation between a FeatureOfInterest and a Property of that feature.</comment>
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>has property</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Skeleton#Skeleton</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#hasSubSystem -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#hasSubSystem">
<subPropertyOf rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#hasPart"/>
<comment>Haspart relation between a system and its parts.</comment>
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>has subsystem</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Model#System</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#hasSurvivalProperty -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#hasSurvivalProperty">
<subPropertyOf rdf:resource="http://purl.oclc.org/NET/ssnx/ssn#hasProperty"/>
<comment>Relation from a SurvivalRange to a Property describing the survial range of a system. For example, to the temperature extreme that a system can withstand before being considered damaged.</comment>
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>has survival property</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Deploy#OperatingRestriction</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#hasSurvivalRange -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#hasSurvivalRange">
<subPropertyOf rdf:resource="http://purl.oclc.org/NET/ssnx/ssn#hasProperty"/>
<comment>A Relation from a System to a SurvivalRange.</comment>
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>has survival range</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Deploy#OperatingRestriction</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#hasValue -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#hasValue">
<subPropertyOf rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#hasRegion"/>
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>has value</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Base#Data</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#implementedBy -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#implementedBy">
<subPropertyOf rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#describes"/>
<owl:inverseOf rdf:resource="http://purl.oclc.org/NET/ssnx/ssn#implements"/>
<comment>A relation between the description of an algorithm, procedure or method and an entity that implements that method in some executable way. For example, between a scientific measuring method and a sensor the senses via that method.</comment>
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>implemented by</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Skeleton#Skeleton</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#implements -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#implements">
<subPropertyOf rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#isDescribedBy"/>
<comment>A relation between an entity that implements a method in some executable way and the description of an algorithm, procedure or method. For example, between a Sensor and the scientific measuring method that the Sensor uses to observe a Property.</comment>
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>implements</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Skeleton#Skeleton</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#inCondition -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#inCondition">
<comment>Describes the prevailing environmental conditions for MeasurementCapabilites, OperatingConditions and SurvivalRanges. Used for example to say that a sensor has a particular accuracy in particular conditions. (see also MeasurementCapability)</comment>
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>in condition</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Base#ConstraintBlock</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#inDeployment -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#inDeployment">
<subPropertyOf rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#isParticipantIn"/>
<comment>Relation between a Platform and a Deployment, recording that the object was used as a platform for a system/sensor for a particular deployment: as in this PhysicalObject is acting as a Platform inDeployment Deployment.</comment>
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>in deployment</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Deploy#Deployment</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#isProducedBy -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#isProducedBy">
<comment>Relation between a producer and a produced entity: for example, between a sensor and the produced output.</comment>
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>is produced by</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Model#Process</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#isPropertyOf -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#isPropertyOf">
<subPropertyOf rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#isQualityOf"/>
<comment>Relation between a FeatureOfInterest and a Property (a Quality observable by a sensor) of that feature.</comment>
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>is property of</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Skeleton#Skeleton</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#isProxyFor -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#isProxyFor">
<comment>A relation from a Stimulus to the Property that the Stimulus is serving as a proxy for. For example, the expansion of the quicksilver is a stimulus that serves as a proxy for temperature, or an increase or decrease in the spinning of cups on a wind sensor is serving as a proxy for wind speed.</comment>
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>isProxyFor</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Skeleton#Skeleton</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#madeObservation -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#madeObservation">
<subPropertyOf rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#isObjectIncludedIn"/>
<owl:inverseOf rdf:resource="http://purl.oclc.org/NET/ssnx/ssn#observedBy"/>
<comment>Relation between a Sensor and Observations it has made.</comment>
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>made observation</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Observation#Observation</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#observationResult -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#observationResult">
<subPropertyOf rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#isSettingFor"/>
<dc:source>skos:closeMatch 'result' [O&M - ISO/DIS 19156]
http://portal.opengeospatial.org/files/?artifact_id=41579</dc:source>
<comment>Relation linking an Observation (i.e., a description of the context, the Situation, in which the observatioin was made) and a Result, which contains a value representing the value associated with the observed Property.</comment>
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>observation result</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Skeleton#Skeleton</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#observationResultTime -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#observationResultTime">
<subPropertyOf rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#hasRegion"/>
<dc:source>http://www.opengeospatial.org/standards/om</dc:source>
<comment>The result time is the time when the procedure associated with the observation act was applied.</comment>
<comment>The result time shall describe the time when the result became available, typically when the procedure associated with the observation was completed For some observations this is identical to the phenomenonTime. However, there are important cases where they differ.[O&M]</comment>
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>observation result time</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Observation#Observation</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#observationSamplingTime -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#observationSamplingTime">
<subPropertyOf rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#hasRegion"/>
<dc:source>http://www.opengeospatial.org/standards/om</dc:source>
<comment>Rebadged as phenomenon time in [O&M]. The phenomenon time shall describe the time that the result applies to the property of the feature-of-interest. This is often the time of interaction by a sampling procedure or observation procedure with a real-world feature.</comment>
<comment>The sampling time is the time that the result applies to the feature-of-interest. This is the time usually required for geospatial analysis of the result.</comment>
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>observation sampling time</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Observation#Observation</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#observedBy -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#observedBy">
<subPropertyOf rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#includesObject"/>
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>observedBy</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Skeleton#Skeleton</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#observedProperty -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#observedProperty">
<subPropertyOf rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#isSettingFor"/>
<dc:source>skos:exactMatch 'observedProperty' [O&M - ISO/DIS 19156]
http://portal.opengeospatial.org/files/?artifact_id=41579</dc:source>
<comment>Relation linking an Observation to the Property that was observed. The observedProperty should be a Property (hasProperty) of the FeatureOfInterest (linked by featureOfInterest) of this observation.</comment>
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>observed property</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Skeleton#Skeleton</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#observes -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#observes">
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.oclc.org/NET/ssnx/ssn#hasMeasurementCapability"/>
<rdf:Description rdf:about="http://purl.oclc.org/NET/ssnx/ssn#forProperty"/>
</owl:propertyChainAxiom>
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.oclc.org/NET/ssnx/ssn#madeObservation"/>
<rdf:Description rdf:about="http://purl.oclc.org/NET/ssnx/ssn#observedProperty"/>
</owl:propertyChainAxiom>
<comment>Relation between a Sensor and a Property that the sensor can observe.
Note that, given the DUL modelling of Qualities, a sensor defined with 'observes only Windspeed' technically links the sensor to particular instances of Windspeed, not to the concept itself - OWL can't express concept-concept relations, only individual-individual. The property composition ensures that if an observation is made of a particular quality then one can infer that the sensor observes that quality.</comment>
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>observes</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Sensor#Measuring</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#ofFeature -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#ofFeature">
<comment>A relation between some aspect of a sensing entity and a feature. For example, from a sensor to the features it can observe properties of, or from a deployment to the features it was installed to observe. Also from a measurement capability to the feature the capability is described for. (Used in conjunction with forProperty).</comment>
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>of feature</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Skeleton#Skeleton</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#onPlatform -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#onPlatform">
<subPropertyOf rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#hasLocation"/>
<comment>Relation between a System (e.g., a Sensor) and a Platform. The relation locates the sensor relative to other described entities entities: i.e., the Sensor s1's location is Platform p1. More precise locations for sensors in space (relative to other entities, where attached to another entity, or in 3D space) are made using DOLCE's Regions (SpaceRegion).</comment>
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>on platform</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Deploy#PlatformSite</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#qualityOfObservation -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#qualityOfObservation">
<subPropertyOf rdf:resource="http://purl.oclc.org/NET/ssnx/ssn#hasProperty"/>
<dc:source>skos:exactMatch 'resultQuality' [O&M - ISO/DIS 19156]
http://portal.opengeospatial.org/files/?artifact_id=41579</dc:source>
<comment>Relation linking an Observation to the adjudged quality of the result. This is of course complimentary to the MeasurementCapability information recorded for the Sensor that made the Observation.</comment>
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>quality of observation</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Observation#Observation</seeAlso>
</owl:ObjectProperty>
<!-- http://purl.oclc.org/NET/ssnx/ssn#startTime -->
<owl:ObjectProperty rdf:about="http://purl.oclc.org/NET/ssnx/ssn#startTime">
<subPropertyOf rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#hasRegion"/>
<isDefinedBy>http://purl.oclc.org/NET/ssnx/ssn</isDefinedBy>
<label>start time</label>
<seeAlso>http://www.w3.org/2005/Incubator/ssn/wiki/SSN_Base#Time</seeAlso>
</owl:ObjectProperty>
<!-- http://www.irit.fr/recherches/MELODI/ontologies/SAN#impacts -->
<owl:ObjectProperty rdf:about="http://www.irit.fr/recherches/MELODI/ontologies/SAN#impacts"/>
<!-- http://www.loa-cnr.it/ontologies/DUL.owl#describes -->
<owl:ObjectProperty rdf:about="http://www.loa-cnr.it/ontologies/DUL.owl#describes">
<label>describes</label>
</owl:ObjectProperty>
<!-- http://www.loa-cnr.it/ontologies/DUL.owl#hasLocation -->
<owl:ObjectProperty rdf:about="http://www.loa-cnr.it/ontologies/DUL.owl#hasLocation">
<subPropertyOf rdf:resource="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#has"/>
<label>hasLocation</label>
</owl:ObjectProperty>
<!-- http://www.loa-cnr.it/ontologies/DUL.owl#hasPart -->
<owl:ObjectProperty rdf:about="http://www.loa-cnr.it/ontologies/DUL.owl#hasPart">
<label>hasPart</label>
</owl:ObjectProperty>
<!-- http://www.loa-cnr.it/ontologies/DUL.owl#hasParticipant -->
<owl:ObjectProperty rdf:about="http://www.loa-cnr.it/ontologies/DUL.owl#hasParticipant">
<label>hasParticipant</label>
</owl:ObjectProperty>
<!-- http://www.loa-cnr.it/ontologies/DUL.owl#hasQuality -->
<owl:ObjectProperty rdf:about="http://www.loa-cnr.it/ontologies/DUL.owl#hasQuality">
<label>hasQuality</label>
</owl:ObjectProperty>
<!-- http://www.loa-cnr.it/ontologies/DUL.owl#hasRegion -->
<owl:ObjectProperty rdf:about="http://www.loa-cnr.it/ontologies/DUL.owl#hasRegion">
<label>hasRegion</label>
</owl:ObjectProperty>
<!-- http://www.loa-cnr.it/ontologies/DUL.owl#includesEvent -->
<owl:ObjectProperty rdf:about="http://www.loa-cnr.it/ontologies/DUL.owl#includesEvent">
<label>includesEvent</label>
</owl:ObjectProperty>
<!-- http://www.loa-cnr.it/ontologies/DUL.owl#includesObject -->
<owl:ObjectProperty rdf:about="http://www.loa-cnr.it/ontologies/DUL.owl#includesObject">
<label>includesObject</label>
</owl:ObjectProperty>
<!-- http://www.loa-cnr.it/ontologies/DUL.owl#isDescribedBy -->
<owl:ObjectProperty rdf:about="http://www.loa-cnr.it/ontologies/DUL.owl#isDescribedBy">
<label>isDescribedBy</label>
</owl:ObjectProperty>
<!-- http://www.loa-cnr.it/ontologies/DUL.owl#isLocationOf -->
<owl:ObjectProperty rdf:about="http://www.loa-cnr.it/ontologies/DUL.owl#isLocationOf">
<label>isLocationOf</label>
</owl:ObjectProperty>
<!-- http://www.loa-cnr.it/ontologies/DUL.owl#isObjectIncludedIn -->
<owl:ObjectProperty rdf:about="http://www.loa-cnr.it/ontologies/DUL.owl#isObjectIncludedIn">
<label>isObjectIncludedIn</label>
</owl:ObjectProperty>
<!-- http://www.loa-cnr.it/ontologies/DUL.owl#isParticipantIn -->
<owl:ObjectProperty rdf:about="http://www.loa-cnr.it/ontologies/DUL.owl#isParticipantIn">
<label>isParticipantIn</label>
</owl:ObjectProperty>
<!-- http://www.loa-cnr.it/ontologies/DUL.owl#isQualityOf -->
<owl:ObjectProperty rdf:about="http://www.loa-cnr.it/ontologies/DUL.owl#isQualityOf">
<label>isQualityOf</label>
</owl:ObjectProperty>
<!-- http://www.loa-cnr.it/ontologies/DUL.owl#isRegionFor -->
<owl:ObjectProperty rdf:about="http://www.loa-cnr.it/ontologies/DUL.owl#isRegionFor">
<label>isRegionFor</label>
</owl:ObjectProperty>
<!-- http://www.loa-cnr.it/ontologies/DUL.owl#isSettingFor -->
<owl:ObjectProperty rdf:about="http://www.loa-cnr.it/ontologies/DUL.owl#isSettingFor">
<label>isSettingFor</label>
</owl:ObjectProperty>
<!-- https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#generate -->
<owl:ObjectProperty rdf:about="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#generate">
<label>generate</label>
</owl:ObjectProperty>
<!-- https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#has -->
<owl:ObjectProperty rdf:about="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#has"/>
<!-- https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#hasDevice -->
<owl:ObjectProperty rdf:about="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#hasDevice"/>
<!-- https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#hasPotCause -->
<owl:ObjectProperty rdf:about="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#hasPotCause">
<label>hasPotCause</label>
</owl:ObjectProperty>
<!-- https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#hasSpot -->
<owl:ObjectProperty rdf:about="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#hasSpot">
<subPropertyOf rdf:resource="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#has"/>
</owl:ObjectProperty>
<!-- https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#hasState -->
<owl:ObjectProperty rdf:about="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#hasState">
<subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
<label>hasState</label>
</owl:ObjectProperty>
<!-- https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#hasType -->
<owl:ObjectProperty rdf:about="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#hasType">
<subPropertyOf rdf:resource="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#has"/>
</owl:ObjectProperty>
<!-- https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#hasUnit -->
<owl:ObjectProperty rdf:about="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#hasUnit">
<subPropertyOf rdf:resource="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#has"/>
<label>hasUnit</label>
</owl:ObjectProperty>
<!-- https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#isOwnedBy -->
<owl:ObjectProperty rdf:about="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#isOwnedBy">
<label>isOwnedBy</label>
</owl:ObjectProperty>
<!-- https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#subscribe -->
<owl:ObjectProperty rdf:about="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#subscribe">
<label>subscribe</label>
</owl:ObjectProperty>
<!-- https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#triggers -->
<owl:ObjectProperty rdf:about="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#triggers">
<label>triggers</label>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#description -->
<owl:DatatypeProperty rdf:about="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#description">
<label>description</label>
</owl:DatatypeProperty>
<!-- https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#deviceID -->
<owl:DatatypeProperty rdf:about="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#deviceID"/>
<!-- https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#hasAddress -->
<owl:DatatypeProperty rdf:about="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#hasAddress"/>
<!-- https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#hasParam -->
<owl:DatatypeProperty rdf:about="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#hasParam"/>
<!-- https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#hasValue -->
<owl:DatatypeProperty rdf:about="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#hasValue">
<domain rdf:resource="http://purl.oclc.org/NET/ssnx/ssn#Device"/>
<range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
</owl:DatatypeProperty>
<!-- https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#linkTo -->
<owl:DatatypeProperty rdf:about="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#linkTo">
<label>linkTo</label>
</owl:DatatypeProperty>
<!-- https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#name -->
<owl:DatatypeProperty rdf:about="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#name">
<label>name</label>
</owl:DatatypeProperty>
<!-- https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#resultIn -->
<owl:DatatypeProperty rdf:about="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#resultIn"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://iserve.kmi.open.ac.uk/ns/msm#Operation -->
<owl:Class rdf:about="http://iserve.kmi.open.ac.uk/ns/msm#Operation">
<subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#hasAddress"/>
<owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</owl:Restriction>
</subClassOf>
<subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#hasParam"/>
<owl:allValuesFrom rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</owl:Restriction>
</subClassOf>
</owl:Class>
<!-- http://iserve.kmi.open.ac.uk/ns/msm#Service -->
<owl:Class rdf:about="http://iserve.kmi.open.ac.uk/ns/msm#Service">
<subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://iserve.kmi.open.ac.uk/ns/msm#hasOperation"/>
<owl:someValuesFrom rdf:resource="http://iserve.kmi.open.ac.uk/ns/msm#Operation"/>
</owl:Restriction>
</subClassOf>
</owl:Class>
<!-- http://purl.oclc.org/NET/ssnx/ssn#Device -->
<owl:Class rdf:about="http://purl.oclc.org/NET/ssnx/ssn#Device">
<subClassOf rdf:resource="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#WoT_Entity"/>
<subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#hasSpot"/>
<owl:someValuesFrom rdf:resource="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#Spot"/>
</owl:Restriction>
</subClassOf>
<subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#hasState"/>
<owl:someValuesFrom rdf:resource="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#State"/>
</owl:Restriction>
</subClassOf>
<subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#isOwnedBy"/>
<owl:someValuesFrom rdf:resource="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#Owner"/>
</owl:Restriction>
</subClassOf>
<subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://www.loa-cnr.it/ontologies/DUL.owl#hasLocation"/>
<owl:allValuesFrom rdf:resource="https://raw.githubusercontent.com/minelabwot/SWoT/master/swot-o.owl#Region"/>
</owl:Restriction>
</subClassOf>