qa_server 7.4.0 → 7.5.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 (103) hide show
  1. checksums.yaml +5 -5
  2. data/.rubocop_fixme.yml +6 -0
  3. data/.travis.yml +4 -5
  4. data/CHANGELOG.md +20 -0
  5. data/Rakefile +1 -1
  6. data/app/assets/stylesheets/qa_server/_check-status.scss +36 -0
  7. data/app/cache_processors/qa_server/cache_expiry_service.rb +8 -8
  8. data/app/cache_processors/qa_server/job_id_cache.rb +4 -4
  9. data/app/cache_processors/qa_server/performance_cache.rb +34 -34
  10. data/app/cache_processors/qa_server/performance_day_graph_cache.rb +7 -7
  11. data/app/cache_processors/qa_server/performance_month_graph_cache.rb +7 -7
  12. data/app/cache_processors/qa_server/performance_year_graph_cache.rb +7 -7
  13. data/app/cache_processors/qa_server/scenario_history_cache.rb +7 -7
  14. data/app/cache_processors/qa_server/scenario_history_graph_cache.rb +7 -7
  15. data/app/cache_processors/qa_server/scenario_run_cache.rb +7 -7
  16. data/app/cache_processors/qa_server/scenario_run_failures_cache.rb +7 -7
  17. data/app/cache_processors/qa_server/scenario_run_summary_cache.rb +7 -7
  18. data/app/controllers/concerns/qa_server/authority_validation_behavior.rb +49 -44
  19. data/app/controllers/qa_server/check_status_controller.rb +92 -22
  20. data/app/controllers/qa_server/fetch_controller.rb +36 -36
  21. data/app/controllers/qa_server/monitor_status_controller.rb +105 -105
  22. data/app/jobs/qa_server/history_graph_job.rb +10 -10
  23. data/app/jobs/qa_server/monitor_tests_job.rb +17 -17
  24. data/app/jobs/qa_server/performance_day_graph_job.rb +21 -21
  25. data/app/jobs/qa_server/performance_month_graph_job.rb +21 -21
  26. data/app/jobs/qa_server/performance_per_byte_job.rb +56 -56
  27. data/app/jobs/qa_server/performance_year_graph_job.rb +21 -21
  28. data/app/loggers/qa_server/scenario_logger.rb +74 -4
  29. data/app/models/qa_server/authority_scenario.rb +4 -4
  30. data/app/models/qa_server/authority_status.rb +2 -2
  31. data/app/models/qa_server/authority_status_failure.rb +1 -1
  32. data/app/models/qa_server/performance_history.rb +2 -2
  33. data/app/models/qa_server/scenario_run_history.rb +52 -52
  34. data/app/models/qa_server/scenario_run_registry.rb +2 -2
  35. data/app/models/qa_server/scenarios.rb +26 -26
  36. data/app/models/qa_server/search_scenario.rb +18 -13
  37. data/app/models/qa_server/term_scenario.rb +29 -29
  38. data/app/prepends/prepended_linked_data/find_term.rb +40 -40
  39. data/app/prepends/prepended_linked_data/search_query.rb +36 -36
  40. data/app/prepends/prepended_rdf/rdf_graph.rb +7 -7
  41. data/app/presenters/concerns/qa_server/monitor_status/performance_datatable_behavior.rb +32 -32
  42. data/app/presenters/concerns/qa_server/monitor_status/performance_graph_behavior.rb +64 -64
  43. data/app/presenters/qa_server/check_status_presenter.rb +63 -7
  44. data/app/services/concerns/qa_server/gruff_graph.rb +16 -16
  45. data/app/services/qa_server/authority_loader_service.rb +14 -14
  46. data/app/services/qa_server/authority_validator_service.rb +1 -0
  47. data/app/services/qa_server/database_migrator.rb +14 -14
  48. data/app/services/qa_server/history_graphing_service.rb +30 -30
  49. data/app/services/qa_server/performance_calculator_service.rb +80 -80
  50. data/app/services/qa_server/performance_datatable_service.rb +35 -35
  51. data/app/services/qa_server/performance_graph_data_service.rb +27 -27
  52. data/app/services/qa_server/performance_graphing_service.rb +55 -55
  53. data/app/services/qa_server/performance_per_byte_calculator_service.rb +38 -38
  54. data/app/services/qa_server/performance_per_byte_data_service.rb +7 -7
  55. data/app/services/qa_server/scenarios_loader_service.rb +1 -1
  56. data/app/services/qa_server/time_period_service.rb +21 -21
  57. data/app/validators/qa_server/scenario_validator.rb +99 -87
  58. data/app/validators/qa_server/search_scenario_validator.rb +67 -61
  59. data/app/validators/qa_server/term_scenario_validator.rb +20 -15
  60. data/app/views/qa_server/check_status/index.html.erb +120 -24
  61. data/config/locales/qa_server.en.yml +1 -0
  62. data/lib/generators/qa_server/assets_generator.rb +4 -4
  63. data/lib/generators/qa_server/templates/config/authorities/linked_data/cerl_ld4l_cache.json +2 -2
  64. data/lib/generators/qa_server/templates/config/authorities/linked_data/getty_aat_ld4l_cache.json +62 -1
  65. data/lib/generators/qa_server/templates/config/authorities/linked_data/getty_tgn_ld4l_cache.json +28 -4
  66. data/lib/generators/qa_server/templates/config/authorities/linked_data/isni_ld4l_cache.json +90 -0
  67. data/lib/generators/qa_server/templates/config/authorities/linked_data/ligatus_ld4l_cache.json +133 -0
  68. data/lib/generators/qa_server/templates/config/authorities/linked_data/locnames_rwo2_ld4l_cache.json +248 -0
  69. data/lib/generators/qa_server/templates/config/authorities/linked_data/locnames_rwo3_ld4l_cache.json +248 -0
  70. data/lib/generators/qa_server/templates/config/authorities/linked_data/locvocabs_ld4l_cache.json +117 -0
  71. data/lib/generators/qa_server/templates/config/authorities/linked_data/mesh_nlm_ld4l_cache.json +135 -3
  72. data/lib/generators/qa_server/templates/config/authorities/linked_data/oclcfast_direct.json +1 -0
  73. data/lib/generators/qa_server/templates/config/authorities/linked_data/oclcfast_ld4l_cache.json +1 -4
  74. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/agrovoc_direct_validation.yml +31 -0
  75. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/agrovoc_ld4l_cache_validation.yml +31 -0
  76. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/cerl_ld4l_cache_validation.yml +23 -11
  77. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/dbpedia_ld4l_cache_validation.yml +33 -0
  78. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/geonames_direct_validation.yml +35 -0
  79. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/geonames_ld4l_cache_validation.yml +58 -5
  80. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/getty_aat_ld4l_cache_validation.yml +256 -0
  81. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/getty_tgn_ld4l_cache_validation.yml +35 -1
  82. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/getty_ulan_ld4l_cache_validation.yml +37 -0
  83. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/isni_ld4l_cache_validation.yml +10 -0
  84. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/ligatus_ld4l_cache_validation.yml +36 -0
  85. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locdemographics_ld4l_cache_validation.yml +73 -44
  86. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locgenres_ld4l_cache_validation.yml +31 -0
  87. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locnames_ld4l_cache_validation.yml +71 -0
  88. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locnames_rwo_ld4l_cache_validation.yml +70 -2
  89. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locperformance_ld4l_cache_validation.yml +6 -0
  90. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locsubjects_ld4l_cache_validation.yml +32 -0
  91. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locvocabs_ld4l_cache_validation.yml +184 -0
  92. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/mesh_nlm_ld4l_cache_validation.yml +51 -1
  93. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/nalt_ld4l_cache_validation.yml +37 -0
  94. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/oclc_fast_validation.yml +71 -5
  95. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/oclcfast_direct_validation.yml +66 -1
  96. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/oclcfast_ld4l_cache_validation.yml +57 -0
  97. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/rda_registry_ld4l_cache_validation.yml +310 -0
  98. data/lib/qa_server/configuration.rb +28 -24
  99. data/lib/qa_server/version.rb +1 -1
  100. data/qa_server.gemspec +1 -1
  101. data/spec/feature/accuracy_spec.rb +32 -0
  102. data/spec/spec_helper.rb +4 -0
  103. metadata +18 -9
