ken 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +23 -0
- data/History.txt +3 -0
- data/LICENSE +20 -0
- data/README.textile +264 -0
- data/README.txt +76 -0
- data/Rakefile +60 -0
- data/TODO +0 -0
- data/VERSION +1 -0
- data/examples/artist.rb +21 -0
- data/examples/artist_links.rb +38 -0
- data/ken.gemspec +91 -0
- data/lib/ken.rb +126 -0
- data/lib/ken/attribute.rb +62 -0
- data/lib/ken/collection.rb +8 -0
- data/lib/ken/logger.rb +233 -0
- data/lib/ken/property.rb +91 -0
- data/lib/ken/resource.rb +151 -0
- data/lib/ken/session.rb +129 -0
- data/lib/ken/type.rb +53 -0
- data/lib/ken/util.rb +18 -0
- data/lib/ken/view.rb +56 -0
- data/rails/init.rb +2 -0
- data/tasks/ken.rb +4 -0
- data/tasks/spec.rb +25 -0
- data/test/fixtures/music_artist.json +103 -0
- data/test/fixtures/the_police.json +937 -0
- data/test/integration/ken_test.rb +75 -0
- data/test/test_helper.rb +61 -0
- data/test/unit/attribute_test.rb +49 -0
- data/test/unit/property_test.rb +27 -0
- data/test/unit/resource_test.rb +58 -0
- data/test/unit/session_test.rb +27 -0
- data/test/unit/type_test.rb +35 -0
- data/test/unit/view_test.rb +48 -0
- metadata +128 -0
data/rails/init.rb
ADDED
data/tasks/ken.rb
ADDED
data/tasks/spec.rb
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
begin
|
2
|
+
gem 'rspec', '~>1.1.12'
|
3
|
+
require 'spec'
|
4
|
+
require 'spec/rake/spectask'
|
5
|
+
|
6
|
+
task :default => [ :spec ]
|
7
|
+
|
8
|
+
desc 'Run specifications'
|
9
|
+
Spec::Rake::SpecTask.new(:spec) do |t|
|
10
|
+
t.spec_opts << '--options' << 'spec/spec.opts' if File.exists?('spec/spec.opts')
|
11
|
+
t.spec_files = Pathname.glob((ROOT + 'spec/**/*_spec.rb').to_s).map { |f| f.to_s }
|
12
|
+
|
13
|
+
begin
|
14
|
+
gem 'rcov', '~>0.8'
|
15
|
+
t.rcov = JRUBY ? false : (ENV.has_key?('NO_RCOV') ? ENV['NO_RCOV'] != 'true' : true)
|
16
|
+
t.rcov_opts << '--exclude' << 'spec'
|
17
|
+
t.rcov_opts << '--text-summary'
|
18
|
+
t.rcov_opts << '--sort' << 'coverage' << '--sort-reverse'
|
19
|
+
rescue LoadError
|
20
|
+
# rcov not installed
|
21
|
+
end
|
22
|
+
end
|
23
|
+
rescue LoadError
|
24
|
+
# rspec not installed
|
25
|
+
end
|
@@ -0,0 +1,103 @@
|
|
1
|
+
|
2
|
+
{
|
3
|
+
"id" : "/music/artist",
|
4
|
+
"name" : "Musical Artist",
|
5
|
+
"properties" : [
|
6
|
+
{
|
7
|
+
"expected_type" : "/location/location",
|
8
|
+
"id" : "/music/artist/origin",
|
9
|
+
"name" : "Place Musical Career Began",
|
10
|
+
"unique" :true
|
11
|
+
},
|
12
|
+
{
|
13
|
+
"expected_type" : "/type/datetime",
|
14
|
+
"id" : "/music/artist/active_start",
|
15
|
+
"name" : "Active as Musical Artist (start)",
|
16
|
+
"unique" : true
|
17
|
+
},
|
18
|
+
{
|
19
|
+
"expected_type" : "/type/datetime",
|
20
|
+
"id" : "/music/artist/active_end",
|
21
|
+
"name" : "Active as Musical Artist (end)",
|
22
|
+
"unique" : true
|
23
|
+
},
|
24
|
+
{
|
25
|
+
"expected_type" : "/music/genre",
|
26
|
+
"id" : "/music/artist/genre",
|
27
|
+
"name" : "Musical Genres",
|
28
|
+
"unique" : null
|
29
|
+
},
|
30
|
+
{
|
31
|
+
"expected_type" : "/music/record_label",
|
32
|
+
"id" : "/music/artist/label",
|
33
|
+
"name" : "Record Labels",
|
34
|
+
"unique" : null
|
35
|
+
},
|
36
|
+
{
|
37
|
+
"expected_type" : "/music/artist",
|
38
|
+
"id" : "/music/artist/similar_artist",
|
39
|
+
"name" : "Similar Artists",
|
40
|
+
"unique" : null
|
41
|
+
},
|
42
|
+
{
|
43
|
+
"expected_type" : "/common/webpage",
|
44
|
+
"id" : "/music/artist/home_page",
|
45
|
+
"name" : "Musical Artist Home Page",
|
46
|
+
"unique" : null
|
47
|
+
},
|
48
|
+
{
|
49
|
+
"expected_type" : "/common/webpage",
|
50
|
+
"id" : "/music/artist/acquire_webpage",
|
51
|
+
"name" : "Web Page for Music",
|
52
|
+
"unique" : null
|
53
|
+
},
|
54
|
+
{
|
55
|
+
"expected_type" : "/music/album",
|
56
|
+
"id" : "/music/artist/album",
|
57
|
+
"name" : "Albums",
|
58
|
+
"unique" : null
|
59
|
+
},
|
60
|
+
{
|
61
|
+
"expected_type" : "/music/recording_contribution",
|
62
|
+
"id" : "/music/artist/contribution",
|
63
|
+
"name" : "Album Contributions",
|
64
|
+
"unique" : null
|
65
|
+
},
|
66
|
+
{
|
67
|
+
"expected_type" : "/music/track",
|
68
|
+
"id" : "/music/artist/track",
|
69
|
+
"name" : "Tracks Recorded",
|
70
|
+
"unique" : null
|
71
|
+
},
|
72
|
+
{
|
73
|
+
"expected_type" : "/music/artist",
|
74
|
+
"id" : "/music/artist/artist_similar",
|
75
|
+
"name" : "Similar Musical Artists",
|
76
|
+
"unique" : null
|
77
|
+
},
|
78
|
+
{
|
79
|
+
"expected_type" : "/music/track_contribution",
|
80
|
+
"id" : "/music/artist/track_contributions",
|
81
|
+
"name" : "Track Contributions",
|
82
|
+
"unique" : null
|
83
|
+
},
|
84
|
+
{
|
85
|
+
"expected_type" : "/music/instrument",
|
86
|
+
"id" : "/music/artist/instruments_played",
|
87
|
+
"name" : "Instruments Played",
|
88
|
+
"unique" : null
|
89
|
+
},
|
90
|
+
{
|
91
|
+
"expected_type" : "/music/voice",
|
92
|
+
"id" : "/music/artist/vocal_range",
|
93
|
+
"name" : "Vocal Range",
|
94
|
+
"unique" : null
|
95
|
+
},
|
96
|
+
{
|
97
|
+
"expected_type" : "/music/concert_tour",
|
98
|
+
"id" : "/music/artist/concert_tours",
|
99
|
+
"name" : "Concert Tours",
|
100
|
+
"unique" : false
|
101
|
+
}
|
102
|
+
]
|
103
|
+
}
|
@@ -0,0 +1,937 @@
|
|
1
|
+
{
|
2
|
+
"/type/reflect/any_master": [
|
3
|
+
{
|
4
|
+
"id": "/boot/all_permission",
|
5
|
+
"link": "/type/object/permission",
|
6
|
+
"name": "Global Write Permission"
|
7
|
+
},
|
8
|
+
{
|
9
|
+
"id": "/guid/9202a8c04000641f800000000006df25",
|
10
|
+
"link": "/common/topic/article",
|
11
|
+
"name": null
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"id": "/music/artist",
|
15
|
+
"link": "/type/object/type",
|
16
|
+
"name": "Musical Artist"
|
17
|
+
},
|
18
|
+
{
|
19
|
+
"id": "/common/topic",
|
20
|
+
"link": "/type/object/type",
|
21
|
+
"name": "Topic"
|
22
|
+
},
|
23
|
+
{
|
24
|
+
"id": "/guid/9202a8c04000641f8000000003921d3c",
|
25
|
+
"link": "/common/topic/webpage",
|
26
|
+
"name": "Discogs entry"
|
27
|
+
},
|
28
|
+
{
|
29
|
+
"id": "/wikipedia/images/en_id/982873",
|
30
|
+
"link": "/common/topic/image",
|
31
|
+
"name": null
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"id": "/en/rock_music",
|
35
|
+
"link": "/music/artist/genre",
|
36
|
+
"name": "Rock music"
|
37
|
+
},
|
38
|
+
{
|
39
|
+
"id": "/en/ska",
|
40
|
+
"link": "/music/artist/genre",
|
41
|
+
"name": "Ska"
|
42
|
+
},
|
43
|
+
{
|
44
|
+
"id": "/en/reggae",
|
45
|
+
"link": "/music/artist/genre",
|
46
|
+
"name": "Reggae"
|
47
|
+
},
|
48
|
+
{
|
49
|
+
"id": "/en/london",
|
50
|
+
"link": "/music/artist/origin",
|
51
|
+
"name": "London"
|
52
|
+
},
|
53
|
+
{
|
54
|
+
"id": "/music/producer",
|
55
|
+
"link": "/type/object/type",
|
56
|
+
"name": "Record Producer"
|
57
|
+
},
|
58
|
+
{
|
59
|
+
"id": "/music/musical_group",
|
60
|
+
"link": "/type/object/type",
|
61
|
+
"name": "Musical Group"
|
62
|
+
},
|
63
|
+
{
|
64
|
+
"id": "/guid/9202a8c04000641f80000000072a23e1",
|
65
|
+
"link": "/common/topic/webpage",
|
66
|
+
"name": null
|
67
|
+
},
|
68
|
+
{
|
69
|
+
"id": "/en/new_wave",
|
70
|
+
"link": "/music/artist/genre",
|
71
|
+
"name": "New Wave"
|
72
|
+
},
|
73
|
+
{
|
74
|
+
"id": "/en/a_m_records",
|
75
|
+
"link": "/music/artist/label",
|
76
|
+
"name": "A&M Records"
|
77
|
+
},
|
78
|
+
{
|
79
|
+
"id": "/en/polydor_records",
|
80
|
+
"link": "/music/artist/label",
|
81
|
+
"name": "Polydor Records"
|
82
|
+
},
|
83
|
+
{
|
84
|
+
"id": "/en/illegal_records",
|
85
|
+
"link": "/music/artist/label",
|
86
|
+
"name": "Illegal Records"
|
87
|
+
},
|
88
|
+
{
|
89
|
+
"id": "/en/post-punk",
|
90
|
+
"link": "/music/artist/genre",
|
91
|
+
"name": "Post-punk"
|
92
|
+
},
|
93
|
+
{
|
94
|
+
"id": "/guid/9202a8c04000641f80000000082147dd",
|
95
|
+
"link": "/common/topic/webpage",
|
96
|
+
"name": null
|
97
|
+
},
|
98
|
+
{
|
99
|
+
"id": "/wikipedia/images/commons_id/3520500",
|
100
|
+
"link": "/common/topic/image",
|
101
|
+
"name": "The Police performing live on August 1, 2007 at Madison Square Garden, New York."
|
102
|
+
},
|
103
|
+
{
|
104
|
+
"id": "/broadcast/artist",
|
105
|
+
"link": "/type/object/type",
|
106
|
+
"name": "Broadcast Artist"
|
107
|
+
},
|
108
|
+
{
|
109
|
+
"id": "/en/electric_guitar",
|
110
|
+
"link": "/music/artist/instruments_played",
|
111
|
+
"name": "Electric guitar"
|
112
|
+
},
|
113
|
+
{
|
114
|
+
"id": "/en/drum",
|
115
|
+
"link": "/music/artist/instruments_played",
|
116
|
+
"name": "Drum"
|
117
|
+
},
|
118
|
+
{
|
119
|
+
"id": "/en/universal_music_group",
|
120
|
+
"link": "/music/artist/label",
|
121
|
+
"name": "Universal Music Group"
|
122
|
+
},
|
123
|
+
{
|
124
|
+
"id": "/award/award_winner",
|
125
|
+
"link": "/type/object/type",
|
126
|
+
"name": "Award Winner"
|
127
|
+
},
|
128
|
+
{
|
129
|
+
"id": "/en/pop_rock",
|
130
|
+
"link": "/music/artist/genre",
|
131
|
+
"name": "Pop rock"
|
132
|
+
},
|
133
|
+
{
|
134
|
+
"id": "/en/sting",
|
135
|
+
"link": "/music/artist/similar_artist",
|
136
|
+
"name": "Sting"
|
137
|
+
}
|
138
|
+
],
|
139
|
+
"/type/reflect/any_reverse": [
|
140
|
+
{
|
141
|
+
"id": "/en/outlandos_damour",
|
142
|
+
"link": "/music/album/artist",
|
143
|
+
"name": "Outlandos d'Amour"
|
144
|
+
},
|
145
|
+
{
|
146
|
+
"id": "/en/reggatta_de_blanc",
|
147
|
+
"link": "/music/album/artist",
|
148
|
+
"name": "Reggatta de Blanc"
|
149
|
+
},
|
150
|
+
{
|
151
|
+
"id": "/en/zenyatta_mondatta",
|
152
|
+
"link": "/music/album/artist",
|
153
|
+
"name": "Zenyatta Mondatta"
|
154
|
+
},
|
155
|
+
{
|
156
|
+
"id": "/guid/9202a8c04000641f800000000017dab4",
|
157
|
+
"link": "/music/album/artist",
|
158
|
+
"name": "Ghost in the Machine"
|
159
|
+
},
|
160
|
+
{
|
161
|
+
"id": "/guid/9202a8c04000641f8000000002f9e349",
|
162
|
+
"link": "/music/album/artist",
|
163
|
+
"name": "Synchronicity"
|
164
|
+
},
|
165
|
+
{
|
166
|
+
"id": "/en/every_breath_you_take_the_singles",
|
167
|
+
"link": "/music/album/artist",
|
168
|
+
"name": "Every Breath You Take: The Singles"
|
169
|
+
},
|
170
|
+
{
|
171
|
+
"id": "/guid/9202a8c04000641f8000000002f9e3ca",
|
172
|
+
"link": "/music/album/artist",
|
173
|
+
"name": "Greatest Hits"
|
174
|
+
},
|
175
|
+
{
|
176
|
+
"id": "/en/message_in_a_box_the_complete_recordings",
|
177
|
+
"link": "/music/album/artist",
|
178
|
+
"name": "Message in a Box: The Complete Recordings"
|
179
|
+
},
|
180
|
+
{
|
181
|
+
"id": "/guid/9202a8c04000641f8000000002f9e2df",
|
182
|
+
"link": "/music/album/artist",
|
183
|
+
"name": "Live!"
|
184
|
+
},
|
185
|
+
{
|
186
|
+
"id": "/en/every_breath_you_take_the_classics",
|
187
|
+
"link": "/music/album/artist",
|
188
|
+
"name": "Every Breath You Take: The Classics"
|
189
|
+
},
|
190
|
+
{
|
191
|
+
"id": "/guid/9202a8c04000641f8000000002f9e3a7",
|
192
|
+
"link": "/music/album/artist",
|
193
|
+
"name": "Their Greatest Hits"
|
194
|
+
},
|
195
|
+
{
|
196
|
+
"id": "/guid/9202a8c04000641f8000000002f9e2cf",
|
197
|
+
"link": "/music/album/artist",
|
198
|
+
"name": "Can't Stand Losing You"
|
199
|
+
},
|
200
|
+
{
|
201
|
+
"id": "/en/roxanne_97_puff_daddy_remix",
|
202
|
+
"link": "/music/album/artist",
|
203
|
+
"name": "Roxanne '97 (Puff Daddy remix)"
|
204
|
+
},
|
205
|
+
{
|
206
|
+
"id": "/en/roxanne_97",
|
207
|
+
"link": "/music/album/artist",
|
208
|
+
"name": "Roxanne '97"
|
209
|
+
},
|
210
|
+
{
|
211
|
+
"id": "/guid/9202a8c04000641f800000000128acd5",
|
212
|
+
"link": "/music/track/artist",
|
213
|
+
"name": "Message in a Bottle"
|
214
|
+
},
|
215
|
+
{
|
216
|
+
"id": "/guid/9202a8c04000641f800000000128acdc",
|
217
|
+
"link": "/music/track/artist",
|
218
|
+
"name": "Can't Stand Losing You"
|
219
|
+
},
|
220
|
+
{
|
221
|
+
"id": "/guid/9202a8c04000641f800000000128acea",
|
222
|
+
"link": "/music/track/artist",
|
223
|
+
"name": "Every Breath You Take"
|
224
|
+
},
|
225
|
+
{
|
226
|
+
"id": "/guid/9202a8c04000641f800000000128acf8",
|
227
|
+
"link": "/music/track/artist",
|
228
|
+
"name": "Walking on the Moon"
|
229
|
+
},
|
230
|
+
{
|
231
|
+
"id": "/guid/9202a8c04000641f800000000128ad0d",
|
232
|
+
"link": "/music/track/artist",
|
233
|
+
"name": "Every Little Thing She Does Is Magic"
|
234
|
+
},
|
235
|
+
{
|
236
|
+
"id": "/guid/9202a8c04000641f800000000128ad14",
|
237
|
+
"link": "/music/track/artist",
|
238
|
+
"name": "De Do Do Do, De Da Da Da"
|
239
|
+
},
|
240
|
+
{
|
241
|
+
"id": "/guid/9202a8c04000641f800000000128ad3e",
|
242
|
+
"link": "/music/track/artist",
|
243
|
+
"name": "Don't Stand So Close to Me"
|
244
|
+
},
|
245
|
+
{
|
246
|
+
"id": "/guid/9202a8c04000641f800000000128ad45",
|
247
|
+
"link": "/music/track/artist",
|
248
|
+
"name": "Roxanne"
|
249
|
+
},
|
250
|
+
{
|
251
|
+
"id": "/guid/9202a8c04000641f800000000128ad4c",
|
252
|
+
"link": "/music/track/artist",
|
253
|
+
"name": "Roxanne '97 (Puff Daddy remix)"
|
254
|
+
},
|
255
|
+
{
|
256
|
+
"id": "/guid/9202a8c04000641f80000000012dba61",
|
257
|
+
"link": "/music/track/artist",
|
258
|
+
"name": "Every Breath You Take"
|
259
|
+
},
|
260
|
+
{
|
261
|
+
"id": "/guid/9202a8c04000641f80000000012dde95",
|
262
|
+
"link": "/music/track/artist",
|
263
|
+
"name": "Message in a Bottle"
|
264
|
+
},
|
265
|
+
{
|
266
|
+
"id": "/guid/9202a8c04000641f80000000012dde9c",
|
267
|
+
"link": "/music/track/artist",
|
268
|
+
"name": "Can't Stand Losing You"
|
269
|
+
},
|
270
|
+
{
|
271
|
+
"id": "/guid/9202a8c04000641f80000000012ddeaa",
|
272
|
+
"link": "/music/track/artist",
|
273
|
+
"name": "Every Breath You Take"
|
274
|
+
},
|
275
|
+
{
|
276
|
+
"id": "/guid/9202a8c04000641f80000000012ddeb1",
|
277
|
+
"link": "/music/track/artist",
|
278
|
+
"name": "Walking on The Moon"
|
279
|
+
},
|
280
|
+
{
|
281
|
+
"id": "/guid/9202a8c04000641f80000000012ddebf",
|
282
|
+
"link": "/music/track/artist",
|
283
|
+
"name": "Every Little Thing She Does Is Magic"
|
284
|
+
},
|
285
|
+
{
|
286
|
+
"id": "/guid/9202a8c04000641f80000000012ddee9",
|
287
|
+
"link": "/music/track/artist",
|
288
|
+
"name": "Don't Stand So Close to Me"
|
289
|
+
},
|
290
|
+
{
|
291
|
+
"id": "/guid/9202a8c04000641f80000000012ddef0",
|
292
|
+
"link": "/music/track/artist",
|
293
|
+
"name": "Roxanne"
|
294
|
+
},
|
295
|
+
{
|
296
|
+
"id": "/guid/9202a8c04000641f80000000012ddef7",
|
297
|
+
"link": "/music/track/artist",
|
298
|
+
"name": "Roxanne '97 (Puff Daddy remix)"
|
299
|
+
},
|
300
|
+
{
|
301
|
+
"id": "/guid/9202a8c04000641f8000000001338a15",
|
302
|
+
"link": "/music/track/artist",
|
303
|
+
"name": "Message in a Bottle"
|
304
|
+
},
|
305
|
+
{
|
306
|
+
"id": "/guid/9202a8c04000641f8000000001338a1c",
|
307
|
+
"link": "/music/track/artist",
|
308
|
+
"name": "Can't Stand Losing You"
|
309
|
+
},
|
310
|
+
{
|
311
|
+
"id": "/guid/9202a8c04000641f8000000001338a2a",
|
312
|
+
"link": "/music/track/artist",
|
313
|
+
"name": "Every Breath You Take"
|
314
|
+
},
|
315
|
+
{
|
316
|
+
"id": "/guid/9202a8c04000641f8000000001338a38",
|
317
|
+
"link": "/music/track/artist",
|
318
|
+
"name": "Walking on the Moon"
|
319
|
+
},
|
320
|
+
{
|
321
|
+
"id": "/guid/9202a8c04000641f8000000001338a4d",
|
322
|
+
"link": "/music/track/artist",
|
323
|
+
"name": "Every Little Thing She Does Is Magic"
|
324
|
+
},
|
325
|
+
{
|
326
|
+
"id": "/guid/9202a8c04000641f8000000001338a54",
|
327
|
+
"link": "/music/track/artist",
|
328
|
+
"name": "De Do Do Do, De Da Da Da"
|
329
|
+
},
|
330
|
+
{
|
331
|
+
"id": "/guid/9202a8c04000641f8000000001338a7e",
|
332
|
+
"link": "/music/track/artist",
|
333
|
+
"name": "Don't Stand So Close to Me"
|
334
|
+
},
|
335
|
+
{
|
336
|
+
"id": "/guid/9202a8c04000641f8000000001338a85",
|
337
|
+
"link": "/music/track/artist",
|
338
|
+
"name": "Roxanne"
|
339
|
+
},
|
340
|
+
{
|
341
|
+
"id": "/guid/9202a8c04000641f8000000001423459",
|
342
|
+
"link": "/music/track/artist",
|
343
|
+
"name": "Don't Stand So Close to Me"
|
344
|
+
},
|
345
|
+
{
|
346
|
+
"id": "/guid/9202a8c04000641f8000000001474145",
|
347
|
+
"link": "/music/track/artist",
|
348
|
+
"name": "Message in a Bottle"
|
349
|
+
},
|
350
|
+
{
|
351
|
+
"id": "/guid/9202a8c04000641f800000000147414c",
|
352
|
+
"link": "/music/track/artist",
|
353
|
+
"name": "Can't Stand Losing You"
|
354
|
+
},
|
355
|
+
{
|
356
|
+
"id": "/guid/9202a8c04000641f800000000147415a",
|
357
|
+
"link": "/music/track/artist",
|
358
|
+
"name": "Every Breath You Take"
|
359
|
+
},
|
360
|
+
{
|
361
|
+
"id": "/guid/9202a8c04000641f8000000001474168",
|
362
|
+
"link": "/music/track/artist",
|
363
|
+
"name": "Walking on the Moon"
|
364
|
+
},
|
365
|
+
{
|
366
|
+
"id": "/guid/9202a8c04000641f800000000147417d",
|
367
|
+
"link": "/music/track/artist",
|
368
|
+
"name": "Every Little Thing She Does Is Magic"
|
369
|
+
},
|
370
|
+
{
|
371
|
+
"id": "/guid/9202a8c04000641f8000000001474184",
|
372
|
+
"link": "/music/track/artist",
|
373
|
+
"name": "De Do Do Do, De Da Da Da"
|
374
|
+
},
|
375
|
+
{
|
376
|
+
"id": "/guid/9202a8c04000641f80000000014741ae",
|
377
|
+
"link": "/music/track/artist",
|
378
|
+
"name": "Don't Stand So Close to Me"
|
379
|
+
},
|
380
|
+
{
|
381
|
+
"id": "/guid/9202a8c04000641f80000000014741b5",
|
382
|
+
"link": "/music/track/artist",
|
383
|
+
"name": "Roxanne"
|
384
|
+
},
|
385
|
+
{
|
386
|
+
"id": "/guid/9202a8c04000641f80000000014741bc",
|
387
|
+
"link": "/music/track/artist",
|
388
|
+
"name": "So Lonely"
|
389
|
+
},
|
390
|
+
{
|
391
|
+
"id": "/guid/9202a8c04000641f8000000001477682",
|
392
|
+
"link": "/music/track/artist",
|
393
|
+
"name": "Every Little Thing She Does Is Magic"
|
394
|
+
},
|
395
|
+
{
|
396
|
+
"id": "/guid/9202a8c04000641f80000000014c6e37",
|
397
|
+
"link": "/music/track/artist",
|
398
|
+
"name": "Don't Stand So Close"
|
399
|
+
},
|
400
|
+
{
|
401
|
+
"id": "/guid/9202a8c04000641f8000000001555d7d",
|
402
|
+
"link": "/music/track/artist",
|
403
|
+
"name": "Walking on the Moon"
|
404
|
+
},
|
405
|
+
{
|
406
|
+
"id": "/guid/9202a8c04000641f8000000001594b89",
|
407
|
+
"link": "/music/track/artist",
|
408
|
+
"name": "Message in a Bottle"
|
409
|
+
},
|
410
|
+
{
|
411
|
+
"id": "/guid/9202a8c04000641f8000000001594b90",
|
412
|
+
"link": "/music/track/artist",
|
413
|
+
"name": "Can't Stand Losing You"
|
414
|
+
},
|
415
|
+
{
|
416
|
+
"id": "/guid/9202a8c04000641f8000000001594b9e",
|
417
|
+
"link": "/music/track/artist",
|
418
|
+
"name": "Every Breath You Take"
|
419
|
+
},
|
420
|
+
{
|
421
|
+
"id": "/guid/9202a8c04000641f8000000001594bac",
|
422
|
+
"link": "/music/track/artist",
|
423
|
+
"name": "Walking on the Moon"
|
424
|
+
},
|
425
|
+
{
|
426
|
+
"id": "/guid/9202a8c04000641f8000000001594bc1",
|
427
|
+
"link": "/music/track/artist",
|
428
|
+
"name": "Every Little Thing She Does Is Magic"
|
429
|
+
},
|
430
|
+
{
|
431
|
+
"id": "/guid/9202a8c04000641f8000000001594bc8",
|
432
|
+
"link": "/music/track/artist",
|
433
|
+
"name": "De Do Do Do De Da Da Da"
|
434
|
+
},
|
435
|
+
{
|
436
|
+
"id": "/guid/9202a8c04000641f80000000015de479",
|
437
|
+
"link": "/music/track/artist",
|
438
|
+
"name": "Driven to Tears"
|
439
|
+
},
|
440
|
+
{
|
441
|
+
"id": "/guid/9202a8c04000641f80000000016088e7",
|
442
|
+
"link": "/music/track/artist",
|
443
|
+
"name": "Every Breath You Take"
|
444
|
+
},
|
445
|
+
{
|
446
|
+
"id": "/guid/9202a8c04000641f800000000163c1eb",
|
447
|
+
"link": "/music/track/artist",
|
448
|
+
"name": "Don't Stand So Close to Me"
|
449
|
+
},
|
450
|
+
{
|
451
|
+
"id": "/guid/9202a8c04000641f800000000166c542",
|
452
|
+
"link": "/music/track/artist",
|
453
|
+
"name": "So Lonely"
|
454
|
+
},
|
455
|
+
{
|
456
|
+
"id": "/guid/9202a8c04000641f800000000166ddfa",
|
457
|
+
"link": "/music/track/artist",
|
458
|
+
"name": "Synchronicity II"
|
459
|
+
},
|
460
|
+
{
|
461
|
+
"id": "/guid/9202a8c04000641f80000000016a7432",
|
462
|
+
"link": "/music/track/artist",
|
463
|
+
"name": "Every Breath You Take"
|
464
|
+
},
|
465
|
+
{
|
466
|
+
"id": "/guid/9202a8c04000641f80000000016f672b",
|
467
|
+
"link": "/music/track/artist",
|
468
|
+
"name": "Every Breath You Take"
|
469
|
+
},
|
470
|
+
{
|
471
|
+
"id": "/guid/9202a8c04000641f800000000170d706",
|
472
|
+
"link": "/music/track/artist",
|
473
|
+
"name": "Every Breath You Take"
|
474
|
+
},
|
475
|
+
{
|
476
|
+
"id": "/guid/9202a8c04000641f80000000017c7193",
|
477
|
+
"link": "/music/track/artist",
|
478
|
+
"name": "Can't Stand Losing You"
|
479
|
+
},
|
480
|
+
{
|
481
|
+
"id": "/guid/9202a8c04000641f80000000017f93ec",
|
482
|
+
"link": "/music/track/artist",
|
483
|
+
"name": "Roxanne"
|
484
|
+
},
|
485
|
+
{
|
486
|
+
"id": "/guid/9202a8c04000641f800000000187d519",
|
487
|
+
"link": "/music/track/artist",
|
488
|
+
"name": "De Do Do"
|
489
|
+
},
|
490
|
+
{
|
491
|
+
"id": "/guid/9202a8c04000641f80000000018b6033",
|
492
|
+
"link": "/music/track/artist",
|
493
|
+
"name": "Every Breath You Take"
|
494
|
+
},
|
495
|
+
{
|
496
|
+
"id": "/guid/9202a8c04000641f80000000018dc967",
|
497
|
+
"link": "/music/track/artist",
|
498
|
+
"name": "Don't Stand So Close to Me"
|
499
|
+
},
|
500
|
+
{
|
501
|
+
"id": "/guid/9202a8c04000641f800000000196011e",
|
502
|
+
"link": "/music/track/artist",
|
503
|
+
"name": "Every Breath You Take"
|
504
|
+
},
|
505
|
+
{
|
506
|
+
"id": "/guid/9202a8c04000641f80000000019ad096",
|
507
|
+
"link": "/music/track/artist",
|
508
|
+
"name": "Every Little Thing She Does Is Magic"
|
509
|
+
},
|
510
|
+
{
|
511
|
+
"id": "/guid/9202a8c04000641f8000000001a3fbb1",
|
512
|
+
"link": "/music/track/artist",
|
513
|
+
"name": "Every Breath You Take"
|
514
|
+
},
|
515
|
+
{
|
516
|
+
"id": "/guid/9202a8c04000641f8000000001a51770",
|
517
|
+
"link": "/music/track/artist",
|
518
|
+
"name": "Driven to Tears"
|
519
|
+
},
|
520
|
+
{
|
521
|
+
"id": "/guid/9202a8c04000641f8000000001a6f0e0",
|
522
|
+
"link": "/music/track/artist",
|
523
|
+
"name": "How Stupid Mr. Bates"
|
524
|
+
},
|
525
|
+
{
|
526
|
+
"id": "/guid/9202a8c04000641f8000000001a6f0ee",
|
527
|
+
"link": "/music/track/artist",
|
528
|
+
"name": "I Burn For You"
|
529
|
+
},
|
530
|
+
{
|
531
|
+
"id": "/guid/9202a8c04000641f8000000001a6f118",
|
532
|
+
"link": "/music/track/artist",
|
533
|
+
"name": "A Kind of Loving"
|
534
|
+
},
|
535
|
+
{
|
536
|
+
"id": "/guid/9202a8c04000641f8000000001b3c3b5",
|
537
|
+
"link": "/music/track/artist",
|
538
|
+
"name": "Roxanne"
|
539
|
+
},
|
540
|
+
{
|
541
|
+
"id": "/guid/9202a8c04000641f8000000001b4384d",
|
542
|
+
"link": "/music/track/artist",
|
543
|
+
"name": "Nothing Achieving"
|
544
|
+
},
|
545
|
+
{
|
546
|
+
"id": "/guid/9202a8c04000641f8000000001b8d03f",
|
547
|
+
"link": "/music/track/artist",
|
548
|
+
"name": "Roxanne"
|
549
|
+
},
|
550
|
+
{
|
551
|
+
"id": "/guid/9202a8c04000641f8000000001bbfa9a",
|
552
|
+
"link": "/music/track/artist",
|
553
|
+
"name": "Fall Out"
|
554
|
+
},
|
555
|
+
{
|
556
|
+
"id": "/guid/9202a8c04000641f8000000001bf6fa1",
|
557
|
+
"link": "/music/track/artist",
|
558
|
+
"name": "Every Breath You Take"
|
559
|
+
},
|
560
|
+
{
|
561
|
+
"id": "/guid/9202a8c04000641f8000000001d17cc8",
|
562
|
+
"link": "/music/track/artist",
|
563
|
+
"name": "Message in a Bottle"
|
564
|
+
},
|
565
|
+
{
|
566
|
+
"id": "/guid/9202a8c04000641f8000000001d17e96",
|
567
|
+
"link": "/music/track/artist",
|
568
|
+
"name": "Every Breath You Take"
|
569
|
+
},
|
570
|
+
{
|
571
|
+
"id": "/guid/9202a8c04000641f8000000001d2d0b8",
|
572
|
+
"link": "/music/track/artist",
|
573
|
+
"name": "Message in a Bottle"
|
574
|
+
},
|
575
|
+
{
|
576
|
+
"id": "/guid/9202a8c04000641f8000000001d80ea3",
|
577
|
+
"link": "/music/track/artist",
|
578
|
+
"name": "King of Pain"
|
579
|
+
},
|
580
|
+
{
|
581
|
+
"id": "/guid/9202a8c04000641f8000000001d93d32",
|
582
|
+
"link": "/music/track/artist",
|
583
|
+
"name": "Every Little Thing She Does Is Magic"
|
584
|
+
},
|
585
|
+
{
|
586
|
+
"id": "/guid/9202a8c04000641f8000000001e3eb1f",
|
587
|
+
"link": "/music/track/artist",
|
588
|
+
"name": "Every Little Thing She Does Is Magic"
|
589
|
+
},
|
590
|
+
{
|
591
|
+
"id": "/guid/9202a8c04000641f8000000001ee5178",
|
592
|
+
"link": "/music/track/artist",
|
593
|
+
"name": "Message in a Bottle"
|
594
|
+
},
|
595
|
+
{
|
596
|
+
"id": "/guid/9202a8c04000641f8000000001f5a4ad",
|
597
|
+
"link": "/music/track/artist",
|
598
|
+
"name": "Every Breath You Take"
|
599
|
+
},
|
600
|
+
{
|
601
|
+
"id": "/guid/9202a8c04000641f8000000001f835c3",
|
602
|
+
"link": "/music/track/artist",
|
603
|
+
"name": "Every Breath You Take"
|
604
|
+
},
|
605
|
+
{
|
606
|
+
"id": "/guid/9202a8c04000641f8000000001ff4227",
|
607
|
+
"link": "/music/track/artist",
|
608
|
+
"name": "Every Breath You Take"
|
609
|
+
},
|
610
|
+
{
|
611
|
+
"id": "/guid/9202a8c04000641f800000000200cc5e",
|
612
|
+
"link": "/music/track/artist",
|
613
|
+
"name": "Every Little Thing She Does Is Magic"
|
614
|
+
},
|
615
|
+
{
|
616
|
+
"id": "/guid/9202a8c04000641f8000000002041324",
|
617
|
+
"link": "/music/track/artist",
|
618
|
+
"name": "Every Breath You Take"
|
619
|
+
},
|
620
|
+
{
|
621
|
+
"id": "/guid/9202a8c04000641f800000000206f5f8",
|
622
|
+
"link": "/music/track/artist",
|
623
|
+
"name": "Every Breath You Take"
|
624
|
+
},
|
625
|
+
{
|
626
|
+
"id": "/guid/9202a8c04000641f80000000021147c7",
|
627
|
+
"link": "/music/track/artist",
|
628
|
+
"name": "Message in a Bottle"
|
629
|
+
},
|
630
|
+
{
|
631
|
+
"id": "/guid/9202a8c04000641f80000000021147ce",
|
632
|
+
"link": "/music/track/artist",
|
633
|
+
"name": "Can't Stand Losing You"
|
634
|
+
},
|
635
|
+
{
|
636
|
+
"id": "/guid/9202a8c04000641f80000000021147dc",
|
637
|
+
"link": "/music/track/artist",
|
638
|
+
"name": "Every Breath You Take"
|
639
|
+
}
|
640
|
+
],
|
641
|
+
"/type/reflect/any_value": [
|
642
|
+
{
|
643
|
+
"link": "/type/object/name",
|
644
|
+
"value": "The Police"
|
645
|
+
},
|
646
|
+
{
|
647
|
+
"link": "/type/object/name",
|
648
|
+
"value": "The Police"
|
649
|
+
},
|
650
|
+
{
|
651
|
+
"link": "/type/object/name",
|
652
|
+
"value": "The Police"
|
653
|
+
},
|
654
|
+
{
|
655
|
+
"link": "/type/object/name",
|
656
|
+
"value": "The Police"
|
657
|
+
},
|
658
|
+
{
|
659
|
+
"link": "/type/object/name",
|
660
|
+
"value": "ポリス (バンド)"
|
661
|
+
},
|
662
|
+
{
|
663
|
+
"link": "/type/object/name",
|
664
|
+
"value": "The Police"
|
665
|
+
},
|
666
|
+
{
|
667
|
+
"link": "/music/artist/active_start",
|
668
|
+
"value": "1977-01"
|
669
|
+
},
|
670
|
+
{
|
671
|
+
"link": "/type/object/name",
|
672
|
+
"value": "The Police"
|
673
|
+
},
|
674
|
+
{
|
675
|
+
"link": "/type/object/name",
|
676
|
+
"value": "The Police"
|
677
|
+
},
|
678
|
+
{
|
679
|
+
"link": "/type/object/name",
|
680
|
+
"value": "The Police"
|
681
|
+
},
|
682
|
+
{
|
683
|
+
"link": "/type/object/name",
|
684
|
+
"value": "The Police"
|
685
|
+
},
|
686
|
+
{
|
687
|
+
"link": "/type/object/name",
|
688
|
+
"value": "הפוליס"
|
689
|
+
},
|
690
|
+
{
|
691
|
+
"link": "/common/topic/alias",
|
692
|
+
"value": "Sting & The Police"
|
693
|
+
},
|
694
|
+
{
|
695
|
+
"link": "/type/object/name",
|
696
|
+
"value": "เดอะ โพลิซ"
|
697
|
+
},
|
698
|
+
{
|
699
|
+
"link": "/music/artist/active_end",
|
700
|
+
"value": "1986"
|
701
|
+
}
|
702
|
+
],
|
703
|
+
"id": "/en/the_police",
|
704
|
+
"ken:type": [
|
705
|
+
{
|
706
|
+
"id": "/music/artist",
|
707
|
+
"name": "Musical Artist",
|
708
|
+
"properties": [
|
709
|
+
{
|
710
|
+
"expected_type": "/location/location",
|
711
|
+
"id": "/music/artist/origin",
|
712
|
+
"master_property": null,
|
713
|
+
"name": "Place Musical Career Began",
|
714
|
+
"reverse_property": null,
|
715
|
+
"unique": true
|
716
|
+
},
|
717
|
+
{
|
718
|
+
"expected_type": "/type/datetime",
|
719
|
+
"id": "/music/artist/active_start",
|
720
|
+
"master_property": null,
|
721
|
+
"name": "Active as Musical Artist (start)",
|
722
|
+
"reverse_property": null,
|
723
|
+
"unique": true
|
724
|
+
},
|
725
|
+
{
|
726
|
+
"expected_type": "/type/datetime",
|
727
|
+
"id": "/music/artist/active_end",
|
728
|
+
"master_property": null,
|
729
|
+
"name": "Active as Musical Artist (end)",
|
730
|
+
"reverse_property": null,
|
731
|
+
"unique": true
|
732
|
+
},
|
733
|
+
{
|
734
|
+
"expected_type": "/music/genre",
|
735
|
+
"id": "/music/artist/genre",
|
736
|
+
"master_property": null,
|
737
|
+
"name": "Musical Genres",
|
738
|
+
"reverse_property": "/music/genre/artists",
|
739
|
+
"unique": false
|
740
|
+
},
|
741
|
+
{
|
742
|
+
"expected_type": "/music/record_label",
|
743
|
+
"id": "/music/artist/label",
|
744
|
+
"master_property": null,
|
745
|
+
"name": "Record Labels",
|
746
|
+
"reverse_property": "/music/record_label/artist",
|
747
|
+
"unique": null
|
748
|
+
},
|
749
|
+
{
|
750
|
+
"expected_type": "/music/artist",
|
751
|
+
"id": "/music/artist/similar_artist",
|
752
|
+
"master_property": null,
|
753
|
+
"name": "Similar Artists",
|
754
|
+
"reverse_property": "/music/artist/artist_similar",
|
755
|
+
"unique": null
|
756
|
+
},
|
757
|
+
{
|
758
|
+
"expected_type": "/common/webpage",
|
759
|
+
"id": "/music/artist/home_page",
|
760
|
+
"master_property": null,
|
761
|
+
"name": "Musical Artist Home Page",
|
762
|
+
"reverse_property": null,
|
763
|
+
"unique": null
|
764
|
+
},
|
765
|
+
{
|
766
|
+
"expected_type": "/common/webpage",
|
767
|
+
"id": "/music/artist/acquire_webpage",
|
768
|
+
"master_property": null,
|
769
|
+
"name": "Web Page for Music",
|
770
|
+
"reverse_property": null,
|
771
|
+
"unique": null
|
772
|
+
},
|
773
|
+
{
|
774
|
+
"expected_type": "/music/album",
|
775
|
+
"id": "/music/artist/album",
|
776
|
+
"master_property": "/music/album/artist",
|
777
|
+
"name": "Albums",
|
778
|
+
"reverse_property": null,
|
779
|
+
"unique": null
|
780
|
+
},
|
781
|
+
{
|
782
|
+
"expected_type": "/music/recording_contribution",
|
783
|
+
"id": "/music/artist/contribution",
|
784
|
+
"master_property": "/music/recording_contribution/contributor",
|
785
|
+
"name": "Album Contributions",
|
786
|
+
"reverse_property": null,
|
787
|
+
"unique": null
|
788
|
+
},
|
789
|
+
{
|
790
|
+
"expected_type": "/music/track",
|
791
|
+
"id": "/music/artist/track",
|
792
|
+
"master_property": "/music/track/artist",
|
793
|
+
"name": "Tracks Recorded",
|
794
|
+
"reverse_property": null,
|
795
|
+
"unique": null
|
796
|
+
},
|
797
|
+
{
|
798
|
+
"expected_type": "/music/artist",
|
799
|
+
"id": "/music/artist/artist_similar",
|
800
|
+
"master_property": "/music/artist/similar_artist",
|
801
|
+
"name": "Similar Musical Artists",
|
802
|
+
"reverse_property": null,
|
803
|
+
"unique": null
|
804
|
+
},
|
805
|
+
{
|
806
|
+
"expected_type": "/music/track_contribution",
|
807
|
+
"id": "/music/artist/track_contributions",
|
808
|
+
"master_property": "/music/track_contribution/contributor",
|
809
|
+
"name": "Track Contributions",
|
810
|
+
"reverse_property": null,
|
811
|
+
"unique": null
|
812
|
+
},
|
813
|
+
{
|
814
|
+
"expected_type": "/music/instrument",
|
815
|
+
"id": "/music/artist/instruments_played",
|
816
|
+
"master_property": null,
|
817
|
+
"name": "Instruments Played",
|
818
|
+
"reverse_property": "/music/instrument/instrumentalists",
|
819
|
+
"unique": null
|
820
|
+
},
|
821
|
+
{
|
822
|
+
"expected_type": "/music/voice",
|
823
|
+
"id": "/music/artist/vocal_range",
|
824
|
+
"master_property": null,
|
825
|
+
"name": "Vocal Range",
|
826
|
+
"reverse_property": "/music/voice/singers",
|
827
|
+
"unique": null
|
828
|
+
},
|
829
|
+
{
|
830
|
+
"expected_type": "/music/concert_tour",
|
831
|
+
"id": "/music/artist/concert_tours",
|
832
|
+
"master_property": "/music/concert_tour/artist",
|
833
|
+
"name": "Concert Tours",
|
834
|
+
"reverse_property": null,
|
835
|
+
"unique": false
|
836
|
+
}
|
837
|
+
]
|
838
|
+
},
|
839
|
+
{
|
840
|
+
"id": "/common/topic",
|
841
|
+
"name": "Topic",
|
842
|
+
"properties": [
|
843
|
+
{
|
844
|
+
"expected_type": "/type/text",
|
845
|
+
"id": "/common/topic/alias",
|
846
|
+
"master_property": null,
|
847
|
+
"name": "Also known as",
|
848
|
+
"reverse_property": null,
|
849
|
+
"unique": null
|
850
|
+
},
|
851
|
+
{
|
852
|
+
"expected_type": "/common/document",
|
853
|
+
"id": "/common/topic/article",
|
854
|
+
"master_property": null,
|
855
|
+
"name": "article",
|
856
|
+
"reverse_property": null,
|
857
|
+
"unique": null
|
858
|
+
},
|
859
|
+
{
|
860
|
+
"expected_type": "/common/image",
|
861
|
+
"id": "/common/topic/image",
|
862
|
+
"master_property": null,
|
863
|
+
"name": "image",
|
864
|
+
"reverse_property": "/common/image/appears_in_topic_gallery",
|
865
|
+
"unique": null
|
866
|
+
},
|
867
|
+
{
|
868
|
+
"expected_type": "/common/webpage",
|
869
|
+
"id": "/common/topic/webpage",
|
870
|
+
"master_property": null,
|
871
|
+
"name": "Web Link(s)",
|
872
|
+
"reverse_property": null,
|
873
|
+
"unique": null
|
874
|
+
}
|
875
|
+
]
|
876
|
+
},
|
877
|
+
{
|
878
|
+
"id": "/music/producer",
|
879
|
+
"name": "Record Producer",
|
880
|
+
"properties": [
|
881
|
+
{
|
882
|
+
"expected_type": "/music/album",
|
883
|
+
"id": "/music/producer/albums_produced",
|
884
|
+
"master_property": "/music/album/producer",
|
885
|
+
"name": "Albums Produced",
|
886
|
+
"reverse_property": null,
|
887
|
+
"unique": null
|
888
|
+
},
|
889
|
+
{
|
890
|
+
"expected_type": "/music/track",
|
891
|
+
"id": "/music/producer/tracks_produced",
|
892
|
+
"master_property": "/music/track/producer",
|
893
|
+
"name": "Tracks produced",
|
894
|
+
"reverse_property": null,
|
895
|
+
"unique": false
|
896
|
+
}
|
897
|
+
]
|
898
|
+
},
|
899
|
+
{
|
900
|
+
"id": "/music/musical_group",
|
901
|
+
"name": "Musical Group",
|
902
|
+
"properties": [{
|
903
|
+
"expected_type": "/music/group_membership",
|
904
|
+
"id": "/music/musical_group/member",
|
905
|
+
"master_property": "/music/group_membership/group",
|
906
|
+
"name": "Members Of Musical Group",
|
907
|
+
"reverse_property": null,
|
908
|
+
"unique": null
|
909
|
+
}]
|
910
|
+
},
|
911
|
+
{
|
912
|
+
"id": "/broadcast/artist",
|
913
|
+
"name": "Broadcast Artist",
|
914
|
+
"properties": [{
|
915
|
+
"expected_type": "/broadcast/content",
|
916
|
+
"id": "/broadcast/artist/content",
|
917
|
+
"master_property": "/broadcast/content/artist",
|
918
|
+
"name": "Content",
|
919
|
+
"reverse_property": null,
|
920
|
+
"unique": null
|
921
|
+
}]
|
922
|
+
},
|
923
|
+
{
|
924
|
+
"id": "/award/award_winner",
|
925
|
+
"name": "Award Winner",
|
926
|
+
"properties": [{
|
927
|
+
"expected_type": "/award/award_honor",
|
928
|
+
"id": "/award/award_winner/awards_won",
|
929
|
+
"master_property": "/award/award_honor/award_winner",
|
930
|
+
"name": "Awards Won",
|
931
|
+
"reverse_property": null,
|
932
|
+
"unique": null
|
933
|
+
}]
|
934
|
+
}
|
935
|
+
],
|
936
|
+
"name": "The Police"
|
937
|
+
}
|