-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCore.rdf
More file actions
3547 lines (3369 loc) · 280 KB
/
Copy pathCore.rdf
File metadata and controls
3547 lines (3369 loc) · 280 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE rdf:RDF [
<!ENTITY bfo "http://purl.obolibrary.org/obo/">
<!ENTITY dcterms "http://purl.org/dc/terms/">
<!ENTITY iof-av "https://spec.industrialontologies.org/ontology/core/meta/AnnotationVocabulary/">
<!ENTITY iof-core "https://spec.industrialontologies.org/ontology/core/Core/">
<!ENTITY owl "http://www.w3.org/2002/07/owl#">
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#">
<!ENTITY skos "http://www.w3.org/2004/02/skos/core#">
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#">
]>
<rdf:RDF xml:base="https://spec.industrialontologies.org/ontology/core/Core/"
xmlns:bfo="http://purl.obolibrary.org/obo/"
xmlns:dcterms="http://purl.org/dc/terms/"
xmlns:iof-av="https://spec.industrialontologies.org/ontology/core/meta/AnnotationVocabulary/"
xmlns:iof-core="https://spec.industrialontologies.org/ontology/core/Core/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#">
<owl:Ontology rdf:about="https://spec.industrialontologies.org/ontology/core/Core/">
<rdfs:label xml:lang="en-US">Core Ontology</rdfs:label>
<dcterms:abstract>The IOF Core Ontology contains notions found to be common across multiple manufacturing domains. This file is an RDF implementation of these notions. The ontology utilizes the Basic Formal Ontology or BFO as a top-level ontology but also borrows terms from various domain-independent or mid-level ontologies. The purpose of the ontology is to serve as a foundation for ensuring consistency and interoperability across various domain-specific reference ontologies the IOF publishes.</dcterms:abstract>
<dcterms:contributor xml:lang="en-US">Ana Teresa Correia, Institut fuer angewandte Systemtechnik Bremen GmbH (ATB-Bremen)</dcterms:contributor>
<dcterms:contributor xml:lang="en-US">Barry Smith, University at Buffalo</dcterms:contributor>
<dcterms:contributor xml:lang="en-US">Boonserm Kulvatunyou, National Institute of Standards and Technology (NIST)</dcterms:contributor>
<dcterms:contributor xml:lang="en-US">Chris Will, National Center for Ontological Research (NCOR)</dcterms:contributor>
<dcterms:contributor xml:lang="en-US">Dusan Sormaz, Ohio University</dcterms:contributor>
<dcterms:contributor xml:lang="en-US">Elisa Kendall, Thematix Partners LLC</dcterms:contributor>
<dcterms:contributor xml:lang="en-US">Farhad Ameri, Texas State University</dcterms:contributor>
<dcterms:contributor xml:lang="en-US">Melinda Hodkiewicz, University of Western Australia</dcterms:contributor>
<dcterms:contributor xml:lang="en-US">Milos Drobnjakovic, National Institute of Standards and Technology (NIST)</dcterms:contributor>
<dcterms:contributor xml:lang="en-US">Will Sobel, W. V. Sobel LLC</dcterms:contributor>
<dcterms:creator xml:lang="en-US">IOF Core Working Group</dcterms:creator>
<dcterms:license rdf:datatype="&xsd;anyURI">http://opensource.org/licenses/MIT</dcterms:license>
<dcterms:publisher xml:lang="en-US">Industrial Ontology Foundry</dcterms:publisher>
<dcterms:title>Industrial Ontology Foundry (IOF) Core Ontology</dcterms:title>
<owl:imports rdf:resource="http://purl.obolibrary.org/obo/bfo/2020/bfo.owl"/>
<owl:imports rdf:resource="https://spec.industrialontologies.org/ontology/202301/core/meta/AnnotationVocabulary/"/>
<owl:versionIRI rdf:resource="https://spec.industrialontologies.org/ontology/202301/core/Core/"/>
<iof-av:copyright>Copyright (c) 2022, 2023, Open Applications Group</iof-av:copyright>
<iof-av:maturity rdf:resource="&iof-av;Released"/>
</owl:Ontology>
<rdf:Description rdf:about="&bfo;BFO_0000029">
<skos:example xml:lang="en-US">location of a container, floor area in a factory building, location of a machine (relative to the coordinate of a factory floor), location on a shelf in a warehouse</skos:example>
<iof-av:explanatoryNote>Even though site (physical location) always refers to a 3D space it is fine to define it practically just through 2D or 1D or 0D spatial region. For example when we want to talk about 2x2m area within a factory floor even though the space specified is 2D it is still ok to assert it as site as there is always the third dimension above the area that is implicit.</iof-av:explanatoryNote>
<iof-av:synonym xml:lang="en-US">physical location</iof-av:synonym>
</rdf:Description>
<rdf:Description rdf:about="&bfo;BFO_0000034">
<rdfs:subClassOf rdf:resource="&iof-core;Capability"/>
</rdf:Description>
<rdf:Description rdf:about="&bfo;BFO_0000054">
<iof-av:synonym xml:lang="en-US">realized in</iof-av:synonym>
</rdf:Description>
<rdf:Description rdf:about="&bfo;BFO_0000057">
<owl:propertyChainAxiom rdf:parseType="Collection">
<rdf:Description rdf:about="&bfo;BFO_0000117">
</rdf:Description>
<rdf:Description rdf:about="&bfo;BFO_0000057">
</rdf:Description>
</owl:propertyChainAxiom>
<iof-av:explanatoryNote>the IOF has decided to include transitive participation as an additional axiom of 'has participant at some time' which is reflected in the property chain associated with this property. That is, if A has an 'occurent part' B which 'has participant at some time' C then A 'has participant at some time' C.</iof-av:explanatoryNote>
</rdf:Description>
<rdf:Description rdf:about="&bfo;BFO_0000063">
<iof-av:naturalLanguageDefinition xml:lang="en-US">comes before (something) in time</iof-av:naturalLanguageDefinition>
</rdf:Description>
<owl:Class rdf:about="&iof-core;ActionSpecification">
<rdfs:subClassOf rdf:resource="&iof-core;InformationContentEntity"/>
<rdfs:label xml:lang="en-US">action specification</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://spec.industrialontologies.org/ontology/core/Core/"/>
<skos:example xml:lang="en-US">pour the contents of flask 1 into flask 2; to loosen a screw with a screwdriver, grab the screw driver with your hand, insert the tip into the head of the screw, apply forward pressure into the screwdriver, and rotate the screwdriver counterclockwise.</skos:example>
<iof-av:adaptedFrom>Information Artifact Ontology, http://purl.obolibrary.org/obo/IAO_0000030 and also the Common Core Ontology, http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology (term Action Regulation)</iof-av:adaptedFrom>
<iof-av:explanatoryNote>1. An action specification is typically a part of some plan specification.
2. All actions change the universe in some fashion. That is, they have outcomes, whether desired ones or not. Since desired outcomes are reasons for the existence of an action specification, we might argue that all action specifications are, in fact, plan specifications, with desired outcomes as objectives. However, our intent here is to capture instances of action specifications wherein objectives or desired outcomes are not explicitly stated and to delinate 'plan specifications' as cases where the objectives and the corresponding actions are explicitly stated. This is why the class is asserted directly under the information content entity.
3. Although not formalized at this stage, an action specification may prescribe a kind of process in more detail by prescribing the sequence of actions one or more participants are to do or by prescribing the actions persons bearing various roles are to do in bringing about the process. The latter would be relevant in situations where a particular participant bears two (or even more roles) in a process. An example of the latter would be a particular shop floor worker bearing and realizing both the role of the operator and that of the inspector as prescribed by some action specification and as realized in today's occurrences of some punch-press process.</iof-av:explanatoryNote>
<iof-av:firstOrderLogicAxiom>InformationContentEntity(x) ∧ ∃p (Process(p) ∧ (prescribes(x,p)) → ActionSpecification(x)</iof-av:firstOrderLogicAxiom>
<iof-av:isPrimitive rdf:datatype="&xsd;boolean">true</iof-av:isPrimitive>
<iof-av:naturalLanguageDefinition xml:lang="en-US">information content entity that prescribes what participants shall do in a process</iof-av:naturalLanguageDefinition>
<iof-av:primitiveRationale>See the rationale provided under information content entity for informational entity types.</iof-av:primitiveRationale>
<iof-av:semiFormalNaturalLanguageAxiom>if x is an 'information content entity' that 'prescribes' some 'process' then x is an 'action specification'</iof-av:semiFormalNaturalLanguageAxiom>
</owl:Class>
<owl:Class rdf:about="&iof-core;Agent">
<rdfs:subClassOf rdf:resource="&bfo;BFO_0000040"/>
<rdfs:label xml:lang="en-US">agent</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://spec.industrialontologies.org/ontology/core/Core/"/>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&iof-core;EngineeredSystem">
</rdf:Description>
<rdf:Description rdf:about="&iof-core;GroupOfAgents">
</rdf:Description>
<rdf:Description rdf:about="&iof-core;Person">
</rdf:Description>
</owl:unionOf>
</owl:Class>
<owl:Restriction>
<owl:onProperty rdf:resource="&iof-core;hasRole"/>
<owl:someValuesFrom rdf:resource="&iof-core;AgentRole"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<skos:example xml:lang="en-US">an employee; a transportation & logistics provider; a robot; a scheduling system</skos:example>
<iof-av:counterExample>1. Of physical and chemical in nature: Cleaning, vulcanizing, fluxing, indicator, sterilizing, emulisifying, refining.
2. Organisms: animals, cells, parts of organisms (organs, organelles, viruses).</iof-av:counterExample>
<iof-av:explanatoryNote>1. See the expanded definition under the corresponding role class. The term is formalized here as a defined class by referring to its corresponding role class and exists primarily for ontological modeling and implementation convenience.
2. The IOF has elected to exclude material substances often referred to as agents. That is, they realize some specific function that some person desires (e.g., platinum is a reducing agent in various reduction-type reactions -- as used in a catalytic converter to eliminate or reduce various pollutants in exhausts).
3. The IOF has, at this time, excluded non-human agents, such as animals and other organisms (often referred to as biological agents).</iof-av:explanatoryNote>
<iof-av:firstOrderLogicDefinition>Agent(x) ↔ (Person(x) ∨ GroupOfAgents(x) ∨ EngineeredSystem(x)) ∧ ∃r (AgentRole(r) ∧ hasRole(x,r))</iof-av:firstOrderLogicDefinition>
<iof-av:naturalLanguageDefinition xml:lang="en-US">person, group of persons, or engineered system with an agent role</iof-av:naturalLanguageDefinition>
<iof-av:semiFormalNaturalLanguageDefinition>every instance of 'agent' is defined as exactly an instance of 'person', 'group of agents', or 'engineered system' when it 'has role' some 'agent role'</iof-av:semiFormalNaturalLanguageDefinition>
</owl:Class>
<owl:Class rdf:about="&iof-core;AgentRole">
<rdfs:subClassOf rdf:resource="&bfo;BFO_0000023"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&iof-core;roleOf"/>
<owl:someValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&bfo;BFO_0000040">
</rdf:Description>
<owl:Class>
<owl:complementOf rdf:resource="&bfo;BFO_0000024"/>
</owl:Class>
</owl:intersectionOf>
</owl:Class>
<owl:Restriction>
<owl:onProperty rdf:resource="&iof-core;actsOnBehalfOfAtSomeTime"/>
<owl:someValuesFrom>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&iof-core;EngineeredSystem">
</rdf:Description>
<rdf:Description rdf:about="&iof-core;GroupOfAgents">
</rdf:Description>
<rdf:Description rdf:about="&iof-core;Person">
</rdf:Description>
</owl:unionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en-US">agent role</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://spec.industrialontologies.org/ontology/core/Core/"/>
<skos:example xml:lang="en-US">a person has an employee role when he/she acts on behalf of the business organization that employs them</skos:example>
<iof-av:adaptedFrom>http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology</iof-av:adaptedFrom>
<iof-av:counterExample>Other types of agents we are not including at this stage are:
1. Those that are physical and chemical in nature: Cleaning, vulcanizing, fluxing, indicator, sterilizing, emulisifying, refining.
2. Organisms: animals, cells, parts of organisms (organs, organelles, viruses).
3. In computing: intelligent, artificial, mobile, & autonomous</iof-av:counterExample>
<iof-av:explanatoryNote>1.The IOF has elected to exclude material substances that may, at times, act like or are often referred to as agents, in that they realize some specific function that some person desires (e.g., platinum is a reducing agent in various reduction-type reactions -- as used in a catalytic converter to eliminate or reduce various pollutants in exhausts).
2. The IOF has at this time excluded other types of non-human agents, such as animals and other organisms (often referred to as biological agents).
3. in case the 'material entity' is an engineered system or group of agents or person acting on behalf of oneself is also allowed</iof-av:explanatoryNote>
<iof-av:firstOrderLogicAxiom>AgentRole(x) → Role(x) ∧ ∃n,∃m((MaterialEntity(m) ∧ ¬FiatObjectPart(x)) ∧ roleOf(x,m) ∧ (Person(n) ∨ GroupOfAgents(n) ∨ EngineeredSystem(n)) ∧ actsOnBehalfOfAtSomeTime(m, n))</iof-av:firstOrderLogicAxiom>
<iof-av:isPrimitive rdf:datatype="&xsd;boolean">true</iof-av:isPrimitive>
<iof-av:naturalLanguageDefinition xml:lang="en-US">role that someone or something has when they act on behalf of a person, engineered system or a group of agents</iof-av:naturalLanguageDefinition>
<iof-av:primitiveRationale>This term is expected to remain primitive. While 'acting on behalf of at some time' captures the essence of being an agent, the realization of the agent role is expected to have too generic of a scope to define a sufficient condition that would not cause conflict (overlap) with the realization of other roles, which can in turn lead to reasoner errors when a specific entity bears multiple roles simoultaneously. Also, no further conditions specific to the role and not to the bearer of the role have been created thus far.</iof-av:primitiveRationale>
<iof-av:semiFormalNaturalLanguageAxiom>if x is an 'agent role' x then x is a 'role' that is the 'role of' some 'material entity' (that is not a 'fiat object part') when it 'acts on behalf of at some time' some 'person' or 'group of agents' or 'engineered system'</iof-av:semiFormalNaturalLanguageAxiom>
</owl:Class>
<owl:Class rdf:about="&iof-core;Agreement">
<rdfs:subClassOf rdf:resource="&iof-core;InformationContentEntity"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&bfo;BFO_0000110"/>
<owl:someValuesFrom rdf:resource="&iof-core;ObjectiveSpecification"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en-US">agreement</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://spec.industrialontologies.org/ontology/core/Core/"/>
<skos:example xml:lang="en-US">prenuptial agreement; memorandum of understanding; non-disclosure agreement; employment agreement; purchase order that has been confirmed by the seller by e-mail; handshake agreement to buy something in the State of Florida, which happens to be legally-binding in that juristiction provided certain evidence can be produced</skos:example>
<iof-av:adaptedFrom>FIBO https://spec.edmcouncil.org/fibo/ontology/FND/Agreements/Agreements, term by the same name</iof-av:adaptedFrom>
<iof-av:firstOrderLogicAxiom>Agreement(x) → InformationContentEntity(x) ∧ ∃o(ObjectiveSpecification(o) ∧ hasContinuantPartAtAllTimes(x,o))</iof-av:firstOrderLogicAxiom>
<iof-av:isPrimitive rdf:datatype="&xsd;boolean">true</iof-av:isPrimitive>
<iof-av:naturalLanguageDefinition xml:lang="en-US">understanding between two or more parties that contains a set of commitments on the part of the parties</iof-av:naturalLanguageDefinition>
<iof-av:primitiveRationale>In addition to the general discussion provided for information content enty,there are insufficient constructs to create necessary and sufficient conditions. Namely, patterns surrounding commitment and party need to be established</iof-av:primitiveRationale>
<iof-av:semiFormalNaturalLanguageAxiom>if x is an 'agreement' then x is an 'information content entity' that 'has continuant part at all times' some 'objective specification'</iof-av:semiFormalNaturalLanguageAxiom>
</owl:Class>
<owl:Class rdf:about="&iof-core;Algorithm">
<rdfs:subClassOf rdf:resource="&iof-core;InformationContentEntity"/>
<rdfs:label xml:lang="en-US">algorithm</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://spec.industrialontologies.org/ontology/core/Core/"/>
<skos:example xml:lang="en-US">pseudo code for sorting data, flowchart for automatic control of a process</skos:example>
<iof-av:adaptedFrom>http://purl.obolibrary.org/obo/IAO_0000064 and http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology</iof-av:adaptedFrom>
<iof-av:counterExample>executable code, source code</iof-av:counterExample>
<iof-av:explanatoryNote>1. to translate in this context means to implement the algorithm such that it is readily executable
2. algorithms in this context should be interpreted as implementation-independent (language-neutral) representations and are typically represented as pseudo-code or a flowchart
3. declarative steps should be interpreted in the context of declarative programming</iof-av:explanatoryNote>
<iof-av:firstOrderLogicAxiom>InformationContentEntity(x) ∧ ∃y(EncodedAlgorithm(y) ∧ prescribes(x,y)) → Algorithm(x)</iof-av:firstOrderLogicAxiom>
<iof-av:isPrimitive rdf:datatype="&xsd;boolean">true</iof-av:isPrimitive>
<iof-av:naturalLanguageDefinition xml:lang="en-US">information content entity that prescribes procedural or declarative steps which can be translated to computer interpretable instructions</iof-av:naturalLanguageDefinition>
<iof-av:primitiveRationale>See the general discussion and rationale provided under information content entity.</iof-av:primitiveRationale>
<iof-av:semiFormalNaturalLanguageAxiom>If x is an 'information content entity' that 'prescribes' some 'encoded algorithm' then x is an instance of 'algorithm'</iof-av:semiFormalNaturalLanguageAxiom>
</owl:Class>
<owl:Class rdf:about="&iof-core;Assembly">
<rdfs:subClassOf rdf:resource="&iof-core;MaterialArtifact"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty>
<rdf:Description>
<owl:inverseOf rdf:resource="&iof-core;componentPartOfAtAllTimes"/>
</rdf:Description>
</owl:onProperty>
<owl:someValuesFrom rdf:resource="&iof-core;MaterialComponent"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en-US">assembly</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://spec.industrialontologies.org/ontology/core/Core/"/>
<skos:example xml:lang="en-US">powertrain assembly; partially-assembled powertrain + transmission assembly lying nearby; driveshaft assembly temporarily disassembled for repair or routine maintenance; separator assembly consisting of variously-shaped separator parts that safeguard wine bottles in a case of wine during transport; a material artifact produced entirely through additive manufacturing (provided it is a component somewhere, and can it can be disassembled without damage/destruction).</skos:example>
<iof-av:adaptedFrom>APICS 14 ed., 2013, term by the same name; DoD Standard Practice, Identification Marking of US Military Property (MIL-STD-130N Nov. 2012) https://dodprocurementtoolbox.com/cms/sites/default/files/resources/2016-03/MIL-Std130N_Ch1_4.pdf, term by the same name</iof-av:adaptedFrom>
<iof-av:counterExample>a portion of material; a piece of glass; a rod of aluminum; a roll of aluminum; an engine block</iof-av:counterExample>
<iof-av:explanatoryNote>Although the term is polysemous and used in a number of other domains beyond manufacturing, it is introduced here as a covering term for any man-made artifact that satisfies the conditions provided, and independent of modality. We expect various subclasses of assembly to be introduced in future along with more precise heuristics for the various modalities in which they exist.</iof-av:explanatoryNote>
<iof-av:firstOrderLogicAxiom>LA1: Assembly(x) → MaterialArtifact(x) ∧ ∃c,∃c'(MaterialComponent(c) ∧ MaterialComponent(c') componentPartOfAtAllTimes(c,x) ∧ componentPartOfAtAllTimes(c',x) ∧ ¬(c=c'∨ (componentPartOfAtAllTimes(c,c') ∨ componentPartOfAtAllTimes(c',c))))</iof-av:firstOrderLogicAxiom>
<iof-av:firstOrderLogicAxiom>LA2: MaterialArtifact(x) ∧ ∃p(AssemblyProcess(p) ∧ isSpecifiedOutputOf(x,p)) → Assembly(x)</iof-av:firstOrderLogicAxiom>
<iof-av:isPrimitive rdf:datatype="&xsd;boolean">true</iof-av:isPrimitive>
<iof-av:naturalLanguageDefinition xml:lang="en-US">material artifact that is composed of material components that are physically connected and that is capable of disassembly</iof-av:naturalLanguageDefinition>
<iof-av:primitiveRationale>There are insufficient constructs in the ontology to provide necessary and sufficient conditions. Namely, 'disassembly capability' is missing.</iof-av:primitiveRationale>
<iof-av:semiFormalNaturalLanguageAxiom>LA1: if x is an 'assembly' then x is a 'material artifact' and there are at least two distinct 'material component' that are 'component part of at all times' x</iof-av:semiFormalNaturalLanguageAxiom>
<iof-av:semiFormalNaturalLanguageAxiom>LA2: Material Artifact x that 'is specified output of' some Assembly Process p implies x is an Assembly</iof-av:semiFormalNaturalLanguageAxiom>
<iof-av:usageNote>Every assembly has a plurality of material components. While this is captured in the FOL, due to reasoning limitations with cardinality restrictions and complex properties, the OWL axiom uses 'some' instead of min 2. Hence, this class should be modeled as having at least two material components on the instance level.</iof-av:usageNote>
</owl:Class>
<owl:Class rdf:about="&iof-core;AssemblyProcess">
<rdfs:subClassOf rdf:resource="&iof-core;ManufacturingProcess"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&iof-core;hasInput"/>
<owl:someValuesFrom rdf:resource="&iof-core;MaterialComponent"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&iof-core;hasSpecifiedOutput"/>
<owl:someValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&iof-core;Assembly">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&iof-core;hasComponentPartAtAllTimes"/>
<owl:someValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&iof-core;MaterialComponent">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&iof-core;isInputOf"/>
<owl:someValuesFrom rdf:resource="&iof-core;ManufacturingProcess"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en-US">assembly process</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://spec.industrialontologies.org/ontology/core/Core/"/>
<skos:example xml:lang="en-US">Driving a lug nut to hold the wheel of a car in place; welding two metal parts into a single object; automated drilling and riveting of a skin panel operation during fuselage assembly;</skos:example>
<iof-av:adaptedFrom>http://www.ontologyrepository.com/CommonCoreOntologies/Mid/EventOntology</iof-av:adaptedFrom>
<iof-av:counterExample>3D printing on an existing part (existing part + a pool of printing material -> new part) -- Note that the pool of material is an object before the process but becomes liquid (there is physical state change) during the "assembly" process.</iof-av:counterExample>
<iof-av:firstOrderLogicAxiom>AssemblyProcess(x) → ManufacturingProcess(x) ∧ ∃a, ∃c (Assembly(a) ∧ MaterialComponent(c) ∧ isInputOf(c,x) ∧ hasComponentPartAtAllTimes(a,c) ∧ hasSpecifiedOutput(x,a))</iof-av:firstOrderLogicAxiom>
<iof-av:isPrimitive rdf:datatype="&xsd;boolean">true</iof-av:isPrimitive>
<iof-av:naturalLanguageDefinition xml:lang="en-US">manufacturing process in which a number of material components are physically connected to each other to form an assembly</iof-av:naturalLanguageDefinition>
<iof-av:primitiveRationale>More conditions (differentia) need to be agreed upon by the domain experts as processes like 3D printing can also produce an assembly.</iof-av:primitiveRationale>
<iof-av:semiFormalNaturalLanguageAxiom>if x is an 'assembly process' x then x is a 'manufacturing process' that 'has specified output' some 'assembly' which 'has component part at all times' some 'material component' that 'is input of' x</iof-av:semiFormalNaturalLanguageAxiom>
</owl:Class>
<owl:Class rdf:about="&iof-core;BusinessFunction">
<rdfs:subClassOf rdf:resource="&bfo;BFO_0000034"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&bfo;BFO_0000054"/>
<owl:allValuesFrom rdf:resource="&iof-core;BusinessProcess"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&iof-core;functionOf"/>
<owl:someValuesFrom rdf:resource="&iof-core;Organization"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&iof-core;prescribedBy"/>
<owl:someValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&iof-core;ObjectiveSpecification">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&bfo;BFO_0000084"/>
<owl:someValuesFrom rdf:resource="&iof-core;Organization"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en-US">business function</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://spec.industrialontologies.org/ontology/core/Core/"/>
<skos:example xml:lang="en-US">Pfizer has the business function to produce medicines; Airbus has the business function of manufacturing planes</skos:example>
<iof-av:adaptedFrom>https://en.wikipedia.org/wiki/Business_purpose</iof-av:adaptedFrom>
<iof-av:counterExample>any function of a non-profit organization</iof-av:counterExample>
<iof-av:firstOrderLogicAxiom>LA1: BusinessFunction(x) → Function(x) ∧ ∃o,∃i(Organization(o) ∧ ObjectiveSpecification(i) ∧ functionOf(x,o) ∧ genericallyDependsOnAtSomeTime(i,o) ∧ prescribedBy(x,i)) ∧ ∀y(hasRealization(x,y) → BusinessProcess(y))</iof-av:firstOrderLogicAxiom>
<iof-av:firstOrderLogicAxiom>LA2: Function(x) ∧ ∃o,∃i,∃p(Organization(o) ∧ ObjectiveSpecification(i) ∧ BusinessProcess(p) ∧ functionOf(x,o) ∧ genericallyDependsOnAtSomeTime(i,o) ∧ prescribedBy(x,i)) ∧ hasRealization(x,p)) → BusinessFunction(x)</iof-av:firstOrderLogicAxiom>
<iof-av:isPrimitive rdf:datatype="&xsd;boolean">true</iof-av:isPrimitive>
<iof-av:naturalLanguageDefinition xml:lang="en-US">function of an organization to partake in for profit activities as prescribed by the objectives specified by that organization</iof-av:naturalLanguageDefinition>
<iof-av:primitiveRationale>As a function will come into its existance prior to its realization in given business processes necessary and sufficient conditions can not be created at this point due to a lack of patterns to express process types regardless of the time of their existence</iof-av:primitiveRationale>
<iof-av:semiFormalNaturalLanguageAxiom>LA1: if x is a 'business function' then x is a 'function' that is 'function of' some 'organization' and that is 'prescribed by' some 'objective specification' and whenever x 'has realization' y that y must be a 'business process'</iof-av:semiFormalNaturalLanguageAxiom>
<iof-av:semiFormalNaturalLanguageAxiom>LA2: if x is a 'function' that is 'function of' some 'organization' and that is 'prescribed by' some 'objective specification' and that 'has realization' some 'business process' then x is a 'business function'</iof-av:semiFormalNaturalLanguageAxiom>
</owl:Class>
<owl:Class rdf:about="&iof-core;BusinessOrganization">
<rdfs:subClassOf rdf:resource="&iof-core;Organization"/>
<rdfs:label xml:lang="en-US">business organization</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://spec.industrialontologies.org/ontology/core/Core/"/>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&iof-core;Organization">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&bfo;BFO_0000196"/>
<owl:someValuesFrom rdf:resource="&iof-core;BusinessFunction"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<skos:example xml:lang="en-US">Mercedes-Benz, Deloitte, Pfizer, Airbus</skos:example>
<iof-av:adaptedFrom>https://en.wikipedia.org/wiki/Business</iof-av:adaptedFrom>
<iof-av:explanatoryNote>Business entities are formally organized according to the laws prevailing in the locales and countries in which it operates or conducts business, and include companies, corporations, partnerships, or sole proprietorships.</iof-av:explanatoryNote>
<iof-av:firstOrderLogicDefinition>BusinessOrganization(x) ↔ Organization(x) ∧ ∃f(BusinessFunction(f) ∧ hasFunction(x,f))</iof-av:firstOrderLogicDefinition>
<iof-av:naturalLanguageDefinition xml:lang="en-US">organization engaging in or planning to engage in any activity of buying and selling goods or services for a profit</iof-av:naturalLanguageDefinition>
<iof-av:semiFormalNaturalLanguageDefinition>every instance of a business organization' is defined as exactly an instance of 'organization' that 'has function' some 'business function'</iof-av:semiFormalNaturalLanguageDefinition>
</owl:Class>
<owl:Class rdf:about="&iof-core;BusinessProcess">
<rdfs:subClassOf rdf:resource="&iof-core;PlannedProcess"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&bfo;BFO_0000057"/>
<owl:someValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&iof-core;Agent">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&iof-core;actsOnBehalfOfAtSomeTime"/>
<owl:someValuesFrom rdf:resource="&iof-core;BusinessOrganization"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&iof-core;prescribedBy"/>
<owl:someValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&iof-core;PlanSpecification">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&bfo;BFO_0000110"/>
<owl:someValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&iof-core;ObjectiveSpecification">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&bfo;BFO_0000084"/>
<owl:someValuesFrom rdf:resource="&iof-core;BusinessOrganization"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en-US">business process</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://spec.industrialontologies.org/ontology/core/Core/"/>
<skos:example xml:lang="en-US">product production process; manufacturing enterprise process; finance operation; logistics operation.</skos:example>
<iof-av:adaptedFrom>ISO 15704 and APICS</iof-av:adaptedFrom>
<iof-av:explanatoryNote>This definition leaves open the possibility that the business entity that carries the plan that prescribes the process, has no direct participation in the process, which would imply that some 3rd-party agent is playing a causal role as the process unfolds, and is acting on behalf of the Business Entity's interests.</iof-av:explanatoryNote>
<iof-av:firstOrderLogicAxiom>BusinessProcess (p) → PlannedProcess(p) ∧ ∃o,∃b,∃s,∃y (ObjectiveSpecification(o) ∧ BusinessOrganization(b) ∧ PlanSpecification(s) ∧ isCarrierOfAtSomeTime(b,o) ∧ continuantPartofAtAllTimes(o,s) ∧ Agent(y) ∧ actsOnBehalfOfAtSomeTime(y,b) ∧ participatesInAtSomeTime(y,x))</iof-av:firstOrderLogicAxiom>
<iof-av:isPrimitive rdf:datatype="&xsd;boolean">true</iof-av:isPrimitive>
<iof-av:naturalLanguageDefinition xml:lang="en-US">planned process which is prescribed by a plan specification with one or more objectives specified by a business organization</iof-av:naturalLanguageDefinition>
<iof-av:primitiveRationale>More conditions (differentia) need to be agreed upon by the domain experts.</iof-av:primitiveRationale>
<iof-av:semiFormalNaturalLanguageAxiom>if x is a 'business process' then x is a 'planned process' that 'has participant at some time' some 'agent' that 'acts on behalf of at some time' a 'business organization' that 'is carrier of at some time' some 'objective specification' that is 'continuant part of at all times' a 'plan specification' that 'prescribes' x</iof-av:semiFormalNaturalLanguageAxiom>
</owl:Class>
<owl:Class rdf:about="&iof-core;Buyer">
<rdfs:subClassOf rdf:resource="&iof-core;Agent"/>
<rdfs:label xml:lang="en-US">buyer</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://spec.industrialontologies.org/ontology/core/Core/"/>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&iof-core;Organization">
</rdf:Description>
<rdf:Description rdf:about="&iof-core;Person">
</rdf:Description>
</owl:unionOf>
</owl:Class>
<owl:Restriction>
<owl:onProperty rdf:resource="&iof-core;hasRole"/>
<owl:someValuesFrom rdf:resource="&iof-core;BuyerRole"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<skos:example xml:lang="en-US">Pfizer when it buys a bulk of chemicals from MiliporeSigma; a person is when they buy groceries at the supermarket; a manufacturing enterprise when they hire an external organization to do some manufacturing process (manufacturing as a service); a person when they hire someone to repair a broken pipe</skos:example>
<iof-av:explanatoryNote>See the expanded definition under the corresponding role class. The term is formalized here as a defined class by referring to its corresponding role class and exists primarily for ontological modeling and implementation convenience.</iof-av:explanatoryNote>
<iof-av:firstOrderLogicDefinition>Buyer(x) ↔ Person(x) ∨ Organization(x) ∧ ∃r(BuyerRole(r) ∧ hasRole(x,r))</iof-av:firstOrderLogicDefinition>
<iof-av:naturalLanguageDefinition xml:lang="en-US">person or organization which has a buyer role</iof-av:naturalLanguageDefinition>
<iof-av:semiFormalNaturalLanguageDefinition>every instance of 'buyer' is defined as exactly an instance of 'person' or 'organization' that 'has role' some 'buyer role'</iof-av:semiFormalNaturalLanguageDefinition>
</owl:Class>
<owl:Class rdf:about="&iof-core;BuyerRole">
<rdfs:subClassOf rdf:resource="&iof-core;AgentRole"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&iof-core;roleOf"/>
<owl:someValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&iof-core;Organization">
</rdf:Description>
<rdf:Description rdf:about="&iof-core;Person">
</rdf:Description>
</owl:unionOf>
</owl:Class>
<owl:Restriction>
<owl:onProperty rdf:resource="&bfo;BFO_0000056"/>
<owl:someValuesFrom rdf:resource="&iof-core;BuyingBusinessProcess"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en-US">buyer role</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://spec.industrialontologies.org/ontology/core/Core/"/>
<skos:example xml:lang="en-US">Pfizer has a buyer role when it buys a bulk of chemicals from MiliporeSigma; a person has a buyer role when they buy groceries at the supermarket; a manufacturing enterprise has a buyer role when they hire an external organization to do some manufacturing process (manufacturing as a service); a person has a buyer role when they hire someone to repair a broken pipe</skos:example>
<iof-av:adaptedFrom>OAGIS</iof-av:adaptedFrom>
<iof-av:firstOrderLogicAxiom>BuyerRole(x) → Role(x) ∧ ∃y,∃p ((Organization(y) ∨ Person(y)) ∧ BuyingBusinessProcess(p) ∧ participatesInAtSomeTime(y,p) ∧ roleOf(x, y))</iof-av:firstOrderLogicAxiom>
<iof-av:isPrimitive rdf:datatype="&xsd;boolean">true</iof-av:isPrimitive>
<iof-av:naturalLanguageDefinition xml:lang="en-US">agent role held by a person or organization when it buys a product or a service</iof-av:naturalLanguageDefinition>
<iof-av:primitiveRationale>There are insufficient constructs to create necessary and sufficient conditions. Namely, constructs for economic transactions and ownership are lacking</iof-av:primitiveRationale>
<iof-av:semiFormalNaturalLanguageAxiom>if x is a 'buyer role' x then x is an 'agent role' that is the 'role of' some 'person' or 'organization' when it 'participates in at some time' some 'buying business process'</iof-av:semiFormalNaturalLanguageAxiom>
</owl:Class>
<owl:Class rdf:about="&iof-core;BuyingBusinessProcess">
<rdfs:subClassOf rdf:resource="&iof-core;BusinessProcess"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&bfo;BFO_0000057"/>
<owl:someValuesFrom rdf:resource="&iof-core;Buyer"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&bfo;BFO_0000057"/>
<owl:someValuesFrom>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&iof-core;CommercialServiceAgreement">
</rdf:Description>
<rdf:Description rdf:about="&iof-core;MaterialProduct">
</rdf:Description>
</owl:unionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en-US">buying business process</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://spec.industrialontologies.org/ontology/core/Core/"/>
<skos:example xml:lang="en-US">GM buys tires from Good Year to be assembled into its cars; GE Conglomerate (buyer) buys steels for uses in productions by its GE aviation subsidiary (customer) and GE Transportation subsidiary (customer)</skos:example>
<iof-av:adaptedFrom>CCO:http://www.ontologyrepository.com/CommonCoreOntologies/ActOfBuying
NL definition: OAGIS and CCO</iof-av:adaptedFrom>
<iof-av:explanatoryNote>1.The agent who uses the finiancial instrument may not own the financial instrument and hence agent may not be the paying agent.
2. It should be noted that we consciously exclude the person-to-person transactions, but person-to-business is not excluded.</iof-av:explanatoryNote>
<iof-av:firstOrderLogicAxiom>BuyingBusinessProcess(x) → BusinessProcess(x) ∧ ∃y,∃z ((MaterialProduct(y) ∨ CommercialServiceAgreement(y)) ∧ Buyer(z) ∧ hasParticipantAtSomeTIme(x,y) ∧ hasParticipantAtSomeTime(x,z))</iof-av:firstOrderLogicAxiom>
<iof-av:isPrimitive rdf:datatype="&xsd;boolean">true</iof-av:isPrimitive>
<iof-av:naturalLanguageDefinition xml:lang="en-US">business process wherein a financial instrument is used by an agent (buyer) to acquire ownership of a product or commercial service from another agent (seller) for the buyer itself or for another agent (customer)</iof-av:naturalLanguageDefinition>
<iof-av:primitiveRationale>There are insufficient constructs to create necessary and sufficient conditions. Namely, ownership and economic transactions require formalization.</iof-av:primitiveRationale>
<iof-av:semiFormalNaturalLanguageAxiom>if x is a 'buying business process' then x is a 'business process' that 'has participant at some time' some 'buyer' and x 'has participant at some time' some 'material product' or 'commercial service agreement'</iof-av:semiFormalNaturalLanguageAxiom>
</owl:Class>
<owl:Class rdf:about="&iof-core;Capability">
<rdfs:subClassOf rdf:resource="&bfo;BFO_0000016"/>
<rdfs:label xml:lang="en-US">capability</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://spec.industrialontologies.org/ontology/core/Core/"/>
<skos:example xml:lang="en-US">Capability of a person to play chess at the "master" level; of a team to play football in the professional league; of a lathe to turn at maximal speed of 4,000 RPM; or of your digestive system to digest tiramisu.</skos:example>
<iof-av:adaptedFrom>http://www.ontologyrepository.com/CommonCoreOntologies/Mid/AgentOntology</iof-av:adaptedFrom>
<iof-av:explanatoryNote>1. Whereas the BFO term 'disposition refers to all tendencies, powers, habits, skills, potentials, and so forth, that a material entity may possess, a Capability narrows this down by requiring the existence of an Agent that has an interest in the realization of the capability
2. This definition does not attempt to capture "task-based" capabilities that an entity may bear -- e.g., a stone's capability to kill when used by some person. Rather, it captures "proper capabilities." See related discussion of "proper functions" in the literature.
3. All functions are capabilities and in a future release BFO:Function will be asserted directly under capability.
4. Not all capabilities are functions. Capabilities are often added to an artifact by the designer/engineer, or to a biological entity through evolution, as "additional benefits," and are differentiated from function (i.e., purpose). Examples: the air conditioner in your car is a capability but not the function of your car. Yet the function of the car air conditioner certainly forms some material basis of your car's ability to provide a comfortable experience. The ability of your heart to beat fast to support your need to run fast to escape a threat. The decaying stick on the forest lawn does not have the function to be used as a tool, but certainly a chimpanzee
may have an interest in using a stick to extract food from a termite mound.</iof-av:explanatoryNote>
<iof-av:firstOrderLogicAxiom>Capability(x) → Disposition(x)</iof-av:firstOrderLogicAxiom>
<iof-av:isPrimitive rdf:datatype="&xsd;boolean">true</iof-av:isPrimitive>
<iof-av:naturalLanguageDefinition xml:lang="en-US">disposition in whose realization some agent has an interest</iof-av:naturalLanguageDefinition>
<iof-av:primitiveRationale>This concept will be further developed and formalized in a future release of BFO.</iof-av:primitiveRationale>
<iof-av:semiFormalNaturalLanguageAxiom>if x is a 'capability' then x is a 'disposition'</iof-av:semiFormalNaturalLanguageAxiom>
<iof-av:synonym xml:lang="en-US">ability</iof-av:synonym>
</owl:Class>
<owl:Class rdf:about="&iof-core;CommercialService">
<rdfs:subClassOf rdf:resource="&iof-core;BusinessProcess"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&bfo;BFO_0000057"/>
<owl:someValuesFrom rdf:resource="&iof-core;ServiceProvider"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&bfo;BFO_0000117"/>
<owl:someValuesFrom rdf:resource="&iof-core;SupplyingBusinessProcess"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&iof-core;isSubjectOf"/>
<owl:someValuesFrom rdf:resource="&iof-core;CommercialServiceAgreement"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&iof-core;prescribedBy"/>
<owl:someValuesFrom rdf:resource="&iof-core;CommercialServiceSpecification"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en-US">commercial service</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://spec.industrialontologies.org/ontology/core/Core/"/>
<skos:example xml:lang="en-US">Lufthansa Aviation Services maintains airplanes for United Airlines when the plane stops at Frankfurt International Airport.</skos:example>
<iof-av:explanatoryNote>1. A consumption process means using or benefiting.
2.Typically, the service provisioning process and consumption process coincide temporally which is different from a material product that is consumed (used) only after supplied.</iof-av:explanatoryNote>
<iof-av:firstOrderLogicAxiom>Commercialervice(x) → BusinessProcess(x) ∧ ∃p,∃y,∃a,∃s (CommercialServiceSpecification(p) ∧ ServiceProvider(y) ∧ CommercialServiceAgreement(s) ∧ SupplyingBusinessProcess(a) ∧ hasParticipantAtSomeTime(x,y) ∧ hasOccurentPart(x,a) ∧ prescribedBy(x,p) ∧ isSubjectOf(x,s))</iof-av:firstOrderLogicAxiom>
<iof-av:isPrimitive rdf:datatype="&xsd;boolean">true</iof-av:isPrimitive>
<iof-av:naturalLanguageDefinition xml:lang="en-US">business process that consists of a service provisioning process and a consumption process</iof-av:naturalLanguageDefinition>
<iof-av:primitiveRationale>There are insufficient constructs to create necessary and sufficient conditions. Namely, service consumption needs to be formalized.</iof-av:primitiveRationale>
<iof-av:semiFormalNaturalLanguageAxiom>if x is a 'commercial service' then x is a 'business process' that is 'prescribed by' some 'commercial service specification' and that 'has participant at some time' some 'service provider' 'and x 'has occurent part' some 'supplying business process' and x 'is subject of' some 'commercial service agreement'</iof-av:semiFormalNaturalLanguageAxiom>
</owl:Class>
<owl:Class rdf:about="&iof-core;CommercialServiceAgreement">
<rdfs:subClassOf rdf:resource="&iof-core;Agreement"/>
<rdfs:label xml:lang="en-US">commercial service agreement</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://spec.industrialontologies.org/ontology/core/Core/"/>
<skos:example xml:lang="en-US">a cellphone plan, a maintenance service agreement, equipment lease agreement that includes a maintenance plan</skos:example>
<iof-av:adaptedFrom>https://schema.org/, http://www.heppnetz.de/projects/goodrelations/ and http://dini-ag-kim.github.io/service-ontology/service.html</iof-av:adaptedFrom>
<iof-av:counterExample>a blanket purchase order, commodity contract</iof-av:counterExample>
<iof-av:firstOrderLogicAxiom>Agreement(x) ∧ ∃c,∃y,∃z(CommercialService(c) ∧ ServiceProviderRole(y) ∧ CustomerRole(z) ∧ isAbout(x,c) ∧ prescribes(x,y) ∧ prescribes(x,z)) → CommercialServiceAgreement(x)</iof-av:firstOrderLogicAxiom>
<iof-av:isPrimitive rdf:datatype="&xsd;boolean">true</iof-av:isPrimitive>
<iof-av:naturalLanguageDefinition xml:lang="en-US">agreement between a customer and service provider that is about some commercial service to be provided by the service provider in exchange for compensation from the customer</iof-av:naturalLanguageDefinition>
<iof-av:primitiveRationale>See the general discussion and rationale provided for informational entities under 'information content entity'.</iof-av:primitiveRationale>
<iof-av:semiFormalNaturalLanguageAxiom>If x is an 'agreement' that 'is about' some 'commercial service' and that 'prescribes' some 'customer role' and some 'service provider role' then x is a 'commercial service agreement'</iof-av:semiFormalNaturalLanguageAxiom>
</owl:Class>
<owl:Class rdf:about="&iof-core;CommercialServiceSpecification">
<rdfs:subClassOf rdf:resource="&iof-core;PlanSpecification"/>
<rdfs:label xml:lang="en-US">commercial service specification</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://spec.industrialontologies.org/ontology/core/Core/"/>
<skos:example xml:lang="en-US">protocol on how maintenance will be conducted on airplanes that is a part of the agreement between Frankfurt Airport and various airlines</skos:example>
<iof-av:adaptedFrom>https://schema.org/, http://www.heppnetz.de/projects/goodrelations/ and http://dini-ag-kim.github.io/service-ontology/service.html</iof-av:adaptedFrom>
<iof-av:firstOrderLogicAxiom>PlanSpecification(x) ∧ ∃c(CommercialService(c) ∧ prescribes(x,c)) → CommercialServiceSpecification(x)</iof-av:firstOrderLogicAxiom>
<iof-av:isPrimitive rdf:datatype="&xsd;boolean">true</iof-av:isPrimitive>
<iof-av:naturalLanguageDefinition xml:lang="en-US">plan specification that prescribes a commercial service</iof-av:naturalLanguageDefinition>
<iof-av:primitiveRationale>See the general discussion and rationale provided for informational entities under 'information content entity'.</iof-av:primitiveRationale>
<iof-av:semiFormalNaturalLanguageAxiom>if x is a 'plan specification' that 'prescribes' some 'commercial service' then x is a 'commercial service specification'</iof-av:semiFormalNaturalLanguageAxiom>
</owl:Class>
<owl:Class rdf:about="&iof-core;ComputingProcess">
<rdfs:subClassOf rdf:resource="&iof-core;PlannedProcess"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&iof-core;hasInput"/>
<owl:allValuesFrom rdf:resource="&iof-core;InformationContentEntity"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&iof-core;hasSpecifiedOutput"/>
<owl:allValuesFrom rdf:resource="&iof-core;InformationContentEntity"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en-US">computing process</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://spec.industrialontologies.org/ontology/core/Core/"/>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&iof-core;PlannedProcess">
</rdf:Description>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="&iof-core;achievesAtSomeTime"/>
<owl:someValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&iof-core;ObjectiveSpecification">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&bfo;BFO_0000177"/>
<owl:someValuesFrom>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&iof-core;Algorithm">
</rdf:Description>
<rdf:Description rdf:about="&iof-core;EncodedAlgorithm">
</rdf:Description>
</owl:unionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&iof-core;hasSpecifiedOutput"/>
<owl:someValuesFrom rdf:resource="&iof-core;InformationContentEntity"/>
</owl:Restriction>
</owl:unionOf>
</owl:Class>
<owl:Restriction>
<owl:onProperty rdf:resource="&bfo;BFO_0000057"/>
<owl:someValuesFrom rdf:resource="&iof-core;Agent"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&bfo;BFO_0000059"/>
<owl:someValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&iof-core;Algorithm">
</rdf:Description>
<rdf:Description rdf:about="&iof-core;EncodedAlgorithm">
</rdf:Description>
</owl:unionOf>
</owl:Class>
<owl:Restriction>
<owl:onProperty rdf:resource="&bfo;BFO_0000084"/>
<owl:someValuesFrom rdf:resource="&iof-core;Agent"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<skos:example xml:lang="en-US">execution of a neural network implemented in tensorflow to classify a set of images on a specific cluster; running of the MPC algorithm to control pressure during the production process</skos:example>
<iof-av:adaptedFrom>https://en.wikipedia.org/wiki/Process_(computing) and https://en.wikipedia.org/wiki/Execution_(computing)</iof-av:adaptedFrom>
<iof-av:explanatoryNote>1. The inputs and specified outputs of 'computing process' are strictly limited to information content entities.
2. While it is true that algorithms can result in an action by an agent that concretizes it (e.g. controller changes the pressure of a valve), the intermediate step is still an information content entity (e.g. action specification) that is 'concretized' in a separate process that results in the action.</iof-av:explanatoryNote>
<iof-av:firstOrderLogicAxiom>ComputingProcess(x) → ∀y((hasInput(x,y) ∨ hasSpecifiedOutput(x,y)) → InformationContentEntity(y)))</iof-av:firstOrderLogicAxiom>
<iof-av:firstOrderLogicDefinition>ComputingProcess(x) ↔ PlannedProcess(x) ∧ ∃y,∃a(Agent(y) ∧ (Algorithm(a) ∨ EncodedAlgorithm(a)) ∧ hasParticipantAtSomeTIme(x,y) ∧ genericallyDependsOnAtSomeTime(a,y) ∧ concretizesAtSomeTime(x,a) ∧ (∃o(ObjectiveSpecification(o) ∧ continuantPartOfAtAllTimes(o,a) ∧ achievesAtSomeTIme(x,o)) ∨
∃i(InformationContentEntity(i) ∧ hasSpecifiedOutput(x,i)))</iof-av:firstOrderLogicDefinition>
<iof-av:naturalLanguageDefinition xml:lang="en-US">planned process in which an algorithm or an encoded algorithm is realized by an agent</iof-av:naturalLanguageDefinition>
<iof-av:semiFormalNaturalLanguageAxiom>if x is a 'computing process' then whenever x 'has input' or 'has specified output' y that y must be an 'information content entity'</iof-av:semiFormalNaturalLanguageAxiom>
<iof-av:semiFormalNaturalLanguageDefinition>every instance of 'computing process' is defined as exactly an instance of 'planned process' that 'concretizes at some time' an 'encoded algorithm' or 'algorithm' y which 'generically depends on at some time' some 'agent' which 'participates in at some time' the 'computing process' and the 'computing process' either 'achieves at some time' some 'objective specification' that is 'continuant part of at all times y or it 'has specified output' some 'information content entity'</iof-av:semiFormalNaturalLanguageDefinition>
</owl:Class>
<owl:Class rdf:about="&iof-core;Customer">
<rdfs:subClassOf rdf:resource="&iof-core;Agent"/>
<rdfs:label xml:lang="en-US">customer</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://spec.industrialontologies.org/ontology/core/Core/"/>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&iof-core;Organization">
</rdf:Description>
<rdf:Description rdf:about="&iof-core;Person">
</rdf:Description>
</owl:unionOf>
</owl:Class>
<owl:Restriction>
<owl:onProperty rdf:resource="&iof-core;hasRole"/>
<owl:someValuesFrom rdf:resource="&iof-core;CustomerRole"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<skos:example xml:lang="en-US">GE aviation subsidiary and GE Transportation subsidiary when they utilize the steel bought for them by the GE Conglomerate; a person when they utilize a lap top that they bought from Target; a person when they subscribe for a phone plan</skos:example>
<iof-av:explanatoryNote>See the expanded definition under the corresponding role class. The term is formalized here as a defined class by referring to its corresponding role class and exists primarily for ontological modeling and implementation convenience.</iof-av:explanatoryNote>
<iof-av:firstOrderLogicDefinition>Customer(x) ↔ (Person(x) ∨ Organization(x)) ∧ ∃r(CustomerRole(r) ∧ hasRole(x,r))</iof-av:firstOrderLogicDefinition>
<iof-av:naturalLanguageDefinition xml:lang="en-US">person or organization which has a customer role</iof-av:naturalLanguageDefinition>
<iof-av:semiFormalNaturalLanguageDefinition>every instance of 'customer' is defined as exactly an instance of 'person' or 'organization' that 'has role' some 'customer role'</iof-av:semiFormalNaturalLanguageDefinition>
</owl:Class>
<owl:Class rdf:about="&iof-core;CustomerRole">
<rdfs:subClassOf rdf:resource="&iof-core;AgentRole"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&iof-core;roleOf"/>
<owl:someValuesFrom>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&iof-core;Organization">
</rdf:Description>
<rdf:Description rdf:about="&iof-core;Person">
</rdf:Description>
</owl:unionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en-US">customer role</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://spec.industrialontologies.org/ontology/core/Core/"/>
<skos:example xml:lang="en-US">GE aviation subsidiary and GE Transportation subsidiary have the customer role when they utilize the steel bought for them by the GE Conglomerate; a person has a customer role when they utilize a lap top that they bought from Target; a person has a customer role when they subscribe for a phone plan</skos:example>
<iof-av:adaptedFrom>OAGIS</iof-av:adaptedFrom>
<iof-av:firstOrderLogicAxiom>CustomerRole(x) → AgentRole(x) ∧ ∃y((Person(y) ∨ Organization(y)) ∧ roleOf(y,x))</iof-av:firstOrderLogicAxiom>
<iof-av:isPrimitive rdf:datatype="&xsd;boolean">true</iof-av:isPrimitive>
<iof-av:naturalLanguageDefinition xml:lang="en-US">agent role held by a person or organization when it utilizes the product or receives the service or subscribes to the commercial service agreement</iof-av:naturalLanguageDefinition>
<iof-av:primitiveRationale>There are insufficient constructs to create necessary and sufficient conditions. Namely, constructs for 'utilizing the product' and 'subscribing to an agreement' need to be formalized.</iof-av:primitiveRationale>
<iof-av:semiFormalNaturalLanguageAxiom>if x is a 'customer role' then x is an 'agent role' that is the 'role of' a 'person' or 'organization'</iof-av:semiFormalNaturalLanguageAxiom>
</owl:Class>
<owl:Class rdf:about="&iof-core;DescriptiveInformationContentEntity">
<rdfs:subClassOf rdf:resource="&iof-core;InformationContentEntity"/>
<rdfs:label xml:lang="en-US">descriptive information content entity</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://spec.industrialontologies.org/ontology/core/Core/"/>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&iof-core;InformationContentEntity">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&iof-core;describes"/>
<owl:someValuesFrom rdf:resource="&bfo;BFO_0000001"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<skos:example xml:lang="en-US">a description of a product in a product catalogue, the wheelbase of this car is 3m, digital copy of a Mona Lisa drawing</skos:example>
<iof-av:abbreviation xml:lang="en-US">descriptive ICE</iof-av:abbreviation>
<iof-av:adaptedFrom rdf:datatype="&xsd;anyURI">http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology</iof-av:adaptedFrom>
<iof-av:explanatoryNote xml:lang="en-US">This class is intended to be a defined class used for axiomatization and assertion convenience. It is not expected nor recommended that entities will be asserted as a subclass of this class.</iof-av:explanatoryNote>
<iof-av:firstOrderLogicDefinition>DescriptiveInformationContentEntity(x) ↔ InformationContentEntity(x) ∧ ∃e(Entity(e) ∧ describes(x,e))</iof-av:firstOrderLogicDefinition>
<iof-av:naturalLanguageDefinition xml:lang="en-US">information content entity that characterizes (gives a description of) an entity</iof-av:naturalLanguageDefinition>
<iof-av:semiFormalNaturalLanguageDefinition>every instance of 'descriptive information content entity ' is defined as exactly an instance of 'information content entity' that 'describes' some 'entity'</iof-av:semiFormalNaturalLanguageDefinition>
</owl:Class>
<owl:Class rdf:about="&iof-core;DesignSpecification">
<rdfs:subClassOf rdf:resource="&iof-core;InformationContentEntity"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&iof-core;prescribes"/>
<owl:allValuesFrom rdf:resource="&bfo;BFO_0000002"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:label xml:lang="en-US">design specification</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://spec.industrialontologies.org/ontology/core/Core/"/>
<skos:example xml:lang="en-US">document specifying the characteristics of a pharmaceutical product; the design of a software program to schedule the work orders in a factory</skos:example>
<iof-av:adaptedFrom>http://en.wikipedia.org/wiki/Design and from http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology, term under the name 'artifact design'</iof-av:adaptedFrom>
<iof-av:counterExample>process design</iof-av:counterExample>
<iof-av:explanatoryNote>1. Design specification may be a model or a textual or graphical specification.
2. This class is not intended to be used to represent the design of planned processes. For this purpose, plan specification should be used.
3. Something 'man-made' comprehends those physical and non-physical things that are intentionally created by human beings. Hence the thing specified by a design specification may be either BFO:GDC or BFO:Material Entity.
4. A design specification specifies what the thing should be, such as its shape, size, tolerance, and performance but not necessarily how the thing should be made. If it contains information on how a thing should be made, this should be modeled separately through a 'plan specification' that is 'part of' the design specification
5. Typically, a design specification satisfies a set of requirements</iof-av:explanatoryNote>
<iof-av:firstOrderLogicAxiom>LA1: DesignSpecification(x) → InformationContentEntity(x) ∧ ∀c (prescribes(x,c) → Continuant(c))</iof-av:firstOrderLogicAxiom>
<iof-av:firstOrderLogicAxiom>LA2: InformationContentEntity(x) ∧ ∃c, ∃r (Continuant(c) ∧ RequirementSpecification(r) ∧ satisfiesRequirement(x,r) ∧ prescribes(x,c)) ∧ ∀c'(prescribes(x,c') → Continuant(c')) → DesignSpecification(x)</iof-av:firstOrderLogicAxiom>
<iof-av:isPrimitive rdf:datatype="&xsd;boolean">true</iof-av:isPrimitive>
<iof-av:naturalLanguageDefinition xml:lang="en-US">information content entity that prescribes something man-made</iof-av:naturalLanguageDefinition>
<iof-av:primitiveRationale>See the general discussion and rationale provided for informational entities under 'information content entity'.</iof-av:primitiveRationale>
<iof-av:semiFormalNaturalLanguageAxiom>LA1: if d is a 'design specification' then d is an 'information content entity' and whenever d 'prescribes' y that y must be a 'continuant'</iof-av:semiFormalNaturalLanguageAxiom>
<iof-av:semiFormalNaturalLanguageAxiom>LA2: if d is an 'information content entity' that 'prescribes' some 'continuant' and that 'satisfies requirement' some 'requirement specification' and if all y that d 'presribes' are instance of 'continuant' then d is a 'design specification'</iof-av:semiFormalNaturalLanguageAxiom>
</owl:Class>
<owl:Class rdf:about="&iof-core;DesignativeInformationContentEntity">
<rdfs:subClassOf rdf:resource="&iof-core;InformationContentEntity"/>
<rdfs:label xml:lang="en-US">designative information content entity</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://spec.industrialontologies.org/ontology/core/Core/"/>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&iof-core;InformationContentEntity">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&iof-core;designates"/>
<owl:someValuesFrom rdf:resource="&bfo;BFO_0000001"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<skos:example xml:lang="en-US">uri of a website, social security number of a person, lot number of a batch of products, a serial number on a machine, a credit card number, a combination of data in a database table uniquely identify each record in the table</skos:example>
<iof-av:abbreviation xml:lang="en-US">designative ICE</iof-av:abbreviation>
<iof-av:adaptedFrom rdf:datatype="&xsd;anyURI">http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology</iof-av:adaptedFrom>
<iof-av:explanatoryNote>1. This class is intended to be a defined class used for axiomatization and assertion convenience. It is not expected nor recommended that entities will be asserted as a subclass of this class.
2. Since the relation 'designates' is defined as a functional property, uniqueness is enforced in the term's formalization.</iof-av:explanatoryNote>
<iof-av:firstOrderLogicDefinition>DesignativeInformationContentEntity(x) ↔ InformationContentEntity(x) ∧ ∃e(Entity(e) ∧ designates(x,e))</iof-av:firstOrderLogicDefinition>
<iof-av:naturalLanguageDefinition xml:lang="en-US">information content entity that uniquely identifies an entity</iof-av:naturalLanguageDefinition>
<iof-av:semiFormalNaturalLanguageDefinition>every instance of 'designative information content entity' is defined as exactly an instance of 'information content entity' that 'designates' some 'entity'</iof-av:semiFormalNaturalLanguageDefinition>
</owl:Class>
<owl:Class rdf:about="&iof-core;DirectiveInformationContentEntity">
<rdfs:subClassOf rdf:resource="&iof-core;InformationContentEntity"/>
<rdfs:label xml:lang="en-US">directive information content entity</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://spec.industrialontologies.org/ontology/core/Core/"/>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&iof-core;InformationContentEntity">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&iof-core;prescribes"/>
<owl:someValuesFrom rdf:resource="&bfo;BFO_0000001"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<skos:example xml:lang="en-US">blueprint of a building, process plan, software functional requirement</skos:example>
<iof-av:abbreviation xml:lang="en-US">directive ICE</iof-av:abbreviation>
<iof-av:adaptedFrom rdf:datatype="&xsd;anyURI">http://www.ontologyrepository.com/CommonCoreOntologies/Mid/InformationEntityOntology</iof-av:adaptedFrom>
<iof-av:explanatoryNote>This class is intended to be a defined class used for axiomatization and assertion convenience. It is not expected nor recommended that entities will be asserted as a subclass of this class.</iof-av:explanatoryNote>
<iof-av:firstOrderLogicDefinition>DirectiveInformationContentEntity(x) ↔ InformationContentEntity(x) ∧ ∃e(Entity(e) ∧ prescribes(x,e))</iof-av:firstOrderLogicDefinition>
<iof-av:naturalLanguageDefinition xml:lang="en-US">information content entity that prescribes a set of rules or guidelines for a process or a model of something man-made</iof-av:naturalLanguageDefinition>
<iof-av:semiFormalNaturalLanguageDefinition>every instance of 'directive information content entity' is defined as exactly an instance of 'information content entity' that 'prescribes' some 'entity'</iof-av:semiFormalNaturalLanguageDefinition>
</owl:Class>
<owl:Class rdf:about="&iof-core;EncodedAlgorithm">
<rdfs:subClassOf rdf:resource="&iof-core;PlanSpecification"/>
<rdfs:label xml:lang="en-US">encoded algorithm</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://spec.industrialontologies.org/ontology/core/Core/"/>
<skos:example xml:lang="en-US">source code encoded in Java that implements a sorting algorithm; Python script that implements a decision tree and that has the objective to classify melt pool images</skos:example>
<iof-av:adaptedFrom>http://www.ebi.ac.uk/swo/SWO_0000001</iof-av:adaptedFrom>
<iof-av:counterExample>flowchart, pseudocode</iof-av:counterExample>
<iof-av:explanatoryNote>Readily executable means that it can be 1) concretized by a computing process which is prescribed by the encoded algorithm or 2) in case of source code concretized by a compiling process</iof-av:explanatoryNote>
<iof-av:firstOrderLogicAxiom>PlanSpecification(x) ∧ ∃y(ComputingProcess(y) ∧ prescribes(x,y)) → EncodedAlgorithm(x)</iof-av:firstOrderLogicAxiom>
<iof-av:isPrimitive rdf:datatype="&xsd;boolean">true</iof-av:isPrimitive>
<iof-av:naturalLanguageDefinition xml:lang="en-US">plan specification that is the implementation of an algorithm encoded in a specific programming language or framework and that is readily executable</iof-av:naturalLanguageDefinition>
<iof-av:primitiveRationale>In addition to the general discussion provided for information content enty,there are insufficient constructs to create necessary and sufficient conditions. Namely constructs for 'encoded in', 'implementation of' and 'programming language' or 'framework' as well as 'compiling process' are still missing.</iof-av:primitiveRationale>
<iof-av:semiFormalNaturalLanguageAxiom>If x is a 'plan specification' that 'prescribes' some 'computing process' then x is an instance of 'encoded algorithm'</iof-av:semiFormalNaturalLanguageAxiom>
</owl:Class>
<owl:Class rdf:about="&iof-core;EngineeredSystem">
<rdfs:subClassOf rdf:resource="&iof-core;System"/>
<rdfs:label xml:lang="en-US">engineered system</rdfs:label>
<rdfs:isDefinedBy rdf:resource="https://spec.industrialontologies.org/ontology/core/Core/"/>
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&iof-core;System">
</rdf:Description>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="&bfo;BFO_0000196"/>
<owl:someValuesFrom rdf:resource="&bfo;BFO_0000034"/>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&iof-core;prescribedBy"/>
<owl:someValuesFrom rdf:resource="&iof-core;DesignSpecification"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<skos:example xml:lang="en-US">machine, laptop, traffic light system</skos:example>
<iof-av:adaptedFrom>www.incose.com, term by the same name</iof-av:adaptedFrom>
<iof-av:firstOrderLogicDefinition>EngineeredSystem(x) ↔ System(x) ∧ ∃d,∃c(DesignSpecification(d) ∧ Function(f) ∧ prescribes(d,f) ∧ bearerOf(x,f))</iof-av:firstOrderLogicDefinition>
<iof-av:naturalLanguageDefinition xml:lang="en-US">system that is deliberately created to have a certain function</iof-av:naturalLanguageDefinition>
<iof-av:semiFormalNaturalLanguageDefinition>every instance of 'engineered system' is defined as exactly an instance of 'system' that is the 'bearer of' some 'function' which is 'prescribed by' a 'design specification'</iof-av:semiFormalNaturalLanguageDefinition>
</owl:Class>
<owl:Class rdf:about="&iof-core;EquipmentRole">
<rdfs:subClassOf rdf:resource="&bfo;BFO_0000023"/>
<rdfs:subClassOf>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<owl:Restriction>
<owl:onProperty rdf:resource="&iof-core;roleOf"/>
<owl:someValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&iof-core;MaterialArtifact">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&iof-core;prescribedBy"/>
<owl:someValuesFrom>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&iof-core;PlanSpecification">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&bfo;BFO_0000177"/>
<owl:someValuesFrom rdf:resource="&iof-core;PlanSpecification"/>
</owl:Restriction>
</owl:unionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
<owl:Restriction>
<owl:onProperty rdf:resource="&iof-core;satisfiesRequirement"/>
<owl:someValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&iof-core;RequirementSpecification">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&bfo;BFO_0000177"/>
<owl:someValuesFrom rdf:resource="&iof-core;PlanSpecification"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</owl:unionOf>
</owl:Class>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&iof-core;roleOf"/>
<owl:allValuesFrom rdf:resource="&iof-core;MaterialArtifact"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="&bfo;BFO_0000054"/>
<owl:allValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&iof-core;PlannedProcess">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&bfo;BFO_0000055"/>
<owl:someValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="&bfo;BFO_0000034">
</rdf:Description>
<owl:Restriction>
<owl:onProperty rdf:resource="&iof-core;functionOf"/>
<owl:someValuesFrom rdf:resource="&iof-core;MaterialArtifact"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>