-
Notifications
You must be signed in to change notification settings - Fork 2
/
aml.ttl
1059 lines (774 loc) · 42.4 KB
/
aml.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 : <https://w3id.org/i40/aml#> .
@prefix cc: <http://creativecommons.org/ns#> .
@prefix cp: <http://www.ontologydesignpatterns.org/cp/owl/partof.owl#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix om: <http://www.wurvoc.org/vocabularies/om-1.8/> .
@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 foaf: <http://xmlns.com/foaf/spec/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix voaf: <http://purl.org/vocommons/voaf#> .
@prefix void: <http://rdfs.org/ns/void#> .
@prefix terms: <http://purl.org/dc/terms/> .
@prefix schema: <http://schema.org/> .
@base <https://w3id.org/i40/aml#> .
<https://w3id.org/i40/aml#> rdf:type owl:Ontology ;
rdfs:comment "A Vocabulary to represent the AutomationML Standard - IEC 62714"@en ;
void:vocabulary rdf: ,
rdfs: ,
skos: ;
skos:prefLabel "aml"@en ;
vann:preferredNamespacePrefix "aml" ;
terms:contributor <https://www.linkedin.com/in/soerenauer/> ;
owl:versionInfo "0.1" ;
terms:created "2016-03-23"^^xsd:date ;
void:vocabulary xml: ;
skos:definition "An Ontology to represent the AutomationML Standard - IEC 62714"@en ;
terms:creator <http://sda.cs.uni-bonn.de/people/irlan-grangel-gonzalez/> ;
void:vocabulary <https://w3id.org/i40/aml#> ;
rdfs:isDefinedBy <https://w3id.org/i40/aml#> ;
terms:contributor <https://www.linkedin.com/in/marta-sabou-0b310a1/> ;
terms:creator <https://at.linkedin.com/in/olga-kovalenko-979552108/> ;
void:vocabulary foaf: ;
<http://usefulinc.com/ns/doap#repository> <https://github.com/i40-Tools/AutomationMLOntology> ;
void:vocabulary dc: ;
skos:altLabel "Alternative label for an AML object"@en ;
void:vocabulary terms: ,
xsd: ;
dc:rights "This work is distributed under a Creative Commons Attribution License (http://creativecommons.org/licenses/by/3.0/)."@en ;
terms:license <http://creativecommons.org/licenses/by-nc-sa/3.0/> ;
vann:preferredNamespaceUri "https://w3id.org/i40/aml/" .
#################################################################
# 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/license
terms:license 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://rdfs.org/ns/void#vocabulary
void:vocabulary rdf:type owl:AnnotationProperty .
### http://schema.org/affiliation
schema:affiliation rdf:type owl:AnnotationProperty .
### http://usefulinc.com/ns/doap#repository
<http://usefulinc.com/ns/doap#repository> 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#commment
rdfs:commment rdf:type owl:AnnotationProperty .
### http://www.w3.org/2000/01/rdf-schema#isDefinedBy
rdfs:isDefinedBy 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#versionInfo
owl:versionInfo rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#altLabel
skos:altLabel 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#prefLabel
skos:prefLabel rdf:type owl:AnnotationProperty .
#################################################################
# Datatypes
#################################################################
### http://www.w3.org/1999/02/22-rdf-syntax-ns#PlainLiteral
rdf:PlainLiteral rdf:type rdfs:Datatype .
### http://www.w3.org/2001/XMLSchema#anyURI
xsd:anyURI rdf:type rdfs:Datatype .
### http://www.w3.org/2001/XMLSchema#dateTime
xsd:dateTime rdf:type rdfs:Datatype .
### http://www.w3.org/2001/XMLSchema#decimal
xsd:decimal rdf:type rdfs:Datatype .
### http://www.w3.org/2001/XMLSchema#integer
xsd:integer rdf:type rdfs:Datatype .
### http://www.w3.org/2001/XMLSchema#string
xsd:string rdf:type rdfs:Datatype .
#################################################################
# Object Properties
#################################################################
### http://www.ontologydesignpatterns.org/cp/owl/partof.owl#isPartOf
cp:isPartOf rdf:type owl:ObjectProperty ,
owl:TransitiveProperty ;
rdfs:isDefinedBy "http://www.ontologydesignpatterns.org/cp/owl/partof.owl" .
### http://www.w3.org/ns/prov#wasGeneratedBy
prov:wasGeneratedBy rdf:type owl:ObjectProperty ;
rdfs:domain :CAEXFile ;
rdfs:range prov:Activity ;
rdfs:isDefinedBy "http://www.w3.org/ns/prov#wasGeneratedBy" .
### http://www.wurvoc.org/vocabularies/om-1.8/phenomenon
om:phenomenon rdf:type owl:ObjectProperty .
### http://www.wurvoc.org/vocabularies/om-1.8/unit_of_measure
om:unit_of_measure rdf:type owl:ObjectProperty .
### https://w3id.org/i40/aml#contains
:contains rdf:type owl:ObjectProperty ;
rdfs:domain :CAEXFile ;
skos:definition "Superproperty to describe the connection of the CAEX file with the main CAEX library elements, e.g., InterfaceClassLib, RoleClassLib, and SystemUnitClassLib."@en ;
skos:prefLabel "contains"@en .
### https://w3id.org/i40/aml#hasAdditionalInformation
:hasAdditionalInformation rdf:type owl:ObjectProperty ;
rdfs:domain :CAEXFile ;
rdfs:range :AdditionalInformation ;
rdfs:label "hasAdditionalInformation"@en ;
skos:definition "Connect the CAEXFile with the Additional information concept"@en ;
skos:prefLabel "hasAdditionalInformation"@en .
### https://w3id.org/i40/aml#hasAttribute
:hasAttribute rdf:type owl:ObjectProperty ;
rdfs:domain owl:Thing ;
rdfs:range :Attribute ;
rdfs:label "hasAttribute"@en ;
skos:definition "General property to describe the relation of the CAEX components with Attributes"@en ;
skos:prefLabel "hasAttribute"@en .
### https://w3id.org/i40/aml#hasAttributeIC
:hasAttributeIC rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasAttribute ;
rdfs:domain :InterfaceClass ;
rdfs:range :Attribute ;
rdfs:label "hasAttributeIC"@en ;
skos:definition "Connects the Interface Class with Attributes"@en ;
skos:prefLabel "hasAttributeIC"@en .
### https://w3id.org/i40/aml#hasAttributeIE
:hasAttributeIE rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasAttribute ;
rdfs:domain :InternalElement ;
rdfs:range :Attribute ;
rdfs:label "hasAttributeIE"@en ;
skos:definition "Connects the Internal Elements with Attributes"@en ;
skos:prefLabel "hasAttributeIE"@en .
### https://w3id.org/i40/aml#hasAttributeRC
:hasAttributeRC rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasAttribute ;
rdfs:domain :RoleClass ;
rdfs:range :Attribute ;
rdfs:label "hasAttributeRC"@en ;
skos:definition "Connects Role Classes with Attributes"@en ;
skos:prefLabel "hasAttributeRC"@en .
### https://w3id.org/i40/aml#hasAttributeSUC
:hasAttributeSUC rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasAttribute ;
rdfs:domain :SystemUnitClass ;
rdfs:range :Attribute ;
rdfs:label "hasAttributeSUC"@en ;
skos:definition "Connects System Unit Classes with Attributes"@en ;
skos:prefLabel "hasAttributeSUC"@en .
### https://w3id.org/i40/aml#hasBaseSystemUnitClass
:hasBaseSystemUnitClass rdf:type owl:ObjectProperty ;
rdfs:domain :InternalElement ;
rdfs:range :SystemUnitClass ;
rdfs:label "hasBaseSystemUnitClass"@en ;
skos:definition "Links Internal Elements with System Unit Classes"@en ;
skos:prefLabel "hasBaseSystemUnitClass"@en .
### https://w3id.org/i40/aml#hasExternalReference
:hasExternalReference rdf:type owl:ObjectProperty ;
rdfs:domain :CAEXFile ;
rdfs:range :ExternalReference ;
rdfs:label "hasExternalReference"@en ;
skos:definition "A CAEX File contains external references." ;
skos:prefLabel "hasExternalReference"@en .
### https://w3id.org/i40/aml#hasInstanceHierarchy
:hasInstanceHierarchy rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :contains ;
rdfs:domain :CAEXFile ;
rdfs:range :InstanceHierarchy ;
rdfs:label "hasInstanceHierarchy"@en ;
skos:definition "Points to the CAEX file to the Instance Hierarchy."@en ;
skos:prefLabel "hasInstanceHierarchy"@en .
### https://w3id.org/i40/aml#hasInterface
:hasInterface rdf:type owl:ObjectProperty ;
rdfs:range :InterfaceClass ;
rdfs:label "hasInterface"@en ;
skos:definition "Superproperty to link elements to Interface Classes"@en ;
skos:prefLabel "hasInterface"@en .
### https://w3id.org/i40/aml#hasInterfaceClass
:hasInterfaceClass rdf:type owl:ObjectProperty ;
rdfs:domain :InterfaceClassLib ;
rdfs:range :InterfaceClass ;
rdfs:label "hasInterfaceClass"@en ;
skos:definition "Models the relation between Interface Class Lib and Interface Class."@en ;
skos:prefLabel "hasInterfaceClass"@en .
### https://w3id.org/i40/aml#hasInterfaceClassLib
:hasInterfaceClassLib rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :contains ;
rdfs:domain :CAEXFile ;
rdfs:range :InterfaceClassLib ;
rdfs:label "hasInterfaceClassLib"@en ;
skos:definition "Points to the CAEX file to the InterfaceClassLib."@en ;
skos:prefLabel "hasInterfaceClassLib"@en .
### https://w3id.org/i40/aml#hasInterfaceIE
:hasInterfaceIE rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasInterface ;
rdfs:domain :InternalElement ;
rdfs:range :InterfaceClass ;
rdfs:label "hasInterfaceIE"@en ;
skos:definition "Connects Internal Elements with Interface Classes"@en ;
skos:prefLabel "hasInterfaceIE"@en .
### https://w3id.org/i40/aml#hasInterfaceRC
:hasInterfaceRC rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasInterface ;
rdfs:domain :RoleClass ;
rdfs:range :InterfaceClass ;
rdfs:label "hasInterfaceRC"@en ;
skos:definition "Connects Role Classes with Interface Classes"@en ;
skos:prefLabel "hasInterfaceRC"@en .
### https://w3id.org/i40/aml#hasInterfaceSUC
:hasInterfaceSUC rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasInterface ;
rdfs:domain :SystemUnitClass ;
rdfs:range :InterfaceClass ;
rdfs:label "hasInterfaceSUC"@en ;
skos:definition "Connects System Unit Classes with Interface Classes"@en ;
skos:prefLabel "hasInterfaceSUC"@en .
### https://w3id.org/i40/aml#hasInternalElement
:hasInternalElement rdf:type owl:ObjectProperty ;
rdfs:domain :InstanceHierarchy ;
rdfs:range :InternalElement ;
skos:definition "Hierarchy has many internal elements."@en ;
skos:prefLabel "hasInternalElement"@en .
### https://w3id.org/i40/aml#hasPart
:hasPart rdf:type owl:ObjectProperty ,
owl:TransitiveProperty .
### https://w3id.org/i40/aml#hasPartIE
:hasPartIE rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasPart ;
owl:inverseOf :isPartOfIE ;
rdf:type owl:TransitiveProperty ;
rdfs:domain :InternalElement ;
rdfs:range :InternalElement .
### https://w3id.org/i40/aml#hasPartSUC
:hasPartSUC rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasPart ;
owl:inverseOf :isPartOfSUC ;
rdf:type owl:TransitiveProperty ;
rdfs:domain :SystemUnitClass ;
rdfs:range :SystemUnitClass .
### https://w3id.org/i40/aml#hasProject
:hasProject rdf:type owl:ObjectProperty ;
rdfs:domain :AdditionalInformation ;
rdfs:range :Project ;
skos:definition "Related Project for the CAEX File."@en ;
skos:prefLabel "hasProject"@en .
### https://w3id.org/i40/aml#hasRefPartnerSideA_Interface
:hasRefPartnerSideA_Interface rdf:type owl:ObjectProperty ;
rdfs:domain :InternalLink ;
rdfs:range :ExternalInterface ;
skos:definition "Reference an Internal Link with an element A."@en ;
skos:prefLabel "hasRefPartnerSideA"@en .
### https://w3id.org/i40/aml#hasRefPartnerSideA_Object
:hasRefPartnerSideA_Object rdf:type owl:ObjectProperty ;
rdfs:domain :InternalLink .
### https://w3id.org/i40/aml#hasRefPartnerSideA_Object_IE
:hasRefPartnerSideA_Object_IE rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasRefPartnerSideA_Object ;
rdfs:domain :InternalLink ;
rdfs:range :InternalElement .
### https://w3id.org/i40/aml#hasRefPartnerSideA_Object_SUC
:hasRefPartnerSideA_Object_SUC rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasRefPartnerSideA_Object ;
rdfs:domain :InternalLink ;
rdfs:range :SystemUnitClass .
### https://w3id.org/i40/aml#hasRefPartnerSideB_Interface
:hasRefPartnerSideB_Interface rdf:type owl:ObjectProperty ;
rdfs:domain :InternalLink ;
rdfs:range :ExternalInterface ;
skos:definition "Reference an Internal Link with an element B."@en ;
skos:prefLabel "hasRefPartnerSideB"@en .
### https://w3id.org/i40/aml#hasRefPartnerSideB_Object
:hasRefPartnerSideB_Object rdf:type owl:ObjectProperty ;
rdfs:domain :InternalLink .
### https://w3id.org/i40/aml#hasRefPartnerSideB_Object_IE
:hasRefPartnerSideB_Object_IE rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasRefPartnerSideB_Object ;
rdfs:domain :InternalLink ;
rdfs:range :SystemUnitClass .
### https://w3id.org/i40/aml#hasRefPartnerSideB_Object_SUC
:hasRefPartnerSideB_Object_SUC rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasRefPartnerSideB_Object ;
rdfs:domain :InternalLink ;
rdfs:range :SystemUnitClass .
### https://w3id.org/i40/aml#hasRefSemAttribute
:hasRefSemAttribute rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasSemanticRef ;
rdfs:domain :Attribute ;
rdfs:range :eClassSpecification .
### https://w3id.org/i40/aml#hasRefSemRC
:hasRefSemRC rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasSemanticRef ;
rdfs:domain :RoleClass ;
rdfs:range :eClassSpecification ;
skos:altLabel "RoleClasseClassReference"@en ;
skos:definition "A Role Class points to its ID according to eClass"@en ;
skos:prefLabel "eClassRCReference" .
### https://w3id.org/i40/aml#hasRoleClass
:hasRoleClass rdf:type owl:ObjectProperty ;
rdfs:domain :RoleClassLib ;
rdfs:range :RoleClass ;
skos:definition "A Role Class lib contains a Role Class"@en ;
skos:prefLabel "hasRoleClass"@en .
### https://w3id.org/i40/aml#hasRoleClassLib
:hasRoleClassLib rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :contains ;
rdfs:domain :CAEXFile ;
rdfs:range :RoleClassLib ;
skos:definition "Points the CAEX file to the RoleClassLib"@en ;
skos:prefLabel "hasRoleClassLib"@en .
### https://w3id.org/i40/aml#hasRoleRequerement
:hasRoleRequerement rdf:type owl:ObjectProperty ;
rdfs:range :RoleClass ;
skos:prefLabel "hasRoleRequerement"@en .
### https://w3id.org/i40/aml#hasRoleRequirementIE
:hasRoleRequirementIE rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasRoleRequerement ;
rdfs:domain :InternalElement ;
rdfs:range :RoleClass .
### https://w3id.org/i40/aml#hasRoleRequirementSUC
:hasRoleRequirementSUC rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasRoleRequerement ;
rdfs:domain :SystemUnitClass ;
rdfs:range :RoleClass .
### https://w3id.org/i40/aml#hasSemanticRef
:hasSemanticRef rdf:type owl:ObjectProperty ;
rdfs:range :ExternalStandard ;
skos:definition "General property which points to an external standard to provide semantic identification for a given element."@en ;
skos:prefLabel "hasSemanticRef"@en .
### https://w3id.org/i40/aml#hasSupportedRoleClass
:hasSupportedRoleClass rdf:type owl:ObjectProperty ;
rdfs:range :RoleClass ;
skos:definition "Internal elements has Supported Role Class"@en ;
skos:prefLabel "supportedRoleClass"@en .
### https://w3id.org/i40/aml#hasSupportedRoleClassIE
:hasSupportedRoleClassIE rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasSupportedRoleClass ;
rdfs:domain :InternalElement ;
rdfs:range :RoleClass .
### https://w3id.org/i40/aml#hasSupportedRoleClassSUC
:hasSupportedRoleClassSUC rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :hasSupportedRoleClass ;
rdfs:domain :SystemUnitClass ;
rdfs:range :RoleClass .
### https://w3id.org/i40/aml#hasSystemUnitClass
:hasSystemUnitClass rdf:type owl:ObjectProperty ;
rdfs:domain :SystemUnitClassLib ;
rdfs:range :SystemUnitClass ;
skos:prefLabel "hasSystemUnitClass" .
### https://w3id.org/i40/aml#hasSystemUnitClassLib
:hasSystemUnitClassLib rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :contains ;
rdfs:domain :CAEXFile ;
rdfs:range :SystemUnitClassLib ;
skos:definition "Points to the CAEX file to the SystemUnitClassLib."@en ;
skos:prefLabel "hasInterfaceClassLib"@en .
### https://w3id.org/i40/aml#hasUnit
:hasUnit rdf:type owl:ObjectProperty ;
rdfs:domain :Attribute ;
rdfs:range om:Unit_of_measure .
### https://w3id.org/i40/aml#hasUnitValue
:hasUnitValue rdf:type owl:ObjectProperty ;
rdfs:domain :Attribute ;
rdfs:range om:Measure ;
skos:prefLabel "hasAttributeValue"@en .
### https://w3id.org/i40/aml#isConnectedToEClass
:isConnectedToEClass rdf:type owl:ObjectProperty ;
skos:definition "Points to the eCl@ass connection for a given element"@en ;
skos:prefLabel "eClassIsConnectedTo"@en .
### https://w3id.org/i40/aml#isPartOfIE
:isPartOfIE rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cp:isPartOf ;
rdf:type owl:TransitiveProperty ;
rdfs:domain :InternalElement ;
rdfs:range :InternalElement ;
skos:altLabel "InternalElementPartOf"@en ;
skos:definition "Connects the Internal Element with other Internal Elements that are part of the given Internal Element"@en ;
skos:prefLabel "isPartOfIE"@en .
### https://w3id.org/i40/aml#isPartOfSUC
:isPartOfSUC rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf cp:isPartOf ;
rdf:type owl:TransitiveProperty ;
rdfs:domain :SystemUnitClass ;
rdfs:range :SystemUnitClass ;
skos:altLabel "SystemUnitClassPartOf"@en ;
skos:definition "Connects the System Unit Class with another System Unit Class Elements"@en ;
skos:prefLabel "isPartOfSUC"@en .
#################################################################
# Data properties
#################################################################
### http://purl.org/dc/elements/1.1/identifier
dc:identifier rdf:type owl:DatatypeProperty .
### http://purl.org/dc/elements/1.1/title
dc:title rdf:type owl:DatatypeProperty .
### http://www.wurvoc.org/vocabularies/om-1.8/numerical_value
om:numerical_value rdf:type owl:DatatypeProperty .
### https://w3id.org/i40/aml#hasAMLVersion
:hasAMLVersion rdf:type owl:DatatypeProperty ;
rdfs:domain :AdditionalInformation ;
rdfs:range xsd:decimal ;
skos:prefLabel "hasAMLVersion"@en .
### https://w3id.org/i40/aml#hasAttributeDataType
:hasAttributeDataType rdf:type owl:DatatypeProperty ;
rdfs:domain :Attribute ;
rdfs:range xsd:string ;
skos:prefLabel "hasDataType"@en .
### https://w3id.org/i40/aml#hasAttributeDescription
:hasAttributeDescription rdf:type owl:DatatypeProperty ;
rdfs:domain :Attribute ;
rdfs:range rdf:PlainLiteral ;
skos:definition "Points to an optional description of the Attribute"@en ;
skos:prefLabel "hasDescription"@en .
### https://w3id.org/i40/aml#hasAttributeName
:hasAttributeName rdf:type owl:DatatypeProperty ;
rdfs:domain :Attribute ;
rdfs:range xsd:string ;
skos:prefLabel "hasAttributeName"@en .
### https://w3id.org/i40/aml#hasAttributeValue
:hasAttributeValue rdf:type owl:DatatypeProperty ;
rdfs:domain :Attribute ;
rdfs:range xsd:string ;
skos:prefLabel "hasAttributeValue"@en .
### https://w3id.org/i40/aml#hasClassificationClass
:hasClassificationClass rdf:type owl:DatatypeProperty ;
rdfs:domain :eClassSpecification ;
rdfs:range xsd:string ;
skos:definition "Points to the eClass classification Class a given Element"@en ;
skos:prefLabel "eClassClassificationClass"@en .
### https://w3id.org/i40/aml#hasExternalReferenceAlias
:hasExternalReferenceAlias rdf:type owl:DatatypeProperty ;
rdfs:domain :ExternalReference ;
rdfs:range xsd:string ;
skos:definition "A external Reference of a CAEX File has Alias" ;
skos:prefLabel "externalReferenceAlias"@en .
### https://w3id.org/i40/aml#hasExternalReferencePath
:hasExternalReferencePath rdf:type owl:DatatypeProperty ;
rdfs:domain :ExternalReference ;
rdfs:range xsd:string ;
skos:definition "A external Reference of a CAEX File contains path to the file" ;
skos:prefLabel "externalReferencePath"@en .
### https://w3id.org/i40/aml#hasICID
:hasICID rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf dc:identifier ;
rdf:type owl:FunctionalProperty ;
rdfs:domain :InterfaceClass ;
rdfs:range xsd:string ;
skos:definition "Unique ID for the Interface Class"@en ;
skos:prefLabel "hasICID"@en .
### https://w3id.org/i40/aml#hasIDIE
:hasIDIE rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf dc:identifier ;
rdf:type owl:FunctionalProperty ;
rdfs:domain :InternalElement ;
rdfs:range xsd:string ;
skos:definition "Unique Identification of an Internal Element"@en ;
skos:prefLabel "internalElementId"@en .
### https://w3id.org/i40/aml#hasIRDIeClass
:hasIRDIeClass rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :eClassSpecification ;
rdfs:range xsd:string ;
skos:definition "Points to the eClass unique identification(IRDI) a given Element"@en ;
skos:prefLabel "eClassIRDI"@en .
### https://w3id.org/i40/aml#hasName
:hasName rdf:type owl:DatatypeProperty ;
skos:definition "General property to define names in AutomationML"@en ;
skos:prefLabel "hasName"@en .
### https://w3id.org/i40/aml#hasNameAttribute
:hasNameAttribute rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :hasName ;
rdfs:domain :Attribute ;
rdfs:range rdf:PlainLiteral ;
skos:definition "Defines the name of the Attribute concept"@en ;
skos:prefLabel "hasNameAttribute"@en .
### https://w3id.org/i40/aml#hasNameFile
:hasNameFile rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :hasName ;
rdfs:domain :CAEXFile ;
rdfs:range rdf:PlainLiteral ;
skos:definition "Defines the name of the main AutomationML File"@en ;
skos:prefLabel "hasNameFile" .
### https://w3id.org/i40/aml#hasNameIC
:hasNameIC rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :hasName ;
rdfs:domain :InterfaceClass ;
rdfs:range rdf:PlainLiteral ;
skos:altLabel "hasInterfaceClassName"@en ;
skos:definition "Name of the Interface Class"@en ;
skos:prefLabel "hasNameIC"@en .
### https://w3id.org/i40/aml#hasNameIE
:hasNameIE rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :hasName ;
rdf:type owl:FunctionalProperty ;
rdfs:domain :InternalElement ;
rdfs:range rdf:PlainLiteral ;
skos:altLabel "hasInternalElementName"@en ;
skos:definition "Name of an Internal Element"@en ;
skos:prefLabel "hasNameIE"@en .
### https://w3id.org/i40/aml#hasNameIH
:hasNameIH rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :hasName ;
rdfs:domain :InstanceHierarchy ;
rdfs:range rdf:PlainLiteral ;
skos:altLabel "hasInstanceHierarchyName"@en ;
skos:definition "Given Name of the Instance Hierarchy"@en ;
skos:prefLabel "hasNameIH"@en .
### https://w3id.org/i40/aml#hasNameRC
:hasNameRC rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :hasName ;
rdf:type owl:FunctionalProperty ;
rdfs:domain :RoleClass ;
rdfs:range rdf:PlainLiteral ;
skos:altLabel "hasRoleClassName"@en ;
skos:definition "Name for a RoleClass"@en ;
skos:prefLabel "hasNameRC"@en .
### https://w3id.org/i40/aml#hasNameSUC
:hasNameSUC rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :hasName ;
rdf:type owl:FunctionalProperty ;
rdfs:domain :SystemUnitClass ;
rdfs:range rdf:PlainLiteral ;
skos:altLabel "hasSystemUnitClassName"@en ;
skos:definition "Given Name of the System Unit Class"@en ;
skos:prefLabel "hasNameSUC"@en .
### https://w3id.org/i40/aml#hasProjectId
:hasProjectId rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf dc:identifier ,
dc:title ;
rdfs:domain :Project ;
rdfs:range xsd:string ;
skos:definition "Unique identification of a Project."@en ;
skos:prefLabel "hasProjectTitle"@en .
### https://w3id.org/i40/aml#hasProjectTitle
:hasProjectTitle rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf dc:title ;
rdfs:domain :Project ;
rdfs:range xsd:string ;
skos:prefLabel "has Project Release" ,
"hasProjectRelease"@en .
### https://w3id.org/i40/aml#hasRefBaseClassPath
:hasRefBaseClassPath rdf:type owl:DatatypeProperty ;
rdfs:domain :ExternalInterface ,
:InterfaceClass ,
:RoleClassLib ;
rdfs:range xsd:string ;
skos:definition "Stores the name of the parent class"@en ;
skos:prefLabel "refBaseClassPath"@en .
### https://w3id.org/i40/aml#hasRefBaseClassPathIC
:hasRefBaseClassPathIC rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :hasRefBaseClassPath ;
rdfs:domain :InterfaceClass ;
rdfs:range rdf:PlainLiteral .
### https://w3id.org/i40/aml#hasRefBaseClassPathRC
:hasRefBaseClassPathRC rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :hasRefBaseClassPath ;
rdfs:domain :RoleClass ;
rdfs:range rdf:PlainLiteral .
### https://w3id.org/i40/aml#hasRefBaseClassPathSUC
:hasRefBaseClassPathSUC rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :hasRefBaseClassPath ;
rdfs:domain :SystemUnitClass ;
rdfs:range rdf:PlainLiteral .
### https://w3id.org/i40/aml#hasRefBaseRoleClassPath
:hasRefBaseRoleClassPath rdf:type owl:DatatypeProperty ;
rdfs:range xsd:string ;
skos:definition "Points to the path of the Base RoleClass"@en ;
skos:prefLabel "hasRefBaseRoleClassPath"@en .
### https://w3id.org/i40/aml#hasRefBaseSystemUnitPath
:hasRefBaseSystemUnitPath rdf:type owl:DatatypeProperty ;
rdfs:domain :InternalElement ;
rdfs:range xsd:string ;
skos:altLabel "Ref Base System Unit Path"@en ;
skos:prefLabel "refBaseSUPath"@en .
### https://w3id.org/i40/aml#hasRefRoleClassPath
:hasRefRoleClassPath rdf:type owl:DatatypeProperty ;
rdfs:range xsd:string ;
skos:altLabel "refRoleClassPath"@en ;
skos:prefLabel "refRCPath"@en .
### https://w3id.org/i40/aml#hasSchemaVersion
:hasSchemaVersion rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :hasVersion ;
rdf:type owl:FunctionalProperty ;
rdfs:domain :CAEXFile ;
rdfs:range xsd:decimal ;
skos:definition "Defines the version of the current CAEX schema"@en ;
skos:prefLabel "hasSchemaVersion" .
### https://w3id.org/i40/aml#hasVersion
:hasVersion rdf:type owl:DatatypeProperty ;
rdfs:range xsd:decimal ;
skos:prefLabel "General property to define versions of the AutomationML elements"@en ,
"hasVersion"@en .
### https://w3id.org/i40/aml#hasVersionEClass
:hasVersionEClass rdf:type owl:DatatypeProperty ;
rdfs:domain :eClassSpecification ;
rdfs:range xsd:string ;
skos:definition "Points to the eClass version for a given Element"@en ;
skos:prefLabel "eClassVersion"@en .
### https://w3id.org/i40/aml#hasVersionICL
:hasVersionICL rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :hasVersion ;
rdfs:domain :InterfaceClassLib ;
rdfs:range xsd:string ;
skos:definition "Points to the version for a Interface Class Lib"@en ;
skos:prefLabel "hasVersionICL"@en .
### https://w3id.org/i40/aml#hasVersionRCL
:hasVersionRCL rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :hasVersion ;
rdfs:domain :RoleClassLib ;
rdfs:range xsd:string ;
skos:definition "Points to the version for a Role Class Lib"@en ;
skos:prefLabel "hasVersionRCL"@en .
### https://w3id.org/i40/aml#hasVersionSUC
:hasVersionSUC rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :hasVersion ;
rdfs:domain :SystemUnitClass ;
rdfs:range xsd:decimal ;
skos:definition "Points to the version of a System Unit Class"@en ;
skos:prefLabel "hasVersionSUC"@en .
### https://w3id.org/i40/aml#hasWriterId
:hasWriterId rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf dc:identifier ;
rdf:type owl:FunctionalProperty ;
rdfs:domain :AdditionalInformation ;
rdfs:range xsd:string ;
skos:definition "Defines the identification of the Writer, i.e., the tool that produced the file"@en ;
skos:prefLabel "hasWriterId" .
### https://w3id.org/i40/aml#hasWriterName
:hasWriterName rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :hasName ;
rdfs:domain :AdditionalInformation ;
rdfs:range rdf:PlainLiteral ;
skos:definition "The name of the Writer, i.e., the tool that produced the file"@en ;
skos:prefLabel "hasWriterName" .
### https://w3id.org/i40/aml#hasWriterRelease
:hasWriterRelease rdf:type owl:DatatypeProperty ;
rdfs:domain :AdditionalInformation ;
rdfs:range xsd:string ;
skos:definition "Defines the last release of the writter, i.e., the tool that produces the AutomationML file"@en ;
skos:prefLabel "hasWriterRelease"@en .
### https://w3id.org/i40/aml#hasWriterVendor
:hasWriterVendor rdf:type owl:DatatypeProperty ;
rdfs:domain :AdditionalInformation ;
rdfs:range rdf:PlainLiteral ;
skos:definition "Defines the vendor of the writter, i.e., the tool that produces the AutomationML file"@en ;
skos:prefLabel "hasWriterVendor"@en .
### https://w3id.org/i40/aml#hasWriterVendorURL
:hasWriterVendorURL rdf:type owl:DatatypeProperty ;
rdfs:domain :AdditionalInformation ;
rdfs:range xsd:anyURI ;
skos:definition "Defines the Vendor url of the writter, i.e., the tool that produces the AutomationML file"@en ;
skos:prefLabel "hasWriterVendorURL"@en .
### https://w3id.org/i40/aml#hasWriterVersion
:hasWriterVersion rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf :hasVersion ;
rdfs:domain :AdditionalInformation ;
rdfs:range xsd:string ;
skos:definition "Defines the last version of the writter, i.e., the tool that produces the AutomationML file"@en ;
skos:prefLabel "hasWriterVersion"@en .
### https://w3id.org/i40/aml#refBaseSystemUnitPath
:refBaseSystemUnitPath rdf:type owl:DatatypeProperty ;
rdfs:domain :InternalElement ;
rdfs:range xsd:string .
### https://w3id.org/i40/aml#refSemanticAttribute
:refSemanticAttribute rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :Attribute ;
rdfs:range xsd:string ;
skos:definition "Reference to the eClass IRDI identification"@en ;
skos:prefLabel "refSemanticAttribute"@en .
#################################################################
# Classes
#################################################################
### http://www.w3.org/2002/07/owl#Thing
owl:Thing rdf:type owl:Class .
### http://www.w3.org/ns/prov#Activity
prov:Activity rdf:type owl:Class ;
rdfs:isDefinedBy "https://www.w3.org/TR/prov-o/#Activity" .
### http://www.wurvoc.org/vocabularies/om-1.8/Measure
om:Measure rdf:type owl:Class .
### http://www.wurvoc.org/vocabularies/om-1.8/Unit_of_measure
om:Unit_of_measure rdf:type owl:Class .
### https://w3id.org/i40/aml#AdditionalInformation
:AdditionalInformation rdf:type owl:Class ;
skos:definition "Additional Information for CAEX File"@en ;
skos:prefLabel "AdditionalInformation"@en .
### https://w3id.org/i40/aml#Attribute
:Attribute rdf:type owl:Class ;
rdfs:isDefinedBy "1417686950-AutomationML Whitepaper Part 1 - AutomationML Architecture v2_Oct2014, page 11" ;
skos:definition "Property which belongs to an AML object"@en ;
skos:prefLabel "Attribute"@en .
### https://w3id.org/i40/aml#CAEXFile
:CAEXFile rdf:type owl:Class ;
skos:definition "Root-element of the CAEX schema"@en ;
skos:prefLabel "CAEXFile"@en .
### https://w3id.org/i40/aml#ExternalInterface
:ExternalInterface rdf:type owl:Class ;
rdfs:subClassOf :InterfaceClass ;
skos:altLabel "EI"@en ;
skos:prefLabel "ExternalInterface"@en .
### https://w3id.org/i40/aml#ExternalReference
:ExternalReference rdf:type owl:Class ;
skos:definition "External Reference for a CAEX File"@en ;
skos:prefLabel "ExternalReference"@en .
### https://w3id.org/i40/aml#ExternalStandard
:ExternalStandard rdf:type owl:Class ;
skos:definition "Represents an External Standard which is used to provide unique Semantic reference for AML elements, e.g., eClass"@en ;
skos:prefLabel "ExternalStandard"@en .
### https://w3id.org/i40/aml#InstanceHierarchy
:InstanceHierarchy rdf:type owl:Class ;
skos:altLabel "IH"@en ;
skos:definition "CAEX InstanceHierarchies serve for the storage of individual and project related engineering information. They form the centre of the AML top-level format and contain all individual data objects including properties, interfaces, relations and references."@en ;
skos:prefLabel "InstanceHierarchy"@en .
### https://w3id.org/i40/aml#InterfaceClass
:InterfaceClass rdf:type owl:Class ;
skos:altLabel "IC"@en ;
skos:definition "Defines the relations between AML Objects. Should be identified with its tag name"@en ;
skos:prefLabel "InterfaceClass"@en .
### https://w3id.org/i40/aml#InterfaceClassLib
:InterfaceClassLib rdf:type owl:Class ;
skos:altLabel "IC Lib"@en ;
skos:definition "Library containing AML Interface Classes"@en ;