@@ -3,8 +3,42 @@ authority:
3
3
  service: ld4l_cache
4
4
  context: true
5
5
  search:
6
+ #------------------
7
+ # Connection tests
8
+ #------------------
6
9
  -
7
10
  query: memphis
11
+ #------------------
12
+ # Accuracy tests
13
+ #------------------
14
+ -
15
+ pending: true
16
+ query: Gouverneur
17
+ position: 3
18
+ subject_uri: "http://vocab.getty.edu/tgn/2069433-place"
19
+ replacements:
20
+ maxRecords: '10'
21
+ -
22
+ pending: true
23
+ query: Boulder, CO
24
+ position: 9
25
+ subject_uri: "http://vocab.getty.edu/tgn/2000198-place"
26
+ replacements:
27
+ maxRecords: '10'
28
+ -
29
+ pending: true
30
+ query: Paris, France
31
+ position: 30
32
+ subject_uri: "http://vocab.getty.edu/tgn/7008038-place"
33
+ replacements:
34
+ maxRecords: '100'
35
+ -
36
+ pending: true
37
+ query: Nile River
38
+ position: 3
39
+ subject_uri: "http://vocab.getty.edu/tgn/1127805-place"
40
+ replacements:
41
+ maxRecords: '10'
8
42
  term:
9
43
  -
10
- identifier: 'http://vocab.getty.edu/tgn/7017750'
44
+ identifier: 'http://vocab.getty.edu/tgn/7017750-place'
@@ -1,7 +1,13 @@
1
+ # Supported subauthorities:
2
+ # person
3
+ # organization
1
4
  ---
2
5
  authority:
3
6
  service: ld4l_cache
4
7
  search:
8
+ #------------------
9
+ # Connection tests
10
+ #------------------
5
11
  -
6
12
  query: washington
7
13
  -
@@ -10,6 +16,37 @@ search:
10
16
  -
11
17
  query: washington
12
18
  subauth: organization
19
+ #------------------
20
+ # Accuracy tests
21
+ #------------------
22
+ -
23
+ query: Gonzalez-Torres, Felix
24
+ subject_uri: "http://vocab.getty.edu/ulan/500114715"
25
+ position: 5
26
+ replacements:
27
+ maxRecords: '10'
28
+ -
29
+ query: Gouverneur
30
+ subauth: person
31
+ subject_uri: "http://vocab.getty.edu/ulan/500225342"
32
+ position: 5
33
+ replacements:
34
+ maxRecords: '10'
35
+ -
36
+ query: Octavio Medellin
37
+ subauth: person
38
+ subject_uri: "http://vocab.getty.edu/ulan/500333005"
39
+ position: 3
40
+ replacements:
41
+ maxRecords: '8'
42
+ -
43
+ query: University of Chicago Library
44
+ subauth: organization
45
+ result_size: 100
46
+ subject_uri: "http://vocab.getty.edu/ulan/500304715"
47
+ position: 5
48
+ replacements:
49
+ maxRecords: '10'
13
50
  term:
14
51
  -
15
52
  identifier: 'http://vocab.getty.edu/ulan/500020427'
@@ -0,0 +1,10 @@
1
+ ---
2
+ authority:
3
+ service: ld4l_cache
4
+ context: true
5
+ search:
6
+ #------------------
7
+ # Connection tests
8
+ #------------------
9
+ -
10
+ query: picard
@@ -0,0 +1,36 @@
1
+ ---
2
+ authority:
3
+ service: ld4l_cache
4
+ context: true
5
+ search:
6
+ #------------------
7
+ # Connection tests
8
+ #------------------
9
+ -
10
+ query: binding
11
+ result_size: 100
12
+ #------------------
13
+ # Accuracy tests
14
+ #------------------
15
+ -
16
+ query: case binding
17
+ subject_uri: "http://w3id.org/lob/concept/4165"
18
+ position: 5
19
+ replacements:
20
+ maxRecords: '10'
21
+ -
22
+ query: innhengt bind
23
+ subject_uri: "http://w3id.org/lob/concept/4165"
24
+ position: 5
25
+ replacements:
26
+ maxRecords: '10'
27
+ -
28
+ query: turned-in covers
29
+ subject_uri: "http://w3id.org/lob/concept/2494"
30
+ position: 3
31
+ replacements:
32
+ maxRecords: '8'
33
+
34
+ term:
35
+ -
36
+ identifier: 'http://w3id.org/lob/concept/3796'
@@ -3,50 +3,79 @@ authority:
3
3
  service: ld4l_cache
