qa_server 7.5.1 → 7.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop_fixme.yml +3 -2
  3. data/.travis.yml +1 -1
  4. data/CHANGELOG.md +28 -0
  5. data/app/assets/stylesheets/qa_server/_check-status.scss +4 -0
  6. data/app/assets/stylesheets/qa_server/_monitor-status.scss +45 -0
  7. data/app/cache_processors/concerns/qa_server/cache_keys.rb +1 -0
  8. data/app/cache_processors/qa_server/scenario_history_cache.rb +19 -1
  9. data/app/controllers/qa_server/monitor_status_controller.rb +39 -9
  10. data/app/models/qa_server/scenario_run_history.rb +12 -3
  11. data/app/models/qa_server/search_scenario.rb +6 -0
  12. data/app/presenters/qa_server/check_status_presenter.rb +1 -1
  13. data/app/presenters/qa_server/monitor_status/current_status_presenter.rb +9 -8
  14. data/app/presenters/qa_server/monitor_status/history_presenter.rb +55 -4
  15. data/app/presenters/qa_server/monitor_status/history_up_down_presenter.rb +58 -0
  16. data/app/presenters/qa_server/monitor_status_presenter.rb +7 -2
  17. data/app/services/qa_server/history_up_down_service.rb +103 -0
  18. data/app/services/qa_server/time_service.rb +6 -0
  19. data/app/views/qa_server/check_status/index.html.erb +7 -6
  20. data/app/views/qa_server/monitor_status/_test_summary.html.erb +1 -1
  21. data/app/views/qa_server/monitor_status/_test_up_down_connection_history.html.erb +30 -0
  22. data/app/views/qa_server/monitor_status/index.html.erb +2 -1
  23. data/config/locales/qa_server.en.yml +8 -7
  24. data/lib/generators/qa_server/templates/config/authorities/linked_data/getty_tgn_ld4l_cache.json +24 -14
  25. data/lib/generators/qa_server/templates/config/authorities/linked_data/getty_ulan_ld4l_cache.json +104 -8
  26. data/lib/generators/qa_server/templates/config/authorities/linked_data/locnames_rwo2_ld4l_cache.json +4 -4
  27. data/lib/generators/qa_server/templates/config/authorities/linked_data/locnames_rwo3_ld4l_cache.json +4 -4
  28. data/lib/generators/qa_server/templates/config/authorities/linked_data/locnames_rwo_ld4l_cache.json +4 -4
  29. data/lib/generators/qa_server/templates/config/authorities/linked_data/locvocabs_ld4l_cache.json +1 -1
  30. data/lib/generators/qa_server/templates/config/authorities/linked_data/mesh_nlm_ld4l_cache.json +1 -0
  31. data/lib/generators/qa_server/templates/config/authorities/linked_data/oclcfast_direct.json +4 -0
  32. data/lib/generators/qa_server/templates/config/authorities/linked_data/oclcfast_ld4l_cache.json +1 -0
  33. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/cerl_ld4l_cache_validation.yml +3 -3
  34. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/geonames_ld4l_cache_validation.yml +2 -5
  35. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/getty_aat_ld4l_cache_validation.yml +0 -3
  36. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/getty_tgn_ld4l_cache_validation.yml +3 -7
  37. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/getty_ulan_ld4l_cache_validation.yml +5 -5
  38. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locdemographics_ld4l_cache_validation.yml +0 -4
  39. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locgenres_ld4l_cache_validation.yml +0 -9
  40. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locnames_ld4l_cache_validation.yml +1 -7
  41. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locnames_rwo2_ld4l_cache_validation.yml +78 -0
  42. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locnames_rwo3_ld4l_cache_validation.yml +73 -0
  43. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locnames_rwo_ld4l_cache_validation.yml +11 -11
  44. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locsubjects_ld4l_cache_validation.yml +1 -3
  45. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locvocabs_ld4l_cache_validation.yml +246 -0
  46. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/mesh_nlm_ld4l_cache_validation.yml +8 -5
  47. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/oclcfast_direct_validation.yml +13 -7
  48. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/oclcfast_ld4l_cache_validation.yml +19 -3
  49. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/rda_registry_ld4l_cache_validation.yml +0 -3
  50. data/lib/generators/qa_server/templates/config/initializers/qa_server.rb +8 -0
  51. data/lib/qa_server/configuration.rb +14 -0
  52. data/lib/qa_server/version.rb +1 -1
  53. data/qa_server.gemspec +5 -5
  54. data/spec/feature/accuracy_spec.rb +1 -1
  55. data/spec/i18n_spec.rb +0 -1
  56. data/spec/lib/configuration_spec.rb +22 -0
  57. data/spec/presenters/qa_server/monitor_status/history_presenter_spec.rb +81 -0
  58. data/spec/services/qa_server/history_up_down_service_spec.rb +86 -0
  59. metadata +39 -12
