-
Notifications
You must be signed in to change notification settings - Fork 0
/
ub-onto.ttl
96 lines (85 loc) · 2.9 KB
/
ub-onto.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
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix ubo: <http://data.ub.uio.no/onto#> .
@prefix mads: <http://www.loc.gov/mads/rdf/v1#> .
ubo: a owl:Ontology ;
owl:versionInfo "0.2.0" .
ubo:Topic
a rdfs:Class , owl:Class ;
rdfs:isDefinedBy ubo: ;
rdfs:subClassOf skos:Concept ,
mads:Topic ;
rdfs:label "Innholdsbeskrivende emne"@nb ,
"Topic"@en ;
rdfs:description "Topical subject senso stricto."@en .
ubo:Geographic
a rdfs:Class , owl:Class ;
rdfs:isDefinedBy ubo: ;
rdfs:subClassOf skos:Concept ,
mads:Geographic ;
rdfs:label "Geografisk"@nb ,
"Geographic"@en ;
rdfs:description "Geographic place or feature."@en .
ubo:Temporal
a rdfs:Class , owl:Class ;
rdfs:isDefinedBy ubo: ;
rdfs:subClassOf skos:Concept ,
mads:Temporal ;
rdfs:label "Kronologisk"@nb ,
"Chronological"@en ;
rdfs:description "Epoch, time period or other chronological entity."@en .
ubo:GenreForm
a rdfs:Class , owl:Class ;
rdfs:isDefinedBy ubo: ;
rdfs:subClassOf skos:Concept ,
mads:GenreForm ;
rdfs:label "Form/sjanger"@nb ,
"Form/genre"@en ;
rdfs:description "Genre or form."@en .
ubo:LinkingTerm
a rdfs:Class , owl:Class ;
rdfs:isDefinedBy ubo: ;
rdfs:subClassOf skos:Concept ;
rdfs:label "Knuteterm"@nb ,
"Linking term"@en ;
rdfs:description "Concept that form part of the hierarchy, but are not used for indexing."@en .
ubo:SplitNonPreferredTerm
a rdfs:Class , owl:Class ;
rdfs:isDefinedBy ubo: ;
rdfs:subClassOf skos:Concept ;
rdfs:label "Generell se-henvisning"@nb ,
"Split non-preferred term"@en ;
rdfs:description "Complex concept that refers to two or more other concepts that should be used in place of this concept when indexing."@en .
ubo:ComplexConcept
a rdfs:Class , owl:Class ;
rdfs:isDefinedBy ubo: ;
rdfs:subClassOf skos:Concept ,
mads:ComplexSubject ;
rdfs:label "Emnestreng"@nb ,
"Complex concept"@en ;
rdfs:description "Concept composed of two or more concepts from the same vocabulary."@en .
ubo:VirtualComplexConcept
a rdfs:Class , owl:Class ;
rdfs:isDefinedBy ubo: ;
rdfs:subClassOf skos:Concept ,
mads:ComplexSubject ;
rdfs:label "Virtuell emnestreng"@nb ,
"Virtual complex concept"@en ;
rdfs:description "Complex concept used as a search guide, but indexed as separate concepts."@en .
ubo:plusUseTerm
a owl:DatatypeProperty , rdf:Property ;
rdfs:isDefinedBy ubo: ;
rdfs:domain ubo:SplitNonPreferredTerm ;
rdfs:range skos:Concept ;
rdfs:label "Bruk+"@nb ,
"Use+"@en ;
rdfs:description "Compound equivalence relation"@en .
ubo:elementSymbol
a owl:DatatypeProperty , rdf:Property ;
rdfs:isDefinedBy ubo: ;
rdfs:domain skos:Concept ;
rdfs:range rdfs:Literal ;
rdfs:label "Kjemisk symbol"@nb ,
"Chemical element symbol"@en .