base_ontology.owl
78.7 KB
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
<?xml version="1.0"?>
<rdf:RDF xmlns="http://www.w3.org/2002/07/owl#"
xml:base="http://www.w3.org/2002/07/owl"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:BO="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#">
<Ontology rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl">
<versionIRI rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/3_6_0/base_ontology.owl"/>
<rdfs:comment>This file contains the Base Ontology of oneM2M as specified in TS-0012
=========================================
Copyright Notification
The oneM2M Partners authorize you to copy this document, provided that you retain all copyright and other proprietary notices contained in the original materials on any copies of the materials and that you comply strictly with these terms.
This copyright permission does not constitute an endorsement of the products or services, nor does it encompass the granting of any patent rights.
The oneM2M Partners assume no responsibility for errors or omissions in this document.
(c) 2016, oneM2M Partners Type 1 (ARIB, ATIS, CCSA, ETSI, TIA, TSDSI, TTA, TTC). All rights reserved.
Notice of Disclaimer and Limitation of Liability
The information provided in this document is directed solely to professionals who have the appropriate degree of experience to understand and interpret its contents in accordance with generally accepted engineering or other professional standards and applicable regulations.
No recommendation as to products or vendors is made or should be implied.
NO REPRESENTATION OR WARRANTY IS MADE THAT THE INFORMATION IS TECHNICALLY ACCURATE OR SUFFICIENT OR CONFORMS TO ANY STATUTE,GOVERNMENTAL RULE OR EGULATION, AND FURTHER, NO REPRESENTATION OR WARRANTY IS MADE OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR AGAINST INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS.
NO oneM2M PARTNER TYPE 1 SHALL BE LIABLE, BEYOND THE AMOUNT OF ANY SUM RECEIVED IN PAYMENT BY THAT PARTNER FOR THIS DOCUMENT, WITH RESPECT TO ANY CLAIM, AND IN NO EVENT SHALL oneM2M BE LIABLE FOR LOST PROFITS OR OTHER INCIDENTAL OR ON SEQUENTIAL DAMAGES.
oneM2M EXPRESSLY ADVISES ANY AND ALL USE OF OR RELIANCE UPON THIS INFORMATION PROVIDED IN THIS DOCUMENT IS AT THE RISK OF THE USER.
=========================================</rdfs:comment>
</Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#resourceDescriptorLink -->
<AnnotationProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#resourceDescriptorLink">
<rdfs:comment>The resourceDescriptorLink annotation property is used to refer to a semanticDescriptor resource that contains more information about its subject. Its subject may be any individual and the range shall be the data literal or URI reference that represents the address of the semanticDescriptor</rdfs:comment>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#anyURI"/>
<rdfs:domain rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
</AnnotationProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#consistsOf -->
<ObjectProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#consistsOf">
<rdfs:domain rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Device"/>
<rdfs:range rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Device"/>
<rdfs:comment>A Device can consist of (i.e. be composed) of several (sub-) Devices</rdfs:comment>
</ObjectProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#convertsTo -->
<ObjectProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#convertsTo">
<rdfs:domain rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#VariableConversion"/>
<rdfs:range rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Variable"/>
<rdfs:comment>The conversion rule (the VariableConversion in the domain of Object Property: hasConversion) converts the value range of a given Variable (see 6.2.22 Object Property: hasConversion) into the value range of another Variable (the Variable in the range of Object Property: convertsTo)</rdfs:comment>
</ObjectProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#describes -->
<ObjectProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#describes">
<rdfs:domain rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Variable"/>
<rdfs:range rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Aspect"/>
<rdfs:comment>A Variable describes an Aspect (a quality or kind)</rdfs:comment>
</ObjectProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#exposesCommand -->
<ObjectProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#exposesCommand">
<rdfs:domain>
<Class>
<unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#InputDataPoint"/>
<rdf:Description rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Operation"/>
<rdf:Description rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#OutputDataPoint"/>
</unionOf>
</Class>
</rdfs:domain>
<rdfs:range rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Command"/>
<rdfs:comment>A –machine interpretable- Operation or an Input/OutputDataPoint of a Service exposes a –human understandable- Command to a network</rdfs:comment>
</ObjectProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#exposesFunction -->
<ObjectProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#exposesFunction">
<rdfs:domain rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Service"/>
<rdfs:range rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Function"/>
<rdfs:comment>A Service exposes a Functionality to the network and makes it discoverable, registerable and remotely controllable in the network</rdfs:comment>
</ObjectProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasCommand -->
<ObjectProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasCommand">
<rdfs:domain rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Function"/>
<rdfs:range rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Command"/>
<rdfs:comment>A Functionality of a Device can be influenced / observed by a human user through the Commands that this Functionality has and that are offered to the user</rdfs:comment>
</ObjectProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasConversion -->
<ObjectProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasConversion">
<rdfs:domain rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Variable"/>
<rdfs:range rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#VariableConversion"/>
<rdfs:comment>A Variable (in the domain of Object Property: hasConversion) can have a conversion rule (the VariableConversion in the range of Object Property: hasConversion) to convert the value range of the Variable into the value range of another Variable</rdfs:comment>
</ObjectProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasFunction -->
<ObjectProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasFunction">
<rdfs:domain rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Device"/>
<rdfs:range rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Function"/>
<rdfs:comment>In order to accomplish its task, a Device performs one or more Functionalities</rdfs:comment>
</ObjectProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasInput -->
<ObjectProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasInput">
<rdfs:domain>
<Class>
<unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Command"/>
<rdf:Description rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Operation"/>
</unionOf>
</Class>
</rdfs:domain>
<rdfs:range rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#OperationInput"/>
<rdfs:comment>An Operation of a Service of the Device or a Command of a Functionality of the Device can have transient OperationInput data.</rdfs:comment>
</ObjectProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasInputDataPoint -->
<ObjectProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasInputDataPoint">
<rdfs:domain rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Service"/>
<rdfs:range rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#InputDataPoint"/>
<rdfs:comment>A Service or an Operation of a Service of the Device can have InputDataPoints. Communicating entities write data into InputDataPoints and the Device retrieves the data at times according to an internal schedule.
- An InputDataPoint is a persistent resource</rdfs:comment>
<rdfs:comment>Note:
If an InputDataPoint is mandatory for a Service or Operation then
the cardinality of hasInputDataPoint must be - min 1.</rdfs:comment>
</ObjectProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasMetaData -->
<ObjectProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasMetaData">
<rdfs:domain>
<Class>
<unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Aspect"/>
<rdf:Description rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Variable"/>
</unionOf>
</Class>
</rdfs:domain>
<rdfs:range rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#MetaData"/>
<rdfs:comment>A Value of a Thing can have MetaData (like units, precision-ranges).</rdfs:comment>
</ObjectProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasOperation -->
<ObjectProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasOperation">
<rdfs:domain rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Service"/>
<rdfs:range rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Operation"/>
<rdfs:comment>A Service communicates by means of Operations over the network to transmit data to/from other devices</rdfs:comment>
<rdfs:comment>Note:
If an Operation is mandatory for a Service then
the cardinality of hasOperation must be - min 1.</rdfs:comment>
</ObjectProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasOutput -->
<ObjectProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasOutput">
<rdfs:domain>
<Class>
<unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Command"/>
<rdf:Description rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Operation"/>
</unionOf>
</Class>
</rdfs:domain>
<rdfs:range rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#OperationOutput"/>
<rdfs:comment>An Operation of a Service of the Device or a Command of a Functionality of the Device can have transient OperationOutput data.</rdfs:comment>
</ObjectProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasOutputDataPoint -->
<ObjectProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasOutputDataPoint">
<rdfs:domain rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Service"/>
<rdfs:range rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#OutputDataPoint"/>
<rdfs:comment>A Service or an Operation of a Service of the Device can have OutputDataPoints. The Device writes data into OutputDataPoints at times according to an internal schedule and the communicating entitis retrieves the data.
- An OutputDataPoint is a persistent resource</rdfs:comment>
<rdfs:comment>Note:
If an OutputDataPoint is mandatory for a Service or Operation then
the cardinality of hasOutputDataPoint must be - min 1.</rdfs:comment>
</ObjectProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasService -->
<ObjectProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasService">
<rdfs:domain rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Device"/>
<rdfs:range rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Service"/>
<rdfs:comment>The Functionalities of a Device are exposed in the network as Services of the Device</rdfs:comment>
</ObjectProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasSubService -->
<ObjectProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasSubService">
<rdfs:domain rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Service"/>
<rdfs:range rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Service"/>
<rdfs:comment>A Service may be composed of smaller, independent (sub)Services, e.g. re-usable servicemodules</rdfs:comment>
<rdfs:comment>Note:
If an Service constist of at least one sub-Service then
the cardinality of hasSubService must be - min 1.</rdfs:comment>
</ObjectProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasSubStructure -->
<ObjectProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasSubStructure">
<rdfs:domain rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#StructuredTypeVariable"/>
<rdfs:range rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Variable"/>
<rdfs:comment>A structured Variable can be composed of (sub-)Variables</rdfs:comment>
</ObjectProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasThingProperty -->
<ObjectProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasThingProperty">
<rdfs:domain rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Thing"/>
<rdfs:range rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#ThingProperty"/>
<rdfs:comment>A Thing may have properties that can be described by Values</rdfs:comment>
</ObjectProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasThingRelation -->
<ObjectProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasThingRelation">
<rdfs:domain rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Thing"/>
<rdfs:range rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Thing"/>
<rdfs:comment>A Thing may have relations to itself or to other Things (e-g. a Thing "Room" could have a relation "has_Door" with a Thing "Door")</rdfs:comment>
</ObjectProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#isPartOf -->
<ObjectProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#isPartOf">
<rdfs:domain rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#InterworkedDevice"/>
<rdfs:range rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#AreaNetwork"/>
<rdfs:comment>An InterworkedDevice constitutes a part of an AreaNetwork</rdfs:comment>
</ObjectProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#refersTo -->
<ObjectProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#refersTo">
<rdfs:domain rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Function"/>
<rdfs:range rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Aspect"/>
<rdfs:comment>A Functionality of a Device can refer to a certain Aspect (a quality or kind) that is measured or controlled by that Functionality.
e.g. a temperature sensor would refer to the Aspect "Temperature" that it measures</rdfs:comment>
</ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasDataRestriction -->
<DatatypeProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasDataRestriction">
<rdfs:domain rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#SimpleTypeVariable"/>
<rdfs:range rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral"/>
<rdfs:comment>This Data Property specifies the restrictions on the data type of the SimpleTypeVariable.
The Data Property "hasDataRestriction" shall always be sub-classed</rdfs:comment>
</DatatypeProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasDataRestriction_length -->
<DatatypeProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasDataRestriction_length">
<rdfs:subPropertyOf rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasDataRestriction"/>
<rdfs:domain rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#SimpleTypeVariable"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"/>
<rdfs:comment>This Data Property specifies the exact number of characters or list items allowed of the SimpleTypeVariable. Must be equal to or greater than zero.
it applies to:
- xs:string</rdfs:comment>
</DatatypeProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasDataRestriction_maxExclusive -->
<DatatypeProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasDataRestriction_maxExclusive">
<rdfs:subPropertyOf rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasDataRestriction"/>
<rdfs:domain rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#SimpleTypeVariable"/>
<rdfs:range>
<rdfs:Datatype>
<unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/2001/XMLSchema#float"/>
<rdf:Description rdf:about="http://www.w3.org/2001/XMLSchema#integer"/>
</unionOf>
</rdfs:Datatype>
</rdfs:range>
<rdfs:comment>This Data Property specifies the upper bounds for numeric values (the value must be less than this value) allowed for the SimpleTypeVariable.
It applies to:
- xs:integer
- xs:float</rdfs:comment>
</DatatypeProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasDataRestriction_maxInclusive -->
<DatatypeProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasDataRestriction_maxInclusive">
<rdfs:subPropertyOf rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasDataRestriction"/>
<rdfs:domain rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#SimpleTypeVariable"/>
<rdfs:range>
<rdfs:Datatype>
<unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/2001/XMLSchema#float"/>
<rdf:Description rdf:about="http://www.w3.org/2001/XMLSchema#integer"/>
</unionOf>
</rdfs:Datatype>
</rdfs:range>
<rdfs:comment>This Data Property specifies the upper bounds for numeric values (the value must be less than or equal to this value) allowed for the SimpleTypeVariable.
It applies to:
- xs:integer
- xs:float</rdfs:comment>
</DatatypeProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasDataRestriction_maxLength -->
<DatatypeProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasDataRestriction_maxLength">
<rdfs:subPropertyOf rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasDataRestriction"/>
<rdfs:domain rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#SimpleTypeVariable"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"/>
<rdfs:comment>This Data Property specifies the maximum number of characters or list items allowed of the SimpleTypeVariable. Must be equal to or greater than zero.
it applies to:
- xs:string</rdfs:comment>
</DatatypeProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasDataRestriction_minExclusive -->
<DatatypeProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasDataRestriction_minExclusive">
<rdfs:subPropertyOf rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasDataRestriction"/>
<rdfs:domain rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#SimpleTypeVariable"/>
<rdfs:range>
<rdfs:Datatype>
<unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/2001/XMLSchema#float"/>
<rdf:Description rdf:about="http://www.w3.org/2001/XMLSchema#integer"/>
</unionOf>
</rdfs:Datatype>
</rdfs:range>
<rdfs:comment>This Data Property specifies the lower bounds for numeric values (the value must be greater than this value) allowed for the SimpleTypeVariable.
It applies to:
- xs:integer
- xs:float</rdfs:comment>
</DatatypeProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasDataRestriction_minInclusive -->
<DatatypeProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasDataRestriction_minInclusive">
<rdfs:subPropertyOf rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasDataRestriction"/>
<rdfs:domain rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#SimpleTypeVariable"/>
<rdfs:range>
<rdfs:Datatype>
<unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.w3.org/2001/XMLSchema#float"/>
<rdf:Description rdf:about="http://www.w3.org/2001/XMLSchema#integer"/>
</unionOf>
</rdfs:Datatype>
</rdfs:range>
<rdfs:comment>This Data Property specifies the lower bounds for numeric values (the value must be greater than or equal to this value) allowed for the SimpleTypeVariable.
It applies to:
- xs:integer
- xs:float</rdfs:comment>
</DatatypeProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasDataRestriction_minLength -->
<DatatypeProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasDataRestriction_minLength">
<rdfs:subPropertyOf rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasDataRestriction"/>
<rdfs:domain rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#SimpleTypeVariable"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"/>
<rdfs:comment>This Data Property specifies the minimum number of characters or list items allowed of the SimpleTypeVariable. Must be equal to or greater than zero.
it applies to:
- xs:string</rdfs:comment>
</DatatypeProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasDataRestriction_pattern -->
<DatatypeProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasDataRestriction_pattern">
<rdfs:subPropertyOf rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasDataRestriction"/>
<rdfs:domain rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#SimpleTypeVariable"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment>This Data Property specifies the restrictions of the SimpleTypeVariable to a subset of strings containing the exact sequence of characters that are acceptable
it applies to:
- xs:string</rdfs:comment>
</DatatypeProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasDataType -->
<DatatypeProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasDataType">
<rdfs:domain rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#SimpleTypeVariable"/>
<rdfs:range>
<rdfs:Datatype>
<oneOf>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>xs:NCName</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>xs:anySimpleType</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>xs:anyType</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>xs:anyURI</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>xs:base64Binary</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>xs:boolean</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>xs:dateTime</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>xs:decimal</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>xs:double</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>xs:duration</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>xs:float</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>xs:hexBinary</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>xs:integer</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>xs:language</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>xs:nonNegativeInteger</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>xs:normalizedString</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>xs:positiveInteger</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>xs:string</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>xs:token</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>xs:unsignedInt</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>xs:unsignedLong</rdf:first>
<rdf:rest>
<rdf:Description>
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/>
<rdf:first>xs:unsignedShort</rdf:first>
<rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</rdf:rest>
</rdf:Description>
</oneOf>
</rdfs:Datatype>
</rdfs:range>
<rdfs:comment>This Data Property specifies the data type of the SimpleTypeVariable as text string</rdfs:comment>
</DatatypeProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasThingAnnotation -->
<DatatypeProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasThingAnnotation">
<rdfs:domain rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Thing"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<rdfs:comment>This data property contains a description of a Thing.
Note: Data Property: hasThingAnnotation should be used in cases where the annotation data do not change very often and/or where they are usually not the subject of semantic operations (e.g. semantic discovery). Otherwise Object Propety: hasThingPropery should be used
E.g. a certain type of Device could have the model (as a numeric description) or the name of the manufacturer (as a textual annotation)</rdfs:comment>
</DatatypeProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasValue -->
<DatatypeProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasValue">
<rdfs:domain rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#SimpleTypeVariable"/>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<rdfs:comment>This data property contains the value of the Variable if that value is part of the semantic description and is not contained in a different resource (identified by the oneM2MTargetURI data property). Storing the value of a Variable in a semantic description (i.e. as part of the RDF description in the semanticDescriptor resource) is useful for values that are relatively static (e.g. the name of the manufacturer).
- Data properties "hasValue" and "oneM2MTargetURI" are mutually exclusive. Only one of the two shall be instantiated.</rdfs:comment>
</DatatypeProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#isDataList -->
<DatatypeProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#isDataList">
<rdfs:domain rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#SimpleTypeVariable"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
</DatatypeProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#netTechnologyCommunicationProtocol -->
<DatatypeProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#netTechnologyCommunicationProtocol">
<rdfs:domain rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#AreaNetwork"/>
<rdfs:range rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral"/>
<rdfs:comment>Identification of a communication protocol (e.g. ZigBee_1_0)</rdfs:comment>
</DatatypeProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#netTechnologyPhysicalStandard -->
<DatatypeProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#netTechnologyPhysicalStandard">
<rdfs:domain rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#AreaNetwork"/>
<rdfs:range rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral"/>
<rdfs:comment>Identification of the physical properties of a Area Network technology (e.g. IEEE_802_15_4_2003_2_4GHz).</rdfs:comment>
</DatatypeProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#netTechnologyProfile -->
<DatatypeProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#netTechnologyProfile">
<rdfs:domain rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#AreaNetwork"/>
<rdfs:range rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral"/>
<rdfs:comment>Identification of a profile (e.g. ZigBee_HA) of a Area Network technology.</rdfs:comment>
</DatatypeProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#oneM2MAttribute -->
<DatatypeProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#oneM2MAttribute">
<rdfs:domain rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#SimpleTypeVariable"/>
<rdfs:range rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral"/>
<rdfs:comment>This Data Property contains the name of the attribute of the oneM2M resource of type <flexContainer> or the the child resource of the oneM2M resource of type <container> that is referenced with the oneM2MTargetURI and that stores the value of the SimpleTypeVariable
- if the resource-type of the oneM2M resource that is referenced with the oneM2MTargetURI is <container> then this Data Property shall contain the text string "#latest"</rdfs:comment>
</DatatypeProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#oneM2MMethod -->
<DatatypeProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#oneM2MMethod">
<rdfs:domain>
<Class>
<unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Operation"/>
<rdf:Description rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Variable"/>
</unionOf>
</Class>
</rdfs:domain>
<rdfs:range rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral"/>
<rdfs:comment>This data property contains a oneM2M CRUD Method through which the oneM2M instantiation of the value of the Variable can be manipulated by the communicating entity.
- It contains the string "RETRIEVE" for retrieving the variable when the oneM2M resource is of type <container> or <flexContainer>. This applies to sub-classes: OperationOutput, OutputDatapoint, ThingProperty and OperationState
- It contains the string "CREATE" for updating the variable when the oneM2M resource is of type <container>. This applies to sub-classes: OperationInput, InputDatapoint, ThingProperty
- It contains the string "UPDATE" for updationg the variable when the oneM2M resource is of type <flexContainer>. This applies to sub-classes: OperationInput, InputDatapoint, ThingProperty</rdfs:comment>
</DatatypeProperty>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#oneM2MTargetURI -->
<DatatypeProperty rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#oneM2MTargetURI">
<rdfs:domain>
<Class>
<unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Operation"/>
<rdf:Description rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Variable"/>
</unionOf>
</Class>
</rdfs:domain>
<rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
<rdfs:comment>oneM2MTargetURI (range data type: rdfs: Literal)
This data property contains the URI of a oneM2M resource (<container> or <flexContainer>) through which the oneM2M instantiation of the value of the Variable can be manipulated by the communicating entity. It can contain an absolute address or an address relative to the <semanticDescriptor> resource that holds the RDF description of the Variable.
That address could be e.g.
- The value of the parentID for the <container> or <flexContainer> of a Input- or OutputDataPoint which has child-resource of type <semanticDescriptor> that holds the RDF description of the DataPoint</rdfs:comment>
</DatatypeProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#AreaNetwork -->
<Class rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#AreaNetwork">
<rdfs:comment>An AreaNetwork (Class: AreaNetwork) is a Network that provides data transport services between an Interworked Device and the oneM2M System. Different area Networks can use heterogeneous network technologies that may or may not support IP access.</rdfs:comment>
</Class>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Aspect -->
<Class rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Aspect">
<rdfs:comment>An Aspect (Class: Aspect) describes the real-world aspect that a functionality relates to. Aspect is also used to describe the quality or kind OperationInput- or OperationOutput variables.
The Aspect could be a (physical or non-physical) entity or it could be a quality</rdfs:comment>
</Class>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Command -->
<Class rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Command">
<rdfs:subClassOf>
<Restriction>
<onProperty rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasInput"/>
<allValuesFrom rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#OperationInput"/>
</Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<Restriction>
<onProperty rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasInputDataPoint"/>
<allValuesFrom rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#InputDataPoint"/>
</Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<Restriction>
<onProperty rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasOutput"/>
<allValuesFrom rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#OperationOutput"/>
</Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<Restriction>
<onProperty rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasOutputDataPoint"/>
<allValuesFrom rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#OutputDataPoint"/>
</Restriction>
</rdfs:subClassOf>
<rdfs:comment>A Command (Class: Command) represents an action that can be performed to support the Functionality. A Command is the human understandable name of that action that is invoked in a device or is reported by the device. An Operation exposes a Command to the network. OperationInput and OperationOutput of the related Operation can parameterize the command.
e.g. the Functionality "dimming-functionality" of a light switch that remotely controls a light could have a Command "setLightIntensity", with a parameter that has values 0 - 100 %.
- Also InputDataPoints and OutputDataPoints expose Commands to the network. When a Device communicates in a RESTful way then changing (UPDATEing) an InputDataPoint triggers an action in the Device once the Device has read out the data from the InputDataPoint.
- Similarly, when a Device sets the data of an OutputDataPoint then it provides state information about the Device.
Note: In RESTful systems the names of Input- and OutputDataPoints are usually chosen in such a way that they express the Command, i.e. the human-understandable meaning (e.g. a binary InputDataPoint of a lightswitch could have a name "Set_Light_Status"). In such a case the Command coincides with the DataPoint.</rdfs:comment>
</Class>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#ControllingFunction -->
<Class rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#ControllingFunction">
<rdfs:subClassOf rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Function"/>
<rdfs:comment>A ControllingFunctionality (Class: ControllingFunctionality) represents a functionality that has impacts on the real world, but does not gather data. In general a ControllingFunctionality has Commands (and/or Operations of its related Services) that receives Input data
E.g. a thermostat would have "temperature-adjustment" as a ControllingFunctionality</rdfs:comment>
</Class>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Device -->
<Class rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Device">
<rdfs:subClassOf rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Thing"/>
<rdfs:subClassOf>
<Restriction>
<onProperty rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasService"/>
<allValuesFrom rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Service"/>
</Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<Restriction>
<onProperty rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasFunction"/>
<minQualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</minQualifiedCardinality>
<onClass rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Function"/>
</Restriction>
</rdfs:subClassOf>
<rdfs:comment>A Device (Class: Device) is a object designed to accomplish a particular task. A Device contains some logic and is producer and/or consumer of data that are exchanged via its Services with other oneM2M entities (Devices, Things) in the network. A Device may be a physical or non-physical entity.
In the context of oneM2M a Device is always assumed to be capable of communicating electronically via a network.
- In order to accomplish its task, the device performs one or more functionalities
- These functionalities are exposed in the network as Services of the Device.
- A Device can be composed of several (sub-) Devices
- Each Device (including sub-Devices) needs to be individually addressable in the network.</rdfs:comment>
</Class>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Function -->
<Class rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Function">
<rdfs:comment>A Functionality (Class: Functionality) represents the functionality necessary to accomplish the task for which a Device is designed. A device can be designed to perform more than one functionality.
The functionality exhibits the – human understandable – meaning what the device "does".
A Functionality refers to (e.g. observes or influences) some real-world aspect(s), that can be modelled as a Class: Aspect.
E.g. considering a "light switch" then a related Functionality could be "Controlling_ON_OFF" or "Controlling Brightness". These functionalities would refer to an Aspect "light-control".
A Functionality of a Device can be influenced / observed by a human user through the Commands that this Functionality has and that are offered to the user</rdfs:comment>
</Class>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#GET_InputDataPoint -->
<Class rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#GET_InputDataPoint">
<rdfs:subClassOf rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Operation"/>
<rdfs:comment>GET_InputDataPoint (Class: GET_InputDataPoint) is an Operation that may be offered by a Device to trigger the device to retrieve the data of an InputDataPoint
(e.g. outside of the schedule when the device normally retrieves data from that DataPoint)</rdfs:comment>
</Class>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#InputDataPoint -->
<Class rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#InputDataPoint">
<rdfs:subClassOf rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Variable"/>
<rdfs:comment>InputDataPoint (Class: InputDataPoint) is a Variable of a Service that is accessed by a RESTful Device in its environment and that the Device reads out autonomously (e.g. at periodic times).
To enable a third party to instruct the device to retrieve (out of schedule) the current value of a InputputDataPoint devices often also offer a GET_InputDataPoint Operation to trigger the device to retrieve the data from the InputDataPoint</rdfs:comment>
</Class>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#InterworkedDevice -->
<Class rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#InterworkedDevice">
<rdfs:subClassOf rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Device"/>
<rdfs:comment>An InterworkedDevice (Class: InterworkedDevice) is a Device – e.g. in an Area Network – that does not support oneM2M interfaces and can only be accessed from the oneM2M System by communicating with a "proxied" (virtual) device that has been created by an Interworking Proxy Entity</rdfs:comment>
</Class>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#MeasuringFunction -->
<Class rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#MeasuringFunction">
<rdfs:subClassOf rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Function"/>
<rdfs:comment>A MeasuringFunctionality (Class: MeasuringFunctionality) represents a functionality that has no impacts on the real world, but only gathers data. In general a MeasuringFunctionality has Commands (and/or Operations of its related Services) that generate Output data
E.g. a temperature sensor would have "temperature-sensing" as a MeasuringFunctionality</rdfs:comment>
</Class>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#MetaData -->
<Class rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#MetaData">
<rdfs:comment>MetaData (Class: MetaData) contain data (like units, precision-ranges …) about a Variable or about an Aspect.
E.g. the indoor temperature could have meta data: "Degrees Celsius"</rdfs:comment>
</Class>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Operation -->
<Class rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Operation">
<rdfs:subClassOf>
<Restriction>
<onProperty rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#exposesCommand"/>
<allValuesFrom rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Command"/>
</Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<Restriction>
<onProperty rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasInput"/>
<allValuesFrom rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#OperationInput"/>
</Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<Restriction>
<onProperty rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasOutput"/>
<allValuesFrom rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#OperationOutput"/>
</Restriction>
</rdfs:subClassOf>
<rdfs:comment>An Operation (Class: Operation) is the means of a Service to communicate in a procedure-type manner over the network (i.e. transmit data to/from other devices). It is the –machine interpretable- exposure of a –human understandable- Command to a network.
An Operation is transient. I.e. an Operation can be invoked, possibly produces output and is finished.
- A non-oneM2M Device or a oneM2M entity (e.g. an AE) can invoke an Operation of the Device (oneM2M Device or InterworkedDevice) and that invocation can trigger some action in the Device. If an Operation has input data it may receive input data from
- InputDataPoints (persistent resources) and/or
- OperationInput (transient resources, that are deleted when the Operation finished)
and potentially produce output data into
- OutputDataPoints (persistent resources) and/or
- OperationOutput (transient resources, that are deleted when the Operation finished)
An Operation correlates the output data of the Operation to the input data that were used at Operation invokation.</rdfs:comment>
</Class>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#OperationInput -->
<Class rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#OperationInput">
<rdfs:subClassOf rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Variable"/>
<rdfs:comment>OperationInput (Class: OperationInput) describes an input of an Operation of a Service. OperationInput also describes the input of an Command.</rdfs:comment>
</Class>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#OperationOutput -->
<Class rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#OperationOutput">
<rdfs:subClassOf rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Variable"/>
<rdfs:comment>OperationOutput (Class: OperationOutput) describes an output of an Operation. OperationOutput also describes the output of a Command.
- An Operation/Command may have multiple OperationInputs and/or OperationOutputs</rdfs:comment>
</Class>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#OutputDataPoint -->
<Class rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#OutputDataPoint">
<rdfs:subClassOf rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Variable"/>
<rdfs:comment>OutputDataPoint (Class: OutputDataPoint) is a Variable of a Service that is set by a RESTful Device in its environment and that the Device updates autonomously (e.g. at periodic times). To enable a third party to instruct the device to update (out of schedule) the current value of a OutputputDataPoint devices often also offer a SET_OutputDataPoint Operation to trigger the device to update the data of the OutputDataPoint</rdfs:comment>
</Class>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#SET_OutputDataPoint -->
<Class rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#SET_OutputDataPoint">
<rdfs:subClassOf rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Operation"/>
<rdfs:comment>SET_OutputDataPoint (Class: SET_OutputDataPoint) is an Operation that may be offered by a Device to trigger the device to update the data of an OutputDataPoint
(e.g. outside of the schedule when the device normally updates that DataPoint)</rdfs:comment>
</Class>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Service -->
<Class rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Service">
<rdfs:subClassOf>
<Restriction>
<onProperty rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#exposesFunction"/>
<someValuesFrom rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Function"/>
</Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<Restriction>
<onProperty rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasInputDataPoint"/>
<allValuesFrom rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#InputDataPoint"/>
</Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<Restriction>
<onProperty rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasOperation"/>
<allValuesFrom rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Operation"/>
</Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<Restriction>
<onProperty rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasOutputDataPoint"/>
<allValuesFrom rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#OutputDataPoint"/>
</Restriction>
</rdfs:subClassOf>
<rdfs:comment>A Service (Class: Service) is a electronic representation of a Functionality in a network. The Service exposes the Functionality to the network and makes it discoverable, registerable and remotely controllable in the network.
A Service is offered by a device that wants (a certain set of) its Functionalities to be discoverable, registerable, remotely controllable by other devices in the network.
A Service can expose one or more Functionalities and a Functionality can be exposed by one or more Services.
The (names of) Input- and Output DataPoints and Operations are only unique within a Service. The Service to which they belong differentiates how they are addressed in the Device (e.g. via a port specific to the Service).
NOTE: While a Functionality describes the – human understandable – meaning of a Service of the device the Service is used to describe how such functionality is represented in a communication network and can be accessed by electronic means. The Service and its Operations is therefore dependent on the technology of the network, hard- and software of the device.</rdfs:comment>
</Class>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#SimpleTypeVariable -->
<Class rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#SimpleTypeVariable">
<rdfs:subClassOf rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Variable"/>
<rdfs:subClassOf>
<Restriction>
<onProperty rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasDataRestriction"/>
<allValuesFrom rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral"/>
</Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<Restriction>
<onProperty rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasDataType"/>
<qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</qualifiedCardinality>
<onDataRange rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral"/>
</Restriction>
</rdfs:subClassOf>
<disjointWith rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#StructuredTypeVariable"/>
<rdfs:comment>SimpleTypeVariable (Class: SimpleTypeVariable) is a sub-class of class:Variable that only consists of Variables of simple xml types like xsd:integer, xsd:string…, potentially including lists and restrictions
The simple datatypes and –restrictions contained in 'https://www.w3.org/TR/xmlschema11-2' shall be referred to using the prefix: xs</rdfs:comment>
</Class>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#StructuredTypeVariable -->
<Class rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#StructuredTypeVariable">
<rdfs:subClassOf rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Variable"/>
<rdfs:subClassOf>
<Restriction>
<onProperty rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasSubStructure"/>
<minQualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</minQualifiedCardinality>
<onClass rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Variable"/>
</Restriction>
</rdfs:subClassOf>
<rdfs:comment>Structured type variables are variables that are not SimpleType Variables</rdfs:comment>
</Class>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Thing -->
<Class rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Thing">
<rdfs:subClassOf>
<Restriction>
<onProperty rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#hasThingProperty"/>
<allValuesFrom rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#ThingProperty"/>
</Restriction>
</rdfs:subClassOf>
<rdfs:comment>A Thing in oneM2M (Class: Thing) is an entity that can be identified in the oneM2M System.
A Thing that is not a Device is not able to conmmunicate electronically with its environment. However, the sub-class of Thing that is able to interact electronically is called a "Device".
A Thing may have ThingProperties (Object Property: hasThingProperty). A Thing can have relations to other things (Object Property: hasThingRelation).
Since a Thing that is not a Device is not able to conmmunicate electronically it cannot influence the value of its ThingProperties or being influenced by it. Similarly a Thing cannot document its - real-world - relationships (via hasThingRelation) to other Things.
E.g. A room that is modelled in oneM2M would be a Thing that could have a room-temperature as a ThingProperty and could have a relationship "isAdjacentTo" to another room</rdfs:comment>
</Class>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#ThingProperty -->
<Class rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#ThingProperty">
<rdfs:subClassOf rdf:resource="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Variable"/>
<rdfs:comment>A Variable that quantifies a property of a Thing. A ThingProperty can e.g. be observed or influenced by devices, or it constitutes static data about a Thing.
E.g. the indoor temperature of the room could be a ThingProperty of a Thing "room".
A ThingProperty of a Thing can concern a certain Aspect, e.g. the indoor temperature concerns the Aspect "Temperature" that could be measured by a temperature sensor.
A ThingProperty of a Thing can have meta data</rdfs:comment>
</Class>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Variable -->
<Class rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#Variable">
<disjointUnionOf rdf:parseType="Collection">
<rdf:Description rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#SimpleTypeVariable"/>
<rdf:Description rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#StructuredTypeVariable"/>
</disjointUnionOf>
<rdfs:comment>A Variable (Class: Variable) constitutes a super class to the following classes: ThingProperty, OperationInput, OperationOutput, OperationState, InputDataPoint, OutputDataPoint, SimpleTypeVariable. Its members are entities that store some data (e.g. integers, text, or structured data) that can change over time.
These data of the Variable usually describe some real-world Aspects (e.g. a temperature) and can have MetaData (e.g. units, precision..)</rdfs:comment>
</Class>
<!-- https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#VariableConversion -->
<Class rdf:about="https://git.onem2m.org/MAS/BaseOntology/raw/master/base_ontology.owl#VariableConversion">
<rdfs:comment>A VariableConversion (Class: VariableConversion) represents a conversion rule from the value range of one Variable into the value range of another Variable. The plain text specification of that rule is contained in the annotation property rdfs:comment</rdfs:comment>
</Class>
</rdf:RDF>
<!-- Generated by the OWL API (version 4.2.6.20160910-2108) https://github.com/owlcs/owlapi -->