qa_server 7.2.0 → 7.5.1

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 (110) hide show
  1. checksums.yaml +5 -5
  2. data/.rubocop_fixme.yml +6 -0
  3. data/.travis.yml +4 -5
  4. data/CHANGELOG.md +38 -0
  5. data/Rakefile +1 -1
  6. data/app/assets/stylesheets/qa_server/_check-status.scss +36 -0
  7. data/app/cache_processors/concerns/qa_server/cache_keys.rb +0 -5
  8. data/app/cache_processors/qa_server/cache_expiry_service.rb +13 -8
  9. data/app/cache_processors/qa_server/job_id_cache.rb +29 -0
  10. data/app/cache_processors/qa_server/performance_cache.rb +34 -34
  11. data/app/cache_processors/qa_server/performance_day_graph_cache.rb +27 -0
  12. data/app/cache_processors/qa_server/performance_month_graph_cache.rb +27 -0
  13. data/app/cache_processors/qa_server/performance_year_graph_cache.rb +27 -0
  14. data/app/cache_processors/qa_server/scenario_history_cache.rb +7 -7
  15. data/app/cache_processors/qa_server/scenario_history_graph_cache.rb +12 -17
  16. data/app/cache_processors/qa_server/scenario_run_cache.rb +8 -8
  17. data/app/cache_processors/qa_server/scenario_run_failures_cache.rb +7 -7
  18. data/app/cache_processors/qa_server/scenario_run_summary_cache.rb +7 -7
  19. data/app/controllers/concerns/qa_server/authority_validation_behavior.rb +49 -44
  20. data/app/controllers/qa_server/check_status_controller.rb +92 -22
  21. data/app/controllers/qa_server/fetch_controller.rb +36 -36
  22. data/app/controllers/qa_server/monitor_status_controller.rb +105 -105
  23. data/app/jobs/qa_server/history_graph_job.rb +28 -0
  24. data/app/jobs/qa_server/monitor_tests_job.rb +19 -39
  25. data/app/jobs/qa_server/performance_day_graph_job.rb +45 -0
  26. data/app/jobs/qa_server/performance_month_graph_job.rb +45 -0
  27. data/app/jobs/qa_server/performance_per_byte_job.rb +85 -0
  28. data/app/jobs/qa_server/performance_year_graph_job.rb +45 -0
  29. data/app/loggers/qa_server/scenario_logger.rb +74 -4
  30. data/app/models/concerns/qa_server/performance_history_data_keys.rb +8 -0
  31. data/app/models/qa_server/authority_scenario.rb +4 -4
  32. data/app/models/qa_server/authority_status.rb +2 -2
  33. data/app/models/qa_server/authority_status_failure.rb +1 -1
  34. data/app/models/qa_server/performance_history.rb +2 -2
  35. data/app/models/qa_server/scenario_run_history.rb +52 -52
  36. data/app/models/qa_server/scenario_run_registry.rb +2 -2
  37. data/app/models/qa_server/scenarios.rb +26 -26
  38. data/app/models/qa_server/search_scenario.rb +18 -13
  39. data/app/models/qa_server/term_scenario.rb +29 -29
  40. data/app/prepends/prepended_linked_data/find_term.rb +40 -40
  41. data/app/prepends/prepended_linked_data/search_query.rb +36 -36
  42. data/app/prepends/prepended_rdf/rdf_graph.rb +7 -7
  43. data/app/presenters/concerns/qa_server/monitor_status/performance_datatable_behavior.rb +32 -32
  44. data/app/presenters/concerns/qa_server/monitor_status/performance_graph_behavior.rb +64 -64
  45. data/app/presenters/qa_server/check_status_presenter.rb +63 -7
  46. data/app/services/concerns/qa_server/gruff_graph.rb +16 -16
  47. data/app/services/qa_server/authority_loader_service.rb +14 -14
  48. data/app/services/qa_server/authority_validator_service.rb +1 -0
  49. data/app/services/qa_server/database_migrator.rb +14 -14
  50. data/app/services/qa_server/history_graphing_service.rb +30 -30
  51. data/app/services/qa_server/performance_calculator_service.rb +80 -80
  52. data/app/services/qa_server/performance_datatable_service.rb +35 -35
  53. data/app/services/qa_server/performance_graph_data_service.rb +28 -28
  54. data/app/services/qa_server/performance_graphing_service.rb +58 -58
  55. data/app/services/qa_server/performance_per_byte_calculator_service.rb +88 -0
  56. data/app/services/qa_server/performance_per_byte_data_service.rb +41 -0
  57. data/app/services/qa_server/scenarios_loader_service.rb +1 -1
  58. data/app/services/qa_server/time_period_service.rb +21 -21
  59. data/app/validators/qa_server/scenario_validator.rb +99 -87
  60. data/app/validators/qa_server/search_scenario_validator.rb +67 -61
  61. data/app/validators/qa_server/term_scenario_validator.rb +20 -15
  62. data/app/views/qa_server/check_status/index.html.erb +120 -24
  63. data/config/i18n-tasks.yml +133 -0
  64. data/config/locales/qa_server.en.yml +15 -0
  65. data/lib/generators/qa_server/assets_generator.rb +4 -4
  66. data/lib/generators/qa_server/templates/config/authorities/linked_data/cerl_ld4l_cache.json +2 -2
  67. data/lib/generators/qa_server/templates/config/authorities/linked_data/getty_aat_ld4l_cache.json +62 -1
  68. data/lib/generators/qa_server/templates/config/authorities/linked_data/getty_tgn_ld4l_cache.json +28 -4
  69. data/lib/generators/qa_server/templates/config/authorities/linked_data/isni_ld4l_cache.json +90 -0
  70. data/lib/generators/qa_server/templates/config/authorities/linked_data/ligatus_ld4l_cache.json +133 -0
  71. data/lib/generators/qa_server/templates/config/authorities/linked_data/locnames_rwo2_ld4l_cache.json +248 -0
  72. data/lib/generators/qa_server/templates/config/authorities/linked_data/locnames_rwo3_ld4l_cache.json +248 -0
  73. data/lib/generators/qa_server/templates/config/authorities/linked_data/locvocabs_ld4l_cache.json +117 -0
  74. data/lib/generators/qa_server/templates/config/authorities/linked_data/mesh_nlm_ld4l_cache.json +135 -3
  75. data/lib/generators/qa_server/templates/config/authorities/linked_data/oclcfast_direct.json +1 -0
  76. data/lib/generators/qa_server/templates/config/authorities/linked_data/oclcfast_ld4l_cache.json +1 -4
  77. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/agrovoc_direct_validation.yml +31 -0
  78. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/agrovoc_ld4l_cache_validation.yml +31 -0
  79. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/cerl_ld4l_cache_validation.yml +23 -11
  80. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/dbpedia_ld4l_cache_validation.yml +33 -0
  81. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/geonames_direct_validation.yml +35 -0
  82. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/geonames_ld4l_cache_validation.yml +58 -5
  83. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/getty_aat_ld4l_cache_validation.yml +256 -0
  84. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/getty_tgn_ld4l_cache_validation.yml +35 -1
  85. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/getty_ulan_ld4l_cache_validation.yml +37 -0
  86. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/isni_ld4l_cache_validation.yml +10 -0
  87. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/ligatus_ld4l_cache_validation.yml +36 -0
  88. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locdemographics_ld4l_cache_validation.yml +73 -44
  89. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locgenres_ld4l_cache_validation.yml +31 -0
  90. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locnames_ld4l_cache_validation.yml +71 -0
  91. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locnames_rwo_ld4l_cache_validation.yml +70 -2
  92. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locperformance_ld4l_cache_validation.yml +6 -0
  93. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locsubjects_ld4l_cache_validation.yml +32 -0
  94. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locvocabs_ld4l_cache_validation.yml +184 -0
  95. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/mesh_nlm_ld4l_cache_validation.yml +51 -1
  96. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/nalt_ld4l_cache_validation.yml +37 -0
  97. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/oclc_fast_validation.yml +71 -5
  98. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/oclcfast_direct_validation.yml +66 -1
  99. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/oclcfast_ld4l_cache_validation.yml +57 -0
  100. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/rda_registry_ld4l_cache_validation.yml +310 -0
  101. data/lib/qa_server/configuration.rb +28 -24
  102. data/lib/qa_server/version.rb +1 -1
  103. data/qa_server.gemspec +2 -1
  104. data/spec/feature/accuracy_spec.rb +32 -0
  105. data/spec/i18n_spec.rb +36 -0
  106. data/spec/spec_helper.rb +4 -0
  107. metadata +46 -12
  108. data/app/cache_processors/qa_server/performance_daily_graph_cache.rb +0 -60
  109. data/app/cache_processors/qa_server/performance_hourly_graph_cache.rb +0 -65
  110. data/app/cache_processors/qa_server/performance_monthly_graph_cache.rb +0 -60
