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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 143155042a4ee4fd4b764ea25a0edd6c5c17ba5f
4
- data.tar.gz: 26ec5fff04dd0df5036b5fb58bc8faa04b9e89ba
3
+ metadata.gz: 3938935b477ae7671fc96f7c5578e667610a3ee6
4
+ data.tar.gz: 5ee6c7a19f9c08e91877ff26fedc49df60740786
5
5
  SHA512:
6
- metadata.gz: 85cd36d2c1f28d17c208a565c5177fabe8dd25b553162b90a8127bd66a2b16f55d4bb72870f65977834025d5f2d81ad753691b4ce6761f7e1860bde104b7d5fc
7
- data.tar.gz: bf28fee39986a75999a53631ef9d781d86ad73955300bb1ecf14e51b5bbfdec7be4c7134ba1cd780a8a59399792b0c650731c7634041a520cd35bd75bac0369e
6
+ metadata.gz: 397b2ddfe31eb980c60b19530010dd6ab6cb6440a67ac641365888e532a20b22da435db5d8f79fd40787c2b447103a68b8af8afe5a5e79211df9857b51ea746f
7
+ data.tar.gz: 54c70e599f4113bc0415ee82c16f530add41c78136837411b73db39cceb4b4ebc53e29b9569dc3d2118c8ca173cfd1d393bf54a4c25a18fdae54c80123c967a8
@@ -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)
@@ -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.18)
287
- sass-rails (5.0.4)
288
- railties (>= 4.0.0, < 5.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.1)
328
- tzinfo (1.2.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)
@@ -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)
@@ -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: 20150317162953) do
15
-
16
- create_table "collection_members", force: :cascade do |t|
17
- t.integer "collection_id", limit: 4
18
- t.integer "target_id", limit: 4
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 "collection_members", ["collection_id", "target_id", "type"], name: "ix_collections_fk_type", using: :btree
23
- add_index "collection_members", ["target_id"], name: "fk_rails_2a51b48094", using: :btree
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 "concept_relations", force: :cascade do |t|
26
- t.string "type", limit: 255
27
- t.integer "owner_id", limit: 4
28
- t.integer "target_id", limit: 4
29
- t.datetime "created_at"
30
- t.datetime "updated_at"
31
- t.integer "rank", limit: 4, default: 100
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 "concept_relations", ["owner_id", "target_id"], name: "ix_concept_relations_fk", using: :btree
35
- add_index "concept_relations", ["target_id"], name: "fk_rails_fd6c6e6fd7", using: :btree
36
-
37
- create_table "concepts", force: :cascade do |t|
38
- t.string "type", limit: 255
39
- t.string "origin", limit: 4000
40
- t.integer "rev", limit: 4, default: 1
41
- t.date "published_at"
42
- t.integer "published_version_id", limit: 4
43
- t.integer "locked_by", limit: 4
44
- t.date "expired_at"
45
- t.date "follow_up"
46
- t.boolean "to_review"
47
- t.date "rdf_updated_at"
48
- t.datetime "created_at"
49
- t.datetime "updated_at"
50
- t.boolean "top_term", default: false
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 "concepts", ["locked_by"], name: "fk_rails_69655c7fd3", using: :btree
54
- add_index "concepts", ["origin"], name: "ix_concepts_on_origin", length: {"origin"=>255}, using: :btree
55
- add_index "concepts", ["published_version_id"], name: "ix_concepts_publ_version_id", using: :btree
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 "configuration_settings", force: :cascade do |t|
58
- t.string "key", limit: 255
59
- t.string "value", limit: 255
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 "delayed_jobs", force: :cascade do |t|
63
- t.integer "priority", limit: 4, default: 0, null: false
64
- t.integer "attempts", limit: 4, default: 0, null: false
65
- t.text "handler", limit: 65535, null: false
66
- t.text "last_error", limit: 65535
67
- t.datetime "run_at"
68
- t.datetime "locked_at"
69
- t.datetime "failed_at"
70
- t.string "locked_by", limit: 255
71
- t.string "queue", limit: 255
72
- t.datetime "created_at"
73
- t.datetime "updated_at"
74
- t.string "error_message", limit: 255
75
- t.string "delayed_reference_type", limit: 255
76
- t.integer "delayed_reference_id", limit: 4
77
- t.string "delayed_global_reference_id", limit: 255
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 "delayed_jobs", ["delayed_global_reference_id"], name: "delayed_jobs_delayed_global_reference_id", using: :btree
81
- add_index "delayed_jobs", ["delayed_reference_id"], name: "delayed_jobs_delayed_reference_id", using: :btree
82
- add_index "delayed_jobs", ["delayed_reference_type"], name: "delayed_jobs_delayed_reference_type", using: :btree
83
- add_index "delayed_jobs", ["priority", "run_at"], name: "delayed_jobs_priority", using: :btree
84
- add_index "delayed_jobs", ["queue"], name: "delayed_jobs_queue", using: :btree
85
-
86
- create_table "exports", force: :cascade do |t|
87
- t.integer "user_id", limit: 4
88
- t.text "output", limit: 65535
89
- t.boolean "success", default: false
90
- t.integer "file_type", limit: 4
91
- t.string "token", limit: 255
92
- t.datetime "created_at"
93
- t.datetime "updated_at"
94
- t.datetime "finished_at"
95
- t.string "default_namespace", limit: 255
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 "exports", ["user_id"], name: "index_exports_on_user_id", using: :btree
99
-
100
- create_table "imports", force: :cascade do |t|
101
- t.integer "user_id", limit: 4
102
- t.text "output", limit: 65535
103
- t.boolean "success", default: false
104
- t.datetime "created_at"
105
- t.datetime "updated_at"
106
- t.datetime "finished_at"
107
- t.string "import_file", limit: 255
108
- t.boolean "publish"
109
- t.string "default_namespace", limit: 255
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 "imports", ["user_id"], name: "index_imports_on_user_id", using: :btree
111
+ add_index 'imports', ['user_id'], name: 'index_imports_on_user_id', using: :btree
113
112
 
