-
Notifications
You must be signed in to change notification settings - Fork 0
/
Quasim_ontology.rdf
1680 lines (1040 loc) · 72.3 KB
/
Quasim_ontology.rdf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<rdf:RDF xmlns="https://saref.etsi.org/saref4inma/"
xml:base="https://saref.etsi.org/saref4inma/"
xmlns:j.0="http://purl.org/dc/terms/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:s4inma="https://saref.etsi.org/saref4inma/">
<owl:Ontology rdf:about="https://saref.etsi.org/saref4inma/">
<owl:versionIRI rdf:resource="https://saref.etsi.org/saref4inma/v1.1.2/"/>
<j.0:contributor rdf:resource="http://purl.org/net/mpoveda"/>
<j.0:contributor rdf:resource="https://www.linkedin.com/in/matthijs-punter-0799902"/>
<j.0:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2015-03-29</j.0:created>
<j.0:creator rdf:resource="http://www.garcia-castro.com/foaf.rdf#me"/>
<j.0:creator rdf:resource="https://www.linkedin.com/in/albafernandezizquierdo"/>
<j.0:creator rdf:resource="https://www.linkedin.com/in/lauradaniele"/>
<j.0:creator rdf:resource="https://www.linkedin.com/in/mderoode"/>
<j.0:description>SAREF4INMA is an extension of SAREF for the industry and manufacturing domain. SAREF4INMA focuses on extending SAREF for the industry and manufacturing domain to solve the lack of interoperability between various types of production equipment that produce items in a factory and, once outside the factory, between different organizations in the value chain to uniquely track back the produced items to the corresponding production equipment, batches, material and precise time in which they were manufactured. SAREF4INMA is specified and published by ETSI in the TS 103 410-5 associated to this ontology file. SAREF4INMA was created to be aligned with related initiatives in the smart industry and manufacturing domain in terms of modelling and standardization, such as the Reference Architecture Model for Industry 4.0 (RAMI), which combines several standards used by the various national initiatives in Europe that support digitalization in manufacturing. The full list of use cases, standards and requirements that guided the creation of SAREF4INMA are described in the associated ETSI TR 103 507. </j.0:description>
<j.0:issued rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2019-04-30</j.0:issued>
<j.0:license rdf:resource="https://forge.etsi.org/etsi-software-license"/>
<j.0:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2019-04-30</j.0:modified>
<j.0:publisher rdf:resource="https://www.etsi.org/"/>
<j.0:source rdf:resource="https://saref.etsi.org/sources/saref4inma/"/>
<j.0:title xml:lang="en">SAREF4INMA: an extension of SAREF for the industry and manufacturing domain</j.0:title>
<vann:preferredNamespacePrefix>s4inma</vann:preferredNamespacePrefix>
<vann:preferredNamespaceUri>https://saref.etsi.org/saref4inma/</vann:preferredNamespaceUri>
<rdfs:seeAlso rdf:resource="https://www.etsi.org/deliver/etsi_ts/103400_103499/10341005/01.01.02_60/ts_10341005v010102p.pdf"/>
<owl:versionInfo>v1.1.2</owl:versionInfo>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.org/dc/terms/contributor -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/contributor"/>
<!-- http://purl.org/dc/terms/created -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/created"/>
<!-- http://purl.org/dc/terms/creator -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/creator"/>
<!-- http://purl.org/dc/terms/description -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/description"/>
<!-- http://purl.org/dc/terms/issued -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/issued"/>
<!-- http://purl.org/dc/terms/license -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/license"/>
<!-- http://purl.org/dc/terms/modified -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/modified"/>
<!-- http://purl.org/dc/terms/publisher -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/publisher"/>
<!-- http://purl.org/dc/terms/source -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/source"/>
<!-- http://purl.org/dc/terms/title -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/title"/>
<!-- http://purl.org/vocab/vann/preferredNamespacePrefix -->
<owl:AnnotationProperty rdf:about="http://purl.org/vocab/vann/preferredNamespacePrefix"/>
<!-- http://purl.org/vocab/vann/preferredNamespaceUri -->
<owl:AnnotationProperty rdf:about="http://purl.org/vocab/vann/preferredNamespaceUri"/>
<!-- http://www.w3.org/2002/07/owl#maxQualifiedCardinality -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2002/07/owl#maxQualifiedCardinality"/>
<!-- http://www.w3.org/2002/07/owl#versionIRI -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2002/07/owl#versionIRI"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Datatypes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.w3.org/2001/XMLSchema#date -->
<rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#date"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- https://saref.etsi.org/core/hasFunction -->
<owl:ObjectProperty rdf:about="https://saref.etsi.org/core/hasFunction">
<rdfs:domain rdf:resource="https://saref.etsi.org/saref4inma/Digital_Twin"/>
<rdfs:range rdf:resource="https://saref.etsi.org/saref4inma/Simulation_Backend"/>
<rdfs:comment>A relationship identifying the function of a device</rdfs:comment>
<rdfs:label xml:lang="en">has function</rdfs:label>
</owl:ObjectProperty>
<!-- https://saref.etsi.org/core/hasState -->
<owl:ObjectProperty rdf:about="https://saref.etsi.org/core/hasState">
<rdfs:comment>A relationship for identifying the state of a production equipment</rdfs:comment>
<rdfs:label xml:lang="en">has state</rdfs:label>
</owl:ObjectProperty>
<!-- https://saref.etsi.org/core/makesMeasurement -->
<owl:ObjectProperty rdf:about="https://saref.etsi.org/core/makesMeasurement">
<rdfs:comment>A relation between a device and the measurements it makes. Such measurement will link together the value of the measurement, its unit of measure and the property to which it relates.</rdfs:comment>
<rdfs:label xml:lang="en">makes measurement</rdfs:label>
</owl:ObjectProperty>
<!-- https://saref.etsi.org/core/measuresProperty -->
<owl:ObjectProperty rdf:about="https://saref.etsi.org/core/measuresProperty">
<rdfs:comment>A relationship specifying the property that can be measured by a certain device</rdfs:comment>
<rdfs:label xml:lang="en">measures property</rdfs:label>
</owl:ObjectProperty>
<!-- https://saref.etsi.org/saref4inma/belongsToCategory -->
<owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4inma/belongsToCategory">
<owl:inverseOf rdf:resource="https://saref.etsi.org/saref4inma/isCategoryOf"/>
<rdfs:comment>Link between an entity and its category</rdfs:comment>
<rdfs:label xml:lang="en">belongs to category</rdfs:label>
</owl:ObjectProperty>
<!-- https://saref.etsi.org/saref4inma/consistsOfBatch -->
<owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4inma/consistsOfBatch">
<rdfs:comment>A relation to express that a batch can recursively consists of other batches</rdfs:comment>
<rdfs:label xml:lang="en">consists of batch</rdfs:label>
</owl:ObjectProperty>
<!-- https://saref.etsi.org/saref4inma/consistsOfItem -->
<owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4inma/consistsOfItem">
<rdfs:comment>A relation to express that an item can recursively consists of other Items</rdfs:comment>
<rdfs:label xml:lang="en">consists of item</rdfs:label>
</owl:ObjectProperty>
<!-- https://saref.etsi.org/saref4inma/creates -->
<owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4inma/creates">
<owl:inverseOf rdf:resource="https://saref.etsi.org/saref4inma/isCreatedIn"/>
<rdfs:comment>A relation between a production process (e.g., Batch) that creates one or more tangible objects (e.g., Items)</rdfs:comment>
<rdfs:label xml:lang="en">creates</rdfs:label>
</owl:ObjectProperty>
<!-- https://saref.etsi.org/saref4inma/describes -->
<owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4inma/describes">
<rdfs:domain rdf:resource="https://saref.etsi.org/saref4inma/Abstract_Representation"/>
<rdfs:domain rdf:resource="https://saref.etsi.org/saref4inma/Pictures"/>
<rdfs:domain rdf:resource="https://saref.etsi.org/saref4inma/Programmatical_Representation"/>
<rdfs:range rdf:resource="https://saref.etsi.org/saref4inma/Digital_Twin"/>
</owl:ObjectProperty>
<!-- https://saref.etsi.org/saref4inma/hasFeatureOfInterest -->
<owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4inma/hasFeatureOfInterest">
<owl:inverseOf rdf:resource="https://saref.etsi.org/saref4inma/isFeatureOfInterestOf"/>
<rdfs:comment>Relationship between a feature of interest and equipment</rdfs:comment>
<rdfs:label xml:lang="en">has feature of interest</rdfs:label>
</owl:ObjectProperty>
<!-- https://saref.etsi.org/saref4inma/hasGTIN12ID -->
<owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4inma/hasGTIN12ID">
<rdfs:subPropertyOf rdf:resource="https://saref.etsi.org/saref4inma/hasIdentifier"/>
<rdfs:range rdf:resource="https://saref.etsi.org/saref4inma/GTIN12ID"/>
<rdfs:comment>A relationship determining the GTIN-12 identifier</rdfs:comment>
<rdfs:label xml:lang="en">has GTIN12ID </rdfs:label>
</owl:ObjectProperty>
<!-- https://saref.etsi.org/saref4inma/hasGTIN13ID -->
<owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4inma/hasGTIN13ID">
<rdfs:subPropertyOf rdf:resource="https://saref.etsi.org/saref4inma/hasIdentifier"/>
<rdfs:range rdf:resource="https://saref.etsi.org/saref4inma/GTIN13ID"/>
<rdfs:comment>A relationship determining the GTIN-13 identifier</rdfs:comment>
<rdfs:label xml:lang="en">has GTIN13ID</rdfs:label>
</owl:ObjectProperty>
<!-- https://saref.etsi.org/saref4inma/hasGTIN14ID -->
<owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4inma/hasGTIN14ID">
<rdfs:subPropertyOf rdf:resource="https://saref.etsi.org/saref4inma/hasIdentifier"/>
<rdfs:range rdf:resource="https://saref.etsi.org/saref4inma/GTIN14ID"/>
<rdfs:comment>A relationship determining the GTIN-14 identifier</rdfs:comment>
<rdfs:label xml:lang="en">has GTIN14ID</rdfs:label>
</owl:ObjectProperty>
<!-- https://saref.etsi.org/saref4inma/hasGTIN8ID -->
<owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4inma/hasGTIN8ID">
<rdfs:subPropertyOf rdf:resource="https://saref.etsi.org/saref4inma/hasIdentifier"/>
<rdfs:range rdf:resource="https://saref.etsi.org/saref4inma/GTIN8ID"/>
<rdfs:comment>A relationship determining the GTIN-8 identifier</rdfs:comment>
<rdfs:label xml:lang="en">has GTIN8ID</rdfs:label>
</owl:ObjectProperty>
<!-- https://saref.etsi.org/saref4inma/hasIRDI -->
<owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4inma/hasIRDI">
<rdfs:subPropertyOf rdf:resource="https://saref.etsi.org/saref4inma/hasIdentifier"/>
<rdfs:range rdf:resource="https://saref.etsi.org/saref4inma/IRDI"/>
<rdfs:comment>A relationship determining the International Registration Data Identifier (IRDI)</rdfs:comment>
<rdfs:label xml:lang="en">has IRDI</rdfs:label>
</owl:ObjectProperty>
<!-- https://saref.etsi.org/saref4inma/hasIdentifier -->
<owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4inma/hasIdentifier">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:domain rdf:resource="https://saref.etsi.org/saref4inma/Pictures"/>
<rdfs:range rdf:resource="https://saref.etsi.org/saref4inma/ID"/>
<rdfs:comment>link between an entity and its unique identifier</rdfs:comment>
<rdfs:label xml:lang="en">has identifier</rdfs:label>
</owl:ObjectProperty>
<!-- https://saref.etsi.org/saref4inma/hasSize -->
<owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4inma/hasSize">
<rdfs:comment>A relationship to count the amount of certain objects in a collection (e.g., size of a material batch)</rdfs:comment>
<rdfs:label xml:lang="en">has size</rdfs:label>
</owl:ObjectProperty>
<!-- https://saref.etsi.org/saref4inma/hasUUID -->
<owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4inma/hasUUID">
<rdfs:subPropertyOf rdf:resource="https://saref.etsi.org/saref4inma/hasIdentifier"/>
<rdfs:range rdf:resource="https://saref.etsi.org/saref4inma/UUID"/>
<rdfs:comment>A relationship determining the Universally Unique Identifier (UUID)</rdfs:comment>
<rdfs:label xml:lang="en">has UUID</rdfs:label>
</owl:ObjectProperty>
<!-- https://saref.etsi.org/saref4inma/hasUpdate -->
<owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4inma/hasUpdate">
<rdfs:comment>The newer version of a ItemCategory.</rdfs:comment>
<rdfs:label xml:lang="en">has update</rdfs:label>
</owl:ObjectProperty>
<!-- https://saref.etsi.org/saref4inma/has_dimension -->
<owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4inma/has_dimension">
<rdfs:domain rdf:resource="https://saref.etsi.org/saref4inma/Abstract_Representation"/>
<rdfs:domain rdf:resource="https://saref.etsi.org/saref4inma/Dimension"/>
<rdfs:range rdf:resource="https://saref.etsi.org/saref4inma/Abstract_Representation"/>
<rdfs:range rdf:resource="https://saref.etsi.org/saref4inma/Dimension"/>
<rdfs:range rdf:resource="https://saref.etsi.org/saref4inma/Quantum_Encoding_Algorithm"/>
</owl:ObjectProperty>
<!-- https://saref.etsi.org/saref4inma/has_expected_measurement -->
<owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4inma/has_expected_measurement">
<rdfs:domain rdf:resource="https://saref.etsi.org/saref4inma/Digital_Twin"/>
<rdfs:range rdf:resource="https://saref.etsi.org/saref4inma/ExpectedMeasurement"/>
</owl:ObjectProperty>
<!-- https://saref.etsi.org/saref4inma/has_many -->
<owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4inma/has_many">
<rdfs:domain rdf:resource="https://saref.etsi.org/saref4inma/Graph"/>
<rdfs:range rdf:resource="https://saref.etsi.org/saref4inma/Edge"/>
<rdfs:range rdf:resource="https://saref.etsi.org/saref4inma/Vertex"/>
</owl:ObjectProperty>
<!-- https://saref.etsi.org/saref4inma/has_measurement -->
<owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4inma/has_measurement">
<rdfs:domain rdf:resource="https://saref.etsi.org/saref4inma/Item"/>
<rdfs:range rdf:resource="https://saref.etsi.org/saref4inma/ActualMeasurement"/>
</owl:ObjectProperty>
<!-- https://saref.etsi.org/saref4inma/has_parameters -->
<owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4inma/has_parameters">
<rdfs:domain rdf:resource="https://saref.etsi.org/saref4inma/Digital_Twin"/>
<rdfs:range rdf:resource="https://saref.etsi.org/saref4inma/Abstract_Representation"/>
</owl:ObjectProperty>
<!-- https://saref.etsi.org/saref4inma/isCategoryOf -->
<owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4inma/isCategoryOf">
<rdfs:comment>Link between a category and its associated entity</rdfs:comment>
<rdfs:label xml:lang="en">is category of</rdfs:label>
</owl:ObjectProperty>
<!-- https://saref.etsi.org/saref4inma/isCreatedIn -->
<owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4inma/isCreatedIn">
<rdfs:comment>An Item is created in an ItemBatch.</rdfs:comment>
<rdfs:label xml:lang="en">is created in</rdfs:label>
</owl:ObjectProperty>
<!-- https://saref.etsi.org/saref4inma/isFeatureOfInterestOf -->
<owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4inma/isFeatureOfInterestOf">
<rdfs:comment>Relationship between a feature of interest and equipment</rdfs:comment>
<rdfs:label xml:lang="en">is feature of interest of</rdfs:label>
</owl:ObjectProperty>
<!-- https://saref.etsi.org/saref4inma/isProducedBy -->
<owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4inma/isProducedBy">
<owl:inverseOf rdf:resource="https://saref.etsi.org/saref4inma/produces"/>
<rdfs:comment>Items are produced using certain types of ProductionEquipmentCategories, for example: welding machines or laser cutting machines.</rdfs:comment>
<rdfs:label xml:lang="en">is produced by</rdfs:label>
</owl:ObjectProperty>
<!-- https://saref.etsi.org/saref4inma/is_digital_twin_of -->
<owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4inma/is_digital_twin_of">
<rdfs:domain rdf:resource="https://saref.etsi.org/saref4inma/Digital_Twin"/>
<rdfs:range rdf:resource="https://saref.etsi.org/saref4inma/Item"/>
</owl:ObjectProperty>
<!-- https://saref.etsi.org/saref4inma/is_encoded_with -->
<owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4inma/is_encoded_with">
<rdfs:domain rdf:resource="https://saref.etsi.org/saref4inma/Programmatical_Representation"/>
<rdfs:range rdf:resource="https://saref.etsi.org/saref4inma/Quantum_Encoding_Algorithm"/>
</owl:ObjectProperty>
<!-- https://saref.etsi.org/saref4inma/needsEquipment -->
<owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4inma/needsEquipment">
<rdfs:comment>A relationship indicating that an entity needs a particular equipment to be produced</rdfs:comment>
<rdfs:label xml:lang="en">needs equipment</rdfs:label>
</owl:ObjectProperty>
<!-- https://saref.etsi.org/saref4inma/produces -->
<owl:ObjectProperty rdf:about="https://saref.etsi.org/saref4inma/produces">
<rdfs:comment>ProductionEquipmentCategory, such as welding machines or laser cutting machines, produce certain categories of items (inverse of s4inma:isProducedBy)</rdfs:comment>
<rdfs:label xml:lang="en">produces</rdfs:label>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- https://saref.etsi.org/saref4inma/hasCertificate -->
<owl:DatatypeProperty rdf:about="https://saref.etsi.org/saref4inma/hasCertificate">
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment>The MaterialBatch can contain material quality certificates, for example a NEN 10204:2004 3.1 steel certificate.</rdfs:comment>
<rdfs:label xml:lang="en">has certificate</rdfs:label>
</owl:DatatypeProperty>
<!-- https://saref.etsi.org/saref4inma/hasGTIN12IDValue -->
<owl:DatatypeProperty rdf:about="https://saref.etsi.org/saref4inma/hasGTIN12IDValue">
<rdfs:subPropertyOf rdf:resource="https://saref.etsi.org/saref4inma/hasIDValue"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment>A relation to express the value of an GTIN12 as a string</rdfs:comment>
<rdfs:label xml:lang="en">has GTIN12ID value</rdfs:label>
</owl:DatatypeProperty>
<!-- https://saref.etsi.org/saref4inma/hasGTIN13IDValue -->
<owl:DatatypeProperty rdf:about="https://saref.etsi.org/saref4inma/hasGTIN13IDValue">
<rdfs:subPropertyOf rdf:resource="https://saref.etsi.org/saref4inma/hasIDValue"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment>A relation to express the value of an GTIN13 as a string</rdfs:comment>
<rdfs:label xml:lang="en">has GTIN13ID value</rdfs:label>
</owl:DatatypeProperty>
<!-- https://saref.etsi.org/saref4inma/hasGTIN14IDValue -->
<owl:DatatypeProperty rdf:about="https://saref.etsi.org/saref4inma/hasGTIN14IDValue">
<rdfs:subPropertyOf rdf:resource="https://saref.etsi.org/saref4inma/hasIDValue"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment>A relation to express the value of an GTIN14 as a string</rdfs:comment>
<rdfs:label xml:lang="en">has GTIN14ID value</rdfs:label>
</owl:DatatypeProperty>
<!-- https://saref.etsi.org/saref4inma/hasGTIN8IDValue -->
<owl:DatatypeProperty rdf:about="https://saref.etsi.org/saref4inma/hasGTIN8IDValue">
<rdfs:subPropertyOf rdf:resource="https://saref.etsi.org/saref4inma/hasIDValue"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment>A relation to express the value of an GTIN8 as a string</rdfs:comment>
<rdfs:label xml:lang="en">has GTIN8ID value</rdfs:label>
</owl:DatatypeProperty>
<!-- https://saref.etsi.org/saref4inma/hasIDValue -->
<owl:DatatypeProperty rdf:about="https://saref.etsi.org/saref4inma/hasIDValue">
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment>A relation to express the value of an indentifier as a string (it can be used as alternative to or in combination with the s4inma:hasIdentifier object property</rdfs:comment>
<rdfs:label xml:lang="en">has identifier value</rdfs:label>
</owl:DatatypeProperty>
<!-- https://saref.etsi.org/saref4inma/hasIRDIValue -->
<owl:DatatypeProperty rdf:about="https://saref.etsi.org/saref4inma/hasIRDIValue">
<rdfs:subPropertyOf rdf:resource="https://saref.etsi.org/saref4inma/hasIDValue"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment>A relation to express the value of an IRDI as a string</rdfs:comment>
<rdfs:label xml:lang="en">has IRDI value</rdfs:label>
</owl:DatatypeProperty>
<!-- https://saref.etsi.org/saref4inma/hasModelNumber -->
<owl:DatatypeProperty rdf:about="https://saref.etsi.org/saref4inma/hasModelNumber">
<rdfs:comment>A relation to express the model number of a certain object (item, product, equipment, etc.) </rdfs:comment>
<rdfs:label xml:lang="en">has model number</rdfs:label>
</owl:DatatypeProperty>
<!-- https://saref.etsi.org/saref4inma/hasSerialNumber -->
<owl:DatatypeProperty rdf:about="https://saref.etsi.org/saref4inma/hasSerialNumber">
<rdfs:comment>A relation to describe the serial number of a certain Item, which is unique per Item.</rdfs:comment>
<rdfs:label xml:lang="en">has serial number</rdfs:label>
</owl:DatatypeProperty>
<!-- https://saref.etsi.org/saref4inma/hasUUIDValue -->
<owl:DatatypeProperty rdf:about="https://saref.etsi.org/saref4inma/hasUUIDValue">
<rdfs:subPropertyOf rdf:resource="https://saref.etsi.org/saref4inma/hasIDValue"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<rdfs:comment>A relation to express the value of an UUID as a string</rdfs:comment>
<rdfs:label xml:lang="en">has UUID value</rdfs:label>
</owl:DatatypeProperty>
<!-- https://saref.etsi.org/saref4inma/hasVersion -->
<owl:DatatypeProperty rdf:about="https://saref.etsi.org/saref4inma/hasVersion">
<rdfs:comment>An item has a certain revision or version number, whereas a higher number indicates a newer version.</rdfs:comment>
<rdfs:label xml:lang="en">has version</rdfs:label>
</owl:DatatypeProperty>
<!-- https://saref.etsi.org/saref4inma/has_dimension -->
<owl:DatatypeProperty rdf:about="https://saref.etsi.org/saref4inma/has_dimension">
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
</owl:DatatypeProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://www.w3.org/2004/02/skos/core#ConceptScheme -->
<owl:Class rdf:about="http://www.w3.org/2004/02/skos/core#ConceptScheme">
<rdfs:comment>SKOS concept scheme can be viewed as an aggregation of one or more SKOS concepts.</rdfs:comment>
<rdfs:label xml:lang="en">Concept Scheme</rdfs:label>
</owl:Class>
<!-- https://saref.etsi.org/core/Device -->
<owl:Class rdf:about="https://saref.etsi.org/core/Device">
<rdfs:comment>A tangible object designed to accomplish a particular task. In order to accomplish this task, the device performs one or more functions. For example, a washing machine is designed to wash (task) and to accomplish this task it performs a start and stop function.</rdfs:comment>
<rdfs:label xml:lang="en">Device</rdfs:label>
</owl:Class>
<!-- https://saref.etsi.org/core/FeatureOfInterest -->
<owl:Class rdf:about="https://saref.etsi.org/core/FeatureOfInterest">
<rdfs:comment>A feature of interest represents any real world entity from which a property is measured.</rdfs:comment>
<rdfs:label xml:lang="en">Feature of interest</rdfs:label>
</owl:Class>
<!-- https://saref.etsi.org/core/Function -->
<owl:Class rdf:about="https://saref.etsi.org/core/Function">
<rdfs:comment>The functionality necessary to accomplish the task for which a device is designed. A device can be designed to perform more than one function. Functions can be structured in categories (subclasses) that reflect different points of view, for example, considering the specific application area for which a function can be used (e.g., light, temperature, motion, heat, power, etc.), or the capability that a function can support (e.g., receive, reply, notify, etc.), and so forth.</rdfs:comment>
<rdfs:label xml:lang="en">Function</rdfs:label>
</owl:Class>
<!-- https://saref.etsi.org/core/Measurement -->
<owl:Class rdf:about="https://saref.etsi.org/core/Measurement">
<rdfs:comment>Represents the measured value made over a property. It is also linked to the unit of measure in which the value is expressed and the timestamp of the measurement.</rdfs:comment>
<rdfs:label xml:lang="en">Measurement</rdfs:label>
</owl:Class>
<!-- https://saref.etsi.org/core/Property -->
<owl:Class rdf:about="https://saref.etsi.org/core/Property">
<rdfs:comment>An aspect of an entity that can be observable by a sensor.</rdfs:comment>
<rdfs:label xml:lang="en">Property</rdfs:label>
</owl:Class>
<!-- https://saref.etsi.org/core/State -->
<owl:Class rdf:about="https://saref.etsi.org/core/State"/>
<!-- https://saref.etsi.org/saref4bldg/Building -->
<owl:Class rdf:about="https://saref.etsi.org/saref4bldg/Building">
<rdfs:comment>A building represents a structure that provides shelter for its occupants or contents and stands in one place. The building is also used to provide a basic element within the spatial structure hierarchy for the components of a building project (together with site, storey, and space).</rdfs:comment>
<rdfs:label xml:lang="en">Building</rdfs:label>
</owl:Class>
<!-- https://saref.etsi.org/saref4bldg/BuildingSpace -->
<owl:Class rdf:about="https://saref.etsi.org/saref4bldg/BuildingSpace">
<rdfs:comment>An entity used to define the physical spaces of the building. A building space contains devices or building objects.</rdfs:comment>
<rdfs:label xml:lang="en">Building space</rdfs:label>
</owl:Class>
<!-- https://saref.etsi.org/saref4bldg/PhysicalObject -->
<owl:Class rdf:about="https://saref.etsi.org/saref4bldg/PhysicalObject">
<rdfs:comment>Any Object that has a proper space region. (Definition extracted from DUL ontology)</rdfs:comment>
<rdfs:label xml:lang="en">Physical object</rdfs:label>
</owl:Class>
<!-- https://saref.etsi.org/saref4inma/Abstract_Representation -->
<owl:Class rdf:about="https://saref.etsi.org/saref4inma/Abstract_Representation">
<rdfs:subClassOf rdf:resource="https://saref.etsi.org/saref4inma/Digital_Twin"/>
</owl:Class>
<!-- https://saref.etsi.org/saref4inma/ActualMeasurement -->
<owl:Class rdf:about="https://saref.etsi.org/saref4inma/ActualMeasurement">
<rdfs:subClassOf rdf:resource="https://saref.etsi.org/saref4inma/Measurement"/>
<owl:disjointWith rdf:resource="https://saref.etsi.org/saref4inma/ExpectedMeasurement"/>
<rdfs:comment>Describes whether the measurement is actually measured during the production process. Disjoint with ExpectedMeasurement.</rdfs:comment>
<rdfs:label xml:lang="en">Actual measurement</rdfs:label>
</owl:Class>
<!-- https://saref.etsi.org/saref4inma/Adjacency_Matrix -->
<owl:Class rdf:about="https://saref.etsi.org/saref4inma/Adjacency_Matrix">
<rdfs:subClassOf rdf:resource="https://saref.etsi.org/saref4inma/Graph"/>
</owl:Class>
<!-- https://saref.etsi.org/saref4inma/Alloy -->
<owl:Class rdf:about="https://saref.etsi.org/saref4inma/Alloy">
<rdfs:subClassOf rdf:resource="https://saref.etsi.org/saref4inma/Metal"/>
</owl:Class>
<!-- https://saref.etsi.org/saref4inma/Amplitude_Encoding -->
<owl:Class rdf:about="https://saref.etsi.org/saref4inma/Amplitude_Encoding">
<rdfs:subClassOf rdf:resource="https://saref.etsi.org/saref4inma/Quantum_Encoding_Algorithm"/>
</owl:Class>
<!-- https://saref.etsi.org/saref4inma/Angle_Encoding -->
<owl:Class rdf:about="https://saref.etsi.org/saref4inma/Angle_Encoding">
<rdfs:subClassOf rdf:resource="https://saref.etsi.org/saref4inma/Quantum_Encoding_Algorithm"/>
</owl:Class>
<!-- https://saref.etsi.org/saref4inma/Area -->
<owl:Class rdf:about="https://saref.etsi.org/saref4inma/Area">
<rdfs:subClassOf rdf:resource="https://saref.etsi.org/saref4bldg/BuildingSpace"/>
<rdfs:comment>A subclass of s4bldg:BuildingSpace used to define the physical spaces of the building. According to IEC 62264, areas are physical, geographical or logical groupings of resources determined by the site. A site can be divided in areas, whereas areas contain work centers.s.</rdfs:comment>
<rdfs:label xml:lang="en">Area</rdfs:label>
</owl:Class>
<!-- https://saref.etsi.org/saref4inma/Basis_Encoding -->
<owl:Class rdf:about="https://saref.etsi.org/saref4inma/Basis_Encoding">
<rdfs:subClassOf rdf:resource="https://saref.etsi.org/saref4inma/Quantum_Encoding_Algorithm"/>
</owl:Class>
<!-- https://saref.etsi.org/saref4inma/Batch -->
<owl:Class rdf:about="https://saref.etsi.org/saref4inma/Batch">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
<rdfs:subClassOf rdf:resource="https://saref.etsi.org/core/FeatureOfInterest"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://saref.etsi.org/saref4inma/consistsOfBatch"/>
<owl:allValuesFrom rdf:resource="https://saref.etsi.org/saref4inma/Batch"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://saref.etsi.org/saref4inma/hasIdentifier"/>
<owl:allValuesFrom rdf:resource="https://saref.etsi.org/saref4inma/ID"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://saref.etsi.org/saref4inma/isFeatureOfInterestOf"/>
<owl:allValuesFrom rdf:resource="https://saref.etsi.org/saref4inma/Measurement"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://saref.etsi.org/saref4inma/needsEquipment"/>
<owl:allValuesFrom rdf:resource="https://saref.etsi.org/saref4inma/ProductionEquipment"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="https://saref.etsi.org/saref4inma/hasSize"/>
<owl:maxQualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxQualifiedCardinality>
<owl:onClass rdf:resource="https://saref.etsi.org/saref4inma/Size"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:comment>A uniform collection of tangible objects or Lot. This can either be a collection of produced items (i.e. the outflow of products) or a collection of raw material or required material (i.e. the inflow of products). It is assumed that the objects in a batch are similar and thus have shared attributes. Note that this definition is broader than the definition in IEC 61512, which defines a batch as the material that is being produced (whereas in SAREF4INMA a batch can be items or materials). </rdfs:comment>
<rdfs:label xml:lang="en">Batch</rdfs:label>
</owl:Class>
<!-- https://saref.etsi.org/saref4inma/Bird_Eye_View -->
<owl:Class rdf:about="https://saref.etsi.org/saref4inma/Bird_Eye_View">
<rdfs:subClassOf rdf:resource="https://saref.etsi.org/saref4inma/Thermal_Pictures"/>
<rdfs:comment>Pictures taken from the perspective of the laser</rdfs:comment>
</owl:Class>
<!-- https://saref.etsi.org/saref4inma/Circle -->
<owl:Class rdf:about="https://saref.etsi.org/saref4inma/Circle">
<rdfs:subClassOf rdf:resource="https://saref.etsi.org/saref4inma/Geometries_inside_Model"/>
</owl:Class>
<!-- https://saref.etsi.org/saref4inma/Classical_Backend -->
<owl:Class rdf:about="https://saref.etsi.org/saref4inma/Classical_Backend">
<rdfs:subClassOf rdf:resource="https://saref.etsi.org/saref4inma/Simulation_Backend"/>
</owl:Class>
<!-- https://saref.etsi.org/saref4inma/Classical_Computer -->
<owl:Class rdf:about="https://saref.etsi.org/saref4inma/Classical_Computer">
<rdfs:subClassOf rdf:resource="https://saref.etsi.org/saref4inma/Quantum_Computing_+_Graph_Neural_Network"/>
</owl:Class>
<!-- https://saref.etsi.org/saref4inma/Component -->
<owl:Class rdf:about="https://saref.etsi.org/saref4inma/Component">
<rdfs:subClassOf rdf:resource="https://saref.etsi.org/saref4inma/Abstract_Representation"/>
</owl:Class>
<!-- https://saref.etsi.org/saref4inma/Conductivity -->
<owl:Class rdf:about="https://saref.etsi.org/saref4inma/Conductivity">
<rdfs:subClassOf rdf:resource="https://saref.etsi.org/saref4inma/Vertex"/>
</owl:Class>
<!-- https://saref.etsi.org/saref4inma/Convection -->
<owl:Class rdf:about="https://saref.etsi.org/saref4inma/Convection">
<rdfs:subClassOf rdf:resource="https://saref.etsi.org/saref4inma/Vertex"/>
</owl:Class>
<!-- https://saref.etsi.org/saref4inma/Cuboid -->
<owl:Class rdf:about="https://saref.etsi.org/saref4inma/Cuboid">
<rdfs:subClassOf rdf:resource="https://saref.etsi.org/saref4inma/Geometries_inside_Model"/>
</owl:Class>
<!-- https://saref.etsi.org/saref4inma/Cutpoint -->
<owl:Class rdf:about="https://saref.etsi.org/saref4inma/Cutpoint">
<rdfs:subClassOf rdf:resource="https://saref.etsi.org/saref4inma/Vertex"/>
</owl:Class>
<!-- https://saref.etsi.org/saref4inma/Data -->
<owl:Class rdf:about="https://saref.etsi.org/saref4inma/Data">
<rdfs:subClassOf rdf:resource="https://saref.etsi.org/saref4inma/input"/>
</owl:Class>
<!-- https://saref.etsi.org/saref4inma/Digital_Twin -->
<owl:Class rdf:about="https://saref.etsi.org/saref4inma/Digital_Twin"/>
<!-- https://saref.etsi.org/saref4inma/Dimension -->
<owl:Class rdf:about="https://saref.etsi.org/saref4inma/Dimension">
<rdfs:subClassOf rdf:resource="https://saref.etsi.org/saref4inma/Digital_Twin"/>
</owl:Class>
<!-- https://saref.etsi.org/saref4inma/Edge -->
<owl:Class rdf:about="https://saref.etsi.org/saref4inma/Edge">
<rdfs:subClassOf rdf:resource="https://saref.etsi.org/saref4inma/Graph"/>
</owl:Class>
<!-- https://saref.etsi.org/saref4inma/Element -->
<owl:Class rdf:about="https://saref.etsi.org/saref4inma/Element">
<rdfs:subClassOf rdf:resource="https://saref.etsi.org/saref4inma/Metal"/>
</owl:Class>
<!-- https://saref.etsi.org/saref4inma/Ellipsis -->
<owl:Class rdf:about="https://saref.etsi.org/saref4inma/Ellipsis">
<rdfs:subClassOf rdf:resource="https://saref.etsi.org/saref4inma/Geometries_inside_Model"/>
</owl:Class>
<!-- https://saref.etsi.org/saref4inma/ExpectedMeasurement -->
<owl:Class rdf:about="https://saref.etsi.org/saref4inma/ExpectedMeasurement">
<rdfs:subClassOf rdf:resource="https://saref.etsi.org/saref4inma/Measurement"/>
<rdfs:comment>Describes whether the measurement is expected (i.e., planned before the production process). Disjoint with ActualMeasurement.</rdfs:comment>
<rdfs:label xml:lang="en">Expected measurement</rdfs:label>
</owl:Class>
<!-- https://saref.etsi.org/saref4inma/FE_Mesh -->
<owl:Class rdf:about="https://saref.etsi.org/saref4inma/FE_Mesh">
<rdfs:subClassOf rdf:resource="https://saref.etsi.org/saref4inma/MATLAB"/>
<rdfs:comment>Finite Element Method Mesh. 2D or 3D model in MATLAB</rdfs:comment>
</owl:Class>
<!-- https://saref.etsi.org/saref4inma/Factory -->
<owl:Class rdf:about="https://saref.etsi.org/saref4inma/Factory">
<rdfs:subClassOf rdf:resource="https://saref.etsi.org/saref4bldg/Building"/>
<rdfs:comment>A subclass of s4bldg:Building specialized for the purpose of SAREF4INMA, a factory represents one or more organizations sharing a definit mission, goals and objectives which provides an output such as a product (definition taken from IEC 62264). A factory can be divided in one or multiple sites. </rdfs:comment>
<rdfs:label xml:lang="en">Factory</rdfs:label>
</owl:Class>
<!-- https://saref.etsi.org/saref4inma/Function -->
<owl:Class rdf:about="https://saref.etsi.org/saref4inma/Function">
<rdfs:subClassOf rdf:resource="https://saref.etsi.org/saref4inma/Abstract_Representation"/>
</owl:Class>
<!-- https://saref.etsi.org/saref4inma/GTIN12ID -->
<owl:Class rdf:about="https://saref.etsi.org/saref4inma/GTIN12ID">
<rdfs:subClassOf rdf:resource="https://saref.etsi.org/saref4inma/ID"/>
<rdfs:comment>GTIN-12 (UPC-A) is a 12-digit number used primarily in North America</rdfs:comment>
<rdfs:label xml:lang="en">GTIN12ID</rdfs:label>
</owl:Class>
<!-- https://saref.etsi.org/saref4inma/GTIN13ID -->
<owl:Class rdf:about="https://saref.etsi.org/saref4inma/GTIN13ID">
<rdfs:subClassOf rdf:resource="https://saref.etsi.org/saref4inma/ID"/>
<rdfs:comment>GTIN-13 (EAN/UCC-13) is a 13-digit number used predominately outside of North America</rdfs:comment>
<rdfs:label xml:lang="en">GTIN13ID</rdfs:label>
</owl:Class>
<!-- https://saref.etsi.org/saref4inma/GTIN14ID -->
<owl:Class rdf:about="https://saref.etsi.org/saref4inma/GTIN14ID">
<rdfs:subClassOf rdf:resource="https://saref.etsi.org/saref4inma/ID"/>
<rdfs:comment>GTIN-14 (EAN/UCC-14 or ITF-14 or also known as ITF Symbol, SCC-14, DUN-14, UPC Case Code, UPC Shipping Container Code, UCC Code 128, EAN Code 128) is a 14-digit number used to identify trade items at various packaging levels.</rdfs:comment>
<rdfs:label xml:lang="en">GTIN14ID</rdfs:label>
</owl:Class>