4
4
  context: true
5
5
  search:
6
- -
7
- query: workers
8
- -
9
- query: Biologists
10
- position: 1
11
- subject_uri: "http://id.loc.gov/authorities/demographicTerms/dg2015060613"
12
- replacements:
13
- maxRecords: '5'
14
- -
15
- query: Biologists
16
- position: 10
17
- subject_uri: "http://id.loc.gov/authorities/demographicTerms/dg2016060468"
18
- replacements:
19
- maxRecords: '20'
20
- -
21
- query: Kiwis
22
- position: 1
23
- subject_uri: "http://id.loc.gov/authorities/demographicTerms/dg2015060357"
24
- replacements:
25
- maxRecords: '5'
26
- -
27
- query: New Zealanders
28
- position: 8
29
- subject_uri: "http://id.loc.gov/authorities/demographicTerms/dg2016060205"
30
- replacements:
31
- maxRecords: '15'
32
- -
33
- query: New Zealanders
34
- position: 8
35
- subject_uri: "http://id.loc.gov/authorities/demographicTerms/dg2015060330"
36
- replacements:
37
- maxRecords: '15'
38
- -
39
- query: African Americans
40
- position: 5
41
- subject_uri: "http://id.loc.gov/authorities/demographicTerms/dg2015060859"
42
- replacements:
43
- maxRecords: '10'
44
- -
45
- query: Micmac
46
- position: 1
47
- subject_uri: "http://id.loc.gov/authorities/demographicTerms/dg2016060011"
48
- replacements:
49
- maxRecords: '5'
6
+ #------------------
7
+ # Connection tests
8
+ #------------------
9
+ -
10
+ query: workers
11
+ #------------------
12
+ # Accuracy tests
13
+ #------------------
14
+ # No subauths (yet, perhaps at some point we'll have to deal with madsrdf:DeprecatedAuthority)
15
+ -
16
+ query: Biologists
17
+ position: 1
18
+ subject_uri: "http://id.loc.gov/authorities/demographicTerms/dg2015060613"
19
+ replacements:
20
+ maxRecords: '5'
21
+ -
22
+ pending: true
23
+ query: Biologist
24
+ position: 3
25
+ subject_uri: "http://id.loc.gov/authorities/demographicTerms/dg2015060613"
26
+ replacements:
27
+ maxRecords: '5'
28
+ -
29
+ pending: true
30
+ query: social worker
31
+ position: 1
32
+ subject_uri: "http://id.loc.gov/authorities/demographicTerms/dg2015060087"
33
+ replacements:
34
+ maxRecords: '10'
35
+ -
36
+ pending: true
37
+ query: Social Worker
38
+ position: 1
39
+ subject_uri: "http://id.loc.gov/authorities/demographicTerms/dg2015060087"
40
+ replacements:
41
+ maxRecords: '10'
42
+ -
43
+ query: Kiwis
44
+ position: 1
45
+ subject_uri: "http://id.loc.gov/authorities/demographicTerms/dg2015060357"
46
+ replacements:
47
+ maxRecords: '5'
48
+ -
49
+ query: New Zealanders
50
+ position: 8
51
+ subject_uri: "http://id.loc.gov/authorities/demographicTerms/dg2016060205"
52
+ replacements:
53
+ maxRecords: '15'
54
+ -
55
+ query: New Zealanders
56
+ position: 8
57
+ subject_uri: "http://id.loc.gov/authorities/demographicTerms/dg2015060330"
58
+ replacements:
59
+ maxRecords: '15'
60
+ -
61
+ pending: true
62
+ query: African Americans
63
+ position: 5
64
+ subject_uri: "http://id.loc.gov/authorities/demographicTerms/dg2015060859"
65
+ replacements:
66
+ maxRecords: '10'
67
+ -
68
+ query: dancers
69
+ position: 3
70
+ subject_uri: "http://id.loc.gov/authorities/demographicTerms/dg2015060747"
71
+ replacements:
72
+ maxRecords: '10'
73
+ -
74
+ query: Micmac
75
+ position: 1
76
+ subject_uri: "http://id.loc.gov/authorities/demographicTerms/dg2016060011"
77
+ replacements:
78
+ maxRecords: '5'
50
79
  term:
51
80
  -
52
81
  identifier: 'http://id.loc.gov/authorities/demographicTerms/dg2015060460'
@@ -1,8 +1,14 @@
1
+ # Supported subauthorities:
2
+ # active
3
+ # deprecated
1
4
  ---
2
5
  authority:
3
6
  service: ld4l_cache
4
7
  context: true
5
8
  search:
9
+ #------------------
10
+ # Connection tests
11
+ #------------------
6
12
  -
7
13
  query: animation
8
14
  -
@@ -13,18 +19,35 @@ search:
13
19
  -
14
20
  query: Basketball television programs
15
21
  subauth: deprecated
22
+ #------------------
23
+ # Accuracy tests
24
+ #------------------
25
+ # active
16
26
  -
17
27
  query: Preliminary documents (Treaties)
18
28
  position: 10
19
29
  subject_uri: "http://id.loc.gov/authorities/genreForms/gf2011026703"
20
30
  replacements:
21
31
  maxRecords: '20'
32
+ -
33
+ pending: true
34
+ query: maps
35
+ position: 3
36
+ subject_uri: "http://id.loc.gov/authorities/genreForms/gf2011026387"
37
+ replacements:
38
+ maxRecords: '10'
22
39
  -
23
40
  query: Loose-leafs
24
41
  position: 10
25
42
  subject_uri: "http://id.loc.gov/authorities/genreForms/gf2011026373"
26
43
  replacements:
27
44
  maxRecords: '20'
45
+ -
46
+ query: Casebooks (Law)
47
+ position: 3
48
+ subject_uri: "http://id.loc.gov/authorities/genreForms/gf2011026115"
49
+ replacements:
50
+ maxRecords: '10'
28
51
  -
29
52
  query: Casebooks
30
53
  position: 10
@@ -92,6 +115,14 @@ search:
92
115
  subject_uri: "http://id.loc.gov/authorities/genreForms/gf2011026080"
93
116
  replacements:
94
117
  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'
95
126
  term:
96
127
  -
97
128
  identifier: "http://id.loc.gov/authorities/genreForms/gf2011026141"
@@ -1,8 +1,14 @@
1
+ # Supported subauthorities:
2
+ # geographic
3
+ # conference
1
4
  ---
2
5
  authority:
3
6
  service: ld4l_cache
4
7
  context: true
5
8
  search:
9
+ #------------------
10
+ # Connection tests
11
+ #------------------
6
12
  -
7
13
  query: Cayuga
8
14
  -
@@ -11,6 +17,71 @@ search:
11
17
  -
12
18
  query: ALA
13
19
  subauth: conference
20
+ #------------------
21
+ # Accuracy tests
22
+ #------------------
23
+ -
24
+ pending: true
25
+ query: Boston Mass
26
+ position: 3
27
+ subject_uri: "http://id.loc.gov/authorities/names/n79045553"
28
+ replacements:
29
+ maxRecords: '10'
30
+ -
31
+ pending: true
32
+ query: Boston Mass
33
+ position: 5
34
+ subauth: geographic
35
+ subject_uri: "http://id.loc.gov/authorities/names/n79045553"
36
+ replacements:
37
+ maxRecords: '10'
38
+ -
39
+ pending: true
40
+ query: Camden NJ
41
+ position: 8
42
+ subauth: geographic
43
+ subject_uri: "http://id.loc.gov/authorities/names/n81139356"
44
+ replacements:
45
+ maxRecords: '20'
46
+ -
47
+ pending: true
48
+ query: Madrid, Spain
49
+ position: 5
50
+ subauth: geographic
51
+ subject_uri: "http://id.loc.gov/authorities/names/n78089046"
52
+ replacements:
53
+ maxRecords: '15'
54
+ -
55
+ pending: true
56
+ query: Chicago, Ill
57
+ position: 5
58
+ subauth: geographic
59
+ subject_uri: "http://id.loc.gov/authorities/names/n78086438"
60
+ replacements:
61
+ maxRecords: '15'
62
+ -
63
+ pending: true
64
+ query: seattle
65
+ position: 5
66
+ subauth: geographic
67
+ subject_uri: "http://id.loc.gov/authorities/names/n79041965"
68
+ replacements:
69
+ maxRecords: '15'
70
+ -
71
+ pending: true
72
+ query: seattle (wash.)
73
+ position: 5
74
+ subauth: geographic
75
+ subject_uri: "http://id.loc.gov/authorities/names/n79041965"
76
+ replacements:
77
+ maxRecords: '15'
78
+ -
79
+ query: Non Food Uses of Crops
80
+ position: 5
81
+ subauth: conference
82
+ subject_uri: "http://id.loc.gov/authorities/names/nb2014001245"
83
+ replacements:
84
+ maxRecords: '15'
14
85
  term:
