iqvoc 4.11.0 → 4.11.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/Gemfile.lock +5 -5
- data/app/models/concept/base.rb +0 -1
- data/db/schema.rb +162 -163
- data/lib/iqvoc/version.rb +1 -1
- data/public/export/18617.nt +28 -0
- data/public/export/19074.nt +28 -0
- data/public/export/24764.nt +28 -0
- data/public/export/38590854592790558235693154089294015870.nt +28 -0
- data/public/uploads/import/12da92ad97941cf2acc58a796a534945.nt +259 -0
- data/public/uploads/import/271b9ad9260a8949c3d494c0c5a69f0d.nt +259 -0
- data/public/uploads/import/463cf5144a6993b20eb11a9ccc047af2.nt +259 -0
- data/public/uploads/import/68e05107da872671a418d24863497260.nt +259 -0
- data/public/uploads/import/88a29315e069ed594778a5eaf956195f.nt +259 -0
- data/public/uploads/tmp/1490957316-22527-1910/hobbies.nt +259 -0
- data/public/uploads/tmp/1490962601-31167-1324/hobbies.nt +259 -0
- data/public/uploads/tmp/1490972630-31678-0940/hobbies.nt +259 -0
- data/public/uploads/tmp/1490973400-33509-9132/hobbies.nt +259 -0
- data/public/uploads/tmp/1490975755-51502-7114/hobbies.nt +259 -0
- data/test/integration/concept_collection_assignment_test.rb +14 -3
- metadata +16 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3938935b477ae7671fc96f7c5578e667610a3ee6
|
4
|
+
data.tar.gz: 5ee6c7a19f9c08e91877ff26fedc49df60740786
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 397b2ddfe31eb980c60b19530010dd6ab6cb6440a67ac641365888e532a20b22da435db5d8f79fd40787c2b447103a68b8af8afe5a5e79211df9857b51ea746f
|
7
|
+
data.tar.gz: 54c70e599f4113bc0415ee82c16f530add41c78136837411b73db39cceb4b4ebc53e29b9569dc3d2118c8ca173cfd1d393bf54a4c25a18fdae54c80123c967a8
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,8 @@
|
|
1
|
+
## [4.11.1]
|
2
|
+
|
3
|
+
* Fixed: duplicate concept collection assignment on concept creation when assigning concept matches
|
4
|
+
* Fixed: sprockets deprecations
|
5
|
+
|
1
6
|
## [4.11.0]
|
2
7
|
|
3
8
|
* Added: render additional concept info in remote alphabetical search results (federated concept mapper)
|
data/Gemfile.lock
CHANGED
@@ -283,9 +283,9 @@ GEM
|
|
283
283
|
rdf (~> 1.1, >= 1.1.9)
|
284
284
|
request_store (1.1.0)
|
285
285
|
safe_yaml (1.0.4)
|
286
|
-
sass (3.4.
|
287
|
-
sass-rails (5.0.
|
288
|
-
railties (>= 4.0.0, <
|
286
|
+
sass (3.4.23)
|
287
|
+
sass-rails (5.0.6)
|
288
|
+
railties (>= 4.0.0, < 6)
|
289
289
|
sass (~> 3.1)
|
290
290
|
sprockets (>= 2.8, < 4.0)
|
291
291
|
sprockets-rails (>= 2.0, < 4.0)
|
@@ -324,8 +324,8 @@ GEM
|
|
324
324
|
thor (0.19.4)
|
325
325
|
thread_safe (0.3.6)
|
326
326
|
thread_safe (0.3.6-java)
|
327
|
-
tilt (2.0.
|
328
|
-
tzinfo (1.2.
|
327
|
+
tilt (2.0.7)
|
328
|
+
tzinfo (1.2.3)
|
329
329
|
thread_safe (~> 0.1)
|
330
330
|
uglifier (2.7.1)
|
331
331
|
execjs (>= 0.3.0)
|
data/app/models/concept/base.rb
CHANGED
@@ -153,7 +153,6 @@ class Concept::Base < ActiveRecord::Base
|
|
153
153
|
# create new match relations
|
154
154
|
urls_copy.each do |url|
|
155
155
|
self.send(match_class.to_relation_name) << match_class.constantize.new(value: url)
|
156
|
-
self.save
|
157
156
|
|
158
157
|
if self.reverse_match_service.present? && federation_match?(url)
|
159
158
|
job = self.reverse_match_service.build_job(:add_match, self, url, match_class)
|
data/db/schema.rb
CHANGED
@@ -11,202 +11,201 @@
|
|
11
11
|
#
|
12
12
|
# It's strongly recommended that you check this file into your version control system.
|
13
13
|
|
14
|
-
ActiveRecord::Schema.define(version:
|
15
|
-
|
16
|
-
|
17
|
-
t.integer
|
18
|
-
t.
|
19
|
-
t.string "type", limit: 255
|
14
|
+
ActiveRecord::Schema.define(version: 20_150_317_162_953) do
|
15
|
+
create_table 'collection_members', force: :cascade do |t|
|
16
|
+
t.integer 'collection_id', limit: 4
|
17
|
+
t.integer 'target_id', limit: 4
|
18
|
+
t.string 'type', limit: 255
|
20
19
|
end
|
21
20
|
|
22
|
-
add_index
|
23
|
-
add_index
|
21
|
+
add_index 'collection_members', %w(collection_id target_id type), name: 'ix_collections_fk_type', using: :btree
|
22
|
+
add_index 'collection_members', ['target_id'], name: 'fk_rails_2a51b48094', using: :btree
|
24
23
|
|
25
|
-
create_table
|
26
|
-
t.string
|
27
|
-
t.integer
|
28
|
-
t.integer
|
29
|
-
t.datetime
|
30
|
-
t.datetime
|
31
|
-
t.integer
|
24
|
+
create_table 'concept_relations', force: :cascade do |t|
|
25
|
+
t.string 'type', limit: 255
|
26
|
+
t.integer 'owner_id', limit: 4
|
27
|
+
t.integer 'target_id', limit: 4
|
28
|
+
t.datetime 'created_at'
|
29
|
+
t.datetime 'updated_at'
|
30
|
+
t.integer 'rank', limit: 4, default: 100
|
32
31
|
end
|
33
32
|
|
34
|
-
add_index
|
35
|
-
add_index
|
36
|
-
|
37
|
-
create_table
|
38
|
-
t.string
|
39
|
-
t.string
|
40
|
-
t.integer
|
41
|
-
t.date
|
42
|
-
t.integer
|
43
|
-
t.integer
|
44
|
-
t.date
|
45
|
-
t.date
|
46
|
-
t.boolean
|
47
|
-
t.date
|
48
|
-
t.datetime
|
49
|
-
t.datetime
|
50
|
-
t.boolean
|
33
|
+
add_index 'concept_relations', %w(owner_id target_id), name: 'ix_concept_relations_fk', using: :btree
|
34
|
+
add_index 'concept_relations', ['target_id'], name: 'fk_rails_fd6c6e6fd7', using: :btree
|
35
|
+
|
36
|
+
create_table 'concepts', force: :cascade do |t|
|
37
|
+
t.string 'type', limit: 255
|
38
|
+
t.string 'origin', limit: 4000
|
39
|
+
t.integer 'rev', limit: 4, default: 1
|
40
|
+
t.date 'published_at'
|
41
|
+
t.integer 'published_version_id', limit: 4
|
42
|
+
t.integer 'locked_by', limit: 4
|
43
|
+
t.date 'expired_at'
|
44
|
+
t.date 'follow_up'
|
45
|
+
t.boolean 'to_review'
|
46
|
+
t.date 'rdf_updated_at'
|
47
|
+
t.datetime 'created_at'
|
48
|
+
t.datetime 'updated_at'
|
49
|
+
t.boolean 'top_term', default: false
|
51
50
|
end
|
52
51
|
|
53
|
-
add_index
|
54
|
-
add_index
|
55
|
-
add_index
|
52
|
+
add_index 'concepts', ['locked_by'], name: 'fk_rails_69655c7fd3', using: :btree
|
53
|
+
add_index 'concepts', ['origin'], name: 'ix_concepts_on_origin', length: { 'origin' => 255 }, using: :btree
|
54
|
+
add_index 'concepts', ['published_version_id'], name: 'ix_concepts_publ_version_id', using: :btree
|
56
55
|
|
57
|
-
create_table
|
58
|
-
t.string
|
59
|
-
t.string
|
56
|
+
create_table 'configuration_settings', force: :cascade do |t|
|
57
|
+
t.string 'key', limit: 255
|
58
|
+
t.string 'value', limit: 255
|
60
59
|
end
|
61
60
|
|
62
|
-
create_table
|
63
|
-
t.integer
|
64
|
-
t.integer
|
65
|
-
t.text
|
66
|
-
t.text
|
67
|
-
t.datetime
|
68
|
-
t.datetime
|
69
|
-
t.datetime
|
70
|
-
t.string
|
71
|
-
t.string
|
72
|
-
t.datetime
|
73
|
-
t.datetime
|
74
|
-
t.string
|
75
|
-
t.string
|
76
|
-
t.integer
|
77
|
-
t.string
|
61
|
+
create_table 'delayed_jobs', force: :cascade do |t|
|
62
|
+
t.integer 'priority', limit: 4, default: 0, null: false
|
63
|
+
t.integer 'attempts', limit: 4, default: 0, null: false
|
64
|
+
t.text 'handler', limit: 65_535, null: false
|
65
|
+
t.text 'last_error', limit: 65_535
|
66
|
+
t.datetime 'run_at'
|
67
|
+
t.datetime 'locked_at'
|
68
|
+
t.datetime 'failed_at'
|
69
|
+
t.string 'locked_by', limit: 255
|
70
|
+
t.string 'queue', limit: 255
|
71
|
+
t.datetime 'created_at'
|
72
|
+
t.datetime 'updated_at'
|
73
|
+
t.string 'error_message', limit: 255
|
74
|
+
t.string 'delayed_reference_type', limit: 255
|
75
|
+
t.integer 'delayed_reference_id', limit: 4
|
76
|
+
t.string 'delayed_global_reference_id', limit: 255
|
78
77
|
end
|
79
78
|
|
80
|
-
add_index
|
81
|
-
add_index
|
82
|
-
add_index
|
83
|
-
add_index
|
84
|
-
add_index
|
85
|
-
|
86
|
-
create_table
|
87
|
-
t.integer
|
88
|
-
t.text
|
89
|
-
t.boolean
|
90
|
-
t.integer
|
91
|
-
t.string
|
92
|
-
t.datetime
|
93
|
-
t.datetime
|
94
|
-
t.datetime
|
95
|
-
t.string
|
79
|
+
add_index 'delayed_jobs', ['delayed_global_reference_id'], name: 'delayed_jobs_delayed_global_reference_id', using: :btree
|
80
|
+
add_index 'delayed_jobs', ['delayed_reference_id'], name: 'delayed_jobs_delayed_reference_id', using: :btree
|
81
|
+
add_index 'delayed_jobs', ['delayed_reference_type'], name: 'delayed_jobs_delayed_reference_type', using: :btree
|
82
|
+
add_index 'delayed_jobs', %w(priority run_at), name: 'delayed_jobs_priority', using: :btree
|
83
|
+
add_index 'delayed_jobs', ['queue'], name: 'delayed_jobs_queue', using: :btree
|
84
|
+
|
85
|
+
create_table 'exports', force: :cascade do |t|
|
86
|
+
t.integer 'user_id', limit: 4
|
87
|
+
t.text 'output', limit: 65_535
|
88
|
+
t.boolean 'success', default: false
|
89
|
+
t.integer 'file_type', limit: 4
|
90
|
+
t.string 'token', limit: 255
|
91
|
+
t.datetime 'created_at'
|
92
|
+
t.datetime 'updated_at'
|
93
|
+
t.datetime 'finished_at'
|
94
|
+
t.string 'default_namespace', limit: 255
|
96
95
|
end
|
97
96
|
|
98
|
-
add_index
|
99
|
-
|
100
|
-
create_table
|
101
|
-
t.integer
|
102
|
-
t.text
|
103
|
-
t.boolean
|
104
|
-
t.datetime
|
105
|
-
t.datetime
|
106
|
-
t.datetime
|
107
|
-
t.string
|
108
|
-
t.boolean
|
109
|
-
t.string
|
97
|
+
add_index 'exports', ['user_id'], name: 'index_exports_on_user_id', using: :btree
|
98
|
+
|
99
|
+
create_table 'imports', force: :cascade do |t|
|
100
|
+
t.integer 'user_id', limit: 4
|
101
|
+
t.text 'output', limit: 65_535
|
102
|
+
t.boolean 'success', default: false
|
103
|
+
t.datetime 'created_at'
|
104
|
+
t.datetime 'updated_at'
|
105
|
+
t.datetime 'finished_at'
|
106
|
+
t.string 'import_file', limit: 255
|
107
|
+
t.boolean 'publish'
|
108
|
+
t.string 'default_namespace', limit: 255
|
110
109
|
end
|
111
110
|
|
112
|
-
add_index
|
111
|
+
add_index 'imports', ['user_id'], name: 'index_imports_on_user_id', using: :btree
|
113
112
|
|
114
|
-
create_table
|
115
|
-
t.string
|
116
|
-
t.integer
|
117
|
-
t.integer
|
118
|
-
t.datetime
|
119
|
-
t.datetime
|
113
|
+
create_table 'labelings', force: :cascade do |t|
|
114
|
+
t.string 'type', limit: 255
|
115
|
+
t.integer 'owner_id', limit: 4
|
116
|
+
t.integer 'target_id', limit: 4
|
117
|
+
t.datetime 'created_at'
|
118
|
+
t.datetime 'updated_at'
|
120
119
|
end
|
121
120
|
|
122
|
-
add_index
|
123
|
-
add_index
|
124
|
-
add_index
|
125
|
-
|
126
|
-
create_table
|
127
|
-
t.string
|
128
|
-
t.string
|
129
|
-
t.string
|
130
|
-
t.string
|
131
|
-
t.datetime
|
132
|
-
t.datetime
|
133
|
-
t.date
|
121
|
+
add_index 'labelings', %w(owner_id target_id type), name: 'ix_labelings_fk_type', using: :btree
|
122
|
+
add_index 'labelings', ['target_id'], name: 'fk_rails_5897707e64', using: :btree
|
123
|
+
add_index 'labelings', ['type'], name: 'ix_labelings_on_type', using: :btree
|
124
|
+
|
125
|
+
create_table 'labels', force: :cascade do |t|
|
126
|
+
t.string 'type', limit: 255
|
127
|
+
t.string 'origin', limit: 4000
|
128
|
+
t.string 'language', limit: 255
|
129
|
+
t.string 'value', limit: 1024
|
130
|
+
t.datetime 'created_at'
|
131
|
+
t.datetime 'updated_at'
|
132
|
+
t.date 'published_at'
|
134
133
|
end
|
135
134
|
|
136
|
-
add_index
|
137
|
-
add_index
|
135
|
+
add_index 'labels', ['language'], name: 'ix_labels_on_language', using: :btree
|
136
|
+
add_index 'labels', ['origin'], name: 'ix_labels_on_origin', length: { 'origin' => 255 }, using: :btree
|
138
137
|
|
139
|
-
create_table
|
140
|
-
t.integer
|
141
|
-
t.string
|
142
|
-
t.string
|
143
|
-
t.datetime
|
144
|
-
t.datetime
|
138
|
+
create_table 'matches', force: :cascade do |t|
|
139
|
+
t.integer 'concept_id', limit: 4
|
140
|
+
t.string 'type', limit: 255
|
141
|
+
t.string 'value', limit: 255
|
142
|
+
t.datetime 'created_at'
|
143
|
+
t.datetime 'updated_at'
|
145
144
|
end
|
146
145
|
|
147
|
-
add_index
|
148
|
-
add_index
|
146
|
+
add_index 'matches', %w(concept_id type), name: 'ix_matches_fk_type', using: :btree
|
147
|
+
add_index 'matches', ['type'], name: 'ix_matches_on_type', using: :btree
|
149
148
|
|
150
|
-
create_table
|
151
|
-
t.integer
|
152
|
-
t.string
|
153
|
-
t.string
|
149
|
+
create_table 'notations', force: :cascade do |t|
|
150
|
+
t.integer 'concept_id', limit: 4
|
151
|
+
t.string 'value', limit: 4000
|
152
|
+
t.string 'data_type', limit: 4000
|
154
153
|
end
|
155
154
|
|
156
|
-
add_index
|
155
|
+
add_index 'notations', ['concept_id'], name: 'index_notations_on_concept_id', using: :btree
|
157
156
|
|
158
|
-
create_table
|
159
|
-
t.integer
|
160
|
-
t.string
|
161
|
-
t.string
|
162
|
-
t.datetime
|
163
|
-
t.datetime
|
164
|
-
t.string
|
165
|
-
t.string
|
157
|
+
create_table 'note_annotations', force: :cascade do |t|
|
158
|
+
t.integer 'note_id', limit: 4
|
159
|
+
t.string 'predicate', limit: 50
|
160
|
+
t.string 'value', limit: 1024
|
161
|
+
t.datetime 'created_at'
|
162
|
+
t.datetime 'updated_at'
|
163
|
+
t.string 'namespace', limit: 50
|
164
|
+
t.string 'language', limit: 255
|
166
165
|
end
|
167
166
|
|
168
|
-
add_index
|
167
|
+
add_index 'note_annotations', ['note_id'], name: 'ix_note_annotations_fk', using: :btree
|
169
168
|
|
170
|
-
create_table
|
171
|
-
t.string
|
172
|
-
t.string
|
173
|
-
t.string
|
174
|
-
t.datetime
|
175
|
-
t.datetime
|
176
|
-
t.integer
|
177
|
-
t.string
|
169
|
+
create_table 'notes', force: :cascade do |t|
|
170
|
+
t.string 'language', limit: 2
|
171
|
+
t.string 'value', limit: 4000
|
172
|
+
t.string 'type', limit: 50
|
173
|
+
t.datetime 'created_at'
|
174
|
+
t.datetime 'updated_at'
|
175
|
+
t.integer 'owner_id', limit: 4
|
176
|
+
t.string 'owner_type', limit: 255, null: false
|
178
177
|
end
|
179
178
|
|
180
|
-
add_index
|
181
|
-
add_index
|
182
|
-
add_index
|
183
|
-
|
184
|
-
create_table
|
185
|
-
t.string
|
186
|
-
t.string
|
187
|
-
t.string
|
188
|
-
t.string
|
189
|
-
t.boolean
|
190
|
-
t.datetime
|
191
|
-
t.datetime
|
192
|
-
t.string
|
193
|
-
t.string
|
194
|
-
t.string
|
195
|
-
t.string
|
196
|
-
t.string
|
197
|
-
t.string
|
179
|
+
add_index 'notes', ['language'], name: 'ix_notes_on_language', using: :btree
|
180
|
+
add_index 'notes', %w(owner_id owner_type type), name: 'ix_notes_fk_type', using: :btree
|
181
|
+
add_index 'notes', ['type'], name: 'ix_notes_on_type', using: :btree
|
182
|
+
|
183
|
+
create_table 'users', force: :cascade do |t|
|
184
|
+
t.string 'forename', limit: 255
|
185
|
+
t.string 'surname', limit: 255
|
186
|
+
t.string 'email', limit: 255
|
187
|
+
t.string 'crypted_password', limit: 255
|
188
|
+
t.boolean 'active'
|
189
|
+
t.datetime 'created_at'
|
190
|
+
t.datetime 'updated_at'
|
191
|
+
t.string 'password_salt', limit: 255
|
192
|
+
t.string 'persistence_token', limit: 255
|
193
|
+
t.string 'perishable_token', limit: 255
|
194
|
+
t.string 'role', limit: 255
|
195
|
+
t.string 'telephone_number', limit: 255
|
196
|
+
t.string 'type', limit: 255, default: 'User'
|
198
197
|
end
|
199
198
|
|
200
|
-
add_foreign_key
|
201
|
-
add_foreign_key
|
202
|
-
add_foreign_key
|
203
|
-
add_foreign_key
|
204
|
-
add_foreign_key
|
205
|
-
add_foreign_key
|
206
|
-
add_foreign_key
|
207
|
-
add_foreign_key
|
208
|
-
add_foreign_key
|
209
|
-
add_foreign_key
|
210
|
-
add_foreign_key
|
211
|
-
add_foreign_key
|
199
|
+
add_foreign_key 'collection_members', 'concepts', column: 'collection_id', on_update: :cascade
|
200
|
+
add_foreign_key 'collection_members', 'concepts', column: 'target_id', on_update: :cascade
|
201
|
+
add_foreign_key 'concept_relations', 'concepts', column: 'owner_id', on_update: :cascade
|
202
|
+
add_foreign_key 'concept_relations', 'concepts', column: 'target_id', on_update: :cascade
|
203
|
+
add_foreign_key 'concepts', 'users', column: 'locked_by', on_update: :cascade, on_delete: :nullify
|
204
|
+
add_foreign_key 'exports', 'users', on_update: :cascade, on_delete: :nullify
|
205
|
+
add_foreign_key 'imports', 'users', on_update: :cascade, on_delete: :nullify
|
206
|
+
add_foreign_key 'labelings', 'concepts', column: 'owner_id', on_update: :cascade
|
207
|
+
add_foreign_key 'labelings', 'labels', column: 'target_id', on_update: :cascade, on_delete: :cascade
|
208
|
+
add_foreign_key 'matches', 'concepts', on_update: :cascade, on_delete: :cascade
|
209
|
+
add_foreign_key 'notations', 'concepts', on_update: :cascade
|
210
|
+
add_foreign_key 'note_annotations', 'notes', on_update: :cascade, on_delete: :cascade
|
212
211
|
end
|
data/lib/iqvoc/version.rb
CHANGED
@@ -0,0 +1,28 @@
|
|
1
|
+
<http://www.example.com/animal> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
2
|
+
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
|
3
|
+
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#prefLabel> "Tier"@de .
|
4
|
+
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#prefLabel> "Animal"@en .
|
5
|
+
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#altLabel> "Viehzeug"@de .
|
6
|
+
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/cow> .
|
7
|
+
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/donkey> .
|
8
|
+
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#narrower> <http://www.example.com/monkey> .
|
9
|
+
<http://www.example.com/animal> <http://www.w3.org/2004/02/skos/core#definition> "Ein Tier ist kein Mensch."@de .
|
10
|
+
<http://www.example.com/cow> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
11
|
+
<http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
|
12
|
+
<http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#prefLabel> "Kuh"@de .
|
13
|
+
<http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#prefLabel> "Cow"@en .
|
14
|
+
<http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#altLabel> "Rind"@de .
|
15
|
+
<http://www.example.com/cow> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
|
16
|
+
<http://www.example.com/donkey> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
17
|
+
<http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
|
18
|
+
<http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Esel"@de .
|
19
|
+
<http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Donkey"@en .
|
20
|
+
<http://www.example.com/donkey> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
|
21
|
+
<http://www.example.com/monkey> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
|
22
|
+
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#inScheme> <http://www.example.com/scheme> .
|
23
|
+
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Affe"@de .
|
24
|
+
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#prefLabel> "Monkey"@en .
|
25
|
+
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#altLabel> "Äffle"@de .
|
26
|
+
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#altLabel> "Ape"@en .
|
27
|
+
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#broader> <http://www.example.com/animal> .
|
28
|
+
<http://www.example.com/monkey> <http://www.w3.org/2004/02/skos/core#exactMatch> <http://dbpedia.org/page/Monkey> .
|