-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnobelOntology.ttl
More file actions
718 lines (560 loc) · 35.3 KB
/
Copy pathnobelOntology.ttl
File metadata and controls
718 lines (560 loc) · 35.3 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
@prefix : <http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/> .
@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 rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@base <http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/> .
<http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology> rdf:type owl:Ontology ;
owl:imports <http://www.w3.org/2004/02/skos/core> ,
<http://xmlns.com/foaf/0.1/> ;
rdfs:comment """This ontology captures the relationships and data associated with three key domains: Nobel Prize winners, academic papers published in journals or conferences, and R&D (research and development) budgets allocated by the nations over the years.
By integrating these domains, the ontology provides a framework to explore connections between outstanding discoveries, scholarly output, and the financial investments driving innovation."""@en ;
rdfs:label "The Nobel ontology"@en .
#################################################################
# Datatypes
#################################################################
### http://www.w3.org/2001/XMLSchema#date
xsd:date rdf:type rdfs:Datatype .
### http://www.w3.org/2001/XMLSchema#gYear
xsd:gYear rdf:type rdfs:Datatype .
#################################################################
# Object Properties
#################################################################
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/basedIn
:basedIn rdf:type owl:ObjectProperty ;
rdfs:domain <http://xmlns.com/foaf/0.1/Organization> ;
rdfs:range :City ;
rdfs:comment "This property links an organization to the city in which it is based."@en ;
rdfs:label "basedIn"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/bornIn
:bornIn rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain <http://xmlns.com/foaf/0.1/Person> ;
rdfs:range :City ;
rdfs:comment "This property describes the city where a person was born."@en ;
rdfs:label "bornIn"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/diedIn
:diedIn rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain <http://xmlns.com/foaf/0.1/Person> ;
rdfs:range :City ;
rdfs:comment "This property describes the city where a person died."@en ;
rdfs:label "diedIn"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/hasCountry
:hasCountry rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :Journal ;
rdfs:range <http://sweet.jpl.nasa.gov/2.3/humanJurisdiction.owl#Country> ;
rdfs:comment "This property links a journal to the country in which it is based."@en ;
rdfs:label "hasCountry"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/hasFunded
:hasFunded rdf:type owl:ObjectProperty ;
rdfs:domain <http://sweet.jpl.nasa.gov/2.3/humanJurisdiction.owl#Country> ;
rdfs:range :Funding ;
rdfs:comment "This property links a country to its allocated funding."@en ;
rdfs:label "hasFunded"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/hasJournalCategory
:hasJournalCategory rdf:type owl:ObjectProperty ;
rdfs:domain :Journal ;
rdfs:range :JournalCategory ;
rdfs:comment "This property describes the academic discipline of the journal."@en ;
rdfs:label "hasCategory"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/hasWon
:hasWon rdf:type owl:ObjectProperty ;
rdfs:domain :Laureate ;
rdfs:range :NobelPrize ;
rdfs:comment "This property links laureates to the Nobel Prize they won."@en ;
rdfs:label "hasWon"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/hasWritten
:hasWritten rdf:type owl:ObjectProperty ;
rdfs:domain :Researcher ;
rdfs:range :Paper ;
rdfs:comment "This property describes the paper written by a researcher."@en ;
rdfs:label "hasWritten"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/locatedIn
:locatedIn rdf:type owl:ObjectProperty ,
owl:FunctionalProperty ;
rdfs:domain :City ;
rdfs:range <http://sweet.jpl.nasa.gov/2.3/humanJurisdiction.owl#Country> ;
rdfs:comment "This property connects a city to the state in which it is located."@en ;
rdfs:label "locatedIn"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/publishedIn
:publishedIn rdf:type owl:ObjectProperty ;
rdfs:domain :Paper ;
rdfs:range :Venue ;
rdfs:comment "This property describes the venue related to a paper."@en ;
rdfs:label "publishedIn"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/worksFor
:worksFor rdf:type owl:ObjectProperty ;
rdfs:domain <http://xmlns.com/foaf/0.1/Person> ;
rdfs:range <http://xmlns.com/foaf/0.1/Organization> ;
rdfs:comment "This property describes the organization in which a laureate works."@en ;
rdfs:label "worksFor"@en .
#################################################################
# Data properties
#################################################################
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/birthDate
:birthDate rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain <http://xmlns.com/foaf/0.1/Person> ;
rdfs:range xsd:date ;
rdfs:comment "The birth date of a person."@en ;
rdfs:label "birthDate"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/deathDate
:deathDate rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain <http://xmlns.com/foaf/0.1/Person> ;
rdfs:range xsd:date ;
rdfs:comment "The death date of a person."@en ;
rdfs:label "deathDate"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/hasAbstractTopics
:hasAbstractTopics rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :Paper ;
rdfs:range xsd:string ;
rdfs:comment "The abstract's topics of a paper."@en ;
rdfs:label "hasAbstractTopics"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/hasAmount
:hasAmount rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :Funding ;
rdfs:range xsd:decimal ;
rdfs:comment "The amount of money allocated for a funding."@en ;
rdfs:label "hasAmount"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/hasCitations
:hasCitations rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :Paper ;
rdfs:range xsd:integer ;
rdfs:comment "The number of citations of a paper."@en ;
rdfs:label "hasCitations"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/hasHIndex
:hasHIndex rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :Journal ;
rdfs:range xsd:integer ;
rdfs:comment "The H-Index of a journal."@en ;
rdfs:label "hasHIndex"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/hasMotivationTopics
:hasMotivationTopics rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :NobelPrize ;
rdfs:range xsd:string ;
rdfs:comment "The motivation's topic of a Nobel Prize."@en ;
rdfs:label "hasMotivationTopics"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/hasNobelCategory
:hasNobelCategory rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :NobelPrize ;
rdfs:range [ rdf:type rdfs:Datatype ;
owl:oneOf [ rdf:type rdf:List ;
rdf:first "Chemistry" ;
rdf:rest [ rdf:type rdf:List ;
rdf:first "Economics" ;
rdf:rest [ rdf:type rdf:List ;
rdf:first "Literature" ;
rdf:rest [ rdf:type rdf:List ;
rdf:first "Medicine" ;
rdf:rest [ rdf:type rdf:List ;
rdf:first "Peace" ;
rdf:rest [ rdf:type rdf:List ;
rdf:first "Physics" ;
rdf:rest rdf:nil
]
]
]
]
]
]
] ;
rdfs:comment "The categories of a Nobel Prize."@en ;
rdfs:label "hasNobelCategory"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/hasOpenAccess
:hasOpenAccess rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :Journal ;
rdfs:range xsd:boolean ;
rdfs:comment "The accessibility of a journal."@en ;
rdfs:label "hasOpenAccess"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/hasPrizeShare
:hasPrizeShare rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :NobelPrize ;
rdfs:range xsd:integer ;
rdfs:comment "This data property describes sharing a Nobel Prize."@en ;
rdfs:label "hasPrizeShare"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/hasSJR
:hasSJR rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain :Journal ;
rdfs:range xsd:decimal ;
rdfs:comment "The SJR indicator of a journal."@en ;
rdfs:label "hasSJR"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/hasTitle
:hasTitle rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( :Paper
:Venue
)
] ;
rdfs:range xsd:string ;
rdfs:comment "The title of a paper or a venue."@en ;
rdfs:label "hasTitle"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/hasYear
:hasYear rdf:type owl:DatatypeProperty ,
owl:FunctionalProperty ;
rdfs:domain [ rdf:type owl:Class ;
owl:unionOf ( :Funding
:NobelPrize
:Paper
)
] ;
rdfs:range xsd:gYear ;
rdfs:comment "The year in which a funding is allocated or a Nobel Prize is assigned or a paper is written."@en ;
rdfs:label "hasYear"@en .
### http://xmlns.com/foaf/0.1/firstName
<http://xmlns.com/foaf/0.1/firstName> rdf:type owl:FunctionalProperty .
### http://xmlns.com/foaf/0.1/lastName
<http://xmlns.com/foaf/0.1/lastName> rdf:type owl:FunctionalProperty .
#################################################################
# Classes
#################################################################
### http://sweet.jpl.nasa.gov/2.3/humanJurisdiction.owl#Country
<http://sweet.jpl.nasa.gov/2.3/humanJurisdiction.owl#Country> rdf:type owl:Class .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/City
:City rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty <http://xmlns.com/foaf/0.1/name> ;
owl:cardinality "1"^^xsd:nonNegativeInteger
] ;
rdfs:comment "This class represents a city."@en ;
rdfs:label "City"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/Conference
:Conference rdf:type owl:Class ;
rdfs:subClassOf :Venue ;
rdfs:comment "This class represents a conference, an academic event where researchers present and discuss their work about specific fields."@en ;
rdfs:label "Conference"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/Funding
:Funding rdf:type owl:Class ;
rdfs:comment "This class represents the budget allocated for Research & Development by governments."@en ;
rdfs:label "Funding"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/Journal
:Journal rdf:type owl:Class ;
rdfs:subClassOf :Venue ;
rdfs:comment "This class represents a journal, a periodic publication that shares peer-reviewed scholarly articles."@en ;
rdfs:label "Journal"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/JournalCategory
:JournalCategory rdf:type owl:Class ;
rdfs:comment "This class represents the main topic of a journal."@en ;
rdfs:label "Journal Category"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/Laureate
:Laureate rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty :hasWon ;
owl:someValuesFrom :NobelPrize
] ;
rdfs:subClassOf [ rdf:type owl:Class ;
owl:unionOf ( <http://xmlns.com/foaf/0.1/Organization>
<http://xmlns.com/foaf/0.1/Person>
)
] ;
rdfs:comment "This class represents a person or an organization that has won a Nobel Prize."@en ;
rdfs:label "Laureate"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/NobelPrize
:NobelPrize rdf:type owl:Class ;
rdfs:comment "This class represents a Nobel Prize."@en ;
rdfs:label "Nobel Prize"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/Paper
:Paper rdf:type owl:Class ;
rdfs:comment "This class represents a research paper."@en ;
rdfs:label "Paper"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/Researcher
:Researcher rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Restriction ;
owl:onProperty :hasWritten ;
owl:someValuesFrom :Paper
] ;
rdfs:subClassOf <http://xmlns.com/foaf/0.1/Person> ;
rdfs:comment "This class represents a person who wrote at least one paper."@en ;
rdfs:label "Researcher"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/Venue
:Venue rdf:type owl:Class ;
rdfs:comment "This class represents a venue, a physical or virtual location where academic papers are published."@en ;
rdfs:label "Venue"@en .
### http://xmlns.com/foaf/0.1/Person
<http://xmlns.com/foaf/0.1/Person> rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty <http://xmlns.com/foaf/0.1/name> ;
owl:cardinality "1"^^xsd:nonNegativeInteger
] .
### http://xmlns.com/foaf/0.1/Organization
<http://xmlns.com/foaf/0.1/Organization> rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty <http://xmlns.com/foaf/0.1/name> ;
owl:cardinality "1"^^xsd:nonNegativeInteger
] .
#################################################################
# Individuals
#################################################################
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/agriculturalBiologicalSciences
:agriculturalBiologicalSciences rdf:type owl:NamedIndividual ,
:JournalCategory ,
<http://www.w3.org/2004/02/skos/core#Concept> ;
<http://www.w3.org/2004/02/skos/core#broaderTransitive> :chemistry ,
:medicine ;
rdfs:comment "This is the SKOS Concept representing agricultural and biological sciences."@en ;
rdfs:label "Agricultural and Biological Sciences"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/artsHumanities
:artsHumanities rdf:type owl:NamedIndividual ,
:JournalCategory ,
<http://www.w3.org/2004/02/skos/core#Concept> ;
<http://www.w3.org/2004/02/skos/core#broaderTransitive> :literature ;
rdfs:comment "This is the SKOS Concept representing arts and humanities."@en ;
rdfs:label "Arts and Humanities"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/biochemistryGeneticsMolecularBiology
:biochemistryGeneticsMolecularBiology rdf:type owl:NamedIndividual ,
:JournalCategory ,
<http://www.w3.org/2004/02/skos/core#Concept> ;
<http://www.w3.org/2004/02/skos/core#broaderTransitive> :chemistry ,
:medicine ;
rdfs:comment "This is the SKOS Concept representing biochemistry, genetics and molecular biology."@en ;
rdfs:label "Biochemistry, Genetics and Molecular Biology"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/businessManagementAccounting
:businessManagementAccounting rdf:type owl:NamedIndividual ,
:JournalCategory ,
<http://www.w3.org/2004/02/skos/core#Concept> ;
<http://www.w3.org/2004/02/skos/core#broaderTransitive> :economics ;
rdfs:comment "This is the SKOS Concept representing business, management and accounting."@en ;
rdfs:label "Business, Management and Accounting"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/chemicalEngineering
:chemicalEngineering rdf:type owl:NamedIndividual ,
:JournalCategory ,
<http://www.w3.org/2004/02/skos/core#Concept> ;
<http://www.w3.org/2004/02/skos/core#broaderTransitive> :chemistry ;
rdfs:comment "This is the SKOS Concept representing chemical engineering."@en ;
rdfs:label "Chemical Engineering"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/chemistry
:chemistry rdf:type owl:NamedIndividual ,
:JournalCategory ,
<http://www.w3.org/2004/02/skos/core#Concept> ;
<http://www.w3.org/2004/02/skos/core#inScheme> :journalCategoryScheme ;
rdfs:comment "This is the SKOS Concept representing chemistry."@en ;
rdfs:label "Chemistry"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/computerScience
:computerScience rdf:type owl:NamedIndividual ,
:JournalCategory ,
<http://www.w3.org/2004/02/skos/core#Concept> ;
<http://www.w3.org/2004/02/skos/core#inScheme> :journalCategoryScheme ;
rdfs:comment "This is the SKOS Concept representing computer science."@en ;
rdfs:label "Computer Science"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/decisionSciences
:decisionSciences rdf:type owl:NamedIndividual ,
:JournalCategory ,
<http://www.w3.org/2004/02/skos/core#Concept> ;
<http://www.w3.org/2004/02/skos/core#broaderTransitive> :economics ;
rdfs:comment "This is the SKOS Concept representing decision sciences."@en ;
rdfs:label "Decision Sciences"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/dentistry
:dentistry rdf:type owl:NamedIndividual ,
:JournalCategory ,
<http://www.w3.org/2004/02/skos/core#Concept> ;
<http://www.w3.org/2004/02/skos/core#broaderTransitive> :medicine ;
rdfs:comment "This is the SKOS Concept representing dentistry."@en ;
rdfs:label "Dentistry"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/earthPlanetarySciences
:earthPlanetarySciences rdf:type owl:NamedIndividual ,
:JournalCategory ,
<http://www.w3.org/2004/02/skos/core#Concept> ;
<http://www.w3.org/2004/02/skos/core#broaderTransitive> :chemistry ,
:physics ;
rdfs:comment "This is the SKOS Concept representing earth and planetary sciences."@en ;
rdfs:label "Earth and Planetary Sciences"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/economics
:economics rdf:type owl:NamedIndividual ,
:JournalCategory ,
<http://www.w3.org/2004/02/skos/core#Concept> ;
<http://www.w3.org/2004/02/skos/core#inScheme> :journalCategoryScheme ;
rdfs:comment "This is the SKOS Concept representing economics."@en ;
rdfs:label "Economics"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/economicsEconometricsFinance
:economicsEconometricsFinance rdf:type owl:NamedIndividual ,
:JournalCategory ,
<http://www.w3.org/2004/02/skos/core#Concept> ;
<http://www.w3.org/2004/02/skos/core#broaderTransitive> :economics ;
rdfs:comment "This is the SKOS Concept representing economics, econometrics and finance."@en ;
rdfs:label "Economics, Econometrics and Finance"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/energy
:energy rdf:type owl:NamedIndividual ,
:JournalCategory ,
<http://www.w3.org/2004/02/skos/core#Concept> ;
<http://www.w3.org/2004/02/skos/core#broaderTransitive> :chemistry ,
:physics ;
rdfs:comment "This is the SKOS Concept representing energy."@en ;
rdfs:label "Energy"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/engineering
:engineering rdf:type owl:NamedIndividual ,
:JournalCategory ,
<http://www.w3.org/2004/02/skos/core#Concept> ;
<http://www.w3.org/2004/02/skos/core#inScheme> :journalCategoryScheme ;
rdfs:comment "This is the SKOS Concept representing engineering."@en ;
rdfs:label "Engineering"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/environmentalScience
:environmentalScience rdf:type owl:NamedIndividual ,
:JournalCategory ,
<http://www.w3.org/2004/02/skos/core#Concept> ;
<http://www.w3.org/2004/02/skos/core#broaderTransitive> :chemistry ,
:peace ;
rdfs:comment "This is the SKOS Concept representing environmental science."@en ;
rdfs:label "Environmental Science"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/general
:general rdf:type owl:NamedIndividual ,
:JournalCategory ,
<http://www.w3.org/2004/02/skos/core#Concept> ;
<http://www.w3.org/2004/02/skos/core#inScheme> :journalCategoryScheme ;
rdfs:comment "This is the SKOS Concept representing a general category."@en ;
rdfs:label "General"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/healthProfessions
:healthProfessions rdf:type owl:NamedIndividual ,
:JournalCategory ,
<http://www.w3.org/2004/02/skos/core#Concept> ;
<http://www.w3.org/2004/02/skos/core#broaderTransitive> :medicine ;
rdfs:comment "This is the SKOS Concept representing health professions."@en ;
rdfs:label "Health Professions"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/immunologyMicrobiology
:immunologyMicrobiology rdf:type owl:NamedIndividual ,
:JournalCategory ,
<http://www.w3.org/2004/02/skos/core#Concept> ;
<http://www.w3.org/2004/02/skos/core#broaderTransitive> :medicine ;
rdfs:comment "This is the SKOS Concept representing immunology and microbiology."@en ;
rdfs:label "Immunology and Microbiology"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/journalCategoryScheme
:journalCategoryScheme rdf:type owl:NamedIndividual ,
<http://www.w3.org/2004/02/skos/core#ConceptScheme> ;
<http://www.w3.org/2004/02/skos/core#hasTopConcept> :chemistry ,
:computerScience ,
:economics ,
:engineering ,
:general ,
:literature ,
:mathematics ,
:medicine ,
:peace ,
:physics ;
rdfs:comment "This is the SKOS Concept Scheme representing journal categories."@en ;
rdfs:label "Journal Category Scheme"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/literature
:literature rdf:type owl:NamedIndividual ,
:JournalCategory ,
<http://www.w3.org/2004/02/skos/core#Concept> ;
<http://www.w3.org/2004/02/skos/core#inScheme> :journalCategoryScheme ;
rdfs:comment "This is the SKOS Concept representing literature."@en ;
rdfs:label "Literature"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/materialsScience
:materialsScience rdf:type owl:NamedIndividual ,
:JournalCategory ,
<http://www.w3.org/2004/02/skos/core#Concept> ;
<http://www.w3.org/2004/02/skos/core#broaderTransitive> :chemistry ,
:physics ;
rdfs:comment "This is the SKOS Concept representing materials science."@en ;
rdfs:label "Materials Science"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/mathematics
:mathematics rdf:type owl:NamedIndividual ,
:JournalCategory ,
<http://www.w3.org/2004/02/skos/core#Concept> ;
<http://www.w3.org/2004/02/skos/core#inScheme> :journalCategoryScheme ;
rdfs:comment "This is the SKOS Concept representing mathematics."@en ;
rdfs:label "Mathematics"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/medicine
:medicine rdf:type owl:NamedIndividual ,
:JournalCategory ,
<http://www.w3.org/2004/02/skos/core#Concept> ;
<http://www.w3.org/2004/02/skos/core#inScheme> :journalCategoryScheme ;
rdfs:comment "This is the SKOS Concept representing medicine."@en ;
rdfs:label "Medicine"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/neuroscience
:neuroscience rdf:type owl:NamedIndividual ,
:JournalCategory ,
<http://www.w3.org/2004/02/skos/core#Concept> ;
<http://www.w3.org/2004/02/skos/core#broaderTransitive> :medicine ;
rdfs:comment "This is the SKOS Concept representing neuroscience."@en ;
rdfs:label "Neuroscience"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/nursing
:nursing rdf:type owl:NamedIndividual ,
:JournalCategory ,
<http://www.w3.org/2004/02/skos/core#Concept> ;
<http://www.w3.org/2004/02/skos/core#broaderTransitive> :medicine ;
rdfs:comment "This is the SKOS Concept representing nursing."@en ;
rdfs:label "Nursing"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/peace
:peace rdf:type owl:NamedIndividual ,
:JournalCategory ,
<http://www.w3.org/2004/02/skos/core#Concept> ;
<http://www.w3.org/2004/02/skos/core#inScheme> :journalCategoryScheme ;
rdfs:comment "This is the SKOS Concept representing peace."@en ;
rdfs:label "Peace"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/pharmacologyToxicologyPharmaceutics
:pharmacologyToxicologyPharmaceutics rdf:type owl:NamedIndividual ,
:JournalCategory ,
<http://www.w3.org/2004/02/skos/core#Concept> ;
<http://www.w3.org/2004/02/skos/core#broaderTransitive> :chemistry ,
:medicine ;
rdfs:comment "This is the SKOS Concept representing pharmacology, toxicology and pharmaceutics."@en ;
rdfs:label "Pharmacology, Toxicology and Pharmaceutics"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/physics
:physics rdf:type owl:NamedIndividual ,
:JournalCategory ,
<http://www.w3.org/2004/02/skos/core#Concept> ;
<http://www.w3.org/2004/02/skos/core#inScheme> :journalCategoryScheme ;
rdfs:comment "This is the SKOS Concept representing physics."@en ;
rdfs:label "Physics"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/physicsAstronomy
:physicsAstronomy rdf:type owl:NamedIndividual ,
:JournalCategory ,
<http://www.w3.org/2004/02/skos/core#Concept> ;
<http://www.w3.org/2004/02/skos/core#broaderTransitive> :physics ;
rdfs:comment "This is the SKOS Concept representing physics and astronomy."@en ;
rdfs:label "Physics and Astronomy"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/psychology
:psychology rdf:type owl:NamedIndividual ,
:JournalCategory ,
<http://www.w3.org/2004/02/skos/core#Concept> ;
<http://www.w3.org/2004/02/skos/core#broaderTransitive> :medicine ;
rdfs:comment "This is the SKOS Concept representing psychology."@en ;
rdfs:label "Psychology"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/socialSciences
:socialSciences rdf:type owl:NamedIndividual ,
:JournalCategory ,
<http://www.w3.org/2004/02/skos/core#Concept> ;
<http://www.w3.org/2004/02/skos/core#broaderTransitive> :economics ,
:peace ;
rdfs:comment "This is the SKOS Concept representing social sciences."@en ;
rdfs:label "Social Sciences"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/unipd
:unipd rdf:type owl:NamedIndividual ,
<http://xmlns.com/foaf/0.1/Organization> ;
<http://xmlns.com/foaf/0.1/name> "Unipd" ;
rdfs:comment "This is UniPD, the university of Padua."@en ;
rdfs:label "UniPD"@en .
### http://www.semanticweb.org/a3d/ontologies/2024/10/nobelOntology/veterinary
:veterinary rdf:type owl:NamedIndividual ,
:JournalCategory ,
<http://www.w3.org/2004/02/skos/core#Concept> ;
<http://www.w3.org/2004/02/skos/core#broaderTransitive> :medicine ;
rdfs:comment "This is the SKOS Concept representing veterinary."@en ;
rdfs:label "Veterinary"@en .
#################################################################
# General axioms
#################################################################
[ rdf:type owl:AllDisjointClasses ;
owl:members ( <http://sweet.jpl.nasa.gov/2.3/humanJurisdiction.owl#Country>
:City
:Funding
:JournalCategory
:NobelPrize
:Paper
:Venue
<http://xmlns.com/foaf/0.1/Person>
<http://xmlns.com/foaf/0.1/Organization>
)
] .
### Generated by the OWL API (version 4.5.29.2024-05-13T12:11:03Z) https://github.com/owlcs/owlapi