@@ -3,8 +3,14 @@ authority:
3
3
  service: ld4l_cache
4
4
  context: true
5
5
  search:
6
+ #------------------
7
+ # Connection tests
8
+ #------------------
6
9
  -
7
10
  query: band
11
+ #------------------
12
+ # Accuracy tests
13
+ #------------------
8
14
  -
9
15
  query: conductor
10
16
  position: 10
@@ -3,8 +3,40 @@ authority:
3
3
  service: ld4l_cache
4
4
  context: true
5
5
  search:
6
+ #------------------
7
+ # Connection tests
8
+ #------------------
6
9
  -
7
10
  query: science
11
+ #------------------
12
+ # Accuracy tests
13
+ #------------------
14
+ -
15
+ pending: true
16
+ query: Guitar music (Heavy metal) # example of LCSH with parentheses
17
+ position: 10
18
+ subject_uri: "http://id.loc.gov/authorities/subjects/sh85059850"
19
+ replacements:
20
+ maxRecords: '20'
21
+ -
22
+ query: Guitar music Heavy metal # example of LCSH with parentheses
23
+ position: 5
24
+ subject_uri: "http://id.loc.gov/authorities/subjects/sh85059850"
25
+ replacements:
26
+ maxRecords: '10'
27
+ -
28
+ query: Cooking with bacon
29
+ position: 7
30
+ subject_uri: "http://id.loc.gov/authorities/subjects/sh85031944"
31
+ replacements:
32
+ maxRecords: '20'
33
+ -
34
+ pending: true
35
+ query: History
36
+ position: 5
37
+ subject_uri: "http://id.loc.gov/authorities/subjects/sh85061212"
38
+ replacements:
39
+ maxRecords: '20'
8
40
  term:
