-
Notifications
You must be signed in to change notification settings - Fork 0
/
library.owl
120 lines (94 loc) · 3.54 KB
/
library.owl
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
<?xml version="1.0"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xml:base="http://www.example.org/library.owl"
xmlns="http://www.example.org/library.owl#">
<owl:Ontology rdf:about="http://www.example.org/library.owl"/>
<owl:ObjectProperty rdf:about="#escritoPor">
<rdfs:domain rdf:resource="#Obra"/>
<rdfs:range rdf:resource="#Autor"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#lidoPor">
<rdfs:domain rdf:resource="#Obra"/>
<rdfs:range rdf:resource="#Leitor"/>
</owl:ObjectProperty>
<owl:ObjectProperty rdf:about="#pertenceGenero">
<rdfs:domain rdf:resource="#Obra"/>
<rdfs:range rdf:resource="#Genero"/>
</owl:ObjectProperty>
<owl:Class rdf:about="#Obra">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
</owl:Class>
<owl:Class rdf:about="#Pessoa">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
</owl:Class>
<owl:Class rdf:about="#Genero">
<rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
</owl:Class>
<owl:Class rdf:about="#Autor">
<rdfs:subClassOf rdf:resource="#Pessoa"/>
</owl:Class>
<owl:Class rdf:about="#Leitor">
<rdfs:subClassOf rdf:resource="#Pessoa"/>
</owl:Class>
<owl:Class rdf:about="#Livro">
<rdfs:subClassOf rdf:resource="#Obra"/>
</owl:Class>
<owl:Class rdf:about="#Artigo">
<rdfs:subClassOf rdf:resource="#Obra"/>
</owl:Class>
<owl:NamedIndividual rdf:about="#Guerra dos Tronos">
<rdf:type rdf:resource="#Livro"/>
<escritoPor rdf:resource="#George R. R. Martin"/>
<lidoPor rdf:resource="#Arthur Uguen"/>
<pertenceGenero rdf:resource="#Fantasia"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="#George R. R. Martin">
<rdf:type rdf:resource="#Livro"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="#Fantasia">
<rdf:type rdf:resource="#Genero"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="#Crime e Castigo">
<rdf:type rdf:resource="#Livro"/>
<escritoPor rdf:resource="#Fiódor Dostoiévski"/>
<lidoPor rdf:resource="#Arthur Uguen"/>
<lidoPor rdf:resource="#Fulano de Tal"/>
<pertenceGenero rdf:resource="#Romance"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="#Fiódor Dostoiévski">
<rdf:type rdf:resource="#Livro"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="#Romance">
<rdf:type rdf:resource="#Genero"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="#MobileNetV2: Inverted Residuals and Linear Bottlenecks">
<rdf:type rdf:resource="#Artigo"/>
<escritoPor rdf:resource="#Mark Sandler"/>
<escritoPor rdf:resource="#Andrew Howard"/>
<escritoPor rdf:resource="#Menglong Zhu"/>
<lidoPor rdf:resource="#Arthur Uguen"/>
<lidoPor rdf:resource="#Fulano de Tal"/>
<pertenceGenero rdf:resource="#Paper"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="#Mark Sandler">
<rdf:type rdf:resource="#Autor"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="#Andrew Howard">
<rdf:type rdf:resource="#Autor"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="#Menglong Zhu">
<rdf:type rdf:resource="#Autor"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="#Paper">
<rdf:type rdf:resource="#Genero"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="#Arthur Uguen">
<rdf:type rdf:resource="#Leitor"/>
</owl:NamedIndividual>
<owl:NamedIndividual rdf:about="#Fulano de Tal">
<rdf:type rdf:resource="#Leitor"/>
</owl:NamedIndividual>
</rdf:RDF>