qa 4.0.0 → 4.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/app/controllers/qa/linked_data_terms_controller.rb +30 -9
- data/app/controllers/qa/terms_controller.rb +3 -2
- data/app/models/qa/linked_data/config/context_property_map.rb +6 -25
- data/app/services/qa/iri_template_service.rb +32 -24
- data/app/services/qa/linked_data/authority_service.rb +8 -0
- data/app/services/qa/linked_data/authority_url_service.rb +27 -8
- data/app/services/qa/linked_data/deep_sort_service.rb +3 -2
- data/app/services/qa/linked_data/graph_service.rb +13 -0
- data/app/services/qa/linked_data/language_service.rb +12 -0
- data/app/services/qa/linked_data/language_sort_service.rb +7 -2
- data/app/services/qa/linked_data/ldpath_service.rb +40 -0
- data/app/services/qa/linked_data/mapper/graph_ldpath_mapper_service.rb +49 -0
- data/app/services/qa/linked_data/mapper/graph_mapper_service.rb +3 -11
- data/app/services/qa/linked_data/mapper/graph_predicate_mapper_service.rb +40 -0
- data/app/services/qa/linked_data/mapper/search_results_mapper_service.rb +58 -11
- data/app/services/qa/linked_data/mapper/term_results_mapper_service.rb +80 -0
- data/config/authorities/linked_data/loc.json +13 -7
- data/config/authorities/linked_data/oclc_fast.json +13 -8
- data/lib/generators/qa/discogs/USAGE +10 -0
- data/lib/generators/qa/discogs/discogs_generator.rb +12 -0
- data/lib/generators/qa/discogs/templates/config/discogs-formats.yml +346 -0
- data/lib/generators/qa/discogs/templates/config/discogs-genres.yml +627 -0
- data/lib/generators/qa/install/templates/config/initializers/qa.rb +4 -0
- data/lib/qa.rb +6 -0
- data/lib/qa/authorities.rb +2 -0
- data/lib/qa/authorities/discogs.rb +28 -0
- data/lib/qa/authorities/discogs/discogs_instance_builder.rb +145 -0
- data/lib/qa/authorities/discogs/discogs_translation.rb +126 -0
- data/lib/qa/authorities/discogs/discogs_utils.rb +89 -0
- data/lib/qa/authorities/discogs/discogs_works_builder.rb +153 -0
- data/lib/qa/authorities/discogs/generic_authority.rb +151 -0
- data/lib/qa/authorities/discogs_subauthority.rb +9 -0
- data/lib/qa/authorities/linked_data/config.rb +7 -3
- data/lib/qa/authorities/linked_data/config/search_config.rb +99 -11
- data/lib/qa/authorities/linked_data/config/term_config.rb +112 -8
- data/lib/qa/authorities/linked_data/find_term.rb +154 -84
- data/lib/qa/authorities/linked_data/search_query.rb +76 -13
- data/lib/qa/configuration.rb +8 -0
- data/lib/qa/version.rb +1 -1
- data/spec/controllers/linked_data_terms_controller_spec.rb +151 -30
- data/spec/controllers/terms_controller_spec.rb +4 -0
- data/spec/features/linked_data/language_spec.rb +298 -0
- data/spec/fixtures/authorities/linked_data/lod_full_config.json +21 -5
- data/spec/fixtures/authorities/linked_data/lod_lang_defaults.json +4 -4
- data/spec/fixtures/authorities/linked_data/lod_lang_multi_defaults.json +4 -4
- data/spec/fixtures/authorities/linked_data/lod_lang_no_defaults.json +4 -5
- data/spec/fixtures/authorities/linked_data/lod_lang_param.json +4 -4
- data/spec/fixtures/authorities/linked_data/lod_term_uri_param_config.json +1 -1
- data/spec/fixtures/discogs-find-response-json.json +1 -0
- data/spec/fixtures/discogs-find-response-jsonld-master.json +1 -0
- data/spec/fixtures/discogs-find-response-jsonld-release.json +1 -0
- data/spec/fixtures/discogs-id-matches-master.json +1 -0
- data/spec/fixtures/discogs-id-matches-release.json +1 -0
- data/spec/fixtures/discogs-id-not-found-master.json +1 -0
- data/spec/fixtures/discogs-id-not-found-release.json +1 -0
- data/spec/fixtures/discogs-search-response-no-auth.json +1 -0
- data/spec/fixtures/discogs-search-response-no-subauth.json +1 -0
- data/spec/fixtures/discogs-search-response-subauth.json +1 -0
- data/spec/fixtures/lod_lang_search_enesfrde.rdf.xml +60 -0
- data/spec/fixtures/lod_lang_search_sv.rdf.xml +42 -0
- data/spec/fixtures/lod_loc_term_found.rdf.xml +5 -0
- data/spec/lib/authorities/discogs/generic_authority_spec.rb +235 -0
- data/spec/lib/authorities/discogs_spec.rb +17 -0
- data/spec/lib/authorities/linked_data/config_spec.rb +68 -5
- data/spec/lib/authorities/linked_data/find_term_spec.rb +298 -3
- data/spec/lib/authorities/linked_data/generic_authority_spec.rb +46 -485
- data/spec/lib/authorities/linked_data/search_config_spec.rb +154 -3
- data/spec/lib/authorities/linked_data/search_query_spec.rb +240 -3
- data/spec/lib/authorities/linked_data/term_config_spec.rb +193 -5
- data/spec/lib/configuration_spec.rb +18 -0
- data/spec/models/linked_data/config/context_property_map_spec.rb +3 -31
- data/spec/services/iri_template_service_spec.rb +54 -12
- data/spec/{lib/authorities → services}/linked_data/authority_service_spec.rb +47 -0
- data/spec/services/linked_data/language_service_spec.rb +52 -11
- data/spec/services/linked_data/ldpath_service_spec.rb +61 -0
- data/spec/services/linked_data/mapper/graph_ldpath_mapper_service_spec.rb +118 -0
- data/spec/services/linked_data/mapper/graph_predicate_mapper_service_spec.rb +110 -0
- data/spec/services/linked_data/mapper/term_results_mapper_service_spec.rb +94 -0
- data/spec/spec_helper.rb +1 -1
- data/spec/support/matchers/include_hash.rb +5 -0
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +4 -0
- metadata +73 -5
- data/lib/qa/authorities/linked_data/rdf_helper.rb +0 -49
@@ -0,0 +1,627 @@
|
|
1
|
+
Acid:
|
2
|
+
label: Psychedelic rock music
|
3
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027024
|
4
|
+
AcidHouse:
|
5
|
+
label: Psychedelic rock music
|
6
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027024
|
7
|
+
AcidRock:
|
8
|
+
label: Psychedelic rock music
|
9
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027024
|
10
|
+
Afro-CubanJazz:
|
11
|
+
label: Latin jazz
|
12
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026903
|
13
|
+
Afrobeat:
|
14
|
+
label: Afrobeat
|
15
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2015026088
|
16
|
+
AlternativeRock:
|
17
|
+
label: Alternative rock music
|
18
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026632
|
19
|
+
Ambient:
|
20
|
+
label: Ambient sounds
|
21
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2011026039
|
22
|
+
AndalusianClassical:
|
23
|
+
label: Ambient music (Electronica)
|
24
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027185
|
25
|
+
ArtRock:
|
26
|
+
label: Progressive rock (Music)
|
27
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027018
|
28
|
+
Bachata:
|
29
|
+
label: Bachata
|
30
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026643
|
31
|
+
BangladeshiClassical:
|
32
|
+
label: Art music
|
33
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026639
|
34
|
+
Barbershop:
|
35
|
+
label: Barbershop (Music)
|
36
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026654
|
37
|
+
Beatbox:
|
38
|
+
label: Beatboxing
|
39
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026658
|
40
|
+
Bhangra:
|
41
|
+
label: Bhangra (Music)
|
42
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026660
|
43
|
+
BlackMetal:
|
44
|
+
label: Black metal (Music)
|
45
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026663
|
46
|
+
Bluegrass:
|
47
|
+
label: Bluegrass music
|
48
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026664
|
49
|
+
Blues:
|
50
|
+
label: Blues (Music)
|
51
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026665
|
52
|
+
BluesRock:
|
53
|
+
label: Blues-rock music
|
54
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026666
|
55
|
+
Boogie:
|
56
|
+
label: Boogie woogie (Music)
|
57
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026669
|
58
|
+
BoogieWoogie:
|
59
|
+
label: Boogie woogie (Music)
|
60
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026669
|
61
|
+
Bop:
|
62
|
+
label: Bop (Music)
|
63
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026670
|
64
|
+
BossaNova:
|
65
|
+
label: Bossa nova (Music)
|
66
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026671
|
67
|
+
Bossanova:
|
68
|
+
label: Bossa nova (Music)
|
69
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026671
|
70
|
+
Bounce:
|
71
|
+
label: Bounce (Music)
|
72
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026672
|
73
|
+
Cajun:
|
74
|
+
label: Cajun music
|
75
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026679
|
76
|
+
Calypso:
|
77
|
+
label: Calypso (Music)
|
78
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026680
|
79
|
+
CambodianClassical:
|
80
|
+
label: Art music
|
81
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026639
|
82
|
+
Carnatic:
|
83
|
+
label: Carnatic music
|
84
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026693
|
85
|
+
Celtic:
|
86
|
+
label: Celtic music
|
87
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026697
|
88
|
+
Chamamé:
|
89
|
+
label: Chamamé (Music)
|
90
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026703
|
91
|
+
Champeta:
|
92
|
+
label: Champeta (Music)
|
93
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026705
|
94
|
+
Children's:
|
95
|
+
label: Children's sound recordings
|
96
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2011026126
|
97
|
+
ChineseClassical:
|
98
|
+
label: Art music
|
99
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026639
|
100
|
+
Chutney:
|
101
|
+
label: Chutney (Music)
|
102
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026717
|
103
|
+
Classical:
|
104
|
+
label: Art music
|
105
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026639
|
106
|
+
Conjunto:
|
107
|
+
label: Norteño (Music)
|
108
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026969
|
109
|
+
ContemporaryR&B:
|
110
|
+
label: Rhythm and blues music
|
111
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027052
|
112
|
+
CoolJazz:
|
113
|
+
label: Cool Jazz
|
114
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026730
|
115
|
+
CountryBlues:
|
116
|
+
label: Country music
|
117
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026739
|
118
|
+
Country:
|
119
|
+
label: Country music
|
120
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026739
|
121
|
+
CountryRock:
|
122
|
+
label: Country rock music
|
123
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026740
|
124
|
+
Crunk:
|
125
|
+
label: Crunk (Music)
|
126
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026746
|
127
|
+
Cumbia:
|
128
|
+
label: Cumbia (Music)
|
129
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026749
|
130
|
+
Dancehall:
|
131
|
+
label: Dancehall (Music)
|
132
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026754
|
133
|
+
Dangdut:
|
134
|
+
label: Dangdut
|
135
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026755
|
136
|
+
Darkwave:
|
137
|
+
label: Darkwave (Music)
|
138
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026759
|
139
|
+
DeathMetal:
|
140
|
+
label: Death metal (Music)
|
141
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026761
|
142
|
+
DeepTechno:
|
143
|
+
label: Techno (Music)
|
144
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027130
|
145
|
+
Dialogue:
|
146
|
+
label: Dialogues (Music)
|
147
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026765
|
148
|
+
Disco:
|
149
|
+
label: Disco (Music)
|
150
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026768
|
151
|
+
DiscoPolo:
|
152
|
+
label: Disco (Music)
|
153
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026768
|
154
|
+
Dixieland:
|
155
|
+
label: Dixieland music
|
156
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026770
|
157
|
+
DooWop:
|
158
|
+
label: Doo-wop
|
159
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026773
|
160
|
+
DoomMetal:
|
161
|
+
label: Doom metal (Music)
|
162
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026774
|
163
|
+
Downtempo:
|
164
|
+
label: Ambient music (Electronica)
|
165
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027185
|
166
|
+
DrumnBass:
|
167
|
+
label: Jungle (Music)
|
168
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026887
|
169
|
+
Dub:
|
170
|
+
label: Dub (Music)
|
171
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026778
|
172
|
+
Dubstep:
|
173
|
+
label: Dubstep (Music)
|
174
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026779
|
175
|
+
EBM:
|
176
|
+
label: Industrial dance music
|
177
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2017026062
|
178
|
+
Electronic:
|
179
|
+
label: Electronic dance music
|
180
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027153
|
181
|
+
Emo:
|
182
|
+
label: Emo (Music)
|
183
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026784
|
184
|
+
Enka:
|
185
|
+
label: Enka
|
186
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026785
|
187
|
+
FieldRecording:
|
188
|
+
label: Field recordings
|
189
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2011026253
|
190
|
+
Flamenco:
|
191
|
+
label: Flamenco music
|
192
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026806
|
193
|
+
Folk:
|
194
|
+
label: Folk music
|
195
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026809
|
196
|
+
FolkRock:
|
197
|
+
label: Folk-rock music
|
198
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026810
|
199
|
+
Forró:
|
200
|
+
label: Forró (Music)
|
201
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026812
|
202
|
+
FreeJazz:
|
203
|
+
label: Free jazz
|
204
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026816
|
205
|
+
Funk:
|
206
|
+
label: Funk (Music)
|
207
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026823
|
208
|
+
Fusion:
|
209
|
+
label: Jazz-rock (Music)
|
210
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026880
|
211
|
+
FutureJazz:
|
212
|
+
label: Jazz-rock (Music)
|
213
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026880
|
214
|
+
Gabber:
|
215
|
+
label: Gabba (Music)
|
216
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026825
|
217
|
+
Gagaku:
|
218
|
+
label: Gagaku
|
219
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026826
|
220
|
+
Gangsta:
|
221
|
+
label: Gangsta rap (Music)
|
222
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026830
|
223
|
+
GarageRock:
|
224
|
+
label: Garage rock music
|
225
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026831
|
226
|
+
Ghettotech:
|
227
|
+
label: Ghettotech (Music)
|
228
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026834
|
229
|
+
Glam:
|
230
|
+
label: Glam rock (Music)
|
231
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2018026029
|
232
|
+
Glitch:
|
233
|
+
label: Glitch music
|
234
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026836
|
235
|
+
Go-Go:
|
236
|
+
label: Go-go (Music)
|
237
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026837
|
238
|
+
GoaTrance:
|
239
|
+
label: Trance (House music)
|
240
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027143
|
241
|
+
GogoGo-go:
|
242
|
+
label: Music)
|
243
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026837
|
244
|
+
Gospel:
|
245
|
+
label: Gospel music
|
246
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026839
|
247
|
+
GothRock:
|
248
|
+
label: Gothic rock music
|
249
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026840
|
250
|
+
Grindcore:
|
251
|
+
label: Grindcore (Music)
|
252
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2015026097
|
253
|
+
Grunge:
|
254
|
+
label: Grunge music
|
255
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026844
|
256
|
+
HardBop:
|
257
|
+
label: Bop (Music)
|
258
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026670
|
259
|
+
HardTechno:
|
260
|
+
label: Techno (Music)
|
261
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027130
|
262
|
+
HardTrance:
|
263
|
+
label: Trance (House music)
|
264
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027143
|
265
|
+
Hardcore:
|
266
|
+
label: Hardcore (Music)
|
267
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026850
|
268
|
+
HeavyMetal:
|
269
|
+
label: Heavy metal (Music)
|
270
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026854
|
271
|
+
Highlife:
|
272
|
+
label: Highlife (Music)
|
273
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026858
|
274
|
+
Hillbilly:
|
275
|
+
label: Country music
|
276
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026739
|
277
|
+
Hillbilly:
|
278
|
+
label: Old-time music
|
279
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026974
|
280
|
+
Hindustani:
|
281
|
+
label: Hindustani music
|
282
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026859
|
283
|
+
HipHop:
|
284
|
+
label: Hip-hop (Music)
|
285
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2017026157
|
286
|
+
HonkyTonk:
|
287
|
+
label: Honky-tonk music
|
288
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026863
|
289
|
+
House:
|
290
|
+
label: House music
|
291
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026865
|
292
|
+
IDM:
|
293
|
+
label: Intelligent dance music
|
294
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026875
|
295
|
+
IndianClassical:
|
296
|
+
label: Art music
|
297
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026639
|
298
|
+
IndiePop:
|
299
|
+
label: Indie pop music
|
300
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2015026065
|
301
|
+
IndieRock:
|
302
|
+
label: Alternative rock music
|
303
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026632
|
304
|
+
Industrial:
|
305
|
+
label: Industrial music
|
306
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026874
|
307
|
+
Instrumental:
|
308
|
+
label: Songs without words (Instrumental music)
|
309
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027104
|
310
|
+
Interview:
|
311
|
+
label: Interviews (Sound recordings)
|
312
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2015026013
|
313
|
+
ItaloHouse:
|
314
|
+
label: Italo disco (Music)
|
315
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2017026149
|
316
|
+
Italo-Disco:
|
317
|
+
label: Italo disco (Music)
|
318
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2017026149
|
319
|
+
Jazz:
|
320
|
+
label: Jazz
|
321
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026879
|
322
|
+
Jazz-Rock:
|
323
|
+
label: Jazz-rock (Music)
|
324
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026880
|
325
|
+
Jungle:
|
326
|
+
label: Jungle (Music)
|
327
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026887
|
328
|
+
Karaoke:
|
329
|
+
label: Karaoke
|
330
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026892
|
331
|
+
Keroncong:
|
332
|
+
label: Keroncong
|
333
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026894
|
334
|
+
Klezmer:
|
335
|
+
label: Klezmer music
|
336
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026896
|
337
|
+
Krautrock:
|
338
|
+
label: Krautrock (Music)
|
339
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2015026098
|
340
|
+
Kwaito:
|
341
|
+
label: Kwaito
|
342
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2015026071
|
343
|
+
Latin:
|
344
|
+
label: Latin pop
|
345
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026904
|
346
|
+
LatinJazz:
|
347
|
+
label: Latin jazz
|
348
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026903
|
349
|
+
Lo-Fi:
|
350
|
+
label: Lo-fi (Rock music)
|
351
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2016026013
|
352
|
+
Lounge:
|
353
|
+
label: Lounge music
|
354
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026911
|
355
|
+
Maloya:
|
356
|
+
label: Maloya (Music)
|
357
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026919
|
358
|
+
Marches:
|
359
|
+
label: Marches (Music)
|
360
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026922
|
361
|
+
Mariachi:
|
362
|
+
label: Mariachi (Music)
|
363
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026923
|
364
|
+
MathRock:
|
365
|
+
label: Math rock (Music)
|
366
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026927
|
367
|
+
Mbalax:
|
368
|
+
label: Mbalax
|
369
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026929
|
370
|
+
MelodicDeathMetal:
|
371
|
+
label: Death metal (Music)
|
372
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026761
|
373
|
+
Military:
|
374
|
+
label: Military music
|
375
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026936
|
376
|
+
Minimal:
|
377
|
+
label: Minimal music
|
378
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026938
|
379
|
+
MinimalTechno:
|
380
|
+
label: Techno (Music)
|
381
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027130
|
382
|
+
ModernClassical:
|
383
|
+
label: Art music
|
384
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026639
|
385
|
+
MouthMusic:
|
386
|
+
label: Mouth music
|
387
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026951
|
388
|
+
MusicHall:
|
389
|
+
label: Dancehall (Music)
|
390
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026754
|
391
|
+
MusiqueConcrète:
|
392
|
+
label: Musique concrète
|
393
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026958
|
394
|
+
eo-Classical:
|
395
|
+
label: Art music
|
396
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026639
|
397
|
+
NerdcoreTechno:
|
398
|
+
label: Techno (Music)
|
399
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027130
|
400
|
+
NewAge:
|
401
|
+
label: New Age music
|
402
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026962
|
403
|
+
NewWave:
|
404
|
+
label: New wave music
|
405
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026963
|
406
|
+
NoWave:
|
407
|
+
label: No wave (Music)
|
408
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026966
|
409
|
+
Noise:
|
410
|
+
label: Noise music
|
411
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026967
|
412
|
+
Norteño:
|
413
|
+
label: Norteño (Music)
|
414
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026969
|
415
|
+
Novelty:
|
416
|
+
label: Novelty songs
|
417
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026970
|
418
|
+
Oi:
|
419
|
+
label: Oi music
|
420
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026972
|
421
|
+
Opera:
|
422
|
+
label: Operas
|
423
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026976
|
424
|
+
Operetta:
|
425
|
+
label: Operas
|
426
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026976
|
427
|
+
OttomanClassical:
|
428
|
+
label: Art music
|
429
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026639
|
430
|
+
Parody:
|
431
|
+
label: Musical parodies
|
432
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026955
|
433
|
+
PersianClassical:
|
434
|
+
label: Art music
|
435
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026639
|
436
|
+
PhilippineClassical:
|
437
|
+
label: Art music
|
438
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026639
|
439
|
+
Poetry:
|
440
|
+
label: Poetry readings (Sound recordings)
|
441
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2013025040
|
442
|
+
Polka:
|
443
|
+
label: Polka-mazurkas (Music)
|
444
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027003
|
445
|
+
Pop:
|
446
|
+
label: Popular music
|
447
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027009
|
448
|
+
PowerMetal:
|
449
|
+
label: Power metal (Music)
|
450
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027011
|
451
|
+
ProgRock:
|
452
|
+
label: Progressive rock (Music)
|
453
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027018
|
454
|
+
ProgressiveMetal:
|
455
|
+
label: Progressive metal (Music)
|
456
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027016
|
457
|
+
Psychedelic:
|
458
|
+
label: Psychedelic rock music
|
459
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027024
|
460
|
+
PsychedelicRock:
|
461
|
+
label: Psychedelic rock music
|
462
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027024
|
463
|
+
Punk:
|
464
|
+
label: Punk rock music
|
465
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027025
|
466
|
+
Ragga:
|
467
|
+
label: Ragga (Music)
|
468
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027033
|
469
|
+
Ragtime:
|
470
|
+
label: Ragtime music
|
471
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027034
|
472
|
+
Rapso:
|
473
|
+
label: Rapso
|
474
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027039
|
475
|
+
Rebetiko:
|
476
|
+
label: Rebetika
|
477
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027040
|
478
|
+
Reggae:
|
479
|
+
label: Reggae music
|
480
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027045
|
481
|
+
ReggaeGospel:
|
482
|
+
label: Reggae music
|
483
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027045
|
484
|
+
Reggae-Pop:
|
485
|
+
label: Reggae music
|
486
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027045
|
487
|
+
Reggaeton :
|
488
|
+
label: Reggae music
|
489
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027045
|
490
|
+
Religious:
|
491
|
+
label: Sacred music
|
492
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027062
|
493
|
+
Rhythm&Blues:
|
494
|
+
label: Rhythm and blues music
|
495
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027052
|
496
|
+
RnB/Swing:
|
497
|
+
label: Rhythm and blues music
|
498
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027052
|
499
|
+
Rock:
|
500
|
+
label: Rock music
|
501
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2011026540
|
502
|
+
Rock&Roll:
|
503
|
+
label: Rock music
|
504
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027054
|
505
|
+
RockOpera:
|
506
|
+
label: Rock operas
|
507
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2017026056
|
508
|
+
Rockabilly:
|
509
|
+
label: Rockabilly music
|
510
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027055
|
511
|
+
Rocksteady:
|
512
|
+
label: Rocksteady (Music)
|
513
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027056
|
514
|
+
RootsReggae:
|
515
|
+
label: Reggae music
|
516
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027045
|
517
|
+
RuneSinging:
|
518
|
+
label: Rune songs
|
519
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027060
|
520
|
+
Salsa:
|
521
|
+
label: Salsa (Music)
|
522
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027066
|
523
|
+
SeaShanties:
|
524
|
+
label: Sea shanties
|
525
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027078
|
526
|
+
Shoegaze:
|
527
|
+
label: Shoegaze (Music)
|
528
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2016026014
|
529
|
+
Ska:
|
530
|
+
label: Ska (Music)
|
531
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027095
|
532
|
+
Skiffle:
|
533
|
+
label: Skiffle
|
534
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027096
|
535
|
+
SludgeMetal:
|
536
|
+
label: Sludge metal (Music)
|
537
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027097
|
538
|
+
Soca:
|
539
|
+
label: Soca (Music)
|
540
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027098
|
541
|
+
SoftRock:
|
542
|
+
label: Folk-rock music
|
543
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026810
|
544
|
+
Soukous:
|
545
|
+
label: Soukous (Music)
|
546
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027105
|
547
|
+
Soul:
|
548
|
+
label: Soul music
|
549
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027106
|
550
|
+
SoundArt:
|
551
|
+
label: Sound art
|
552
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2017026022
|
553
|
+
SoundCollage:
|
554
|
+
label: Sound art
|
555
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2017026022
|
556
|
+
SoundPoetry:
|
557
|
+
label: Sound poetry
|
558
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026550
|
559
|
+
Soundtrack:
|
560
|
+
label: Film soundtracks
|
561
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2011026262
|
562
|
+
Speech:
|
563
|
+
label: Speeches
|
564
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2011026363
|
565
|
+
SpeedMetal:
|
566
|
+
label: Thrash metal (Music)
|
567
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027138
|
568
|
+
Stage&Screen:
|
569
|
+
label: Musical theatre
|
570
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2016026057
|
571
|
+
Stage&Screen2:
|
572
|
+
label: Musical films
|
573
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2011026414
|
574
|
+
Surf:
|
575
|
+
label: Surf music
|
576
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027117
|
577
|
+
SwampPop:
|
578
|
+
label: Swamp pop music
|
579
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027118
|
580
|
+
Swing:
|
581
|
+
label: Swing (Music)
|
582
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027119
|
583
|
+
Synth-pop:
|
584
|
+
label: Synthpop (Music)
|
585
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027122
|
586
|
+
Techno:
|
587
|
+
label: Techno (Music)
|
588
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027130
|
589
|
+
Tejano:
|
590
|
+
label: Tejano music
|
591
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027131
|
592
|
+
ThaiClassical:
|
593
|
+
label: Art music
|
594
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014026639
|
595
|
+
Theme:
|
596
|
+
label: Variations (Music)
|
597
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027156
|
598
|
+
Thrash:
|
599
|
+
label: Thrash metal (Music)
|
600
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027138
|
601
|
+
Timba:
|
602
|
+
label: Timba (Music)
|
603
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027139
|
604
|
+
Trance:
|
605
|
+
label: Trance (House music)
|
606
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027143
|
607
|
+
TripHop:
|
608
|
+
label: Trip-hop (Music)
|
609
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027146
|
610
|
+
Vallenato:
|
611
|
+
label: Vallenato
|
612
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027155
|
613
|
+
WesternSwing:
|
614
|
+
label: Western swing (Music)
|
615
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027169
|
616
|
+
Zamba:
|
617
|
+
label: Zamba (Music)
|
618
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027174
|
619
|
+
Zouk:
|
620
|
+
label: Zouk (Music)
|
621
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027176
|
622
|
+
Zydeco:
|
623
|
+
label: Zydeco music
|
624
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027177
|
625
|
+
Éntekhno:
|
626
|
+
label: Techno (Music)
|
627
|
+
uri: http://id.loc.gov/authorities/genreForms/gf2014027130
|