9
41
  -
10
42
  identifier: 'http://id.loc.gov/authorities/subjects/sh2003008312'
@@ -0,0 +1,184 @@
1
+ # Supported subauthorities:
2
+ # carriers
3
+ # content_types
4
+ ---
5
+ authority:
6
+ service: ld4l_cache
7
+ context: false
8
+ search:
9
+ -
10
+ query: audio
11
+ subauth: carriers
12
+ -
13
+ query: image
14
+ subauth: content_types
15
+ -
16
+ query: rare books
17
+ subauth: description_conventions
18
+ -
19
+ query: daily
20
+ subauth: frequencies
21
+ result_size: 120
22
+ -
23
+ query: serial
24
+ subauth: issuance
25
+ result_size: 110
26
+ -
27
+ query: ISSN
28
+ subauth: marcauthen
29
+ -
30
+ query: full
31
+ subauth: maspect
32
+ result_size: 110
33
+ -
34
+ query: general
35
+ subauth: maudience
36
+ result_size: 110
37
+ -
38
+ query: pal
39
+ subauth: mbroadstd
40
+ result_size: 110
41
+ -
42
+ query: electrical
43
+ subauth: mcapturestorage
44
+ -
45
+ query: gray
46
+ subauth: mcolor
47
+ result_size: 110
48
+ -
49
+ query: video
50
+ subauth: media_types
51
+ result_size: 110
52
+ -
53
+ query: dvd
54
+ subauth: mencformat
55
+ -
56
+ query: core
57
+ subauth: menclvl
58
+ result_size: 100
59
+ -
60
+ query: data
61
+ subauth: mfiletype
62
+ result_size: 110
63
+ -
64
+ query: print
65
+ subauth: mfont
66
+ -
67
+ query: original
68
+ subauth: mgeneration
69
+ -
70
+ query: state
71
+ subauth: mgovtpubtype
72
+ result_size: 110
73
+ -
74
+ query: fine
75
+ subauth: mgroove
76
+ result_size: 110
77
+ -
78
+ query: music
79
+ subauth: millus
80
+ result_size: 110
81
+ -
82
+ query: paragraph
83
+ subauth: mlayout
84
+ result_size: 110
85
+ -
86
+ query: vinyl
87
+ subauth: mmaterial
88
+ result_size: 110
89
+ -
90
+ query: score
91
+ subauth: mmusicformat
92
+ -
93
+ query: tablature
94
+ subauth: mmusnotation
95
+ result_size: 100
96
+ -
97
+ query: mixed
98
+ subauth: mplayback
99
+ result_size: 100
100
+ -
101
+ query: 160
102
+ subauth: mplayspeed
103
+ result_size: 100
104
+ -
105
+ query: negative
106
+ subauth: mpolarity
107
+ result_size: 100
108
+ -
109
+ query: multiscreen
110
+ subauth: mpresformat
111
+ result_size: 100
112
+ -
113
+ query: etching
114
+ subauth: mproduction
115
+ result_size: 100
116
+ -
117
+ query: miller
118
+ subauth: mprojection
119
+ -
120
+ query: isbd
121
+ subauth: mpunctuation_conventions
122
+ result_size: 100
123
+ -
124
+ query: optical
125
+ subauth: mrecmedium
126
+ result_size: 100
127
+ -
128
+ query: analog
129
+ subauth: mrectype
130
+ result_size: 100
131
+ -
132
+ query: high
133
+ subauth: mreductionratio
134
+ -
135
+ query: region 8
136
+ subauth: mregencoding
137
+ result_size: 100
138
+ -
139
+ query: land
140
+ subauth: mrelief
141
+ result_size: 100
142
+ -
143
+ query: scale
144
+ subauth: mscale
145
+ result_size: 100
146
+ -
147
+ query: chinese
148
+ subauth: mscript
149
+ result_size: 100
150
+ -
151
+ query: silent
152
+ subauth: msoundcontent
153
+ result_size: 100
154
+ -
155
+ query: audio
156
+ subauth: mspecplayback
157
+ -
158
+ query: invalid
159
+ subauth: mstatus
160
+ result_size: 100
161
+ -
162
+ query: index
163
+ subauth: msupplcont
164
+ -
165
+ query: braille
166
+ subauth: mtactile
167
+ -
168
+ query: half
169
+ subauth: mtapeconfig
170
+ result_size: 100
171
+ -
172
+ query: action
173
+ subauth: mtechnique
174
+ -
175
+ query: laser
176
+ subauth: mvidformat
177
+ result_size: 100
178
+ -
179
+ query: actor
180
+ subauth: relators
181
+ -
182
+ query: sound
183
+ subauth: resource_components
184
+ result_size: 100
@@ -1,10 +1,60 @@
1
+ # Supported subauthorities:
2
+ # subject
3
+ # publication_type
1
4
  ---
