-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplasma-ontology.ttl
1723 lines (1297 loc) · 79.3 KB
/
plasma-ontology.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix : <https://plasma-mds.org/ontology/plasma-o/> .
@prefix obo: <http://purl.obolibrary.org/obo/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix bibo: <http://purl.org/ontology/bibo/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix qudt: <http://qudt.org/schema/qudt/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix vivo: <http://vivoweb.org/ontology/core#> .
@prefix datacite: <http://purl.org/spar/datacite/> .
@base <https://plasma-mds.org/ontology/plasma-o/PLSMO_> .
<https://plasma-mds.org/ontology/plasma-o> rdf:type owl:Ontology ;
owl:versionIRI <https://plasma-mds.org/ontology/plasma-o/0.7.0> ;
<http://purl.org/dc/terms/creator> <https://orcid.org/0000-0001-9324-3236> ,
<https://orcid.org/0000-0002-2762-293X> ,
<https://orcid.org/0000-0002-4232-4543> ,
<https://orcid.org/0000-0002-7047-2770> ,
<https://orcid.org/0000-0003-4025-1712> ,
"Ihda Chaerony Siffa, Robert Wagner, Laura Vilardell Scholten, Fabian Hoppe, Markus M. Becker" ;
<http://purl.org/dc/terms/description> "The plasma ontology (Plasma-O) supports the standardized documentation of research data in the field of plasma physics. In accordance with typical plasma processes and applications, the ontology contains terminologicial knowledge about plasma source, plasma medium, and plasma target. Furthermore, metadata for the respectively applied diagnostic and modelling/simulation methods are represented."@en ;
<http://purl.org/dc/terms/license> <http://creativecommons.org/licenses/by/4.0/> ;
<http://purl.org/dc/terms/title> "Plasma Ontology (Plasma-O)"@en ;
<http://purl.org/vocab/vann/preferredNamespacePrefix> "plsmo" ;
rdfs:comment "The plasma ontology (Plasma-O) supports the standardized documentation of research data in the field of plasma physics. In accordance with typical plasma processes and applications, the ontology contains terminologicial knowledge about plasma source, plasma medium, and plasma target. Furthermore, metadata for the respectively applied diagnostic and modelling/simulation methods are represented."@en ;
rdfs:label "Plasma Ontology (Plasma-O)"@en ;
owl:versionInfo "0.7.0" .
#################################################################
# Annotation properties
#################################################################
### http://purl.obolibrary.org/obo/IAO_0000112
obo:IAO_0000112 rdf:type owl:AnnotationProperty ;
rdfs:label "oboExample"@en .
### http://purl.obolibrary.org/obo/IAO_0000115
obo:IAO_0000115 rdf:type owl:AnnotationProperty ;
rdfs:label "oboDefinition"@en .
### http://purl.org/dc/terms/bibliographicCitation
<http://purl.org/dc/terms/bibliographicCitation> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/created
<http://purl.org/dc/terms/created> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/creator
<http://purl.org/dc/terms/creator> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/description
<http://purl.org/dc/terms/description> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/license
<http://purl.org/dc/terms/license> rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/title
<http://purl.org/dc/terms/title> rdf:type owl:AnnotationProperty .
### http://purl.org/vocab/vann/preferredNamespacePrefix
<http://purl.org/vocab/vann/preferredNamespacePrefix> rdf:type owl:AnnotationProperty .
### http://www.w3.org/2004/02/skos/core#altLabel
<http://www.w3.org/2004/02/skos/core#altLabel> rdf:type owl:AnnotationProperty .
#################################################################
# Object Properties
#################################################################
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0001
:PLSMO_R0001 rdf:type owl:ObjectProperty ;
owl:inverseOf :PLSMO_R0002 ;
rdfs:domain :PLSMO_C0019 ;
rdfs:range :PLSMO_C0030 ;
rdfs:label "addressedIn"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "addressed in"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0002
:PLSMO_R0002 rdf:type owl:ObjectProperty ;
rdfs:domain :PLSMO_C0030 ;
rdfs:range :PLSMO_C0019 ;
rdfs:label "addresses"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "addresses"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0003
:PLSMO_R0003 rdf:type owl:ObjectProperty ;
owl:inverseOf :PLSMO_R0037 ;
rdfs:domain foaf:Agent ;
rdfs:range foaf:Agent ;
rdfs:label "affiliatedWith"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "affiliated with"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0004
:PLSMO_R0004 rdf:type owl:ObjectProperty ;
owl:inverseOf :PLSMO_R0041 ;
rdfs:domain :PLSMO_C0001 ;
rdfs:range :PLSMO_C0027 ;
rdfs:label "applicationFieldOf"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "application field of"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0005
:PLSMO_R0005 rdf:type owl:ObjectProperty ;
owl:inverseOf :PLSMO_R0006 ;
rdfs:domain :PLSMO_C0030 ;
rdfs:range foaf:Agent ;
rdfs:label "conductedBy"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "conducted by"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0006
:PLSMO_R0006 rdf:type owl:ObjectProperty ;
rdfs:domain foaf:Agent ;
rdfs:range :PLSMO_C0030 ;
rdfs:label "conducts"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "conducts"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0007
:PLSMO_R0007 rdf:type owl:ObjectProperty ;
owl:inverseOf :PLSMO_R0042 ;
rdfs:domain :PLSMO_C0002 ;
rdfs:range :PLSMO_C0003 ;
rdfs:label "configurationOf"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "configuration of"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0008
:PLSMO_R0008 rdf:type owl:ObjectProperty ;
rdfs:label "consistsOf"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "consists of"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0009
:PLSMO_R0009 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0008 ;
owl:inverseOf :PLSMO_R0065 ;
rdfs:domain :PLSMO_C0026 ;
rdfs:range :PLSMO_C0026 ;
rdfs:label "consistsOf"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Description] consists of [Description]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0010
:PLSMO_R0010 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0008 ;
owl:inverseOf :PLSMO_R0064 ;
rdfs:domain :PLSMO_C0026 ;
rdfs:range :PLSMO_C0034 ;
rdfs:label "consistsOf"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Description] consists of [Descriptor]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0011
:PLSMO_R0011 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0008 ;
owl:inverseOf :PLSMO_R0066 ;
rdfs:domain :PLSMO_C0027 ;
rdfs:range :PLSMO_C0027 ;
rdfs:label "consistsOf"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Material Entity] consists of [Material Entity]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0012
:PLSMO_R0012 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0008 ;
owl:inverseOf :PLSMO_R0067 ;
rdfs:domain :PLSMO_C0030 ;
rdfs:range :PLSMO_C0030 ;
rdfs:label "consistsOf"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Research Activity] consists of [Research Activity]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0013
:PLSMO_R0013 rdf:type owl:ObjectProperty ;
rdfs:label "describedIn"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "described in"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0014
:PLSMO_R0014 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0013 ;
owl:inverseOf :PLSMO_R0018 ;
rdfs:domain :PLSMO_C0030 ;
rdfs:range bibo:Document ;
rdfs:label "describedIn"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Research Activity] described in [Document]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0015
:PLSMO_R0015 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0013 ;
owl:inverseOf :PLSMO_R0019 ;
rdfs:domain :PLSMO_C0027 ;
rdfs:range bibo:Document ;
rdfs:label "describedIn"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Material Entity] described in [Document]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0016
:PLSMO_R0016 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0013 ;
owl:inverseOf :PLSMO_R0020 ;
rdfs:domain :PLSMO_C0012 ;
rdfs:range bibo:Document ;
rdfs:label "describedIn"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Method] described in [Document]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0017
:PLSMO_R0017 rdf:type owl:ObjectProperty ;
rdfs:label "describes"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "describes"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0018
:PLSMO_R0018 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0017 ;
rdfs:domain bibo:Document ;
rdfs:range :PLSMO_C0030 ;
rdfs:label "describesResearchActivity"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Document] describes [Research Activity]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0019
:PLSMO_R0019 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0017 ;
rdfs:domain bibo:Document ;
rdfs:range :PLSMO_C0027 ;
rdfs:label "describesMaterialEntity"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Document] describes [Material Entity]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0020
:PLSMO_R0020 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0017 ;
rdfs:domain bibo:Document ;
rdfs:range :PLSMO_C0012 ;
rdfs:label "describesMethod"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Document] describes [Method]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0021
:PLSMO_R0021 rdf:type owl:ObjectProperty ;
owl:inverseOf :PLSMO_R0043 ;
rdfs:domain :PLSMO_C0026 ;
rdfs:range :PLSMO_C0027 ;
rdfs:label "descriptionOf"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "description of"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0022
:PLSMO_R0022 rdf:type owl:ObjectProperty ;
rdfs:label "developedBy"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "developed by"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0023
:PLSMO_R0023 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0022 ;
owl:inverseOf :PLSMO_R0026 ;
rdfs:domain :PLSMO_C0027 ;
rdfs:range foaf:Agent ;
rdfs:label "developedBy"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Material Entity] developed by [Agent]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0024
:PLSMO_R0024 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0022 ;
owl:inverseOf :PLSMO_R0027 ;
rdfs:domain :PLSMO_C0012 ;
rdfs:range foaf:Agent ;
rdfs:label "developedBy"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Method] developed by [Agent]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0025
:PLSMO_R0025 rdf:type owl:ObjectProperty ;
rdfs:label "develops"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "develops"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0026
:PLSMO_R0026 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0025 ;
rdfs:domain foaf:Agent ;
rdfs:range :PLSMO_C0027 ;
rdfs:label "develops"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Agent] develops [Material Entity]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0027
:PLSMO_R0027 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0025 ;
rdfs:domain foaf:Agent ;
rdfs:range :PLSMO_C0012 ;
rdfs:label "develops"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Agent] develops [Method]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0028
:PLSMO_R0028 rdf:type owl:ObjectProperty ;
rdfs:comment "Depending on the context, this relation is similar to \"investigated using\"."@en ;
rdfs:label "diagnosedUsing"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "diagnosed using"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0029
:PLSMO_R0029 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0028 ;
owl:inverseOf :PLSMO_R0097 ;
rdfs:domain :PLSMO_C0027 ;
rdfs:range :PLSMO_C0003 ;
rdfs:label "diagnosedUsing"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Material Entity] diagnosed using [Device]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0030
:PLSMO_R0030 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0028 ;
owl:inverseOf :PLSMO_R0098 ;
rdfs:domain :PLSMO_C0027 ;
rdfs:range :PLSMO_C0012 ;
rdfs:label "diagnosedUsing"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Material Entity] diagnosed using [Method]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0031
:PLSMO_R0031 rdf:type owl:ObjectProperty ;
rdfs:label "experiencedIn"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "experienced in"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0032
:PLSMO_R0032 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0031 ;
owl:inverseOf :PLSMO_R0044 ;
rdfs:domain foaf:Agent ;
rdfs:range :PLSMO_C0027 ;
rdfs:label "experiencedIn"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Agent] experienced in [Material Entity]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0033
:PLSMO_R0033 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0031 ;
owl:inverseOf :PLSMO_R0045 ;
rdfs:domain foaf:Agent ;
rdfs:range :PLSMO_C0012 ;
rdfs:label "experiencedIn"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Agent] experienced in [Method]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0034
:PLSMO_R0034 rdf:type owl:ObjectProperty ;
owl:inverseOf :PLSMO_R0035 ;
rdfs:domain :PLSMO_C0029 ;
rdfs:range :PLSMO_C0005 ;
rdfs:label "generatedBy"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "generated by"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0035
:PLSMO_R0035 rdf:type owl:ObjectProperty ;
rdfs:domain :PLSMO_C0005 ;
rdfs:range :PLSMO_C0029 ;
rdfs:label "generates"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "generates"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0036
:PLSMO_R0036 rdf:type owl:ObjectProperty ;
rdfs:label "has"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "has"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0037
:PLSMO_R0037 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0036 ;
rdfs:domain foaf:Agent ;
rdfs:range foaf:Agent ;
rdfs:label "hasAffiliation"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Agent] has affiliation [Agent]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0038
:PLSMO_R0038 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0036 ;
owl:inverseOf :PLSMO_R0061 ;
rdfs:domain :PLSMO_C0030 ;
rdfs:range :PLSMO_C0011 ;
rdfs:label "hasMedium"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Research Activity] has [Medium]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0039
:PLSMO_R0039 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0036 ;
owl:inverseOf :PLSMO_R0068 ;
rdfs:domain :PLSMO_C0030 ;
rdfs:range :PLSMO_C0005 ;
rdfs:label "hasPlasmaSource"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Research Activity] has [Plasma Source]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0040
:PLSMO_R0040 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0036 ;
owl:inverseOf :PLSMO_R0083 ;
rdfs:domain :PLSMO_C0030 ;
rdfs:range :PLSMO_C0010 ;
rdfs:label "hasTarget"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Research Activity] has [Target]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0041
:PLSMO_R0041 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0036 ;
rdfs:domain :PLSMO_C0027 ;
rdfs:range :PLSMO_C0001 ;
rdfs:label "hasApplicationField"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Material Entity] has [Application Field]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0042
:PLSMO_R0042 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0036 ;
rdfs:domain :PLSMO_C0003 ;
rdfs:range :PLSMO_C0002 ;
rdfs:label "hasConfiguration"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Device] has [Configuration]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0043
:PLSMO_R0043 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0036 ;
rdfs:domain :PLSMO_C0027 ;
rdfs:range :PLSMO_C0026 ;
rdfs:label "hasDescription"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Material Entity] has [Description]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0044
:PLSMO_R0044 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0036 ;
rdfs:domain :PLSMO_C0027 ;
rdfs:range foaf:Agent ;
rdfs:label "hasExperiencedAgent"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Material Entity] has experienced [Agent]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0045
:PLSMO_R0045 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0036 ;
rdfs:domain :PLSMO_C0012 ;
rdfs:range foaf:Agent ;
rdfs:label "hasExperiencedAgent"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Method] has experienced [Agent]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0046
:PLSMO_R0046 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0036 ;
owl:inverseOf :PLSMO_R0062 ;
rdfs:domain :PLSMO_C0030 ;
rdfs:range bibo:Document ;
rdfs:label "hasOutput"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Research Activity] has output [Document]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0047
:PLSMO_R0047 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0036 ;
owl:inverseOf :PLSMO_R0069 ;
rdfs:domain :PLSMO_C0027 ;
rdfs:range :PLSMO_C0018 ;
rdfs:label "hasProperty"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Material Entity] has [Property]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0048
:PLSMO_R0048 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0036 ;
owl:inverseOf :PLSMO_R0079 ;
rdfs:domain :PLSMO_C0003 ;
rdfs:range :PLSMO_C0025 ;
rdfs:label "hasSpecification"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Device] has [Specification]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0049
:PLSMO_R0049 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0036 ;
owl:inverseOf :PLSMO_R0084 ;
rdfs:domain :PLSMO_C0030 ;
rdfs:range :PLSMO_C0020 ;
rdfs:label "hasTopic"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Research Activity] has [Research Topic]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0050
:PLSMO_R0050 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0036 ;
owl:inverseOf :PLSMO_R0087 ;
rdfs:domain :PLSMO_C0003 ;
rdfs:range :PLSMO_C0006 ;
rdfs:label "hasDeviceType"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Device] has [Device Type]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0051
:PLSMO_R0051 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0036 ;
owl:inverseOf :PLSMO_R0088 ;
rdfs:domain qudt:Quantity ;
rdfs:range qudt:Unit ;
rdfs:label "hasUnit"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Quantitative Descriptor] has [Unit]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0052
:PLSMO_R0052 rdf:type owl:ObjectProperty ;
owl:inverseOf :PLSMO_R0080 ;
rdfs:domain :PLSMO_C0015 ;
rdfs:range :PLSMO_C0030 ;
rdfs:label "investigatedIn"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "investigated in"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0053
:PLSMO_R0053 rdf:type owl:ObjectProperty ;
owl:inverseOf :PLSMO_R0054 ;
rdfs:domain :PLSMO_C0027 ;
rdfs:range :PLSMO_C0030 ;
rdfs:label "involvedIn"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "involved in"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0054
:PLSMO_R0054 rdf:type owl:ObjectProperty ;
rdfs:domain :PLSMO_C0030 ;
rdfs:range :PLSMO_C0027 ;
rdfs:label "involves"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "involves"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0055
:PLSMO_R0055 rdf:type owl:ObjectProperty ;
rdfs:label "measuredUsing"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "measured using"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0056
:PLSMO_R0056 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0055 ;
owl:inverseOf :PLSMO_R0060 ;
rdfs:domain qudt:Quantity ;
rdfs:range :PLSMO_C0012 ;
rdfs:label "measuredUsing"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Quantitative Descriptor] measured using [Method]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0057
:PLSMO_R0057 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0055 ;
owl:inverseOf :PLSMO_R0059 ;
rdfs:domain qudt:Quantity ;
rdfs:range :PLSMO_C0003 ;
rdfs:label "measuredUsing"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Quantitative Descriptor] measured using [Device]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0058
:PLSMO_R0058 rdf:type owl:ObjectProperty ;
rdfs:label "measures"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "measures"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0059
:PLSMO_R0059 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0058 ;
rdfs:domain :PLSMO_C0003 ;
rdfs:range qudt:Quantity ;
rdfs:label "measures"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Device] to measure [Quantitative Descriptor]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0060
:PLSMO_R0060 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0058 ;
rdfs:domain :PLSMO_C0012 ;
rdfs:range qudt:Quantity ;
rdfs:label "measures"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Method] to measure [Quantitative Descriptor]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0061
:PLSMO_R0061 rdf:type owl:ObjectProperty ;
rdfs:domain :PLSMO_C0011 ;
rdfs:range :PLSMO_C0030 ;
rdfs:label "mediumOf"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "medium of"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0062
:PLSMO_R0062 rdf:type owl:ObjectProperty ;
rdfs:domain bibo:Document ;
rdfs:range :PLSMO_C0030 ;
rdfs:label "outputOf"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "output of"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0063
:PLSMO_R0063 rdf:type owl:ObjectProperty ;
rdfs:label "partOf"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "part of"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0064
:PLSMO_R0064 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0063 ;
rdfs:domain :PLSMO_C0034 ;
rdfs:range :PLSMO_C0026 ;
rdfs:label "partOf"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Descriptor] part of [Description]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0065
:PLSMO_R0065 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0063 ;
rdfs:domain :PLSMO_C0026 ;
rdfs:range :PLSMO_C0026 ;
rdfs:label "partOf"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Description] part of [Description]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0066
:PLSMO_R0066 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0063 ;
rdfs:domain :PLSMO_C0027 ;
rdfs:range :PLSMO_C0027 ;
rdfs:label "partOf"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Material Entity] part of [Material Entity]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0067
:PLSMO_R0067 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0063 ;
rdfs:domain :PLSMO_C0030 ;
rdfs:range :PLSMO_C0030 ;
rdfs:label "partOf"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Research Activity] part of [Research Activity]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0068
:PLSMO_R0068 rdf:type owl:ObjectProperty ;
rdfs:domain :PLSMO_C0005 ;
rdfs:range :PLSMO_C0030 ;
rdfs:label "plasmaSourceOf"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "plasma source of"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0069
:PLSMO_R0069 rdf:type owl:ObjectProperty ;
rdfs:domain :PLSMO_C0018 ;
rdfs:range :PLSMO_C0027 ;
rdfs:label "propertyOf"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "property of"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0070
:PLSMO_R0070 rdf:type owl:ObjectProperty ;
rdfs:label "referencedBy"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "referenced by"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0071
:PLSMO_R0071 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0070 ;
owl:inverseOf :PLSMO_R0074 ;
rdfs:domain :PLSMO_C0027 ;
rdfs:range bibo:Document ;
rdfs:label "referencedBy"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Material Entity] referenced by [Document]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0072
:PLSMO_R0072 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0070 ;
owl:inverseOf :PLSMO_R0075 ;
rdfs:domain :PLSMO_C0012 ;
rdfs:range bibo:Document ;
rdfs:label "referencedBy"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Method] referenced by [Document]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0073
:PLSMO_R0073 rdf:type owl:ObjectProperty ;
rdfs:label "references"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "references"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0074
:PLSMO_R0074 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0073 ;
rdfs:domain bibo:Document ;
rdfs:range :PLSMO_C0027 ;
rdfs:label "references"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Document] references [Material Entity]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0075
:PLSMO_R0075 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0073 ;
rdfs:domain bibo:Document ;
rdfs:range :PLSMO_C0012 ;
rdfs:label "references"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Document] references [Method]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0076
:PLSMO_R0076 rdf:type owl:ObjectProperty ;
rdfs:label "simulatedUsing"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "simulated using"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0077
:PLSMO_R0077 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0076 ;
rdfs:domain :PLSMO_C0033 ;
rdfs:range :PLSMO_C0027 ;
rdfs:label "simulatedUsing"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Simulated Entity] simulated using [Material Entity]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0078
:PLSMO_R0078 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0076 ;
rdfs:domain :PLSMO_C0033 ;
rdfs:range :PLSMO_C0012 ;
rdfs:label "simulatedUsing"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Simulated Entity] simulated using [Method]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0079
:PLSMO_R0079 rdf:type owl:ObjectProperty ;
rdfs:domain :PLSMO_C0025 ;
rdfs:range :PLSMO_C0003 ;
rdfs:label "specificationOf"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "specification of"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0080
:PLSMO_R0080 rdf:type owl:ObjectProperty ;
rdfs:domain :PLSMO_C0030 ;
rdfs:range :PLSMO_C0015 ;
rdfs:label "investigates"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "investigates"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0081
:PLSMO_R0081 rdf:type owl:ObjectProperty ;
owl:inverseOf :PLSMO_R0082 ;
rdfs:domain bibo:Document ;
rdfs:range vivo:Dataset ;
rdfs:label "supplementedBy"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "supplemented by"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0082
:PLSMO_R0082 rdf:type owl:ObjectProperty ;
rdfs:domain vivo:Dataset ;
rdfs:range bibo:Document ;
rdfs:label "supplements"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "supplements"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0083
:PLSMO_R0083 rdf:type owl:ObjectProperty ;
rdfs:domain :PLSMO_C0010 ;
rdfs:range :PLSMO_C0030 ;
rdfs:label "targetOf"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "target of"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0084
:PLSMO_R0084 rdf:type owl:ObjectProperty ;
rdfs:domain :PLSMO_C0020 ;
rdfs:range :PLSMO_C0030 ;
rdfs:label "topicOf"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "topic of"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0085
:PLSMO_R0085 rdf:type owl:ObjectProperty ;
owl:inverseOf :PLSMO_R0086 ;
rdfs:domain :PLSMO_C0027 ;
rdfs:range :PLSMO_C0005 ;
rdfs:label "treatedBy"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "treated by"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0086
:PLSMO_R0086 rdf:type owl:ObjectProperty ;
rdfs:domain :PLSMO_C0005 ;
rdfs:range :PLSMO_C0027 ;
rdfs:label "treats"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "treats"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0087
:PLSMO_R0087 rdf:type owl:ObjectProperty ;
rdfs:domain :PLSMO_C0006 ;
rdfs:range :PLSMO_C0003 ;
rdfs:label "typeOf"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "type of"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0088
:PLSMO_R0088 rdf:type owl:ObjectProperty ;
rdfs:domain qudt:Unit ;
rdfs:range qudt:Quantity ;
rdfs:label "unitOf"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "unit of"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0089
:PLSMO_R0089 rdf:type owl:ObjectProperty ;
rdfs:label "usedIn"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "used in"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0090
:PLSMO_R0090 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0089 ;
owl:inverseOf :PLSMO_R0100 ;
rdfs:domain :PLSMO_C0002 ;
rdfs:range :PLSMO_C0030 ;
rdfs:label "usedIn"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Configuration] used in [Research Activity]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0091
:PLSMO_R0091 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0089 ;
owl:inverseOf :PLSMO_R0101 ;
rdfs:domain :PLSMO_C0003 ;
rdfs:range :PLSMO_C0030 ;
rdfs:label "usedIn"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Device] used in [Research Activity]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0092
:PLSMO_R0092 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0089 ;
owl:inverseOf :PLSMO_R0102 ;
rdfs:domain :PLSMO_C0027 ;
rdfs:range :PLSMO_C0030 ;
rdfs:label "usedIn"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Material Entity] used in [Research Activity]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0093
:PLSMO_R0093 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0089 ;
owl:inverseOf :PLSMO_R0103 ;
rdfs:domain :PLSMO_C0027 ;
rdfs:range :PLSMO_C0027 ;
rdfs:label "usedIn"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Material Entity] used in [Material Entity]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0094
:PLSMO_R0094 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0089 ;
owl:inverseOf :PLSMO_R0104 ;
rdfs:domain :PLSMO_C0011 ;
rdfs:range :PLSMO_C0005 ;
rdfs:label "usedIn"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Medium] used in [Plasma Source]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0095
:PLSMO_R0095 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0089 ;
owl:inverseOf :PLSMO_R0105 ;
rdfs:domain :PLSMO_C0012 ;
rdfs:range :PLSMO_C0030 ;
rdfs:label "usedIn"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Method] used in [Research Activity]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0096
:PLSMO_R0096 rdf:type owl:ObjectProperty ;
rdfs:label "usedToDiagnose"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "used to diagnose"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0097
:PLSMO_R0097 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0096 ;
rdfs:domain :PLSMO_C0003 ;
rdfs:range :PLSMO_C0027 ;
rdfs:label "usedToDiagnose"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Device] to diagnose [Material Entity]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0098
:PLSMO_R0098 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0096 ;
rdfs:domain :PLSMO_C0012 ;
rdfs:range :PLSMO_C0027 ;
rdfs:label "usedToDiagnose"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Method] to diagnose [Material Entity]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0099
:PLSMO_R0099 rdf:type owl:ObjectProperty ;
rdfs:label "uses"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "uses"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0100
:PLSMO_R0100 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0099 ;
rdfs:domain :PLSMO_C0030 ;
rdfs:range :PLSMO_C0002 ;
rdfs:label "usesConfiguration"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Research Activity] uses [Configuration]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0101
:PLSMO_R0101 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0099 ;
rdfs:domain :PLSMO_C0030 ;
rdfs:range :PLSMO_C0003 ;
rdfs:label "usesDevice"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Research Activity] uses [Device]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0102
:PLSMO_R0102 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0099 ;
rdfs:domain :PLSMO_C0030 ;
rdfs:range :PLSMO_C0027 ;
rdfs:label "usesMaterialEntity"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Research Activity] uses [Material Entity]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0103
:PLSMO_R0103 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0099 ;
rdfs:domain :PLSMO_C0027 ;
rdfs:range :PLSMO_C0027 ;
rdfs:label "usesMaterialEntity"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Material Entity] uses [Material Entity]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0104
:PLSMO_R0104 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0099 ;
rdfs:domain :PLSMO_C0005 ;
rdfs:range :PLSMO_C0011 ;
rdfs:label "usesMedium"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Plasma Source] uses [Medium]"@en .
### https://plasma-mds.org/ontology/plasma-o/PLSMO_R0105
:PLSMO_R0105 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :PLSMO_R0099 ;
rdfs:domain :PLSMO_C0030 ;
rdfs:range :PLSMO_C0012 ;
rdfs:label "usesMethod"@en ;
<http://www.w3.org/2004/02/skos/core#altLabel> "[Research Activity] uses [Method]"@en .
#################################################################
# Data properties
#################################################################
### https://plasma-mds.org/ontology/plasma-o/PLSMO_A0001
:PLSMO_A0001 rdf:type owl:DatatypeProperty ;
rdfs:domain qudt:Quantity ;
rdfs:range xsd:float ;
rdfs:comment "[Quantity] has value [xsd:float]"@en ;