-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathqod.ttl
3601 lines (2871 loc) · 214 KB
/
qod.ttl
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
@prefix : <http://www.example.de/ns/qod#> .
@prefix WV: <http://www.wurvoc.org/vocabularies/WV/> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix ns: <http://creativecommons.org/ns#> .
@prefix dsi: <http://www.example.com/ns/dsi#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix bibo: <http://purl.org/ontology/bibo/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix om-2: <http://www.ontology-of-units-of-measure.org/resource/om-2/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix scal: <http://www.example.com/ns/scal#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix sosa: <http://www.w3.org/ns/sosa/> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix terms: <http://purl.org/dc/terms/> .
@prefix trans: <http://www.example.de/ns/trans#> .
@prefix schema: <http://schema.org/> .
@prefix mathematics: <https://raw.githubusercontent.com/CLLKazan/OntoMathPro/develop/OntoMathPro.omn> .
@base <http://www.example.de/ns/qod#> .
<http://www.example.de/ns/qod#> rdf:type owl:Ontology ;
owl:imports scal: ,
<http://www.example.de/ns/dsi#> ,
trans: ,
<http://www.ontologydesignpatterns.org/ont/dul/DUL.owl> ,
rdf: ,
<http://www.w3.org/ns/ssn/systems/> ;
dc:date "2021/09/08" ;
terms:created "2021-04-15" ,
"2021/04/15" ;
terms:creator [ ] ;
terms:license <http://www.opengeospatial.org/ogc/Software> ,
<http://www.w3.org/Consortium/Legal/2015/copyright-software-and-document> ;
rdfs:seeAlso <https://www.w3.org/2015/spatial/wiki/Semantic_Sensor_Network_Ontology> .
#################################################################
# Annotation properties
#################################################################
### http://purl.org/dc/terms/created
terms:created rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/creator
terms:creator rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/description
terms:description rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/license
terms:license rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/rights
terms:rights rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/title
terms:title rdf:type owl:AnnotationProperty .
### http://purl.org/vocab/vann/preferredNamespacePrefix
vann:preferredNamespacePrefix rdf:type owl:AnnotationProperty .
### http://purl.org/vocab/vann/preferredNamespaceUri
vann:preferredNamespaceUri rdf:type owl:AnnotationProperty .
### http://schema.org/domainIncludes
schema:domainIncludes rdf:type owl:AnnotationProperty .
### http://schema.org/rangeIncludes
schema:rangeIncludes rdf:type owl:AnnotationProperty .
### http://www.ontology-of-units-of-measure.org/resource/om-2/hasUnit
om-2:hasUnit rdf:type owl:AnnotationProperty .
### http://www.w3.org/2000/01/rdf-schema#comment
rdfs:comment rdf:type owl:AnnotationProperty .
### http://www.w3.org/2000/01/rdf-schema#label
rdfs:label rdf:type owl:AnnotationProperty .
### http://www.w3.org/2002/07/owl#deprecated
owl:deprecated rdf:type owl:AnnotationProperty .
### http://www.w3.org/2002/07/owl#minCardinality
owl:minCardinality rdf:type owl:AnnotationProperty .
### http://www.w3.org/2002/07/owl#qualifiedCardinality
owl:qualifiedCardinality rdf:type owl:AnnotationProperty .
### http://www.w3.org/2002/07/owl#versionInfo
owl:versionInfo rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#definition
skos:definition rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#example
skos:example rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#hiddenLabel
skos:hiddenLabel rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#note
skos:note rdf:type owl:AnnotationProperty .
### http://www.wurvoc.org/vocabularies/WV/illustration
WV:illustration rdf:type owl:AnnotationProperty .
### http://www.wurvoc.org/vocabularies/WV/logo
WV:logo rdf:type owl:AnnotationProperty .
### http://xmlns.com/foaf/0.1/based_near
foaf:based_near rdf:type owl:AnnotationProperty .
### http://xmlns.com/foaf/0.1/name
foaf:name rdf:type owl:AnnotationProperty .
#################################################################
# Datatypes
#################################################################
### http://www.example.de/ns/trans#MathMLLiteral
trans:MathMLLiteral rdf:type rdfs:Datatype .
### http://www.example.de/ns/trans#TeXLiteral
trans:TeXLiteral rdf:type rdfs:Datatype .
### http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral
rdf:PlainLiteral rdf:type rdfs:Datatype .
### http://www.w3.org/2001/XMLSchema#date
xsd:date rdf:type rdfs:Datatype .
### http://www.w3.org/2001/XMLSchema#string
xsd:string rdf:type rdfs:Datatype .
#################################################################
# Object Properties
#################################################################
### http://www.example.de/ns/qod#Interprets
:Interprets rdf:type owl:ObjectProperty ;
owl:inverseOf :hasInterpretation ;
rdfs:domain :QualityInterpretation ;
rdfs:range :QualityMetric .
### http://www.example.de/ns/qod#hasIndicator
:hasIndicator rdf:type owl:ObjectProperty ;
owl:inverseOf :isIndicatorOf ;
rdfs:domain <http://www.w3.org/ns/ssn/System> ;
rdfs:range :QualityIndicator .
### http://www.example.de/ns/qod#hasInterpretation
:hasInterpretation rdf:type owl:ObjectProperty ;
rdfs:domain :QualityMetric ;
rdfs:range :QualityInterpretation .
### http://www.example.de/ns/qod#hasMetric
:hasMetric rdf:type owl:ObjectProperty ;
owl:inverseOf :isMetricOf ;
rdfs:domain :QualityIndicator ;
rdfs:range :QualityMetric .
### http://www.example.de/ns/qod#hasUncertainty
:hasUncertainty rdf:type owl:ObjectProperty ;
rdfs:domain :MeasureWithUncertainty ;
rdfs:range :MeasurementUncertainty ,
:Uncertainty .
### http://www.example.de/ns/qod#inputAccessibleFrom
:inputAccessibleFrom rdf:type owl:ObjectProperty ;
rdfs:domain :QualityMetric ;
rdfs:comment "Data source from which the input necessary to calculate the quality metric is accessible from." ;
skos:example "A REST API service that provides sensor information like calibration data." .
### http://www.example.de/ns/qod#inputHasUnit
:inputHasUnit rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain :QualityInterpretation ;
rdfs:range <https://raw.githubusercontent.com/HajoRijgersberg/OM/master/om-2.0.rdf#Unit> ;
rdfs:comment "Information regarding the unit of the quantity used to interpret a given quality metric." .
### http://www.example.de/ns/qod#isIndicatorOf
:isIndicatorOf rdf:type owl:ObjectProperty ;
rdfs:domain :QualityIndicator ;
rdfs:range <http://www.w3.org/ns/ssn/System> .
### http://www.example.de/ns/qod#isMetricOf
:isMetricOf rdf:type owl:ObjectProperty ;
rdfs:domain :QualityMetric ;
rdfs:range :QualityIndicator .
### http://www.example.de/ns/scal#hasCalibrationModel
<http://www.example.de/ns/scal#hasCalibrationModel> rdf:type owl:ObjectProperty ;
rdfs:domain <http://www.example.de/ns/scal#CalibratedSensor> ;
schema:rangeIncludes <http://www.example.de/ns/scal#CalibrationModel> .
### http://www.example.de/ns/scal#hasEquation
<http://www.example.de/ns/scal#hasEquation> rdf:type owl:ObjectProperty ;
schema:domainIncludes <http://www.example.de/ns/scal#EquationModel> ;
schema:rangeIncludes <http://www.example.de/ns/scal#Equation> ;
rdfs:comment "Relation between an EquationModel and its Equations(s)."@en ;
rdfs:isDefinedBy <http://www.example.de/ns/scal##> ;
rdfs:label "has equation"@en .
### http://www.example.de/ns/scal#hasEquationModel
<http://www.example.de/ns/scal#hasEquationModel> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.example.de/ns/scal#hasCalibrationModel> ;
rdfs:isDefinedBy <http://www.example.de/ns/scal#> ;
rdfs:label "has equation model"@en .
### http://www.example.de/ns/scal#hasLocation
<http://www.example.de/ns/scal#hasLocation> rdf:type owl:ObjectProperty ;
schema:domainIncludes <http://www.w3.org/ns/sosa#Sensor> ;
schema:rangeIncludes <http://www.opengis.net/ont/geosparql#SpatialThing> ,
<http://www.w3.org/ns/sosa#FeatureOfInterest> ;
rdfs:comment "Relation between a Sensor and its location."@en ;
rdfs:isDefinedBy <http://www.example.de/ns/scal##> ;
rdfs:label "has location"@en .
### http://www.example.de/ns/scal#hasParameter
<http://www.example.de/ns/scal#hasParameter> rdf:type owl:ObjectProperty ;
schema:domainIncludes <http://www.example.de/ns/scal#EquationModel> ;
schema:rangeIncludes <http://www.example.de/ns/scal#MeasureWithUncertainty> ,
<http://www.example.de/ns/scal#Parameter> ,
om-2:Measure ;
rdfs:comment "Relation between an EquationModel and the Parameter(s) used in the mathematical expression."@en ;
rdfs:isDefinedBy <http://www.example.de/ns/scal#> ;
rdfs:label "has parameter"@en .
### http://www.example.de/ns/scal#hasVariable
<http://www.example.de/ns/scal#hasVariable> rdf:type owl:ObjectProperty ;
schema:domainIncludes <http://www.example.de/ns/scal#EquationModel> ;
schema:rangeIncludes <http://www.example.de/ns/scal#Variable> ;
rdfs:comment "Relation between an EquationModel and the Variables(s) used in the mathematical expression."@en ;
rdfs:isDefinedBy <http://www.example.de/ns/scal##> ;
rdfs:label "has variable"@en .
### http://www.example.de/ns/trans#hasArrayDefinition
trans:hasArrayDefinition rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf om-2:hasValue ;
rdfs:range trans:Array ,
om-2:Measure .
### http://www.example.de/ns/trans#hasBehavior
trans:hasBehavior rdf:type owl:ObjectProperty ;
rdfs:domain trans:TransferModel ,
[ rdf:type owl:Restriction ;
owl:onProperty trans:hasBehavior ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass trans:QualitativeBehavior
] ,
[ rdf:type owl:Restriction ;
owl:onProperty trans:isExpressedBy ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass trans:MathematicalObject
] ,
[ rdf:type owl:Restriction ;
owl:onProperty trans:isDefinedInDomain ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass trans:FrequencyDomain
] ,
[ rdf:type owl:Restriction ;
owl:onProperty trans:isOfSystemType ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass trans:LinearSystem
] ;
rdfs:range trans:QualitativeBehavior .
### http://www.example.de/ns/trans#hasCoefficients
trans:hasCoefficients rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf trans:hasArrayDefinition ;
rdfs:domain trans:MathematicalObject ;
rdfs:range trans:Array ;
rdfs:comment "A polynomial is defined by its coefficients stored in an array." .
### http://www.example.de/ns/trans#hasCoordinates
trans:hasCoordinates rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf trans:hasArrayDefinition ,
om-2:hasValue .
### http://www.example.de/ns/trans#hasCovarianceMatrix
trans:hasCovarianceMatrix rdf:type owl:ObjectProperty ;
rdfs:domain trans:MathematicalObject ,
trans:MultivariateUncertainty ,
<https://raw.githubusercontent.com/CLLKazan/OntoMathPro/develop/OntoMathPro.omn#E34> ,
[ rdf:type owl:Restriction ;
owl:onProperty :isMetricOf ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass <https://raw.githubusercontent.com/CLLKazan/OntoMathPro/develop/OntoMathPro.omn#E1547>
] ;
rdfs:range <https://raw.githubusercontent.com/CLLKazan/OntoMathPro/develop/OntoMathPro.omn#E1706> .
### http://www.example.de/ns/trans#hasDenominator
trans:hasDenominator rdf:type owl:ObjectProperty ;
rdfs:domain trans:RationalFraction ,
[ rdf:type owl:Restriction ;
owl:onProperty om-2:hasValue ;
owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
owl:onClass om-2:Measure
] ;
rdfs:range trans:Polynomial ,
[ rdf:type owl:Restriction ;
owl:onProperty om-2:hasValue ;
owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
owl:onClass om-2:Measure
] .
### http://www.example.de/ns/trans#hasFeedthroughMatrix
trans:hasFeedthroughMatrix rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf trans:hasArrayDefinition ;
rdfs:domain trans:StateSpaceMatrixNotation ;
rdfs:range trans:Array .
### http://www.example.de/ns/trans#hasFrequencyArray
trans:hasFrequencyArray rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf trans:hasCoordinates ;
rdfs:domain trans:FrequencySpectrum ,
[ rdf:type owl:Restriction ;
owl:onProperty trans:hasFrequencyArray ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass trans:Array
] ,
[ rdf:type owl:Restriction ;
owl:onProperty trans:hasValueArray ;
owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass trans:Array
] .
### http://www.example.de/ns/trans#hasFrequencyStructure
trans:hasFrequencyStructure rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf trans:hasValueStructure ;
rdfs:domain trans:TransferModel ;
rdfs:range trans:DimensionStructure .
### http://www.example.de/ns/trans#hasInputMatrix
trans:hasInputMatrix rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf trans:hasArrayDefinition ;
rdfs:domain trans:StateSpaceMatrixNotation ,
[ rdf:type owl:Restriction ;
owl:onProperty om-2:hasValue ;
owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
owl:onClass om-2:Measure
] ,
[ rdf:type owl:Restriction ;
owl:onProperty trans:hasInputMatrix ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass trans:Array
] ,
[ rdf:type owl:Restriction ;
owl:onProperty trans:hasOutputMatrix ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass trans:Array
] ;
rdfs:range trans:Array ,
[ rdf:type owl:Restriction ;
owl:onProperty om-2:hasValue ;
owl:minQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
owl:onClass om-2:Measure
] ,
[ rdf:type owl:Restriction ;
owl:onProperty om-2:hasNumericalValue ;
owl:allValuesFrom [ rdf:type rdfs:Datatype ;
owl:unionOf ( trans:MathMLLiteral
trans:TeXLiteral
rdf:XMLLiteral
)
]
] .
### http://www.example.de/ns/trans#hasNumerator
trans:hasNumerator rdf:type owl:ObjectProperty ;
rdfs:domain trans:RationalFraction ;
rdfs:range trans:Polynomial .
### http://www.example.de/ns/trans#hasOutputMatrix
trans:hasOutputMatrix rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf trans:hasArrayDefinition ;
rdfs:domain trans:StateSpaceMatrixNotation ;
rdfs:range trans:Array .
### http://www.example.de/ns/trans#hasPolynomialRoots
trans:hasPolynomialRoots rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf trans:hasArrayDefinition ;
rdfs:domain trans:Polynomial ;
rdfs:range trans:Array ,
om-2:Measure ;
rdfs:comment "A polynomial is defined by its roots stored in an array." .
### http://www.example.de/ns/trans#hasSystemMatrix
trans:hasSystemMatrix rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf trans:hasArrayDefinition ;
rdfs:domain trans:StateSpaceMatrixNotation ;
rdfs:range trans:Array ,
om-2:Measure .
### http://www.example.de/ns/trans#hasTimeArray
trans:hasTimeArray rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf trans:hasCoordinates ;
rdfs:domain trans:TimeSeries .
### http://www.example.de/ns/trans#hasTimeStructure
trans:hasTimeStructure rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf trans:hasValueStructure ;
rdfs:domain trans:TransferModel ;
rdfs:range trans:DimensionStructure .
### http://www.example.de/ns/trans#hasValueArray
trans:hasValueArray rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf trans:hasArrayDefinition ;
rdfs:range trans:Array .
### http://www.example.de/ns/trans#hasValueStructure
trans:hasValueStructure rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain trans:TransferModel ;
rdfs:range trans:DimensionStructure .
### http://www.example.de/ns/trans#isDefinedInDomain
trans:isDefinedInDomain rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain trans:TransferModel ;
rdfs:range trans:AnalyticDomain .
### http://www.example.de/ns/trans#isExpressedBy
trans:isExpressedBy rdf:type owl:ObjectProperty ;
rdfs:domain trans:TransferModel ;
rdfs:range trans:MathematicalObject .
### http://www.example.de/ns/trans#isOfFamily
trans:isOfFamily rdf:type owl:ObjectProperty ;
rdfs:range trans:FilterType ,
[ rdf:type owl:Restriction ;
owl:onProperty trans:hasBehavior ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass trans:FrequencyBehavior
] .
### http://www.example.de/ns/trans#isOfSystemType
trans:isOfSystemType rdf:type owl:ObjectProperty ;
rdfs:domain trans:TransferModel ;
rdfs:range trans:SystemType .
### http://www.ontology-of-units-of-measure.org/resource/om-2/hasValue
om-2:hasValue rdf:type owl:ObjectProperty ;
rdfs:domain trans:MathematicalObject .
### http://www.w3.org/2002/07/owl#topObjectProperty
owl:topObjectProperty rdf:type owl:ObjectProperty .
### http://www.w3.org/ns/sosa/actsOnProperty
sosa:actsOnProperty rdf:type owl:ObjectProperty ;
owl:inverseOf sosa:isActedOnBy ;
schema:rangeIncludes sosa:ActuatableProperty ;
rdfs:comment "Relation between an Actuation and the property of a FeatureOfInterest it is acting upon."@en ;
rdfs:isDefinedBy sosa: ,
sosa:OWLNamedIndividualImpl_51c882d3_408d_4166_b77e_c01d2efb27fd ;
rdfs:label "acts on property"@en ;
skos:definition "Relation between an Actuation and the property of a FeatureOfInterest it is acting upon."@en ;
skos:example "In the activity (Actuation) of automatically closing a window if the temperature in a room drops below 20 degrees Celsius, the property on which the Actuator acts upon is the state of the window as it changes from being open to being closed. "@en .
### http://www.w3.org/ns/sosa/hasFeatureOfInterest
sosa:hasFeatureOfInterest rdf:type owl:ObjectProperty ;
owl:inverseOf sosa:isFeatureOfInterestOf ;
schema:rangeIncludes sosa:FeatureOfInterest ,
sosa:OWLClassImpl_080542bc_4238_4cbd_a036_8217a87850dd ;
rdfs:comment "A relation between an Observation and the entity whose quality was observed, or between an Actuation and the entity whose property was modified, or between an act of Sampling and the entity that was sampled."@en ;
rdfs:isDefinedBy sosa: ,
sosa:OWLNamedIndividualImpl_51c882d3_408d_4166_b77e_c01d2efb27fd ;
rdfs:label "has feature of interest"@en ;
skos:definition "A relation between an Observation and the entity whose quality was observed, or between an Actuation and the entity whose property was modified, or between an act of Sampling and the entity that was sampled."@en ;
skos:example "For example, in an Observation of the weight of a person, the FeatureOfInterest is the person and the property is its weight."@en .
### http://www.w3.org/ns/sosa/hasResult
sosa:hasResult rdf:type owl:ObjectProperty ;
owl:inverseOf sosa:isResultOf ;
schema:rangeIncludes sosa:OWLClassImpl_080542bc_4238_4cbd_a036_8217a87850dd ;
rdfs:comment "Relation linking an Observation or Actuation or act of Sampling and a Result or Sample."@en ;
rdfs:isDefinedBy sosa: ,
sosa:OWLNamedIndividualImpl_51c882d3_408d_4166_b77e_c01d2efb27fd ;
rdfs:label "has result"@en ;
skos:definition "Relation linking an Observation or Actuation or act of Sampling and a Result or Sample."@en .
### http://www.w3.org/ns/sosa/hasSample
sosa:hasSample rdf:type owl:ObjectProperty ;
owl:inverseOf sosa:isSampleOf ;
rdf:type owl:InverseFunctionalProperty ;
schema:domainIncludes sosa:FeatureOfInterest ;
schema:rangeIncludes sosa:OWLClassImpl_080542bc_4238_4cbd_a036_8217a87850dd ;
rdfs:comment "Relation between a FeatureOfInterest and the Sample used to represent it."@en ;
rdfs:isDefinedBy sosa: ,
sosa:OWLNamedIndividualImpl_51c882d3_408d_4166_b77e_c01d2efb27fd ;
rdfs:label "has sample"@en ;
skos:definition "Relation between a FeatureOfInterest and the Sample used to represent it."@en .
### http://www.w3.org/ns/sosa/hosts
sosa:hosts rdf:type owl:ObjectProperty ;
owl:inverseOf sosa:isHostedBy ;
owl:propertyChainAxiom ( <http://www.w3.org/ns/ssn/inDeployment>
<http://www.w3.org/ns/ssn/deployedSystem>
) .
### http://www.w3.org/ns/sosa/isActedOnBy
sosa:isActedOnBy rdf:type owl:ObjectProperty ;
schema:domainIncludes sosa:ActuatableProperty ;
rdfs:comment "Relation between an ActuatableProperty of a FeatureOfInterest and an Actuation changing its state."@en ;
rdfs:isDefinedBy sosa: ;
skos:definition "Relation between an ActuatableProperty of a FeatureOfInterest and an Actuation changing its state."@en ;
skos:example "In the activity (Actuation) of automatically closing a window if the temperature in a room drops below 20 degrees Celsius, the property on which the Actuator acts upon is the state of the window as it changes from being open to being closed. "@en .
### http://www.w3.org/ns/sosa/isFeatureOfInterestOf
sosa:isFeatureOfInterestOf rdf:type owl:ObjectProperty ;
schema:domainIncludes sosa:FeatureOfInterest ,
sosa:OWLClassImpl_080542bc_4238_4cbd_a036_8217a87850dd ;
rdfs:comment "A relation between a FeatureOfInterest and an Observation about it, an Actuation acting on it, or an act of Sampling that sampled it."@en ;
rdfs:isDefinedBy sosa: ,
sosa:OWLNamedIndividualImpl_51c882d3_408d_4166_b77e_c01d2efb27fd ;
rdfs:label "is feature of interest of"@en ;
skos:definition "A relation between a FeatureOfInterest and an Observation about it, an Actuation acting on it, or an act of Sampling that sampled it."@en .
### http://www.w3.org/ns/sosa/isHostedBy
sosa:isHostedBy rdf:type owl:ObjectProperty .
### http://www.w3.org/ns/sosa/isObservedBy
sosa:isObservedBy rdf:type owl:ObjectProperty ;
owl:inverseOf sosa:observes ;
schema:domainIncludes sosa:ObservableProperty ;
schema:rangeIncludes sosa:OWLClassImpl_28ce790f_8a49_4961_93fa_6944a0d00033 ;
rdfs:comment "Relation between an ObservableProperty and the Sensor able to observe it."@en ;
rdfs:isDefinedBy sosa: ,
sosa:OWLNamedIndividualImpl_51c882d3_408d_4166_b77e_c01d2efb27fd ;
rdfs:label "is observed by"@en ;
skos:definition "Relation between an ObservableProperty and the Sensor able to observe it."@en .
### http://www.w3.org/ns/sosa/isResultOf
sosa:isResultOf rdf:type owl:ObjectProperty ;
schema:domainIncludes sosa:OWLClassImpl_080542bc_4238_4cbd_a036_8217a87850dd ;
rdfs:comment "Relation linking a Result to the Observation or Actuation or act of Sampling that created or caused it."@en ;
rdfs:isDefinedBy sosa: ,
sosa:OWLNamedIndividualImpl_51c882d3_408d_4166_b77e_c01d2efb27fd .
### http://www.w3.org/ns/sosa/isSampleOf
sosa:isSampleOf rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
schema:domainIncludes sosa:OWLClassImpl_080542bc_4238_4cbd_a036_8217a87850dd ;
schema:rangeIncludes sosa:FeatureOfInterest ;
rdfs:comment "Relation from a Sample to the FeatureOfInterest that it is intended to be representative of."@en ;
rdfs:isDefinedBy sosa: ,
sosa:OWLNamedIndividualImpl_51c882d3_408d_4166_b77e_c01d2efb27fd ;
rdfs:label "is sample of"@en ;
skos:definition "Relation from a Sample to the FeatureOfInterest that it is intended to be representative of."@en .
### http://www.w3.org/ns/sosa/madeActuation
sosa:madeActuation rdf:type owl:ObjectProperty ;
owl:inverseOf sosa:madeByActuator ;
schema:domainIncludes sosa:OWLClassImpl_469f12d2_b0e5_4426_91f4_16e9d18d8832 ;
rdfs:comment "Relation between an Actuator and the Actuation it has made."@en ;
rdfs:isDefinedBy sosa: ,
sosa:OWLNamedIndividualImpl_51c882d3_408d_4166_b77e_c01d2efb27fd ;
rdfs:label "made actuation"@en ;
skos:definition "Relation between an Actuator and the Actuation it has made."@en .
### http://www.w3.org/ns/sosa/madeByActuator
sosa:madeByActuator rdf:type owl:ObjectProperty ;
schema:rangeIncludes sosa:OWLClassImpl_469f12d2_b0e5_4426_91f4_16e9d18d8832 ;
rdfs:comment "Relation linking an Actuation to the Actuator that made that Actuation."@en ;
rdfs:isDefinedBy sosa: ,
sosa:OWLNamedIndividualImpl_51c882d3_408d_4166_b77e_c01d2efb27fd ;
rdfs:label "made by actuator"@en ;
skos:definition "Relation linking an Actuation to the Actuator that made that Actuation."@en .
### http://www.w3.org/ns/sosa/madeBySampler
sosa:madeBySampler rdf:type owl:ObjectProperty ;
owl:inverseOf sosa:madeSampling ;
schema:rangeIncludes sosa:OWLClassImpl_7dca06dd_f0b0_4b8d_b9db_4952d5231102 ;
rdfs:comment "Relation linking an act of Sampling to the Sampler (sampling device or entity) that made it."@en ;
rdfs:isDefinedBy sosa: ,
sosa:OWLNamedIndividualImpl_51c882d3_408d_4166_b77e_c01d2efb27fd ;
rdfs:label "made by sampler"@en ;
skos:definition "Relation linking an act of Sampling to the Sampler (sampling device or entity) that made it."@en .
### http://www.w3.org/ns/sosa/madeBySensor
sosa:madeBySensor rdf:type owl:ObjectProperty ;
owl:inverseOf sosa:madeObservation ;
schema:rangeIncludes sosa:OWLClassImpl_28ce790f_8a49_4961_93fa_6944a0d00033 ;
rdfs:comment "Relation between an Observation and the Sensor which made the Observation."@en ;
rdfs:isDefinedBy sosa: ,
sosa:OWLNamedIndividualImpl_51c882d3_408d_4166_b77e_c01d2efb27fd ;
rdfs:label "made by sensor"@en ;
skos:definition "Relation between an Observation and the Sensor which made the Observation."@en .
### http://www.w3.org/ns/sosa/madeObservation
sosa:madeObservation rdf:type owl:ObjectProperty ;
schema:domainIncludes sosa:OWLClassImpl_28ce790f_8a49_4961_93fa_6944a0d00033 ;
rdfs:comment "Relation between a Sensor and an Observation made by the Sensor."@en ;
rdfs:isDefinedBy sosa: ,
sosa:OWLNamedIndividualImpl_51c882d3_408d_4166_b77e_c01d2efb27fd ;
rdfs:label "made observation"@en ;
skos:definition "Relation between a Sensor and an Observation made by the Sensor."@en .
### http://www.w3.org/ns/sosa/madeSampling
sosa:madeSampling rdf:type owl:ObjectProperty ;
schema:domainIncludes sosa:OWLClassImpl_7dca06dd_f0b0_4b8d_b9db_4952d5231102 ;
rdfs:comment "Relation between a Sampler (sampling device or entity) and the Sampling act it performed."@en ;
rdfs:isDefinedBy sosa: ,
sosa:OWLNamedIndividualImpl_51c882d3_408d_4166_b77e_c01d2efb27fd ;
rdfs:label "made sampling"@en ;
skos:definition "Relation between a Sampler (sampling device or entity) and the Sampling act it performed."@en .
### http://www.w3.org/ns/sosa/observedProperty
sosa:observedProperty rdf:type owl:ObjectProperty ;
schema:rangeIncludes sosa:ObservableProperty ;
rdfs:comment "Relation linking an Observation to the property that was observed. The ObservableProperty should be a property of the FeatureOfInterest (linked by hasFeatureOfInterest) of this Observation."@en ;
rdfs:isDefinedBy sosa: ,
sosa:OWLNamedIndividualImpl_51c882d3_408d_4166_b77e_c01d2efb27fd ;
rdfs:label "observed property"@en ;
skos:definition "Relation linking an Observation to the property that was observed. The ObservableProperty should be a property of the FeatureOfInterest (linked by hasFeatureOfInterest) of this Observation."@en .
### http://www.w3.org/ns/sosa/observes
sosa:observes rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.w3.org/ns/ssn/forProperty> .
### http://www.w3.org/ns/sosa/phenomenonTime
sosa:phenomenonTime rdf:type owl:ObjectProperty ;
schema:rangeIncludes <http://www.w3.org/2006/time#TemporalEntity> ;
rdfs:comment "The time that the Result of an Observation, Actuation or Sampling applies to the FeatureOfInterest. Not necessarily the same as the resultTime. May be an Interval or an Instant, or some other compound TemporalEntity."@en ;
rdfs:isDefinedBy sosa: ,
sosa:OWLNamedIndividualImpl_51c882d3_408d_4166_b77e_c01d2efb27fd ;
rdfs:label "phenomenon time"@en ;
skos:definition "The time that the Result of an Observation, Actuation or Sampling applies to the FeatureOfInterest. Not necessarily the same as the resultTime. May be an Interval or an Instant, or some other compound TemporalEntity."@en .
### http://www.w3.org/ns/sosa/usedProcedure
sosa:usedProcedure rdf:type owl:ObjectProperty ;
owl:propertyChainAxiom ( sosa:madeByActuator
<http://www.w3.org/ns/ssn/implements>
) ,
( sosa:madeBySampler
<http://www.w3.org/ns/ssn/implements>
) ,
( sosa:madeBySensor
<http://www.w3.org/ns/ssn/implements>
) ;
rdfs:comment "A relation to link to a re-usable Procedure used in making an Observation, an Actuation, or a Sample, typically through a Sensor, Actuator or Sampler."@en ;
rdfs:isDefinedBy sosa: ,
sosa:OWLNamedIndividualImpl_51c882d3_408d_4166_b77e_c01d2efb27fd ;
rdfs:label "used procedure"@en ;
skos:definition "A relation to link to a re-usable Procedure used in making an Observation, an Actuation, or a Sample, typically through a Sensor, Actuator or Sampler."@en .
### http://www.w3.org/ns/ssn/deployedOnPlatform
<http://www.w3.org/ns/ssn/deployedOnPlatform> rdf:type owl:ObjectProperty ;
owl:inverseOf <http://www.w3.org/ns/ssn/inDeployment> ;
rdfs:comment "Relation between a Deployment and the Platform on which the Systems are deployed."@en ;
rdfs:isDefinedBy <http://www.w3.org/ns/ssn/> ;
rdfs:label "deployed on platform"@en ;
skos:definition "Relation between a Deployment and the Platform on which the Systems are deployed."@en .
### http://www.w3.org/ns/ssn/deployedSystem
<http://www.w3.org/ns/ssn/deployedSystem> rdf:type owl:ObjectProperty ;
owl:inverseOf <http://www.w3.org/ns/ssn/hasDeployment> ;
rdfs:comment "Relation between a Deployment and a deployed System."@en ;
rdfs:isDefinedBy <http://www.w3.org/ns/ssn/> ;
rdfs:label "deployed system"@en ;
skos:definition "Relation between a Deployment and a deployed System."@en .
### http://www.w3.org/ns/ssn/detects
<http://www.w3.org/ns/ssn/detects> rdf:type owl:ObjectProperty ;
rdfs:comment "A relation from a Sensor to the Stimulus that the Sensor detects. The Stimulus itself will be serving as a proxy for some ObservableProperty."@en ;
rdfs:isDefinedBy <http://www.w3.org/ns/ssn/> ;
rdfs:label "detects"@en ;
skos:definition "A relation from a Sensor to the Stimulus that the Sensor detects. The Stimulus itself will be serving as a proxy for some ObservableProperty."@en .
### http://www.w3.org/ns/ssn/forProperty
<http://www.w3.org/ns/ssn/forProperty> rdf:type owl:ObjectProperty ;
rdfs:comment "A relation between some aspect of an entity and a Property."@en ;
rdfs:isDefinedBy <http://www.w3.org/ns/ssn/> ;
rdfs:label "for property"@en ;
skos:definition "A relation between some aspect of an entity and a Property."@en ;
skos:example "For example, from a Sensor to the properties it can observe; from an Actuator to the properties it can act on; from a Deployment to the properties it was installed to observe or act on; from a SystemCapability to the Property the capability is described for."@en .
### http://www.w3.org/ns/ssn/hasDeployment
<http://www.w3.org/ns/ssn/hasDeployment> rdf:type owl:ObjectProperty ;
rdfs:comment "Relation between a System and a Deployment, recording that the System is deployed in that Deployment."@en ;
rdfs:isDefinedBy <http://www.w3.org/ns/ssn/> ;
rdfs:label "has deployment"@en ;
skos:definition "Relation between a System and a Deployment, recording that the System is deployed in that Deployment."@en .
### http://www.w3.org/ns/ssn/hasInput
<http://www.w3.org/ns/ssn/hasInput> rdf:type owl:ObjectProperty ;
rdfs:comment "Relation between a Procedure and an Input to it."@en ;
rdfs:isDefinedBy <http://www.w3.org/ns/ssn/> ;
rdfs:label "has input"@en ;
skos:definition "Relation between a Procedure and an Input to it."@en .
### http://www.w3.org/ns/ssn/hasOutput
<http://www.w3.org/ns/ssn/hasOutput> rdf:type owl:ObjectProperty ;
rdfs:comment "Relation between a Procedure and an Output of it."@en ;
rdfs:isDefinedBy <http://www.w3.org/ns/ssn/> ;
rdfs:label "has output"@en ;
skos:definition "Relation between a Procedure and an Output of it."@en .
### http://www.w3.org/ns/ssn/hasProperty
<http://www.w3.org/ns/ssn/hasProperty> rdf:type owl:ObjectProperty ;
owl:inverseOf <http://www.w3.org/ns/ssn/isPropertyOf> ;
rdfs:comment "Relation between an entity and a Property of that entity."@en ;
rdfs:isDefinedBy <http://www.w3.org/ns/ssn/> ;
rdfs:label "has property"@en ;
skos:definition "Relation between an entity and a Property of that entity."@en .
### http://www.w3.org/ns/ssn/hasSubSystem
<http://www.w3.org/ns/ssn/hasSubSystem> rdf:type owl:ObjectProperty ;
rdfs:comment "Relation between a System and its component parts."@en ;
rdfs:isDefinedBy <http://www.w3.org/ns/ssn/> ;
rdfs:label "has subsystem"@en ;
skos:definition "Relation between a System and its component parts."@en .
### http://www.w3.org/ns/ssn/implementedBy
<http://www.w3.org/ns/ssn/implementedBy> rdf:type owl:ObjectProperty ;
owl:inverseOf <http://www.w3.org/ns/ssn/implements> ;
rdfs:comment "Relation between a Procedure (an algorithm, procedure or method) and an entity that implements that Procedure in some executable way."@en ;
rdfs:isDefinedBy <http://www.w3.org/ns/ssn/> ;
rdfs:label "implemented by"@en ;
skos:definition "Relation between a Procedure (an algorithm, procedure or method) and an entity that implements that Procedure in some executable way."@en ;
skos:example "For example, the relationship between a scientific measuring Procedure and a sensor that senses via that Procedure."@en .
### http://www.w3.org/ns/ssn/implements
<http://www.w3.org/ns/ssn/implements> rdf:type owl:ObjectProperty ;
rdfs:comment "Relation between an entity that implements a Procedure in some executable way and the Procedure (an algorithm, procedure or method)."@en ;
rdfs:isDefinedBy <http://www.w3.org/ns/ssn/> ;
rdfs:label "implements"@en ;
skos:definition "Relation between an entity that implements a Procedure in some executable way and the Procedure (an algorithm, procedure or method)."@en ;
skos:example "For example, the relationship between a sensor and the scientific measuring Procedure via which it senses."@en .
### http://www.w3.org/ns/ssn/inDeployment
<http://www.w3.org/ns/ssn/inDeployment> rdf:type owl:ObjectProperty ;
rdfs:comment "Relation between a Platform and a Deployment, meaning that the deployedSystems of the Deployment are hosted on the Platform."@en ;
rdfs:isDefinedBy <http://www.w3.org/ns/ssn/> ;
rdfs:label "in deployment"@en ;
skos:definition "Relation between a Platform and a Deployment, meaning that the deployedSystems of the Deployment are hosted on the Platform."@en ;
skos:example "For example, a relation between a buoy and a deployment of several Sensors."@en .
### http://www.w3.org/ns/ssn/isPropertyOf
<http://www.w3.org/ns/ssn/isPropertyOf> rdf:type owl:ObjectProperty ;
rdfs:isDefinedBy <http://www.w3.org/ns/ssn/> ;
rdfs:label "is property of"@en ;
skos:definition "Relation between a Property and the entity it belongs to."@en .
### http://www.w3.org/ns/ssn/isProxyFor
<http://www.w3.org/ns/ssn/isProxyFor> rdf:type owl:ObjectProperty ;
rdfs:isDefinedBy <http://www.w3.org/ns/ssn/> ;
rdfs:label "is proxy for"@en ;
skos:definition "A relation from a Stimulus to the Property that the Stimulus is serving as a proxy for."@en ;
skos:example "For example, the expansion of quicksilver is a stimulus that serves as a proxy for some temperature property. An increase or decrease in the velocity of spinning cups on a wind sensor is serving as a proxy for the wind speed."@en .
### http://www.w3.org/ns/ssn/wasOriginatedBy
<http://www.w3.org/ns/ssn/wasOriginatedBy> rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:comment "Relation between an Observation and the Stimulus that originated it."@en ;
rdfs:isDefinedBy <http://www.w3.org/ns/ssn/> ;
rdfs:label "was originated by"@en ;
skos:definition "Relation between an Observation and the Stimulus that originated it."@en .
### http://www.w3.org/ns/ssn/systems/hasOperatingProperty
<http://www.w3.org/ns/ssn/systems/hasOperatingProperty> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.w3.org/ns/ssn/hasProperty> ;
rdfs:comment "Relation from an OperatingRange of a System to a OperatingPropery describing the operating range of the System."@en ;
rdfs:isDefinedBy <http://www.w3.org/ns/ssn/systems/> ;
rdfs:label "has operating property"@en ;
skos:definition "Relation from an OperatingRange of a System to a OperatingPropery describing the operating range of the System."@en .
### http://www.w3.org/ns/ssn/systems/hasOperatingRange
<http://www.w3.org/ns/ssn/systems/hasOperatingRange> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.w3.org/ns/ssn/hasProperty> ;
rdfs:comment "Relation from a System to an OperatingRange describing the normal operating environment of the System."@en ;
rdfs:isDefinedBy <http://www.w3.org/ns/ssn/systems/> ;
rdfs:label "has operating range"@en ;
skos:definition "Relation from a System to an OperatingRange describing the normal operating environment of the System."@en .
### http://www.w3.org/ns/ssn/systems/hasSurvivalProperty
<http://www.w3.org/ns/ssn/systems/hasSurvivalProperty> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.w3.org/ns/ssn/hasProperty> ;
rdfs:comment "Relation from a SurvivalRange of a System to a SurvivalProperty describing the survival range of the System."@en ;
rdfs:isDefinedBy <http://www.w3.org/ns/ssn/systems/> ;
rdfs:label "has survival property"@en ;
skos:definition "Relation from a SurvivalRange of a System to a SurvivalProperty describing the survival range of the System."@en .
### http://www.w3.org/ns/ssn/systems/hasSurvivalRange
<http://www.w3.org/ns/ssn/systems/hasSurvivalRange> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.w3.org/ns/ssn/hasProperty> ;
rdfs:comment "Relation from a System to a SurvivalRange."@en ;
rdfs:isDefinedBy <http://www.w3.org/ns/ssn/systems/> ;
rdfs:label "has survival range"@en ;
skos:definition "Relation from a System to a SurvivalRange."@en .
### http://www.w3.org/ns/ssn/systems/hasSystemCapability
<http://www.w3.org/ns/ssn/systems/hasSystemCapability> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.w3.org/ns/ssn/hasProperty> ;
rdfs:comment "Relation from a System to a SystemCapability describing the capabilities of the System under certain Conditions."@en ;
rdfs:isDefinedBy <http://www.w3.org/ns/ssn/systems/> ;
rdfs:label "has system capability"@en ;
skos:definition "Relation from a System to a SystemCapability describing the capabilities of the System under certain Conditions."@en .
### http://www.w3.org/ns/ssn/systems/hasSystemProperty
<http://www.w3.org/ns/ssn/systems/hasSystemProperty> rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf <http://www.w3.org/ns/ssn/hasProperty> ;
rdfs:comment "Relation from an SystemCapability of a System to a SystemProperty describing the capabilities of the System."@en ;
rdfs:isDefinedBy <http://www.w3.org/ns/ssn/systems/> ;
rdfs:label "has system property"@en ;
skos:definition "Relation from an SystemCapability of a System to a SystemProperty describing the capabilities of the System."@en .
### http://www.w3.org/ns/ssn/systems/inCondition
<http://www.w3.org/ns/ssn/systems/inCondition> rdf:type owl:ObjectProperty ;
rdfs:comment "Describes the prevailing environmental conditions for SystemCapabilites, OperatingRanges and SurvivalRanges."@en ;
rdfs:isDefinedBy <http://www.w3.org/ns/ssn/systems/> ;
rdfs:label "in condition"@en ;
skos:definition "Describes the prevailing environmental conditions for SystemCapabilites, OperatingRanges and SurvivalRanges."@en ;
skos:example "Used for example to say that a sensor has a particular accuracy in particular conditions."@en .
### http://www.w3.org/ns/ssn/systems/qualityOfObservation
<http://www.w3.org/ns/ssn/systems/qualityOfObservation> rdf:type owl:ObjectProperty ;
rdfs:comment "Relation linking an Observation to the adjudged quality of the Result. This is complimentary to the SystemCapability information recorded for the Sensor that made the Observation."@en ;
rdfs:isDefinedBy <http://www.w3.org/ns/ssn/> ;
rdfs:label "quality of observation"@en ;
skos:definition "Relation linking an Observation to the adjudged quality of the Result. This is complimentary to the SystemCapability information recorded for the Sensor that made the Observation."@en .
### http://www.wurvoc.org/bibliography/om-2/OWLObjectPropertyImpl_a5c93e56_401a_49fb_8a5b_838e6534e6e4
<http://www.wurvoc.org/bibliography/om-2/OWLObjectPropertyImpl_a5c93e56_401a_49fb_8a5b_838e6534e6e4> rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:label "reference"@en .
### https://raw.githubusercontent.com/HajoRijgersberg/OM/master/om-2.0.rdf#hasQuantity
<https://raw.githubusercontent.com/HajoRijgersberg/OM/master/om-2.0.rdf#hasQuantity> rdf:type owl:ObjectProperty .
### https://raw.githubusercontent.com/HajoRijgersberg/OM/master/om-2.0.rdf#hasUnit
<https://raw.githubusercontent.com/HajoRijgersberg/OM/master/om-2.0.rdf#hasUnit> rdf:type owl:ObjectProperty .
#################################################################
# Data properties
#################################################################
### http://www.example.de/ns/qod#CriticalIf
:CriticalIf rdf:type owl:DatatypeProperty ;
rdfs:domain :QualityInterpretation ;
rdfs:range [ rdf:type rdfs:Datatype ;
owl:unionOf ( trans:MathMLLiteral
trans:TeXLiteral
rdf:XMLLiteral
)
] ;
owl:propertyDisjointWith :GoodIf ,
:SufficientIf .
### http://www.example.de/ns/qod#CriticalThreshold
:CriticalThreshold rdf:type owl:DatatypeProperty ;
rdfs:domain :QualityInterpretation .
### http://www.example.de/ns/qod#CriticalThresholdMax
:CriticalThresholdMax rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :CriticalThreshold .
### http://www.example.de/ns/qod#CriticalThresholdMin
:CriticalThresholdMin rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :CriticalThreshold .
### http://www.example.de/ns/qod#GoodIf
:GoodIf rdf:type owl:DatatypeProperty ;
rdfs:domain :QualityInterpretation ;
rdfs:range [ rdf:type rdfs:Datatype ;
owl:unionOf ( trans:MathMLLiteral
trans:TeXLiteral
rdf:XMLLiteral
)
] ;
owl:propertyDisjointWith :SufficientIf .
### http://www.example.de/ns/qod#LastCalibrationDate
:LastCalibrationDate rdf:type owl:DatatypeProperty ;
rdfs:domain <http://www.example.de/ns/scal#CalibratedSensor> ;
rdfs:range xsd:date ,
xsd:dateTime ,