2
5
  authority:
3
6
  service: ld4l_cache
4
7
  context: true
5
8
  search:
9
+ #------------------
10
+ # Connection tests
11
+ #------------------
12
+ # -
13
+ # query: malignant
6
14
  -
7
- query: malignant
15
+ query: Malignant Hyperthermia
16
+ subauth: subject
17
+ -
18
+ query: Spain
19
+ subauth: subject
20
+ result_size: 75
21
+ -
22
+ query: Address
23
+ subauth: publication_type
24
+ result_size: 80
25
+ #------------------
26
+ # Accuracy tests
27
+ #------------------
28
+ -
29
+ pending: true
30
+ query: Malignant Hyperthermia
31
+ subject_uri: "http://id.nlm.nih.gov/mesh/D008305"
32
+ position: 3
33
+ replacements:
34
+ maxRecords: '5'
35
+ -
36
+ pending: true
37
+ query: Heart Attack
38
+ subauth: subject
39
+ subject_uri: "http://id.nlm.nih.gov/mesh/D009203"
40
+ position: 3
41
+ replacements:
42
+ maxRecords: '5'
43
+ -
44
+ query: Letter
45
+ subauth: publication_type
46
+ subject_uri: "http://id.nlm.nih.gov/mesh/D016422"
47
+ position: 3
48
+ replacements:
49
+ maxRecords: '8'
50
+ -
51
+ pending: true
52
+ query: Email
53
+ subauth: subject
54
+ subject_uri: "http://id.nlm.nih.gov/mesh/D034742"
55
+ position: 5
56
+ replacements:
57
+ maxRecords: '10'
8
58
  term:
9
59
  -
10
60
  identifier: 'http://id.nlm.nih.gov/mesh/T727346'
@@ -1,10 +1,47 @@
1
+ # Supported subauthorities: # TODO: I don't think these subauths are correct. Probably copy-paste error.
2
+ # person
3
+ # organization
4
+ # place
5
+ # intangible
6
+ # geocoordinates
7
+ # work
1
8
  ---
2
9
  authority:
3
10
  service: ld4l_cache
4
11
  context: true
5
12
  search:
13
+ #------------------
14
+ # Connection tests
15
+ #------------------
6
16
  -
7
17
  query: milk
18
+ #------------------
19
+ # Accuracy tests
20
+ #------------------
21
+ -
22
+ query: soil fertility
23
+ subject_uri: "http://lod.nal.usda.gov/nalt/968"
24
+ position: 5
25
+ replacements:
26
+ maxRecords: '10'
27
+ -
28
+ query: vector potential
29
+ subject_uri: "http://lod.nal.usda.gov/nalt/34062"
30
+ position: 5
31
+ replacements:
32
+ maxRecords: '10'
33
+ -
34
+ query: meat tenderness
35
+ subject_uri: "http://lod.nal.usda.gov/nalt/51773"
36
+ position: 3
37
+ replacements:
38
+ maxRecords: '8'
39
+ -
40
+ query: recorte de los cascos
41
+ subject_uri: "http://lod.nal.usda.gov/nalt/9231"
42
+ position: 3
43
+ replacements:
44
+ maxRecords: '5'
8
45
  term:
9
46
  -
10
47
  identifier: 'http://lod.nal.usda.gov/nalt/20627'
@@ -2,6 +2,9 @@
2
2
  authority:
3
3
  service: direct
4
4
  search:
5
+ #------------------
6
+ # Connection tests
7
+ #------------------
5
8
  -
6
9
  query: 'mark twain'
7
10
  replacements:
@@ -16,11 +19,16 @@ search:
16
19
  subauth: geographic
17
20
  replacements:
18
21
  maximumRecords: '4'
19
- -
20
- query: Festival
21
- subauth: event_name
22
- replacements:
23
- maximumRecords: '4'
22
+ # -
23
+ # query: War
24
+ # subauth: event_name
25
+ # replacements:
26
+ # maxRecords: '4'
27
+ # -
28
+ # query: Festival
29
+ # subauth: meeting
30
+ # replacements:
31
+ # maxRecords: '4'
24
32
  -
25
33
  query: 'mark twain'
26
34
  subauth: personal_name
@@ -53,6 +61,64 @@ search:
53
61
  subauth: alt_lc
54
62
  replacements:
55
63
  maximumRecords: '4'
