-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcask_cropped.ttl
2406 lines (1804 loc) · 119 KB
/
cask_cropped.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.w3id.org/hsu-aut/cask#> .
@prefix CSS: <http://www.w3id.org/hsu-aut/css#> .
@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 rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix ISA88: <http://www.hsu-ifa.de/ontologies/ISA-TR88#> .
@prefix VDI2206: <http://www.hsu-ifa.de/ontologies/VDI2206#> .
@prefix VDI3682: <http://www.w3id.org/hsu-aut/VDI3682#> .
@prefix DINEN61360: <http://www.hsu-ifa.de/ontologies/DINEN61360#> .
@base <http://www.w3id.org/hsu-aut/cask#> .
<http://www.w3id.org/hsu-aut/cask> rdf:type owl:Ontology ;
owl:versionIRI <http://www.w3id.org/hsu-aut/cask/2.5.3> ;
rdfs:comment "A domain ontology to describe capabilities and skills. This ontology extends the concepts defined in the CSS ontology (https://github.com/hsu-aut/css-ontology) by using ontology design patterns for different standards." ,
"An ontology for the Capability, Skill and Service reference model defined by Plattform Industrie 4.0. See https://www.plattform-i40.de/IP/Redaktion/DE/Downloads/Publikation/CapabilitiesSkillsServices.html for a description of the abstract reference model." ;
rdfs:isDefinedBy "https://www.plattform-i40.de/IP/Redaktion/DE/Downloads/Publikation/CapabilitiesSkillsServices.html" ;
owl:versionInfo "2.5.3" .
#################################################################
# Object Properties
#################################################################
### arguments
<http://openmath.org/vocab/math#arguments> rdf:type owl:ObjectProperty .
### attributeKey
<http://openmath.org/vocab/math#attributeKey> rdf:type owl:ObjectProperty .
### attributeValue
<http://openmath.org/vocab/math#attributeValue> rdf:type owl:ObjectProperty .
### binder
<http://openmath.org/vocab/math#binder> rdf:type owl:ObjectProperty .
### body
<http://openmath.org/vocab/math#body> rdf:type owl:ObjectProperty .
### operator
<http://openmath.org/vocab/math#operator> rdf:type owl:ObjectProperty .
### symbol
<http://openmath.org/vocab/math#symbol> rdf:type owl:ObjectProperty .
### target
<http://openmath.org/vocab/math#target> rdf:type owl:ObjectProperty .
### variables
<http://openmath.org/vocab/math#variables> rdf:type owl:ObjectProperty .
### example
<http://openmath.org/vocab/math/meta#example> rdf:type owl:ObjectProperty .
### formalProperty
<http://openmath.org/vocab/math/meta#formalProperty> rdf:type owl:ObjectProperty .
### Data_Element_describes
DINEN61360:Data_Element_describes rdf:type owl:ObjectProperty ;
owl:inverseOf DINEN61360:has_Data_Element ;
rdfs:domain DINEN61360:Data_Element ;
rdfs:comment """Description:
This ObjectProperty is used to connect a data element with any kind of entity that is described by the data element""" .
### Instance_Description_has_Type
DINEN61360:Instance_Description_has_Type rdf:type owl:ObjectProperty ;
owl:inverseOf DINEN61360:Type_Description_has_Instance ;
rdfs:domain DINEN61360:Instance_Description ;
rdfs:range DINEN61360:Type_Description .
### Type_Description_has_Instance
DINEN61360:Type_Description_has_Instance rdf:type owl:ObjectProperty ;
rdfs:domain DINEN61360:Type_Description ;
rdfs:range DINEN61360:Instance_Description .
### complex_Data_Type_has_Member
DINEN61360:complex_Data_Type_has_Member rdf:type owl:ObjectProperty ;
owl:inverseOf DINEN61360:is_Member_of_Complex_Data_Type ;
rdfs:domain [ owl:intersectionOf ( DINEN61360:Instance_Description
[ rdf:type owl:Restriction ;
owl:onProperty DINEN61360:Instance_Description_has_Type ;
owl:allValuesFrom DINEN61360:Complex_Data_Type
]
) ;
rdf:type owl:Class
] ;
rdfs:range DINEN61360:Complex_Data_Type_Member ;
rdfs:comment """Description:
ObjectProperty that is used to connect an instance of a complex data type with corresponding members of the complex data type. These members are connected to types and instances of other (complex) data types""" .
### has_Data_Element
DINEN61360:has_Data_Element rdf:type owl:ObjectProperty ;
rdfs:range DINEN61360:Data_Element ;
rdfs:comment """Description:
This ObjectProperty is used to connect any kind of entity with a data element that is used for its description.""" .
### has_Instance_Description
DINEN61360:has_Instance_Description rdf:type owl:ObjectProperty ;
owl:inverseOf DINEN61360:is_Instance_Description_of_Data_Element ;
rdf:type owl:InverseFunctionalProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( DINEN61360:Complex_Data_Type_Member
DINEN61360:Data_Element
)
] ;
rdfs:range DINEN61360:Instance_Description ;
rdfs:comment """Description:
ObjectProperty is used to connect an individual that needs to be described by DataProperties with the Instance Description of that properties.""" .
### has_Type_Description
DINEN61360:has_Type_Description rdf:type owl:ObjectProperty ;
owl:inverseOf DINEN61360:is_Type_Description_of_Data_Element ;
rdf:type owl:FunctionalProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( DINEN61360:Complex_Data_Type_Member
DINEN61360:Data_Element
)
] ;
rdfs:range DINEN61360:Type_Description ;
rdfs:comment """Description:
ObjectProperty is used to connect an individual that needs to be described by DataProperties with the Type Description of that properties.
Functional:
Any indivudual representing a property, can have only one Type Description""" .
### is_Instance_Description_of_Data_Element
DINEN61360:is_Instance_Description_of_Data_Element rdf:type owl:ObjectProperty ;
rdfs:comment """Description:
ObjectProperty is used to connect an Instance Description with the Data_Element that it describes.
Inverse of has_Instance_Description""" .
### is_Member_of_Complex_Data_Type
DINEN61360:is_Member_of_Complex_Data_Type rdf:type owl:ObjectProperty ;
rdfs:domain DINEN61360:Complex_Data_Type_Member ;
rdfs:range [ owl:intersectionOf ( DINEN61360:Instance_Description
[ rdf:type owl:Restriction ;
owl:onProperty DINEN61360:Instance_Description_has_Type ;
owl:allValuesFrom DINEN61360:Complex_Data_Type
]
) ;
rdf:type owl:Class
] .
### is_Type_Description_of_Data_Element
DINEN61360:is_Type_Description_of_Data_Element rdf:type owl:ObjectProperty ;
rdfs:comment """Description:
ObjectProperty is used to connect a Type_Description with a Data_Element that has instace descriptions of this type.
Inverse of has_Type_Description""" .
### first
rdf:first rdf:type owl:ObjectProperty .
### rest
rdf:rest rdf:type owl:ObjectProperty .
### consistsOf
VDI3682:consistsOf rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf owl:topObjectProperty ;
rdfs:domain VDI3682:Process ;
rdfs:range [ rdf:type owl:Class ;
owl:unionOf ( VDI3682:ProcessOperator
VDI3682:State
VDI3682:SystemLimit
)
] ;
rdfs:comment "Describes containment of process elements (state, process operator, system limit) within a process"@en .
### dependency
VDI3682:dependency rdf:type owl:ObjectProperty ;
rdfs:domain VDI3682:State ;
rdfs:range VDI3682:State ;
rdfs:comment """This ObjectProperty is not explicitly contained within the VDI 3682. It is used to describe dependencies of In- and Outputs. Due to open world assumption (OWA) the case that more than one In- or Outputs occur does always mean an alternative Input. For the case, that In- and Outputs are depending on each other, the ObjectProperty Dependency can be used. It can be interpreted as an \"AND\" constructor between In- and/or Outputs of a process.
E.g.: A process has two Inputs. If they are alternatives, then this fact must not be explcitly modelled. If both Inputs have to go into the process, then the \"Dependency\" ObjectProperty is assigned between them.
More complex example: Input A and B have to go into a process, while Input C and D are alternatives for A and B. The Inputs have to go as groups in the process. This equals: A AND B OR C AND D. The Dependency Operator is used between A and B as well as between C and D.
Furthermore, the Operator can be used to express dependencies between In- and Outputs. If A and B are alternative Inputs that result in the Ouputs C for A or D for B then this equals: A AND C or D AND B. The ObjectProperty can be used between both, In- and/or Outputs."""@en .
### flow
VDI3682:flow rdf:type owl:ObjectProperty ;
rdfs:comment "most generic concept for flows taken from VDI3682 and refined by semantics that is used in graphical notation" .
### hasAlternativeInput
VDI3682:hasAlternativeInput rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf VDI3682:hasInput .
### hasAlternativeOutput
VDI3682:hasAlternativeOutput rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf VDI3682:hasOutput .
### hasInput
VDI3682:hasInput rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf VDI3682:flow ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( VDI3682:Process
VDI3682:ProcessOperator
)
] ;
rdfs:range VDI3682:State ;
rdfs:comment "ObjectProperty that is used to link a ProcessOperator with an Input, i.e. Energy or Information or Product." .
### hasOutput
VDI3682:hasOutput rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf VDI3682:flow ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( VDI3682:Process
VDI3682:ProcessOperator
)
] ;
rdfs:range VDI3682:State ;
rdfs:comment "ObjectProperty that is used to link a ProcessOperator with an Output, i.e. Energy or Information or Product." .
### hasParallelInput
VDI3682:hasParallelInput rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf VDI3682:hasInput .
### hasParallelOutput
VDI3682:hasParallelOutput rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf VDI3682:hasOutput .
### hasPredecessor
VDI3682:hasPredecessor rdf:type owl:ObjectProperty ;
owl:inverseOf VDI3682:hasSuccessor ;
rdf:type owl:TransitiveProperty ;
rdfs:domain VDI3682:ProcessOperator ;
rdfs:range VDI3682:ProcessOperator ;
owl:propertyChainAxiom ( VDI3682:hasInput
[ owl:inverseOf VDI3682:hasOutput
]
) ;
rdfs:comment "an object property that is used to infer a predecessing relationship between entities" .
### hasSubProcess
VDI3682:hasSubProcess rdf:type owl:ObjectProperty ,
owl:TransitiveProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( VDI3682:Process
VDI3682:ProcessOperator
)
] ;
rdfs:range VDI3682:Process ;
owl:propertyChainAxiom ( VDI3682:isComposedOf
[ owl:inverseOf VDI3682:consistsOf
]
) ;
rdfs:comment "Is used to find the complete decomposed process of a process operatore. Note: This is syntactic sugar as a subprocess can be found by following \"isComposedOf\" and the inverse of \"consistsOf\"." .
### hasSuccessor
VDI3682:hasSuccessor rdf:type owl:ObjectProperty ,
owl:TransitiveProperty ;
rdfs:domain VDI3682:ProcessOperator ;
rdfs:range VDI3682:ProcessOperator ;
owl:propertyChainAxiom ( VDI3682:hasOutput
[ owl:inverseOf VDI3682:hasInput
]
) ;
rdfs:comment "an object property that is used to infer a successing relationshipt between entities" .
### hasUpperProcess
VDI3682:hasUpperProcess rdf:type owl:ObjectProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( VDI3682:Process
VDI3682:ProcessOperator
)
] ;
rdfs:range VDI3682:Process ;
owl:propertyChainAxiom ( [ owl:inverseOf VDI3682:isComposedOf
]
[ owl:inverseOf VDI3682:consistsOf
]
) ;
rdfs:comment "Is used to find the parent (upper) process of a lower level process operator. Note: This is syntactic sugar as a parent process can be found by following the inverse of \"isComposedOf\" and the inverse of \"consistsOf\"." .
### isAssignedTo
VDI3682:isAssignedTo rdf:type owl:ObjectProperty ;
rdfs:domain VDI3682:ProcessOperator ;
rdfs:range VDI3682:TechnicalResource ;
rdfs:comment "ObjectProperty that is used to indicate that a process operator is performed by a technical resource." .
### isCharacterizedBy
VDI3682:isCharacterizedBy rdf:type owl:ObjectProperty ;
rdfs:range VDI3682:Characteristic .
### isComposedOf
VDI3682:isComposedOf rdf:type owl:ObjectProperty ;
rdfs:domain VDI3682:ProcessOperator ;
rdfs:range VDI3682:ProcessOperator ;
rdfs:comment "Used for decomposition. A process operator can be composed of multiple more detailed process operators." .
### isIdentifiedBy
VDI3682:isIdentifiedBy rdf:type owl:ObjectProperty ;
rdfs:range VDI3682:Identification .
### exposesSkillMethod
:exposesSkillMethod rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf CSS:exposes ;
rdfs:domain CSS:SkillInterface ;
rdfs:range :SkillMethod .
### exposesSkillOutput
:exposesSkillOutput rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :exposesSkillVariable ;
rdfs:domain CSS:SkillInterface ;
rdfs:range :SkillOutput .
### exposesSkillParameter
:exposesSkillParameter rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :exposesSkillVariable ;
rdfs:domain CSS:SkillInterface ;
rdfs:range CSS:SkillParameter .
### exposesSkillVariable
:exposesSkillVariable rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf CSS:exposes ;
rdfs:domain CSS:SkillInterface ;
rdfs:range :SkillVariable .
### exposesStateMachine
:exposesStateMachine rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf CSS:exposes ;
rdfs:domain CSS:SkillInterface ;
rdfs:range CSS:StateMachine .
### hasCurrentState
:hasCurrentState rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ,
owl:AsymmetricProperty ;
rdfs:domain CSS:Skill ;
rdfs:range ISA88:State .
### hasCurrentStateOutput
:hasCurrentStateOutput rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasSkillOutput .
### hasSkillCommand
:hasSkillCommand rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf CSS:hasParameter ;
rdfs:domain CSS:Skill ;
rdfs:range :SkillCommand .
### hasSkillMethod
:hasSkillMethod rdf:type owl:ObjectProperty ;
rdfs:domain CSS:Skill ;
rdfs:range :SkillMethod .
### hasSkillOutput
:hasSkillOutput rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasSkillVariable ;
rdfs:domain CSS:Skill ;
rdfs:range :SkillOutput .
### hasSkillVariable
:hasSkillVariable rdf:type owl:ObjectProperty ;
rdfs:domain CSS:Skill ;
rdfs:range :SkillVariable .
### invokes
:invokes rdf:type owl:ObjectProperty ;
owl:inverseOf :isInvokedBy ;
rdfs:domain :SkillMethod ;
rdfs:range ISA88:Transition .
### isInvokedBy
:isInvokedBy rdf:type owl:ObjectProperty .
### accessibleThrough
CSS:accessibleThrough rdf:type owl:ObjectProperty ;
rdfs:domain CSS:Skill ;
rdfs:range CSS:SkillInterface .
### assures
CSS:assures rdf:type owl:ObjectProperty ;
rdfs:domain CSS:Service ;
rdfs:range CSS:Product .
### behaviorConformsTo
CSS:behaviorConformsTo rdf:type owl:ObjectProperty ;
rdfs:domain CSS:Resource ,
CSS:Skill ;
rdfs:range CSS:StateMachine .
### controls
CSS:controls rdf:type owl:ObjectProperty ;
rdfs:domain CSS:Skill ;
rdfs:range CSS:Process .
### demands
CSS:demands rdf:type owl:ObjectProperty ;
rdfs:domain CSS:ServiceRequester ;
rdfs:range CSS:Service .
### exposes
CSS:exposes rdf:type owl:ObjectProperty ;
rdfs:domain CSS:SkillInterface ;
rdfs:range :SkillMethod ,
CSS:SkillParameter ,
CSS:StateMachine .
### hasInput
CSS:hasInput rdf:type owl:ObjectProperty ;
rdfs:domain CSS:Process ;
rdfs:range CSS:Product .
### hasOutput
CSS:hasOutput rdf:type owl:ObjectProperty ;
rdfs:domain CSS:Process ;
rdfs:range CSS:Product .
### hasParameter
CSS:hasParameter rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasSkillVariable ;
rdfs:domain CSS:Skill ;
rdfs:range CSS:SkillParameter .
### isInputFor
CSS:isInputFor rdf:type owl:ObjectProperty ;
rdfs:domain CSS:Service ;
rdfs:range CSS:ServiceOffer .
### isRealizedBy
CSS:isRealizedBy rdf:type owl:ObjectProperty ;
rdfs:domain CSS:Capability ,
CSS:Property ;
rdfs:range CSS:Skill ,
CSS:SkillParameter .
### isRealizedBySkill
CSS:isRealizedBySkill rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf CSS:isRealizedBy ;
rdfs:domain CSS:Capability ;
rdfs:range CSS:Skill .
### isRealizedBySkillParameter
CSS:isRealizedBySkillParameter rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf CSS:isRealizedBy ;
rdfs:domain CSS:Property ;
rdfs:range CSS:SkillParameter .
### isRestrictedBy
CSS:isRestrictedBy rdf:type owl:ObjectProperty ;
rdfs:domain CSS:Capability ;
rdfs:range CSS:CapabilityConstraint .
### isSpecifiedBy
CSS:isSpecifiedBy rdf:type owl:ObjectProperty ;
rdfs:domain CSS:Capability ,
CSS:Service ;
rdfs:range CSS:Property .
### offers
CSS:offers rdf:type owl:ObjectProperty ;
rdfs:domain CSS:ServiceProvider ;
rdfs:range CSS:Service .
### offersUseOf
CSS:offersUseOf rdf:type owl:ObjectProperty ;
rdfs:domain CSS:Service ;
rdfs:range CSS:Capability .
### proposes
CSS:proposes rdf:type owl:ObjectProperty ;
rdfs:domain CSS:ServiceProvider ;
rdfs:range CSS:ServiceOffer .
### provides
CSS:provides rdf:type owl:ObjectProperty ;
rdfs:domain CSS:Resource .
### providesCapability
CSS:providesCapability rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf CSS:provides ;
rdfs:domain CSS:Resource ;
rdfs:range :ProvidedCapability ,
CSS:Capability .
### providesSkill
CSS:providesSkill rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf CSS:provides ;
rdfs:domain CSS:Resource ;
rdfs:range CSS:Skill .
### receives
CSS:receives rdf:type owl:ObjectProperty ;
rdfs:domain CSS:ServiceRequester ;
rdfs:range CSS:ServiceOffer .
### references
CSS:references rdf:type owl:ObjectProperty ;
rdfs:domain CSS:CapabilityConstraint ;
rdfs:range CSS:Property .
### requiresCapability
CSS:requiresCapability rdf:type owl:ObjectProperty ;
rdfs:domain CSS:Process ;
rdfs:range CSS:Capability .
### requiresProduct
CSS:requiresProduct rdf:type owl:ObjectProperty ;
rdfs:domain CSS:ServiceRequester ;
rdfs:range CSS:Product .
#################################################################
# Data properties
#################################################################
### encoding
<http://openmath.org/vocab/math#encoding> rdf:type owl:DatatypeProperty ;
rdfs:comment "Specifies the encoding of a foreign object." .
### name
<http://openmath.org/vocab/math#name> rdf:type owl:DatatypeProperty ;
rdfs:comment "Represents the name of a variable." .
### value
<http://openmath.org/vocab/math#value> rdf:type owl:DatatypeProperty ;
rdfs:comment "Represents the value of a literal or a foreign object." .
### commentedProperty
<http://openmath.org/vocab/math/meta#commentedProperty> rdf:type owl:DatatypeProperty .
### description
<http://openmath.org/vocab/math/meta#description> rdf:type owl:DatatypeProperty .
### Array_Member_Dimension
DINEN61360:Array_Member_Dimension rdf:type owl:DatatypeProperty ;
rdfs:domain DINEN61360:Array_Member ;
rdfs:range xsd:int ;
rdfs:comment """Description:
Indicates the dimension of an array member.""" .
### Array_Member_Position
DINEN61360:Array_Member_Position rdf:type owl:DatatypeProperty ;
rdfs:comment """Description:
DataProperty that indicates the position of an Array_Member in a DataType List.""" .
### Boolean_Operator
DINEN61360:Boolean_Operator rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:range [ rdf:type rdfs:Datatype ;
owl:oneOf [ rdf:type rdf:List ;
rdf:first "AND" ;
rdf:rest [ rdf:type rdf:List ;
rdf:first "NAND" ;
rdf:rest [ rdf:type rdf:List ;
rdf:first "NOR" ;
rdf:rest [ rdf:type rdf:List ;
rdf:first "OR" ;
rdf:rest [ rdf:type rdf:List ;
rdf:first "XOR" ;
rdf:rest rdf:nil
]
]
]
]
]
] ;
rdfs:comment "Is used with Boolean_Association to define what kind of boolean relation connects the Data_Elements of the Boolean_Association" .
### Code
DINEN61360:Code rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf owl:topDataProperty ;
rdf:type owl:FunctionalProperty ;
rdfs:domain DINEN61360:Type_Description ;
rdfs:comment """Description:
DIN EN 61360-1:2018 Section 7.3
Unique identifier of this data element type. Preferable this should be a standardized identifier (e.g. from eclss or common data dictionary). optional exlusion of \"o\" and \"i\" is not implemented.
Liability: necessary
type: string with 6 digits between, first three digits are a-z and last three digits are 0-9 poposed data range expression: xsd:string[pattern \"[a-z0-9] {6}\"]""" .
### Created_at_Date
DINEN61360:Created_at_Date rdf:type owl:DatatypeProperty ;
rdfs:domain DINEN61360:Instance_Description ;
rdfs:range xsd:dateTimeStamp ;
rdfs:comment """Description:
A SemAnz40 attribute, that indicates the creation date for an instance.""" .
### Definition
DINEN61360:Definition rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf owl:topDataProperty ;
rdfs:domain DINEN61360:Type_Description ;
rdfs:comment """Description:
A textual definition of the data element
Liability: Necessary
DIN EN 61360-1:2018 Section 8.3
Type: String
Poposed Data Range Expression: xsd:string""" .
### Drawing_Reference
DINEN61360:Drawing_Reference rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf owl:topDataProperty ;
rdfs:domain DINEN61360:Type_Description ;
rdfs:comment """Description:
A link to a drawing (or picture) that is used for further explanation of the data element
Liability: Optional
DIN EN 61360-1:2018 Section 6.13
Type: Contains a URL link as a string to a picture
Poposed Data Range Expression: xsd:string""" .
### Expression_Goal
DINEN61360:Expression_Goal rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf owl:topDataProperty ;
rdf:type owl:FunctionalProperty ;
rdfs:domain DINEN61360:Instance_Description ;
rdfs:range [ rdf:type rdfs:Datatype ;
owl:oneOf [ rdf:type rdf:List ;
rdf:first "Actual_Value" ;
rdf:rest [ rdf:type rdf:List ;
rdf:first "Assurance" ;
rdf:rest [ rdf:type rdf:List ;
rdf:first "Requirement" ;
rdf:rest rdf:nil
]
]
]
] ;
rdfs:comment """Description:
The goal of the values expression, which can be a Requirement, an Assurance or an actual (e.g. measured) value.
Liability: Necessary""" .
### Format_DIN61360_SemAnz40
DINEN61360:Format_DIN61360_SemAnz40 rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf owl:topDataProperty ;
rdfs:domain DINEN61360:Data_Element ;
rdfs:comment """Description:
Indicates, whether the described type or entity is described by the DIN61360&SemAnz40 Format.
Liability: Necessary
Type: If true, the Data Element is based on the Din61360 and SemAnz40 description
Poposed Data Range Expression: xsd:boolean""" .
### Formula
DINEN61360:Formula rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf owl:topDataProperty ;
rdfs:domain DINEN61360:Type_Description ;
rdfs:comment """Description:
A mathematical euqation that is being used for characterization of the data element
Liability: Optional
DIN EN 61360-1:2018 Section 6.5
Type: contains a URL link as a string to a source file that describes the formula
Poposed Data Range Expression: xsd:string""" .
### List_Member_Position
DINEN61360:List_Member_Position rdf:type owl:DatatypeProperty ;
rdfs:domain DINEN61360:List_Member ;
rdfs:range xsd:int ;
rdfs:comment """Description:
DataProperty that indicates the position of a List_Member in a DataType List.""" .
### Logic_Interpretation
DINEN61360:Logic_Interpretation rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf owl:topDataProperty ;
rdf:type owl:FunctionalProperty ;
rdfs:domain DINEN61360:Instance_Description ;
rdfs:range [ rdf:type rdfs:Datatype ;
owl:oneOf [ rdf:type rdf:List ;
rdf:first "<" ;
rdf:rest [ rdf:type rdf:List ;
rdf:first "<=" ;
rdf:rest [ rdf:type rdf:List ;
rdf:first "=" ;
rdf:rest [ rdf:type rdf:List ;
rdf:first ">" ;
rdf:rest [ rdf:type rdf:List ;
rdf:first ">=" ;
rdf:rest rdf:nil
]
]
]
]
]
] ;
rdfs:comment """Description:
Indicates, whether a value with a certain Expression Goal has to be considered as equal (\"=\"), greater than (\"<\"), lower than (\">\") or in combination with an equals (i.e. \"<=\", \">=\").
Liability: Necessary""" .
### Note
DINEN61360:Note rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf owl:topDataProperty ;
rdfs:domain DINEN61360:Type_Description ;
rdfs:comment """Description:
Additional information that are important to understand the meaning of the data element
Liability: Optional
DIN EN 61360-1:2018 Section 8.4
Type: String
Poposed Data Range Expression: xsd:string""" .
### Preferred_Letter_Symbol
DINEN61360:Preferred_Letter_Symbol rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf owl:topDataProperty ;
rdfs:domain DINEN61360:Type_Description ;
rdfs:comment """Description:
A sign or literal that is used to represent the property (e.g. greek \"sigma\" for tension))
Liability: Optional
DIN EN 61360-1:2018 Section 6.6
Type: IEC 60027, IEC 60747 or IEC 60148 compliant formula sign described as a string
Poposed Data Range Expression: xsd:string""" .
### Preferred_Name
DINEN61360:Preferred_Name rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf owl:topDataProperty ;
rdfs:domain DINEN61360:Type_Description ;
rdfs:comment """Description:
Represents the preferred name of the data element type, that is being used for searches for instance.
Liability: Necessary
DIN EN 61360-1:2018 Section 7.4
Type: String with lower and upper case, with a maximum of 70 characters
Poposed Data Range Expression: xsd:string[maxLength 70]""" .
### Quality
DINEN61360:Quality rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf owl:topDataProperty ;
rdfs:domain DINEN61360:Instance_Description ;
rdfs:comment """Description:
Not supported so far, since it requires a additional quality ontology""" .
### Remark
DINEN61360:Remark rdf:type owl:DatatypeProperty ;
rdfs:domain DINEN61360:Type_Description ;
rdfs:comment """Additional information that can be used to express a oppinion but should not change the meaning of the definition.
DIN EN 61360-1:2018 Section 8.5""" .
### Revision_Number
DINEN61360:Revision_Number rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf owl:topDataProperty ;
rdfs:domain DINEN61360:Type_Description ;
rdfs:comment """Description:
Number that represents the actual count of changes
Liability: Necessary
DIN EN 61360-1:2018 Section 7.5
Type: Integer with two digits between 1 and 99
Poposed Data Range Expression: xsd:integer[>= 1 , <= 99]""" .
### Short_Name
DINEN61360:Short_Name rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf owl:topDataProperty ;
rdfs:domain DINEN61360:Type_Description ;
rdfs:comment """Description:
A short name or acronym that is used for the preferred name
Liability: Necessary
DIN EN 61360-1:2018 Section 7.6
Type: Strong restrictions of DIN61360 not implemented, just strings necessary. Maximum characters is 17.
Poposed Data Range Expression: xsd:string[maxLength 17]""" .
### Source_Document_of_Definition
DINEN61360:Source_Document_of_Definition rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf owl:topDataProperty ;
rdfs:domain DINEN61360:Type_Description ;
rdfs:comment """Description:
A link to a source file, where the definition of the data element was taken from
Liability: Optional
DIN EN 61360-1:2018 Section 8.6
Type: Should contain a description of the source document with a maximum of 80 characters. Document has to be approved by ISO or IEC (e.g. should be a standard like IEC XXXXX). Alternatively use a URL to give a source document that is not approved by ISO.
Poposed Data Range Expression: xsd:string""" .
### Synonymous_Letter_Symbol
DINEN61360:Synonymous_Letter_Symbol rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf owl:topDataProperty ;
rdfs:domain DINEN61360:Type_Description ;
rdfs:comment """Description:
A synonym that is used for the preferred equation sign
Liability: Optional
DIN EN 61360-1:2018 Section 6.7
Type: IEC 60027, IEC 60747 or IEC 60148 compliant formula sign
Poposed Data Range Expression: xsd:string""" .
### Synonymous_Name
DINEN61360:Synonymous_Name rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf owl:topDataProperty ;
rdfs:domain DINEN61360:Type_Description ;
rdfs:comment """Description:
Synonyms to the preferred name
Liability: Optional
DIN EN 61360-1:2018 Section 7.7
Type: String with lower and upper case, with a maximum of 70 characters
Poposed Data Range Expression: xsd:string[maxLength 70]""" .
### Unit_of_Measure
DINEN61360:Unit_of_Measure rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf owl:topDataProperty ;
rdfs:domain DINEN61360:Type_Description ;
rdfs:comment """Description:
Defines the unit of measure for a data element (e.g. km/h)
Liability: case dependend, checked by SWRL rule 2
DIN EN 61360-1:2018 Section 10.7
Type: This data property represents the unit of measure, which should be ISO 31 compliant (SI-Units)
Poposed Data Range Expression: xsd:string""" .
### Value
DINEN61360:Value rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf owl:topDataProperty ;
rdf:type owl:FunctionalProperty ;
rdfs:domain [ owl:intersectionOf ( DINEN61360:Instance_Description
[ rdf:type owl:Restriction ;
owl:onProperty DINEN61360:Instance_Description_has_Type ;
owl:allValuesFrom DINEN61360:Simple_Data_Type
]
) ;
rdf:type owl:Class
] ;
rdfs:comment """Description:
The actual value of something being described.
Liability: Necessary
SemAnz40
Type: This data property represents the value of the data element, which is a string, while the actual data type is represented by the Data Property DataType (!)
Poposed Data Range Expression: xsd:string""" .
### Value_Format_Field_length
DINEN61360:Value_Format_Field_length rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf owl:topDataProperty ;
rdfs:domain DINEN61360:Type_Description ;
rdfs:comment """Description:
Defines the representation of a data element in length and kind. See DIN61360 for detailed description of possible formats. Possible definitions include non-quantitative formats, quantitative formats and maximum count of characters
Liability: Necessary
DIN EN 61360-1:2018 Section 10.8
Type: This data property represents only the field length, since this could be exponential (expressed with an E), it is a string
Poposed Data Range Expression: xsd:string""" .
### Value_Format_Field_length_Variable
DINEN61360:Value_Format_Field_length_Variable rdf:type owl:DatatypeProperty ;