-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1425 lines (1411 loc) · 61.1 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="resources/primer.css" media="screen" /> <link rel="stylesheet" href="resources/rec.css" media="screen" /> <link rel="stylesheet" href="resources/extra.css" media="screen" /> <link rel="stylesheet" href="resources/owl.css" media="screen" /> <title>Materials Vocabulary: MatVoc-Core</title>
<!-- SCHEMA.ORG METADATA -->
<script type="application/ld+json">{"@context":"https://schema.org","@type":"TechArticle","url":"http://stream-ontology.com/","image":"http://vowl.visualdataweb.org/webvowl/#iri=http://stream-ontology.com/","name":"Materials Vocabulary: MatVoc-Core", "headline":"The Materials RDF vocabulary, described using W3C RDF Schema and the Web Ontology Language to satisfy the requirements of the STREAM project.", "datePublished":"2022-12-12", "version":"1.0.0", "author":[{"@type":"Person","name":"Javad Chamanara"},{"@type":"Person","name":"Tatyana Sheveleva"}], "contributor":[{"@type":"Person","name":"https://aksw.org/KurtJunghanns","url":"https://aksw.org/KurtJunghanns"}]}</script>
<script src="resources/jquery.js"></script>
<script src="resources/marked.min.js"></script>
<script>
function loadHash() {
jQuery(".markdown").each(function(el){jQuery(this).after(marked(jQuery(this).text())).remove()});
var hash = location.hash;
if($(hash).offset()!=null){
$('html, body').animate({scrollTop: $(hash).offset().top}, 0);
}
loadTOC();
}
function loadTOC(){
//process toc dynamically
var t='<h2>Table of contents</h2><ul>';i = 1;j=0;
jQuery(".list").each(function(){
if(jQuery(this).is('h2')){
if(j>0){
t+='</ul>';
j=0;
}
t+= '<li>'+i+'. <a href=#'+ jQuery(this).attr('id')+'>'+ jQuery(this).ignore("span").text()+'</a></li>';
i++;
}
if(jQuery(this).is('h3')){
if(j==0){
t+='<ul>';
}
j++;
t+= '<li>'+(i-1)+'.'+j+'. '+'<a href=#'+ jQuery(this).attr('id')+'>'+ jQuery(this).ignore("span").text()+'</a></li>';
}
});
t+='</ul>';
$("#toc").html(t);
}
$(function(){
loadHash();
}); $.fn.ignore = function(sel){
return this.clone().find(sel||">*").remove().end();
};
</script>
</head>
<body>
<div class="container">
<div class="head">
<div style="float:right">language <a href="index-en.html"><b>en</b></a> </div>
<h1>Materials Vocabulary: MatVoc-Core</h1>
<h2>Release 2022-12-12</h2>
<dl>
<dt>Revision:</dt>
<dd>1.0.0</dd>
<dt>Authors:</dt>
<dd>Javad Chamanara</dd><dd>Tatyana Sheveleva</dd>
<dt>Contributors:</dt>
<dd><a href="https://aksw.org/KurtJunghanns">https://aksw.org/KurtJunghanns</a></dd>
<dt>Download serialization:</dt><dd><span><a href="ontology.jsonld" target="_blank"><img src="https://img.shields.io/badge/Format-JSON_LD-blue.svg" alt="JSON-LD" /></a> </span><span><a href="ontology.rdf" target="_blank"><img src="https://img.shields.io/badge/Format-RDF/XML-blue.svg" alt="RDF/XML" /></a> </span><span><a href="ontology.nt" target="_blank"><img src="https://img.shields.io/badge/Format-N_Triples-blue.svg" alt="N-Triples" /></a> </span><span><a href="ontology.ttl" target="_blank"><img src="https://img.shields.io/badge/Format-TTL-blue.svg" alt="TTL" /></a> </span></dd><dt>License:</dt><dd><a href="http://insertlicenseURIhere.org" target="_blank"><img src="https://img.shields.io/badge/License-MIT%20License-blue.svg" alt="http://insertlicenseURIhere.org" /></a>
</dd><dt>Visualization:</dt><dd><a href="webvowl/index.html#" target="_blank"><img src="https://img.shields.io/badge/Visualize_with-WebVowl-blue.svg" alt="Visualize with WebVowl" /></a></dd>
<!-- <dt>Evaluation:</dt><dd><a href="OOPSEvaluation/oopsEval.html#" target="_blank"><img src="https://img.shields.io/badge/Evaluate_with-OOPS! (OntOlogy Pitfall Scanner!)-blue.svg" alt="Evaluate with OOPS!" /></a></dd> --><dt>Cite as:</dt>
<dd>Javad Chamanara, Tatyana Sheveleva. Materials Vocabulary: MatVoc-Core. Revision: 1.0.0.</dd>
</dl>
<a href="provenance/provenance-en.html" target="_blank">Provenance of this page</a><hr/>
</div>
<div class="status">
<div>
<span>STREAM project result, founding tag: 16QK11</span>
</div>
</div> <div id="abstract"><h2>Abstract</h2><span class="markdown">
The Materials RDF vocabulary, described using W3C RDF Schema and the Web Ontology Language to satisfy the requirements of the STREAM project.</span>
</div>
<div id="toc"></div>
<!--OVERVIEW SECTION-->
<div id="overview"><h2 id="overv" class="list">Materials Vocabulary: MatVoc-Core: Overview <span class="backlink"> back to <a href="#toc">ToC</a></span></h2>
<span class="markdown">
This ontology has the following classes and properties.</span>
<h4>Classes</h4>
<ul xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="hlist">
<li>
<a href="#matvoc-core/Configuration"
title="http://stream-ontology.com/matvoc-core/Configuration">Configuration</a>
</li>
<li>
<a href="#matvoc-core/Dataset" title="http://stream-ontology.com/matvoc-core/Dataset">Dataset</a>
</li>
<li>
<a href="#http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Entity"
title="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Entity">
<span>entity</span>
</a>
</li>
<li>
<a href="#matvoc-core/Entity" title="http://stream-ontology.com/matvoc-core/Entity">
<span>entity</span>
</a>
</li>
<li>
<a href="#matvoc-core/Enumeration"
title="http://stream-ontology.com/matvoc-core/Enumeration">Enumeration</a>
</li>
<li>
<a href="#matvoc-core/Experiment"
title="http://stream-ontology.com/matvoc-core/Experiment">Experiment</a>
</li>
<li>
<a href="#matvoc-core/Formula" title="http://stream-ontology.com/matvoc-core/Formula">Formula</a>
</li>
<li>
<a href="#matvoc-core/Material" title="http://stream-ontology.com/matvoc-core/Material">
<span>material</span>
</a>
</li>
<li>
<a href="#matvoc-emmoItem" title="http://stream-ontology.com/matvoc-emmoItem">
<span>matvoc emmo item</span>
</a>
</li>
<li>
<a href="#matvoc-core/Method" title="http://stream-ontology.com/matvoc-core/Method">Method</a>
</li>
<li>
<a href="#http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#ObservationCollection"
title="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#ObservationCollection">
<span>observation collection</span>
</a>
</li>
<li>
<a href="#matvoc-core/Observer" title="http://stream-ontology.com/matvoc-core/Observer">Observer</a>
</li>
<li>
<a href="#http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Protocol"
title="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Protocol">
<span>protocol</span>
</a>
</li>
<li>
<a href="#matvoc-core/Run" title="http://stream-ontology.com/matvoc-core/Run">Run</a>
</li>
<li>
<a href="#matvoc-core/Sample" title="http://stream-ontology.com/matvoc-core/Sample">
<span>sample</span>
</a>
</li>
<li>
<a href="#matvoc-core/Simulation"
title="http://stream-ontology.com/matvoc-core/Simulation">Simulation</a>
</li>
<li>
<a href="#matvoc-core/Study" title="http://stream-ontology.com/matvoc-core/Study">Study</a>
</li>
<li>
<a href="#matvoc-core/Term" title="http://stream-ontology.com/matvoc-core/Term">Term</a>
</li>
</ul><h4>Object Properties</h4><ul xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="hlist">
<li>
<a href="#matvoc-core/defines" title="http://stream-ontology.com/matvoc-core/defines">defines</a>
</li>
<li>
<a href="#matvoc-core/hasMetadata"
title="http://stream-ontology.com/matvoc-core/hasMetadata">has metadata</a>
</li>
<li>
<a href="#matvoc-core/hasMethod" title="http://stream-ontology.com/matvoc-core/hasMethod">has method</a>
</li>
<li>
<a href="#matvoc-core/hasProtocol"
title="http://stream-ontology.com/matvoc-core/hasProtocol">has protocol</a>
</li>
<li>
<a href="#matvoc-core/hasRun" title="http://stream-ontology.com/matvoc-core/hasRun">has run</a>
</li>
<li>
<a href="#matvoc-core/hasTag" title="http://stream-ontology.com/matvoc-core/hasTag">has tag</a>
</li>
<li>
<a href="#matvoc-core/isObservedBy"
title="http://stream-ontology.com/matvoc-core/isObservedBy">is observed by</a>
</li>
<li>
<a href="#matvoc-core/isRunOf" title="http://stream-ontology.com/matvoc-core/isRunOf">is run of</a>
</li>
<li>
<a href="#matvoc-core/isSampleOf"
title="http://stream-ontology.com/matvoc-core/isSampleOf">is sample of</a>
</li>
<li>
<a href="#matvoc-core/observes" title="http://stream-ontology.com/matvoc-core/observes">observes</a>
</li>
<li>
<a href="#matvoc-core/restrictedBy"
title="http://stream-ontology.com/matvoc-core/restrictedBy">restricted by</a>
</li>
<li>
<a href="#matvoc-core/resultsIn" title="http://stream-ontology.com/matvoc-core/resultsIn">results in</a>
</li>
</ul><h4>Data Properties</h4><ul xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="hlist">
<li>
<a href="#matvoc-core/finishedAt"
title="http://stream-ontology.com/matvoc-core/finishedAt">
<span>finished at</span>
</a>
</li>
<li>
<a href="#matvoc-core/hasRawValue"
title="http://stream-ontology.com/matvoc-core/hasRawValue">
<span>has raw value</span>
</a>
</li>
<li>
<a href="#matvoc-core/startedAt" title="http://stream-ontology.com/matvoc-core/startedAt">
<span>started at</span>
</a>
</li>
</ul><h4>Annotation Properties</h4><ul xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" class="hlist">
<li>
<a href="#http://purl.org/dc/terms/contributor" title="http://purl.org/dc/terms/contributor">
<span>contributor</span>
</a>
</li>
<li>
<a href="#http://purl.org/dc/elements/1.1/creator" title="http://purl.org/dc/elements/1.1/creator">
<span>creator</span>
</a>
</li>
<li>
<a href="#http://purl.org/dc/elements/1.1/description" title="http://purl.org/dc/elements/1.1/description">
<span>description</span>
</a>
</li>
<li>
<a href="#http://purl.org/dc/terms/license" title="http://purl.org/dc/terms/license">
<span>license</span>
</a>
</li>
<li>
<a href="#http://purl.org/dc/terms/modified" title="http://purl.org/dc/terms/modified">
<span>modified</span>
</a>
</li>
<li>
<a href="#http://purl.org/vocab/vann/preferredNamespacePrefix"
title="http://purl.org/vocab/vann/preferredNamespacePrefix">
<span>preferred namespace prefix</span>
</a>
</li>
<li>
<a href="#http://purl.org/vocab/vann/preferredNamespaceUri" title="http://purl.org/vocab/vann/preferredNamespaceUri">
<span>preferred namespace uri</span>
</a>
</li>
<li>
<a href="#http://schema.org/schemaVersion" title="http://schema.org/schemaVersion">
<span>schema version</span>
</a>
</li>
<li>
<a href="#http://purl.org/ontology/bibo/status" title="http://purl.org/ontology/bibo/status">
<span>status</span>
</a>
</li>
<li>
<a href="#http://purl.org/dc/elements/1.1/title" title="http://purl.org/dc/elements/1.1/title">
<span>title</span>
</a>
</li>
</ul><iframe align="center" width="100%" height ="500px" src="webvowl/index.html"></iframe>
</div>
<!--CROSSREF SECTION-->
<div id="crossref"><h2 id="crossreference" class="list">Cross-reference for Materials Vocabulary: MatVoc-Core classes, object properties and data properties <span class="backlink"> back to <a href="#toc">ToC</a></span></h2>
This section provides details for each class and property defined by Materials Vocabulary: MatVoc-Core.
<div xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" id="classes">
<h3 id="classes-headline" class="list">Classes</h3>
<ul class="hlist">
<li>
<a href="#matvoc-core/Configuration"
title="http://stream-ontology.com/matvoc-core/Configuration">Configuration</a>
</li>
<li>
<a href="#matvoc-core/Dataset" title="http://stream-ontology.com/matvoc-core/Dataset">Dataset</a>
</li>
<li>
<a href="#http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Entity"
title="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Entity">
<span>entity</span>
</a>
</li>
<li>
<a href="#matvoc-core/Entity" title="http://stream-ontology.com/matvoc-core/Entity">
<span>entity</span>
</a>
</li>
<li>
<a href="#matvoc-core/Enumeration"
title="http://stream-ontology.com/matvoc-core/Enumeration">Enumeration</a>
</li>
<li>
<a href="#matvoc-core/Experiment"
title="http://stream-ontology.com/matvoc-core/Experiment">Experiment</a>
</li>
<li>
<a href="#matvoc-core/Formula" title="http://stream-ontology.com/matvoc-core/Formula">Formula</a>
</li>
<li>
<a href="#matvoc-core/Material" title="http://stream-ontology.com/matvoc-core/Material">
<span>material</span>
</a>
</li>
<li>
<a href="#matvoc-emmoItem" title="http://stream-ontology.com/matvoc-emmoItem">
<span>matvoc emmo item</span>
</a>
</li>
<li>
<a href="#matvoc-core/Method" title="http://stream-ontology.com/matvoc-core/Method">Method</a>
</li>
<li>
<a href="#http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#ObservationCollection"
title="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#ObservationCollection">
<span>observation collection</span>
</a>
</li>
<li>
<a href="#matvoc-core/Observer" title="http://stream-ontology.com/matvoc-core/Observer">Observer</a>
</li>
<li>
<a href="#http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Protocol"
title="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Protocol">
<span>protocol</span>
</a>
</li>
<li>
<a href="#matvoc-core/Run" title="http://stream-ontology.com/matvoc-core/Run">Run</a>
</li>
<li>
<a href="#matvoc-core/Sample" title="http://stream-ontology.com/matvoc-core/Sample">
<span>sample</span>
</a>
</li>
<li>
<a href="#matvoc-core/Simulation"
title="http://stream-ontology.com/matvoc-core/Simulation">Simulation</a>
</li>
<li>
<a href="#matvoc-core/Study" title="http://stream-ontology.com/matvoc-core/Study">Study</a>
</li>
<li>
<a href="#matvoc-core/Term" title="http://stream-ontology.com/matvoc-core/Term">Term</a>
</li>
</ul>
<div class="entity" id="matvoc-core/Configuration">
<h3>Configuration<sup class="type-c" title="class">c</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://stream-ontology.com/matvoc-core/Configuration</p>
<div class="comment">
<span class="markdown">A specific setting or arrangement of the observers, entities, and/or charcteristics. This can be e.g., an atom topology in a smulation.</span>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd>
<a href="#matvoc-core/Term" title="http://stream-ontology.com/matvoc-core/Term">Term</a>
<sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
<div class="entity" id="matvoc-core/Dataset">
<h3>Dataset<sup class="type-c" title="class">c</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://stream-ontology.com/matvoc-core/Dataset</p>
<div class="comment">
<span class="markdown">A set of related observations with their measurements and values, obtained by a single run.</span>
</div>
<dl class="description">
<dt>is in domain of</dt>
<dd>
<a href="#matvoc-core/hasMetadata"
title="http://stream-ontology.com/matvoc-core/hasMetadata">has metadata</a>
<sup class="type-op" title="object property">op</sup>
</dd>
<dt>is in range of</dt>
<dd>
<a href="#matvoc-core/resultsIn" title="http://stream-ontology.com/matvoc-core/resultsIn">results in</a>
<sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Entity">
<h3>entity<sup class="type-c" title="class">c</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Entity</p>
<dl class="description">
<dt>is equivalent to</dt>
<dd>
<a href="#matvoc-core/Entity" title="http://stream-ontology.com/matvoc-core/Entity">entity</a>
<sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
<div class="entity" id="matvoc-core/Entity">
<h3>entity<sup class="type-c" title="class">c</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://stream-ontology.com/matvoc-core/Entity</p>
<div class="comment">
<span class="markdown">Entity class is an abstract entity which is being processed within an experiment or simulated.</span>
</div>
<dl class="description">
<dt>is equivalent to</dt>
<dd>
<a href="http://www.w3.org/ns/sosa/FeatureOfInterest"
target="_blank"
title="http://www.w3.org/ns/sosa/FeatureOfInterest">feature of interest</a>
<sup class="type-c" title="class">c</sup>
</dd>
<dt>has sub-classes</dt>
<dd>
<a href="#matvoc-core/Material" title="http://stream-ontology.com/matvoc-core/Material">material</a>
<sup class="type-c" title="class">c</sup>
</dd>
<dt>is in range of</dt>
<dd>
<a href="#matvoc-core/isSampleOf"
title="http://stream-ontology.com/matvoc-core/isSampleOf">is sample of</a>
<sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="matvoc-core/Enumeration">
<h3>Enumeration<sup class="type-c" title="class">c</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://stream-ontology.com/matvoc-core/Enumeration</p>
<div class="comment">
<span class="markdown">A terminology, e.g., a closed list of vocabularies that can be used to limit the valid values of a measurement.</span>
</div>
<dl class="description">
<dt>is equivalent to</dt>
<dd>
<a href="http://www.w3.org/2004/02/skos/core#Concept"
target="_blank"
title="http://www.w3.org/2004/02/skos/core#Concept">concept</a>
<sup class="type-c" title="class">c</sup>
</dd>
<dt>has super-classes</dt>
<dd>
<a href="#matvoc-core/Term" title="http://stream-ontology.com/matvoc-core/Term">Term</a>
<sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
<div class="entity" id="matvoc-core/Experiment">
<h3>Experiment<sup class="type-c" title="class">c</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://stream-ontology.com/matvoc-core/Experiment</p>
<div class="comment">
<span class="markdown">A single, unique, and identifiable experiment.</span>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd>
<a href="#matvoc-core/Study" title="http://stream-ontology.com/matvoc-core/Study">Study</a>
<sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
<div class="entity" id="matvoc-core/Formula">
<h3>Formula<sup class="type-c" title="class">c</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://stream-ontology.com/matvoc-core/Formula</p>
<div class="comment">
<span class="markdown">define formula's associated with the material.</span>
</div>
</div>
<div class="entity" id="matvoc-core/Material">
<h3>material<sup class="type-c" title="class">c</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://stream-ontology.com/matvoc-core/Material</p>
<div class="comment">
<span class="markdown">Material class is a representative of a feature of interest on which an experiment or a simulation is made.</span>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd>
<a href="#matvoc-core/Entity" title="http://stream-ontology.com/matvoc-core/Entity">entity</a>
<sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
<div class="entity" id="matvoc-emmoItem">
<h3>matvoc emmo item<sup class="type-c" title="class">c</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://stream-ontology.com/matvoc-emmoItem</p>
<dl class="description">
<dt>is equivalent to</dt>
<dd>
<a href="#matvoc-core/Entity" title="http://stream-ontology.com/matvoc-core/Entity">entity</a>
<sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
<div class="entity" id="matvoc-core/Method">
<h3>Method<sup class="type-c" title="class">c</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://stream-ontology.com/matvoc-core/Method</p>
<div class="comment">
<span class="markdown">The method of performing an experiment, observation, or measurement.</span>
</div>
<dl class="description">
<dt>is in range of</dt>
<dd>
<a href="#matvoc-core/hasMethod" title="http://stream-ontology.com/matvoc-core/hasMethod">has method</a>
<sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#ObservationCollection">
<h3>observation collection<sup class="type-c" title="class">c</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#ObservationCollection</p>
<dl class="description">
<dt>is equivalent to</dt>
<dd>
<a href="#matvoc-core/Dataset" title="http://stream-ontology.com/matvoc-core/Dataset">Dataset</a>
<sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
<div class="entity" id="matvoc-core/Observer">
<h3>Observer<sup class="type-c" title="class">c</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://stream-ontology.com/matvoc-core/Observer</p>
<div class="comment">
<span class="markdown">An agent that can observe an observation. It can be a human, device, sensor, or software.</span>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd>
<a href="http://xmlns.com/foaf/0.1/Agent"
target="_blank"
title="http://xmlns.com/foaf/0.1/Agent">agent</a>
<sup class="type-c" title="class">c</sup>
</dd>
<dt>is in domain of</dt>
<dd>
<a href="#matvoc-core/observes" title="http://stream-ontology.com/matvoc-core/observes">observes</a>
<sup class="type-op" title="object property">op</sup>
</dd>
<dt>is in range of</dt>
<dd>
<a href="#matvoc-core/isObservedBy"
title="http://stream-ontology.com/matvoc-core/isObservedBy">is observed by</a>
<sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Protocol">
<h3>protocol<sup class="type-c" title="class">c</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Protocol</p>
<dl class="description">
<dt>is equivalent to</dt>
<dd>
<a href="#matvoc-core/Method" title="http://stream-ontology.com/matvoc-core/Method">Method</a>
<sup class="type-c" title="class">c</sup>
</dd>
<dt>is in range of</dt>
<dd>
<a href="#matvoc-core/hasProtocol"
title="http://stream-ontology.com/matvoc-core/hasProtocol">has protocol</a>
<sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="matvoc-core/Run">
<h3>Run<sup class="type-c" title="class">c</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://stream-ontology.com/matvoc-core/Run</p>
<div class="comment">
<span class="markdown">A single, unique, and identifiable execution of an experiment or simulation under defined terms and settings.</span>
</div>
<dl class="description">
<dt>is in domain of</dt>
<dd>
<a href="#matvoc-core/defines" title="http://stream-ontology.com/matvoc-core/defines">defines</a>
<sup class="type-op" title="object property">op</sup>, <a href="#matvoc-core/finishedAt"
title="http://stream-ontology.com/matvoc-core/finishedAt">finished at</a>
<sup class="type-dp" title="data property">dp</sup>, <a href="#matvoc-core/hasMethod" title="http://stream-ontology.com/matvoc-core/hasMethod">has method</a>
<sup class="type-op" title="object property">op</sup>, <a href="#matvoc-core/hasProtocol"
title="http://stream-ontology.com/matvoc-core/hasProtocol">has protocol</a>
<sup class="type-op" title="object property">op</sup>, <a href="#matvoc-core/isRunOf" title="http://stream-ontology.com/matvoc-core/isRunOf">is run of</a>
<sup class="type-op" title="object property">op</sup>, <a href="#matvoc-core/restrictedBy"
title="http://stream-ontology.com/matvoc-core/restrictedBy">restricted by</a>
<sup class="type-op" title="object property">op</sup>, <a href="#matvoc-core/resultsIn" title="http://stream-ontology.com/matvoc-core/resultsIn">results in</a>
<sup class="type-op" title="object property">op</sup>, <a href="#matvoc-core/startedAt" title="http://stream-ontology.com/matvoc-core/startedAt">started at</a>
<sup class="type-dp" title="data property">dp</sup>
</dd>
<dt>is in range of</dt>
<dd>
<a href="#matvoc-core/hasRun" title="http://stream-ontology.com/matvoc-core/hasRun">has run</a>
<sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="matvoc-core/Sample">
<h3>sample<sup class="type-c" title="class">c</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://stream-ontology.com/matvoc-core/Sample</p>
<div class="comment">
<span class="markdown">Sample is a class representing a subset of a material that is the object of an experiment or a simulation.</span>
</div>
<dl class="description">
<dt>is equivalent to</dt>
<dd>
<a href="http://www.w3.org/ns/sosa/Sample"
target="_blank"
title="http://www.w3.org/ns/sosa/Sample">sample</a>
<sup class="type-c" title="class">c</sup>
</dd>
<dt>is in domain of</dt>
<dd>
<a href="#matvoc-core/isSampleOf"
title="http://stream-ontology.com/matvoc-core/isSampleOf">is sample of</a>
<sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="matvoc-core/Simulation">
<h3>Simulation<sup class="type-c" title="class">c</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://stream-ontology.com/matvoc-core/Simulation</p>
<div class="comment">
<span class="markdown">A single, unique, and identifiable simulation.</span>
</div>
<dl class="description">
<dt>has super-classes</dt>
<dd>
<a href="#matvoc-core/Study" title="http://stream-ontology.com/matvoc-core/Study">Study</a>
<sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
<div class="entity" id="matvoc-core/Study">
<h3>Study<sup class="type-c" title="class">c</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://stream-ontology.com/matvoc-core/Study</p>
<div class="comment">
<span class="markdown">An endeavor that adheres to scientific research design to obtain a result or an insight.</span>
</div>
<dl class="description">
<dt>has sub-classes</dt>
<dd>
<a href="#matvoc-core/Experiment"
title="http://stream-ontology.com/matvoc-core/Experiment">Experiment</a>
<sup class="type-c" title="class">c</sup>, <a href="#matvoc-core/Simulation"
title="http://stream-ontology.com/matvoc-core/Simulation">Simulation</a>
<sup class="type-c" title="class">c</sup>
</dd>
<dt>is in domain of</dt>
<dd>
<a href="#matvoc-core/hasRun" title="http://stream-ontology.com/matvoc-core/hasRun">has run</a>
<sup class="type-op" title="object property">op</sup>
</dd>
<dt>is in range of</dt>
<dd>
<a href="#matvoc-core/isRunOf" title="http://stream-ontology.com/matvoc-core/isRunOf">is run of</a>
<sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
<div class="entity" id="matvoc-core/Term">
<h3>Term<sup class="type-c" title="class">c</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://stream-ontology.com/matvoc-core/Term</p>
<div class="comment">
<span class="markdown">A term or condition that applies to an observation or a run.</span>
</div>
<dl class="description">
<dt>has sub-classes</dt>
<dd>
<a href="#matvoc-core/Configuration"
title="http://stream-ontology.com/matvoc-core/Configuration">Configuration</a>
<sup class="type-c" title="class">c</sup>, <a href="#matvoc-core/Enumeration"
title="http://stream-ontology.com/matvoc-core/Enumeration">Enumeration</a>
<sup class="type-c" title="class">c</sup>
</dd>
<dt>is in range of</dt>
<dd>
<a href="#matvoc-core/restrictedBy"
title="http://stream-ontology.com/matvoc-core/restrictedBy">restricted by</a>
<sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
</div><div xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" id="objectproperties">
<h3 id="properties" class="list">Object Properties</h3>
<ul class="hlist">
<li>
<a href="#matvoc-core/defines" title="http://stream-ontology.com/matvoc-core/defines">defines</a>
</li>
<li>
<a href="#matvoc-core/hasMetadata"
title="http://stream-ontology.com/matvoc-core/hasMetadata">has metadata</a>
</li>
<li>
<a href="#matvoc-core/hasMethod" title="http://stream-ontology.com/matvoc-core/hasMethod">has method</a>
</li>
<li>
<a href="#matvoc-core/hasProtocol"
title="http://stream-ontology.com/matvoc-core/hasProtocol">has protocol</a>
</li>
<li>
<a href="#matvoc-core/hasRun" title="http://stream-ontology.com/matvoc-core/hasRun">has run</a>
</li>
<li>
<a href="#matvoc-core/hasTag" title="http://stream-ontology.com/matvoc-core/hasTag">has tag</a>
</li>
<li>
<a href="#matvoc-core/isObservedBy"
title="http://stream-ontology.com/matvoc-core/isObservedBy">is observed by</a>
</li>
<li>
<a href="#matvoc-core/isRunOf" title="http://stream-ontology.com/matvoc-core/isRunOf">is run of</a>
</li>
<li>
<a href="#matvoc-core/isSampleOf"
title="http://stream-ontology.com/matvoc-core/isSampleOf">is sample of</a>
</li>
<li>
<a href="#matvoc-core/observes" title="http://stream-ontology.com/matvoc-core/observes">observes</a>
</li>
<li>
<a href="#matvoc-core/restrictedBy"
title="http://stream-ontology.com/matvoc-core/restrictedBy">restricted by</a>
</li>
<li>
<a href="#matvoc-core/resultsIn" title="http://stream-ontology.com/matvoc-core/resultsIn">results in</a>
</li>
</ul>
<div class="entity" id="matvoc-core/defines">
<h3>defines<sup class="type-op" title="object property">op</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://stream-ontology.com/matvoc-core/defines</p>
<div class="comment">
<span class="markdown">The defines property gives the observations defined by a run.</span>
</div>
<div class="description">
<dl>
<dt>has domain</dt>
<dd>
<a href="#matvoc-core/Run" title="http://stream-ontology.com/matvoc-core/Run">Run</a>
<sup class="type-c" title="class">c</sup>
</dd>
<dt>has range</dt>
<dd>
<a href="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Observation"
target="_blank"
title="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Observation">observation</a>
<sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
</div>
<div class="entity" id="matvoc-core/hasMetadata">
<h3>has metadata<sup class="type-op" title="object property">op</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://stream-ontology.com/matvoc-core/hasMetadata</p>
<div class="comment">
<span class="markdown">The hasMetadata property allows a dataset (observation collection) to be explained by a DCAT metadata.</span>
</div>
<div class="description">
<dl>
<dt>has domain</dt>
<dd>
<a href="#matvoc-core/Dataset" title="http://stream-ontology.com/matvoc-core/Dataset">Dataset</a>
<sup class="type-c" title="class">c</sup>
</dd>
<dt>has range</dt>
<dd>
<a href="http://www.w3.org/ns/dcat#Dataset"
target="_blank"
title="http://www.w3.org/ns/dcat#Dataset">dataset</a>
<sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
</div>
<div class="entity" id="matvoc-core/hasMethod">
<h3>has method<sup class="type-op" title="object property">op</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://stream-ontology.com/matvoc-core/hasMethod</p>
<div class="comment">
<span class="markdown">The hasMethod property gives the method of an individual in the domain.</span>
</div>
<div class="description">
<dl>
<dt>has domain</dt>
<dd>
<a href="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Measurement"
target="_blank"
title="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Measurement">measurement</a>
<sup class="type-c" title="class">c</sup>
</dd>
<dd>
<a href="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Observation"
target="_blank"
title="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Observation">observation</a>
<sup class="type-c" title="class">c</sup>
</dd>
<dd>
<a href="#matvoc-core/Run" title="http://stream-ontology.com/matvoc-core/Run">Run</a>
<sup class="type-c" title="class">c</sup>
</dd>
<dt>has range</dt>
<dd>
<a href="#matvoc-core/Method" title="http://stream-ontology.com/matvoc-core/Method">Method</a>
<sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
</div>
<div class="entity" id="matvoc-core/hasProtocol">
<h3>has protocol<sup class="type-op" title="object property">op</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://stream-ontology.com/matvoc-core/hasProtocol</p>
<div class="comment">
<span class="markdown">The hasProtocol property gives the protocol of an individual in the domain.</span>
</div>
<div class="description">
<dl>
<dt>has domain</dt>
<dd>
<a href="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Measurement"
target="_blank"
title="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Measurement">measurement</a>
<sup class="type-c" title="class">c</sup>
</dd>
<dd>
<a href="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Observation"
target="_blank"
title="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Observation">observation</a>
<sup class="type-c" title="class">c</sup>
</dd>
<dd>
<a href="#matvoc-core/Run" title="http://stream-ontology.com/matvoc-core/Run">Run</a>
<sup class="type-c" title="class">c</sup>
</dd>
<dt>has range</dt>
<dd>
<a href="#http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Protocol"
title="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#Protocol">protocol</a>
<sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
</div>
<div class="entity" id="matvoc-core/hasRun">
<h3>has run<sup class="type-op" title="object property">op</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://stream-ontology.com/matvoc-core/hasRun</p>
<div class="comment">
<span class="markdown">The hasRun property gives the runs of a simulation.</span>
</div>
<div class="description">
<dl>
<dt>has domain</dt>
<dd>
<a href="#matvoc-core/Study" title="http://stream-ontology.com/matvoc-core/Study">Study</a>
<sup class="type-c" title="class">c</sup>
</dd>
<dt>has range</dt>
<dd>
<a href="#matvoc-core/Run" title="http://stream-ontology.com/matvoc-core/Run">Run</a>
<sup class="type-c" title="class">c</sup>
</dd>
<dt>is inverse of</dt>
<dd>
<a href="#matvoc-core/isRunOf" title="http://stream-ontology.com/matvoc-core/isRunOf">is run of</a>
<sup class="type-op" title="object property">op</sup>
</dd>
</dl>
</div>
</div>
<div class="entity" id="matvoc-core/hasTag">
<h3>has tag<sup class="type-op" title="object property">op</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://stream-ontology.com/matvoc-core/hasTag</p>
<div class="comment">
<span class="markdown">The hasTag property gives allows the measurements to have classification, grouping, or thematic tags.</span>
</div>
<div class="description">
<dl>
<dt>has domain</dt>
<dd>
<a href="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#measurement"
target="_blank"
title="http://ecoinformatics.org/oboe/oboe.1.2/oboe-core.owl#measurement">measurement</a>
<sup class="type-c" title="class">c</sup>
</dd>
<dt>has range</dt>
<dd>
<a href="http://www.w3.org/2004/02/skos/core#Concept"
target="_blank"
title="http://www.w3.org/2004/02/skos/core#Concept">concept</a>
<sup class="type-c" title="class">c</sup>
</dd>
</dl>
</div>
</div>
<div class="entity" id="matvoc-core/isObservedBy">
<h3>is observed by<sup class="type-op" title="object property">op</sup>
<span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a>
</span>
</h3>
<p>
<strong>IRI:</strong> http://stream-ontology.com/matvoc-core/isObservedBy</p>