64
+ #------------------
65
+ # Accuracy tests
66
+ #------------------
67
+ -
68
+ query: Tralee & Dingle Railway
69
+ subject_uri: "http://id.worldcat.org/fast/1733583"
70
+ position: 3
71
+ replacements:
72
+ maxRecords: '5'
73
+ -
74
+ pending: true
75
+ query: Sleep-overs
76
+ subauth: concept
77
+ subject_uri: "http://id.worldcat.org/fast/1120873"
78
+ position: 5
79
+ replacements:
80
+ maxRecords: '10'
81
+ -
82
+ pending: true
83
+ query: People's International Tribunal on the Rights of Indigenous Hawaiians
84
+ subauth: event
85
+ subject_uri: "http://id.worldcat.org/fast/1410299"
86
+ position: 3
87
+ replacements:
88
+ maxRecords: '8'
89
+ -
90
+ pending: true
91
+ query: University of Chicago Library
92
+ subauth: organization
93
+ subject_uri: "http://id.worldcat.org/fast/539173"
94
+ position: 5
95
+ replacements:
96
+ maxRecords: '10'
97
+ -
98
+ pending: true
99
+ query: Taylor, Charles Hollis
100
+ subauth: person
101
+ subject_uri: "http://id.worldcat.org/fast/1616125"
102
+ position: 15
103
+ replacements:
104
+ maxRecords: '20'
105
+ -
106
+ pending: true
107
+ query: Sjælland
108
+ subauth: place
109
+ result_size: 190
110
+ subject_uri: "http://id.worldcat.org/fast/1243881"
111
+ position: 5
112
+ replacements:
113
+ maxRecords: '10'
114
+ -
115
+ pending: true
116
+ query: Scream
117
+ subauth: work
118
+ subject_uri: "http://id.worldcat.org/fast/1358031"
119
+ position: 5
120
+ replacements:
121
+ maxRecords: '10'
56
122
  term:
57
123
  -
58
124
  identifier: '1914919'
@@ -2,6 +2,9 @@
2
2
  authority:
3
3
  service: direct
4
4
  search:
5
+ #------------------
6
+ # Connection tests
7
+ #------------------
5
8
  -
6
9
  query: 'mark twain'
7
10
  replacements:
@@ -22,9 +25,14 @@ search:
22
25
  subauth: topic
23
26
  replacements:
24
27
  maxRecords: '4'
28
+ # -
29
+ # query: War
30
+ # subauth: event_name
31
+ # replacements:
32
+ # maxRecords: '4'
25
33
  -
26
34
  query: Festival
27
- subauth: event_name
35
+ subauth: meeting
28
36
  replacements:
29
37
  maxRecords: '4'
30
38
  -
@@ -53,6 +61,63 @@ search:
53
61
  subauth: alt_lc
54
62
  replacements:
55
63
  maxRecords: '4'
64
+ #------------------
65
+ # Accuracy tests
66
+ #------------------
67
+ -
68
+ query: Tralee & Dingle Railway
69
+ subject_uri: "http://id.worldcat.org/fast/1733583"
70
+ position: 3
71
+ replacements:
72
+ maxRecords: '5'
73
+ -
74
+ pending: true
75
+ query: Sleep-overs
76
+ subauth: concept
77
+ subject_uri: "http://id.worldcat.org/fast/1120873"
78
+ position: 5
79
+ replacements:
80
+ maxRecords: '10'
81
+ -
82
+ pending: true
83
+ query: People's International Tribunal on the Rights of Indigenous Hawaiians
84
+ subauth: event
85
+ subject_uri: "http://id.worldcat.org/fast/1410299"
86
+ position: 3
87
+ replacements:
88
+ maxRecords: '8'
89
+ -
90
+ pending: true
91
+ query: University of Chicago Library
92
+ subauth: organization
93
+ subject_uri: "http://id.worldcat.org/fast/539173"
94
+ position: 5
95
+ replacements:
96
+ maxRecords: '10'
97
+ -
98
+ query: Taylor, Charles Hollis
99
+ subauth: person
100
+ subject_uri: "http://id.worldcat.org/fast/1616125"
101
+ position: 15
102
+ replacements:
103
+ maxRecords: '20'
104
+ -
105
+ pending: true
106
+ query: Sjælland
107
+ subauth: place
108
+ result_size: 190
109
+ subject_uri: "http://id.worldcat.org/fast/1243881"
110
+ position: 5
111
+ replacements:
112
+ maxRecords: '10'
113
+ -
114
+ pending: true
115
+ query: Scream
116
+ subauth: work
117
+ subject_uri: "http://id.worldcat.org/fast/1358031"
118
+ position: 5
119
+ replacements:
120
+ maxRecords: '10'
56
121
  term:
57
122
  -
58
123
  identifier: '1914919'