114
- create_table "labelings", force: :cascade do |t|
115
- t.string "type", limit: 255
116
- t.integer "owner_id", limit: 4
117
- t.integer "target_id", limit: 4
118
- t.datetime "created_at"
119
- t.datetime "updated_at"
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 "labelings", ["owner_id", "target_id", "type"], name: "ix_labelings_fk_type", using: :btree
123
- add_index "labelings", ["target_id"], name: "fk_rails_5897707e64", using: :btree
124
- add_index "labelings", ["type"], name: "ix_labelings_on_type", using: :btree
125
-
126
- create_table "labels", force: :cascade do |t|
127
- t.string "type", limit: 255
128
- t.string "origin", limit: 4000
129
- t.string "language", limit: 255
130
- t.string "value", limit: 1024
131
- t.datetime "created_at"
132
- t.datetime "updated_at"
133
- t.date "published_at"
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 "labels", ["language"], name: "ix_labels_on_language", using: :btree
137
- add_index "labels", ["origin"], name: "ix_labels_on_origin", length: {"origin"=>255}, using: :btree
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 "matches", force: :cascade do |t|
140
- t.integer "concept_id", limit: 4
141
- t.string "type", limit: 255
142
- t.string "value", limit: 255
143
- t.datetime "created_at"
144
- t.datetime "updated_at"
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 "matches", ["concept_id", "type"], name: "ix_matches_fk_type", using: :btree
148
- add_index "matches", ["type"], name: "ix_matches_on_type", using: :btree
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 "notations", force: :cascade do |t|
151
- t.integer "concept_id", limit: 4
152
- t.string "value", limit: 4000
153
- t.string "data_type", limit: 4000
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 "notations", ["concept_id"], name: "index_notations_on_concept_id", using: :btree
155
+ add_index 'notations', ['concept_id'], name: 'index_notations_on_concept_id', using: :btree
157
156
 
158
- create_table "note_annotations", force: :cascade do |t|
159
- t.integer "note_id", limit: 4
160
- t.string "predicate", limit: 50
161
- t.string "value", limit: 1024
162
- t.datetime "created_at"
163
- t.datetime "updated_at"
164
- t.string "namespace", limit: 50
165
- t.string "language", limit: 255
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 "note_annotations", ["note_id"], name: "ix_note_annotations_fk", using: :btree
167
+ add_index 'note_annotations', ['note_id'], name: 'ix_note_annotations_fk', using: :btree
169
168
 
170
- create_table "notes", force: :cascade do |t|
171
- t.string "language", limit: 2
172
- t.string "value", limit: 4000
173
- t.string "type", limit: 50
174
- t.datetime "created_at"
175
- t.datetime "updated_at"
176
- t.integer "owner_id", limit: 4
177
- t.string "owner_type", limit: 255, null: false
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 "notes", ["language"], name: "ix_notes_on_language", using: :btree
181
- add_index "notes", ["owner_id", "owner_type", "type"], name: "ix_notes_fk_type", using: :btree
182
- add_index "notes", ["type"], name: "ix_notes_on_type", using: :btree
183
-
184
- create_table "users", force: :cascade do |t|
185
- t.string "forename", limit: 255
186
- t.string "surname", limit: 255
187
- t.string "email", limit: 255
188
- t.string "crypted_password", limit: 255
189
- t.boolean "active"
190
- t.datetime "created_at"
191
- t.datetime "updated_at"
192
- t.string "password_salt", limit: 255
193
- t.string "persistence_token", limit: 255
194
- t.string "perishable_token", limit: 255
195
- t.string "role", limit: 255
196
- t.string "telephone_number", limit: 255
197
- t.string "type", limit: 255, default: "User"
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 "collection_members", "concepts", column: "collection_id", on_update: :cascade
201
- add_foreign_key "collection_members", "concepts", column: "target_id", on_update: :cascade
202
- add_foreign_key "concept_relations", "concepts", column: "owner_id", on_update: :cascade
203
- add_foreign_key "concept_relations", "concepts", column: "target_id", on_update: :cascade
204
- add_foreign_key "concepts", "users", column: "locked_by", on_update: :cascade, on_delete: :nullify
205
- add_foreign_key "exports", "users", on_update: :cascade, on_delete: :nullify
206
- add_foreign_key "imports", "users", on_update: :cascade, on_delete: :nullify
207
- add_foreign_key "labelings", "concepts", column: "owner_id", on_update: :cascade
208
- add_foreign_key "labelings", "labels", column: "target_id", on_update: :cascade, on_delete: :cascade
209
- add_foreign_key "matches", "concepts", on_update: :cascade, on_delete: :cascade
210
- add_foreign_key "notations", "concepts", on_update: :cascade
211
- add_foreign_key "note_annotations", "notes", on_update: :cascade, on_delete: :cascade
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
@@ -15,5 +15,5 @@
15
15
  # limitations under the License.
16
16
 
17
17
  module Iqvoc
18
- VERSION = "4.11.0"
18
+ VERSION = "4.11.1"
19
19
  end
@@ -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> .