@@ -30,7 +30,6 @@ search:
30
30
  replacements:
31
31
  maxRecords: '20'
32
32
  -
33
- pending: true
34
33
  query: maps
35
34
  position: 3
36
35
  subject_uri: "http://id.loc.gov/authorities/genreForms/gf2011026387"
@@ -115,14 +114,6 @@ search:
115
114
  subject_uri: "http://id.loc.gov/authorities/genreForms/gf2011026080"
116
115
  replacements:
117
116
  maxRecords: '20'
118
- -
119
- pending: true
120
- query: Cookery
121
- subauth: deprecated
122
- position: 5
123
- subject_uri: "http://id.loc.gov/authorities/genreForms/gf2011026169"
124
- replacements:
125
- maxRecords: '10'
126
117
  term:
127
118
  -
128
119
  identifier: "http://id.loc.gov/authorities/genreForms/gf2011026141"
@@ -21,14 +21,12 @@ search:
21
21
  # Accuracy tests
22
22
  #------------------
23
23
  -
24
- pending: true
25
24
  query: Boston Mass
26
25
  position: 3
27
26
  subject_uri: "http://id.loc.gov/authorities/names/n79045553"
28
27
  replacements:
29
28
  maxRecords: '10'
30
29
  -
31
- pending: true
32
30
  query: Boston Mass
33
31
  position: 5
34
32
  subauth: geographic
@@ -40,11 +38,10 @@ search:
40
38
  query: Camden NJ
41
39
  position: 8
42
40
  subauth: geographic
43
- subject_uri: "http://id.loc.gov/authorities/names/n81139356"
41
+ subject_uri: "http://id.loc.gov/authorities/names/n80010449"
44
42
  replacements:
45
43
  maxRecords: '20'
46
44
  -
47
- pending: true
48
45
  query: Madrid, Spain
49
46
  position: 5
50
47
  subauth: geographic
@@ -52,7 +49,6 @@ search:
52
49
  replacements:
53
50
  maxRecords: '15'
54
51
  -
55
- pending: true
56
52
  query: Chicago, Ill
57
53
  position: 5
58
54
  subauth: geographic
@@ -60,7 +56,6 @@ search:
60
56
  replacements:
61
57
  maxRecords: '15'
62
58
  -
63
- pending: true
64
59
  query: seattle
65
60
  position: 5
66
61
  subauth: geographic
@@ -68,7 +63,6 @@ search:
68
63
  replacements:
69
64
  maxRecords: '15'
70
65
  -
71
- pending: true
72
66
  query: seattle (wash.)
73
67
  position: 5
74
68
  subauth: geographic
