-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvocab.ttl
More file actions
52 lines (43 loc) · 1.11 KB
/
vocab.ttl
File metadata and controls
52 lines (43 loc) · 1.11 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
@prefix fabio: <http://purl.org/spar/fabio/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix frbr: <http://purl.org/vocab/frbr/core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pro: <http://purl.org/spar/pro/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <http://schema.org/> .
fabio:Article
a owl:Class ;
rdfs:subClassOf frbr:Expression ;
.
fabio:DigitalManifestation
a owl:Class ;
rdfs:subClassOf frbr:Manifestation ;
.
fabio:Journal
a owl:Class ;
rdfs:subClassOf frbr:Expression ;
.
fabio:ResearchPaper
a owl:Class ;
rdfs:subClassOf frbr:Work ;
.
fabio:Review
a owl:Class ;
rdfs:subClassOf frbr:Work ;
.
fabio:ReviewArticle
a owl:Class ;
rdfs:subClassOf frbr:Expression ;
.
fabio:WebPage
a owl:Class ;
rdfs:subClassOf frbr:Manifestation ;
.
foaf:name
a owl:ObjectProperty ;
owl:equivalentProperty schema:name ; # To get round limitations of https://github.com/zazuko/trifid-renderer-simple/blob/16c52273467365c471b77e5e19e8d1b58f9bada1/public/js/render-ld.js#L4
.
pro:holdsRoleInTime
a owl:ObjectProperty ;
owl:inverseOf pro:isHeldBy ;
.