15
86
  -
16
87
  identifier: 'http://id.loc.gov/authorities/names/n92016188'
@@ -1,8 +1,15 @@
1
+ # Supported subauthorities:
2
+ # person
3
+ # organization
4
+ # family
1
5
  ---
2
6
  authority:
3
7
  service: ld4l_cache
4
8
  context: true
5
9
  search:
10
+ #------------------
11
+ # Connection tests
12
+ #------------------
6
13
  -
7
14
  query: 'mark twain'
8
15
  -
@@ -14,14 +21,75 @@ search:
14
21
  -
15
22
  query: 'twain'
16
23
  subauth: family
24
+ #------------------
25
+ # Accuracy tests - Part 1 (1-9)
26
+ #------------------
17
27
  -
18
- query: 'Twain, Mark, 1835-1910'
28
+ query: Twain, Mark, 1835-1910
19
29
  subauth: person
20
30
  position: 1
21
31
  subject_uri: "http://id.loc.gov/rwo/agents/n79021164"
22
32
  replacements:
23
33
  maxRecords: '10'
24
- context: true
34
+ -
35
+ pending: true
36
+ query: Camden, William
37
+ subauth: person
38
+ position: 10
39
+ subject_uri: "http://id.loc.gov/rwo/agents/n50031528"
40
+ replacements:
41
+ maxRecords: '20'
42
+ -
43
+ query: King Stephen 1947
44
+ subauth: person
45
+ position: 5
46
+ subject_uri: "http://id.loc.gov/rwo/agents/n79063767"
47
+ replacements:
48
+ maxRecords: '20'
49
+ -
50
+ query: Tweedy, Jeff
51
+ subauth: person
52
+ position: 5
53
+ subject_uri: "http://id.loc.gov/rwo/agents/no98126226"
54
+ replacements:
55
+ maxRecords: '20'
56
+ -
57
+ query: Tanaka, Shōzō
58
+ subauth: person
59
+ position: 5
60
+ subject_uri: "http://id.loc.gov/rwo/agents/n81047749"
61
+ replacements:
62
+ maxRecords: '20'
63
+ -
64
+ pending: true
65
+ query: Tanaka, Shozo
66
+ subauth: person
67
+ position: 5
68
+ subject_uri: "http://id.loc.gov/rwo/agents/n81047749"
69
+ replacements:
70
+ maxRecords: '20'
71
+ -
72
+ query: 田中正造
73
+ subauth: person
74
+ position: 5
75
+ subject_uri: "http://id.loc.gov/rwo/agents/n81047749"
76
+ replacements:
77
+ maxRecords: '20'
78
+ -
79
+ pending: true
80
+ query: Endalageta Kabada
81
+ subauth: person
82
+ position: 5
83
+ subject_uri: "http://id.loc.gov/rwo/agents/no2003094541"
84
+ replacements:
85
+ maxRecords: '20'
86
+ -
87
+ query: ʼEndālagétā Kabada
88
+ subauth: person
89
+ position: 5
90
+ subject_uri: "http://id.loc.gov/rwo/agents/no2003094541"
91
+ replacements:
92
+ maxRecords: '20'
25
93
  term:
26
94
  -
27
95
  identifier: 'http://id.loc.gov/rwo/agents/n79021164'