@@ -0,0 +1,78 @@
1
+ # Supported subauthorities:
2
+ # person
3
+ # organization
4
+ # family
5
+ ---
6
+ authority:
7
+ service: ld4l_cache
8
+ context: true
9
+ search:
10
+ #------------------
11
+ # Accuracy tests - part 2 (10-18)
12
+ #------------------
13
+ -
14
+ query: Tolstoy, Leo
15
+ subauth: person
16
+ position: 5
17
+ subject_uri: "http://id.loc.gov/rwo/agents/n79068416"
18
+ replacements:
19
+ maxRecords: '20'
20
+ -
21
+ query: tolstoi, lev
22
+ subauth: person
23
+ position: 5
24
+ subject_uri: "http://id.loc.gov/rwo/agents/n79068416"
25
+ replacements:
26
+ maxRecords: '20'
27
+ -
28
+ query: Tolstoĭ, Lev
29
+ subauth: person
30
+ position: 5
31
+ subject_uri: "http://id.loc.gov/rwo/agents/n79068416"
32
+ replacements:
33
+ maxRecords: '20'
34
+ -
35
+ query: Толстой, Лев
36
+ subauth: person
37
+ position: 5
38
+ subject_uri: "http://id.loc.gov/rwo/agents/n79068416"
39
+ replacements:
40
+ maxRecords: '20'
41
+ -
42
+ query: Толстой, Лев, граф, 1828-1910
43
+ subauth: person
44
+ position: 5
45
+ subject_uri: "http://id.loc.gov/rwo/agents/n79068416"
46
+ replacements:
47
+ maxRecords: '20'
48
+ -
49
+ query: טאלסטאי, ליעװ
50
+ subauth: person
51
+ position: 5
52
+ subject_uri: "http://id.loc.gov/rwo/agents/n79068416"
53
+ replacements:
54
+ maxRecords: '20'
55
+ -
56
+ query: レオ.トルストイ
57
+ subauth: person
58
+ position: 5
59
+ subject_uri: "http://id.loc.gov/rwo/agents/n79068416"
60
+ replacements:
61
+ maxRecords: '20'
62
+ -
63
+ query: لئون تولستوى
64
+ subauth: person
65
+ position: 5
66
+ subject_uri: "http://id.loc.gov/rwo/agents/n79068416"
67
+ replacements:
68
+ maxRecords: '20'
69
+ -
70
+ query: 托爾斯泰, 列夫
71
+ subauth: person
72
+ position: 5
73
+ subject_uri: "http://id.loc.gov/rwo/agents/n79068416"
74
+ replacements:
75
+ maxRecords: '20'
76
+ term:
77
+ -
78
+ identifier: 'http://id.loc.gov/rwo/agents/n79021164'
@@ -0,0 +1,73 @@
1
+ # Supported subauthorities:
2
+ # person
3
+ # organization
4
+ # family
5
+ ---
6
+ authority:
7
+ service: ld4l_cache
8
+ context: true
9
+ search:
10
+ #------------------
11
+ # Accuracy tests - part 3 (19-26)
12
+ #------------------
13
+ -
14
+ pending: true
15
+ query: ACLU
16
+ subauth: organization
17
+ position: 20
18
+ subject_uri: "http://id.loc.gov/rwo/agents/n79079580"
19
+ replacements:
20
+ maxRecords: '30'
21
+ -
22
+ query: University of Pennsylvania
23
+ subauth: organization
24
+ position: 5
25
+ subject_uri: "http://id.loc.gov/rwo/agents/n79065482"
26
+ replacements:
27
+ maxRecords: '20'
28
+ -
29
+ query: university of pennsylvania
30
+ subauth: organization
31
+ position: 5
32
+ subject_uri: "http://id.loc.gov/rwo/agents/n79065482"
33
+ replacements:
34
+ maxRecords: '20'
35
+ -
36
+ query: Planned Parenthood Federation of America
37
+ subauth: organization
38
+ position: 10
39
+ subject_uri: "http://id.loc.gov/rwo/agents/n50075375"
40
+ replacements:
41
+ maxRecords: '20'
42
+ -
43
+ query: Genkai Shosetsu Kenkyukai
44
+ subauth: organization
45
+ position: 5
46
+ subject_uri: "http://id.loc.gov/rwo/agents/n2013003006"
47
+ replacements:
48
+ maxRecords: '20'
49
+ -
50
+ query: Genkai Shōsetsu Kenkyūkai
51
+ subauth: organization
52
+ position: 5
53
+ subject_uri: "http://id.loc.gov/rwo/agents/n2013003006"
54
+ replacements:
55
+ maxRecords: '20'
56
+ -
57
+ query: 限界小說研究会
58
+ subauth: organization
59
+ position: 5
60
+ subject_uri: "http://id.loc.gov/rwo/agents/n2013003006"
61
+ replacements:
62
+ maxRecords: '20'
63
+ -
64
+ query: Waterman Family
65
+ subauth: family
66
+ result_size: 110
67
+ position: 5
68
+ subject_uri: "http://id.loc.gov/rwo/agents/n2012043300"
69
+ replacements:
70
+ maxRecords: '10'
71
+ term:
72
+ -
73
+ identifier: 'http://id.loc.gov/rwo/agents/n79021164'
@@ -19,8 +19,9 @@ search:
19
19
  query: 'mark twain'
20
20
  subauth: organization
21
21
  -
22
- query: 'twain'
22
+ query: 'waterman'
23
23
  subauth: family
24
+ result_size: 100
24
25
  #------------------
25
26
  # Accuracy tests - Part 1 (1-9)
26
27
  #------------------
@@ -32,50 +33,49 @@ search:
32
33
  replacements:
33
34
  maxRecords: '10'
34
35
  -
35
- pending: true
36
36
  query: Camden, William
37
37
  subauth: person
38
- position: 10
38
+ position: 5
39
39
  subject_uri: "http://id.loc.gov/rwo/agents/n50031528"
40
40
  replacements:
41
- maxRecords: '20'
41
+ maxRecords: '10'
42
42
  -
43
43
  query: King Stephen 1947
44
44
  subauth: person
45
45
  position: 5
46
46
  subject_uri: "http://id.loc.gov/rwo/agents/n79063767"
47
47
  replacements:
48
- maxRecords: '20'
48
+ maxRecords: '10'
49
49
  -
50
50
  query: Tweedy, Jeff
51
51
  subauth: person
52
52
  position: 5
53
53
  subject_uri: "http://id.loc.gov/rwo/agents/no98126226"
54
54
  replacements:
55
- maxRecords: '20'
55
+ maxRecords: '10'
56
56
  -
57
57
  query: Tanaka, Shōzō
58
58
  subauth: person
59
59
  position: 5
60
60
  subject_uri: "http://id.loc.gov/rwo/agents/n81047749"
61
61
  replacements:
62
- maxRecords: '20'
62
+ maxRecords: '10'
63
63
  -
64
- pending: true
65
64
  query: Tanaka, Shozo
66
65
  subauth: person
67
66
  position: 5
68
67
  subject_uri: "http://id.loc.gov/rwo/agents/n81047749"
69
68
  replacements:
70
- maxRecords: '20'
69
+ maxRecords: '10'
71
70
  -
72
71
  query: 田中正造
73
72
  subauth: person
74
73
  position: 5
75
74
  subject_uri: "http://id.loc.gov/rwo/agents/n81047749"
76
75
  replacements:
77
- maxRecords: '20'
76
+ maxRecords: '10'
78
77
  -
78
+ # The ʼ diacritic in ʼEndālagétā Kabada can't simply be removed; it would change the letter in the search.
79
79
  pending: true
80
80
  query: Endalageta Kabada
81
81
  subauth: person
@@ -89,7 +89,7 @@ search:
89
89
  position: 5
90
90
  subject_uri: "http://id.loc.gov/rwo/agents/no2003094541"
91
91
  replacements:
92
- maxRecords: '20'
92
+ maxRecords: '10'
93
93
  term:
94
94
  -
95
95
  identifier: 'http://id.loc.gov/rwo/agents/n79021164'
@@ -12,7 +12,6 @@ search:
12
12
  # Accuracy tests
13
13
  #------------------
14
14
  -
15
- pending: true
16
15
  query: Guitar music (Heavy metal) # example of LCSH with parentheses
17
16
  position: 10
18
17
  subject_uri: "http://id.loc.gov/authorities/subjects/sh85059850"
@@ -31,12 +30,11 @@ search:
31
30
  replacements:
32
31
  maxRecords: '20'
33
32
  -
34
- pending: true
35
33
  query: History
36
34
  position: 5
37
35
  subject_uri: "http://id.loc.gov/authorities/subjects/sh85061212"
38
36
  replacements:
39
- maxRecords: '20'
37
+ maxRecords: '10'
40
38
  term:
41
39
  -
42
40
  identifier: 'http://id.loc.gov/authorities/subjects/sh2003008312'
@@ -6,6 +6,9 @@ authority:
6
6
  service: ld4l_cache
7
7
  context: false
8
8
  search:
9
+ #------------------
10
+ # Connection tests
11
+ #------------------
9
12
  -
10
13
  query: audio
11
14
  subauth: carriers
@@ -182,3 +185,246 @@ search:
182
185
  query: sound
183
186
  subauth: resource_components
184
187
  result_size: 100
188
+ #------------------
189
+ # Accuracy tests
190
+ #------------------
191
+ -
192
+ query: audio
193
+ subauth: carriers
194
+ position: 4
195
+ subject_uri: "http://id.loc.gov/vocabulary/carriers/sq"
196
+ -
197
+ query: image
198
+ subauth: content_types
199
+ position: 4
200
+ subject_uri: "http://id.loc.gov/vocabulary/contentTypes/sti"
201
+ -
202
+ query: rare books
203
+ subauth: description_conventions
204
+ position: 4
205
+ subject_uri: "http://id.loc.gov/vocabulary/descriptionConventions/bdrb"
206
+ -
207
+ query: daily
208
+ subauth: frequencies
209
+ position: 4
210
+ subject_uri: "http://id.loc.gov/vocabulary/frequencies/dyl"
211
+ -
212
+ query: serial
213
+ subauth: issuance
214
+ position: 4
215
+ subject_uri: "http://id.loc.gov/vocabulary/issuance/serl"
216
+ -
217
+ query: ISSN
218
+ subauth: marcauthen
219
+ position: 4
220
+ subject_uri: "http://id.loc.gov/vocabulary/marcauthen/isdsc"
221
+ -
222
+ query: full
223
+ subauth: maspect
224
+ position: 4
225
+ subject_uri: "http://id.loc.gov/vocabulary/maspect/full"
226
+ -
227
+ query: general
228
+ subauth: maudience
229
+ position: 4
230
+ subject_uri: "http://id.loc.gov/vocabulary/maudience/gen"
231
+ -
232
+ query: pal
233
+ subauth: mbroadstd
234
+ position: 4
235
+ subject_uri: "http://id.loc.gov/vocabulary/mbroadstd/pal"
236
+ -
237
+ query: electrical
238
+ subauth: mcapturestorage
239
+ position: 4
240
+ subject_uri: "http://id.loc.gov/vocabulary/mcapturestorage/dist"
241
+ -
242
+ query: gray
243
+ subauth: mcolor
244
+ position: 4
245
+ subject_uri: "http://id.loc.gov/vocabulary/mcolor/gry"
246
+ -
247
+ query: video
248
+ subauth: media_types
249
+ position: 4
250
+ subject_uri: "http://id.loc.gov/vocabulary/mediaTypes/v"
251
+ -
252
+ query: dvd
253
+ subauth: mencformat
254
+ position: 4
255
+ subject_uri: "http://id.loc.gov/vocabulary/mencformat/dvdv"
256
+ -
257
+ query: core
258
+ subauth: menclvl
259
+ position: 4
260
+ subject_uri: "http://id.loc.gov/vocabulary/menclvl/4"
261
+ -
262
+ query: data
263
+ subauth: mfiletype
264
+ position: 4
265
+ subject_uri: "http://id.loc.gov/vocabulary/mfiletype/data"
266
+ -
267
+ query: print
268
+ subauth: mfont
269
+ position: 4
270
+ subject_uri: "http://id.loc.gov/vocabulary/mfont/lp"
271
+ -
272
+ query: original
273
+ subauth: mgeneration
274
+ position: 4
275
+ subject_uri: "http://id.loc.gov/vocabulary/mgeneration/originalneg"
276
+ -
277
+ query: state
278
+ subauth: mgovtpubtype
279
+ position: 4
280
+ subject_uri: "http://id.loc.gov/vocabulary/mgovtpubtype/s"
281
+ -
282
+ query: fine
283
+ subauth: mgroove
284
+ position: 4
285
+ subject_uri: "http://id.loc.gov/vocabulary/mgroove/finepitch"
286
+ -
287
+ query: music
288
+ subauth: millus
289
+ position: 4
290
+ subject_uri: "http://id.loc.gov/vocabulary/millus/mus"
291
+ -
292
+ query: paragraph
293
+ subauth: mlayout
294
+ position: 4
295
+ subject_uri: "http://id.loc.gov/vocabulary/mlayout/para"
296
+ -
297
+ query: vinyl
298
+ subauth: mmaterial
299
+ position: 4
300
+ subject_uri: "http://id.loc.gov/vocabulary/mmaterial/vny"
301
+ -
302
+ query: score
303
+ subauth: mmusicformat
304
+ position: 4
305
+ subject_uri: "http://id.loc.gov/vocabulary/mmusicformat/pianoscore"
306
+ -
307
+ query: tablature
308
+ subauth: mmusnotation
309
+ position: 4
310
+ subject_uri: "http://id.loc.gov/vocabulary/mmusnotation/tabla"
311
+ -
312
+ query: mixed
313
+ subauth: mplayback
314
+ position: 4
315
+ subject_uri: "http://id.loc.gov/vocabulary/mplayback/mix"
316
+ -
317
+ query: 160
318
+ subauth: mplayspeed
319
+ position: 4
320
+ subject_uri: "http://id.loc.gov/vocabulary/mplayspeed/i"
321
+ -
322
+ query: negative
323
+ subauth: mpolarity
324
+ position: 4
325
+ subject_uri: "http://id.loc.gov/vocabulary/mpolarity/neg"
326
+ -
327
+ query: multiscreen
328
+ subauth: mpresformat
329
+ position: 4
330
+ subject_uri: "http://id.loc.gov/vocabulary/mpresformat/mscreen"
331
+ -
332
+ query: etching
333
+ subauth: mproduction
334
+ position: 4
335
+ subject_uri: "http://id.loc.gov/vocabulary/mproduction/etch"
336
+ -
337
+ query: miller
338
+ subauth: mprojection
339
+ position: 4
340
+ subject_uri: "http://id.loc.gov/vocabulary/mprojection/de"
341
+ -
342
+ query: isbd
343
+ subauth: mpunctuation_conventions
344
+ position: 4
345
+ subject_uri: "http://id.loc.gov/vocabulary/mpunctuationConventions/isbd"
346
+ -
347
+ query: optical
348
+ subauth: mrecmedium
349
+ position: 4
350
+ subject_uri: "http://id.loc.gov/vocabulary/mrecmedium/opt"
351
+ -
352
+ query: analog
353
+ subauth: mrectype
354
+ position: 4
355
+ subject_uri: "http://id.loc.gov/vocabulary/mrectype/analog"
356
+ -
357
+ query: high
358
+ subauth: mreductionratio
359
+ position: 4
360
+ subject_uri: "http://id.loc.gov/vocabulary/mreductionratio/veryhigh"
361
+ -
362
+ query: region 8
363
+ subauth: mregencoding
364
+ position: 4
365
+ subject_uri: "http://id.loc.gov/vocabulary/mregencoding/region8"
366
+ -
367
+ query: land
368
+ subauth: mrelief
369
+ position: 4
370
+ subject_uri: "http://id.loc.gov/vocabulary/mrelief/land"
371
+ -
372
+ query: scale
373
+ subauth: mscale
374
+ position: 4
375
+ subject_uri: "http://id.loc.gov/vocabulary/mscale/notdrawn"
376
+ -
377
+ query: chinese
378
+ subauth: mscript
379
+ position: 4
380
+ subject_uri: "http://id.loc.gov/vocabulary/mscript/e"
381
+ -
382
+ query: silent
383
+ subauth: msoundcontent
384
+ position: 4
385
+ subject_uri: "http://id.loc.gov/vocabulary/msoundcontent/silent"
386
+ -
387
+ query: audio
388
+ subauth: mspecplayback
389
+ position: 4
390
+ subject_uri: "http://id.loc.gov/vocabulary/mspecplayback/dtshd51"
391
+ -
392
+ query: invalid
393
+ subauth: mstatus
394
+ position: 4
395
+ subject_uri: "http://id.loc.gov/vocabulary/mstatus/cancinv"
396
+ -
397
+ query: index
398
+ subauth: msupplcont
399
+ position: 4
400
+ subject_uri: "http://id.loc.gov/vocabulary/msupplcont/thematicindex"
401
+ -
402
+ query: braille
403
+ subauth: mtactile
404
+ position: 4
405
+ subject_uri: "http://id.loc.gov/vocabulary/mtactile/math"
406
+ -
407
+ query: half
408
+ subauth: mtapeconfig
409
+ position: 4
410
+ subject_uri: "http://id.loc.gov/vocabulary/mtapeconfig/half"
411
+ -
412
+ query: action
413
+ subauth: mtechnique
414
+ position: 4
415
+ subject_uri: "http://id.loc.gov/vocabulary/mtechnique/animlive"
416
+ -
417
+ query: laser
418
+ subauth: mvidformat
419
+ position: 4
420
+ subject_uri: "http://id.loc.gov/vocabulary/mvidformat/laser"
421
+ -
422
+ query: actor
423
+ subauth: relators
424
+ position: 4
425
+ subject_uri: "http://id.loc.gov/vocabulary/relators/vac"
426
+ -
427
+ query: sound
428
+ subauth: resource_components
429
+ position: 4
430
+ subject_uri: "http://id.loc.gov/vocabulary/resourceComponents/str"