qa_server 7.3.0 → 7.7.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 (113) hide show
  1. checksums.yaml +5 -5
  2. data/.rubocop_fixme.yml +3 -0
  3. data/.travis.yml +4 -5
  4. data/CHANGELOG.md +45 -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 +106 -84
  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 +85 -0
  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/concerns/qa_server/performance_history_data_keys.rb +8 -0
  30. data/app/models/qa_server/authority_scenario.rb +4 -4
  31. data/app/models/qa_server/authority_status.rb +2 -2
  32. data/app/models/qa_server/authority_status_failure.rb +1 -1
  33. data/app/models/qa_server/performance_history.rb +2 -2
  34. data/app/models/qa_server/scenario_run_history.rb +63 -54
  35. data/app/models/qa_server/scenario_run_registry.rb +2 -2
  36. data/app/models/qa_server/scenarios.rb +26 -26
  37. data/app/models/qa_server/search_scenario.rb +24 -13
  38. data/app/models/qa_server/term_scenario.rb +29 -29
  39. data/app/prepends/prepended_linked_data/find_term.rb +40 -40
  40. data/app/prepends/prepended_linked_data/search_query.rb +36 -36
  41. data/app/prepends/prepended_rdf/rdf_graph.rb +7 -7
  42. data/app/presenters/concerns/qa_server/monitor_status/performance_datatable_behavior.rb +32 -32
  43. data/app/presenters/concerns/qa_server/monitor_status/performance_graph_behavior.rb +64 -64
  44. data/app/presenters/qa_server/check_status_presenter.rb +63 -7
  45. data/app/presenters/qa_server/monitor_status/current_status_presenter.rb +9 -8
  46. data/app/presenters/qa_server/monitor_status/history_presenter.rb +5 -2
  47. data/app/services/concerns/qa_server/gruff_graph.rb +16 -16
  48. data/app/services/qa_server/authority_loader_service.rb +14 -14
  49. data/app/services/qa_server/authority_validator_service.rb +1 -0
  50. data/app/services/qa_server/database_migrator.rb +14 -14
  51. data/app/services/qa_server/history_graphing_service.rb +30 -30
  52. data/app/services/qa_server/performance_calculator_service.rb +80 -80
  53. data/app/services/qa_server/performance_datatable_service.rb +35 -35
  54. data/app/services/qa_server/performance_graph_data_service.rb +27 -27
  55. data/app/services/qa_server/performance_graphing_service.rb +55 -55
  56. data/app/services/qa_server/performance_per_byte_calculator_service.rb +88 -0
  57. data/app/services/qa_server/performance_per_byte_data_service.rb +41 -0
  58. data/app/services/qa_server/scenarios_loader_service.rb +1 -1
  59. data/app/services/qa_server/time_period_service.rb +21 -21
  60. data/app/validators/qa_server/scenario_validator.rb +99 -87
  61. data/app/validators/qa_server/search_scenario_validator.rb +67 -61
  62. data/app/validators/qa_server/term_scenario_validator.rb +20 -15
  63. data/app/views/qa_server/check_status/index.html.erb +120 -24
  64. data/app/views/qa_server/monitor_status/_test_summary.html.erb +1 -1
  65. data/config/i18n-tasks.yml +133 -0
  66. data/config/locales/qa_server.en.yml +21 -5
  67. data/lib/generators/qa_server/assets_generator.rb +4 -4
  68. data/lib/generators/qa_server/templates/config/authorities/linked_data/cerl_ld4l_cache.json +2 -2
  69. data/lib/generators/qa_server/templates/config/authorities/linked_data/getty_aat_ld4l_cache.json +62 -1
  70. data/lib/generators/qa_server/templates/config/authorities/linked_data/getty_tgn_ld4l_cache.json +45 -11
  71. data/lib/generators/qa_server/templates/config/authorities/linked_data/getty_ulan_ld4l_cache.json +104 -8
  72. data/lib/generators/qa_server/templates/config/authorities/linked_data/isni_ld4l_cache.json +90 -0
  73. data/lib/generators/qa_server/templates/config/authorities/linked_data/ligatus_ld4l_cache.json +133 -0
  74. data/lib/generators/qa_server/templates/config/authorities/linked_data/locnames_rwo2_ld4l_cache.json +248 -0
  75. data/lib/generators/qa_server/templates/config/authorities/linked_data/locnames_rwo3_ld4l_cache.json +248 -0
  76. data/lib/generators/qa_server/templates/config/authorities/linked_data/locnames_rwo_ld4l_cache.json +4 -4
  77. data/lib/generators/qa_server/templates/config/authorities/linked_data/locvocabs_ld4l_cache.json +117 -0
  78. data/lib/generators/qa_server/templates/config/authorities/linked_data/mesh_nlm_ld4l_cache.json +135 -3
  79. data/lib/generators/qa_server/templates/config/authorities/linked_data/oclcfast_direct.json +5 -0
  80. data/lib/generators/qa_server/templates/config/authorities/linked_data/oclcfast_ld4l_cache.json +2 -4
  81. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/agrovoc_direct_validation.yml +31 -0
  82. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/agrovoc_ld4l_cache_validation.yml +31 -0
  83. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/cerl_ld4l_cache_validation.yml +24 -12
  84. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/dbpedia_ld4l_cache_validation.yml +33 -0
  85. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/geonames_direct_validation.yml +35 -0
  86. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/geonames_ld4l_cache_validation.yml +55 -5
  87. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/getty_aat_ld4l_cache_validation.yml +253 -0
  88. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/getty_tgn_ld4l_cache_validation.yml +31 -1
  89. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/getty_ulan_ld4l_cache_validation.yml +38 -1
  90. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/isni_ld4l_cache_validation.yml +10 -0
  91. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/ligatus_ld4l_cache_validation.yml +36 -0
  92. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locdemographics_ld4l_cache_validation.yml +69 -44
  93. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locgenres_ld4l_cache_validation.yml +22 -0
  94. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locnames_ld4l_cache_validation.yml +65 -0
  95. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locnames_rwo2_ld4l_cache_validation.yml +78 -0
  96. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locnames_rwo3_ld4l_cache_validation.yml +73 -0
  97. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locnames_rwo_ld4l_cache_validation.yml +71 -3
  98. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locperformance_ld4l_cache_validation.yml +6 -0
  99. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locsubjects_ld4l_cache_validation.yml +30 -0
  100. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locvocabs_ld4l_cache_validation.yml +430 -0
  101. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/mesh_nlm_ld4l_cache_validation.yml +54 -1
  102. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/nalt_ld4l_cache_validation.yml +37 -0
  103. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/oclc_fast_validation.yml +71 -5
  104. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/oclcfast_direct_validation.yml +73 -2
  105. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/oclcfast_ld4l_cache_validation.yml +73 -0
  106. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/rda_registry_ld4l_cache_validation.yml +307 -0
  107. data/lib/qa_server/configuration.rb +28 -24
  108. data/lib/qa_server/version.rb +1 -1
  109. data/qa_server.gemspec +6 -5
  110. data/spec/feature/accuracy_spec.rb +32 -0
  111. data/spec/i18n_spec.rb +35 -0
  112. data/spec/spec_helper.rb +4 -0
  113. metadata +66 -17
@@ -1,10 +1,63 @@
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: Address
19
+ subauth: publication_type
20
+ result_size: 80
21
+ #------------------
22
+ # Accuracy tests
23
+ #------------------
24
+ -
25
+ query: Malignant Hyperthermia
26
+ subject_uri: "http://id.nlm.nih.gov/mesh/D008305"
27
+ position: 3
28
+ replacements:
29
+ maxRecords: '5'
30
+ -
31
+ pending: true
32
+ query: Heart Attack
33
+ subauth: subject
34
+ subject_uri: "http://id.nlm.nih.gov/mesh/D009203"
35
+ position: 3
36
+ replacements:
37
+ maxRecords: '5'
38
+ -
39
+ query: Letter
40
+ subauth: publication_type
41
+ subject_uri: "http://id.nlm.nih.gov/mesh/D016422"
42
+ position: 3
43
+ replacements:
44
+ maxRecords: '8'
45
+ -
46
+ pending: true
47
+ query: Spain
48
+ subauth: subject
49
+ subject_uri: "http://id.nlm.nih.gov/mesh/D013030"
50
+ position: 3
51
+ replacements:
52
+ maxRecords: '8'
53
+ -
54
+ pending: true
55
+ query: Email
56
+ subauth: subject
57
+ subject_uri: "http://id.nlm.nih.gov/mesh/D034742"
58
+ position: 5
59
+ replacements:
60
+ maxRecords: '10'
8
61
  term:
9
62
  -
10
63
  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,15 @@ search:
22
25
  subauth: topic
23
26
  replacements:
24
27
  maxRecords: '4'
28
+ # -
29
+ # # This is an event at OCLCFAST web-search, but a meeting through OCLCFAST API.
30
+ # query: Bronze Night
31
+ # subauth: event_name
32
+ # replacements:
33
+ # maxRecords: '4'
25
34
  -
26
- query: Festival
27
- subauth: event_name
35
+ query: convention
36
+ subauth: meeting
28
37
  replacements:
29
38
  maxRecords: '4'
30
39
  -
@@ -53,6 +62,68 @@ search:
53
62
  subauth: alt_lc
54
63
  replacements:
55
64
  maxRecords: '4'
65
+ #------------------
66
+ # Accuracy tests
67
+ #------------------
68
+ -
69
+ query: Tralee & Dingle Railway
70
+ subject_uri: "http://id.worldcat.org/fast/1733583"
71
+ position: 3
72
+ replacements:
73
+ maxRecords: '5'
74
+ -
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
+ # This is a meeting in OCLCFAST_DIRECT, but event in OCLCFAST_LD4L_CACHE.
83
+ pending: true
84
+ query: People's International Tribunal on the Rights of Indigenous Hawaiians
85
+ subauth: event
86
+ subject_uri: "http://id.worldcat.org/fast/1410299"
87
+ position: 3
88
+ replacements:
89
+ maxRecords: '8'
90
+ -
91
+ query: Science Fiction
92
+ subauth: meeting
93
+ subject_uri: "http://id.worldcat.org/fast/1406163"
94
+ position: 5
95
+ replacements:
96
+ maxRecords: '10'
97
+ -
98
+ pending: true
99
+ query: University of Chicago Library
100
+ subauth: organization
101
+ subject_uri: "http://id.worldcat.org/fast/539173"
102
+ position: 5
103
+ replacements:
104
+ maxRecords: '10'
105
+ -
106
+ query: Taylor, Charles Hollis
107
+ subauth: person
108
+ subject_uri: "http://id.worldcat.org/fast/1616125"
109
+ position: 15
110
+ replacements:
111
+ maxRecords: '20'
112
+ -
113
+ query: Sjælland
114
+ subauth: place
115
+ result_size: 190
116
+ subject_uri: "http://id.worldcat.org/fast/1243881"
117
+ position: 5
118
+ replacements:
119
+ maxRecords: '10'
120
+ -
121
+ query: Scream
122
+ subauth: work
123
+ subject_uri: "http://id.worldcat.org/fast/1358031"
124
+ position: 10
125
+ replacements:
126
+ maxRecords: '20'
56
127
  term:
57
128
  -
58
129
  identifier: '1914919'
@@ -2,6 +2,9 @@
2
2
  authority:
3
3
  service: ld4l_cache
4
4
  search:
5
+ #------------------
6
+ # Connection tests
7
+ #------------------
5
8
  -
6
9
  query: 'mark twain'
7
10
  -
@@ -10,6 +13,9 @@ search:
10
13
  -
11
14
  query: tribunal
12
15
  subauth: event
16
+ -
17
+ query: convention
18
+ subauth: meeting
13
19
  -
14
20
  query: 'mark twain'
15
21
  subauth: person
@@ -25,6 +31,73 @@ search:
25
31
  -
26
32
  query: 'mark twain'
27
33
  subauth: work
34
+ #------------------
35
+ # Accuracy tests
36
+ #------------------
37
+ -
38
+ query: Tralee & Dingle Railway
39
+ subject_uri: "http://id.worldcat.org/fast/1733583"
40
+ position: 3
41
+ replacements:
42
+ maxRecords: '5'
43
+ -
44
+ query: Sleep-overs
45
+ subauth: concept
46
+ subject_uri: "http://id.worldcat.org/fast/1120873"
47
+ position: 5
48
+ replacements:
49
+ maxRecords: '10'
50
+ -
51
+ query: People's International Tribunal on the Rights of Indigenous Hawaiians
52
+ subauth: event
53
+ subject_uri: "http://id.worldcat.org/fast/1410299"
54
+ position: 3
55
+ replacements:
56
+ maxRecords: '8'
57
+ -
58
+ query: Science Fiction
59
+ subauth: meeting
60
+ subject_uri: "http://id.worldcat.org/fast/1406163"
61
+ position: 5
62
+ replacements:
63
+ maxRecords: '10'
64
+ -
65
+ pending: true
66
+ query: University of Chicago Library
67
+ subauth: organization
68
+ subject_uri: "http://id.worldcat.org/fast/539173"
69
+ position: 5
70
+ replacements:
71
+ maxRecords: '10'
72
+ -
73
+ query: Taylor, Charles Hollis
74
+ subauth: person
75
+ subject_uri: "http://id.worldcat.org/fast/1616125"
76
+ position: 15
77
+ replacements:
78
+ maxRecords: '20'
79
+ -
80
+ query: Sjælland
81
+ subauth: place
82
+ result_size: 190
83
+ subject_uri: "http://id.worldcat.org/fast/1243881"
84
+ position: 5
85
+ replacements:
86
+ maxRecords: '10'
87
+ -
88
+ query: Scream
89
+ subauth: work
90
+ subject_uri: "http://id.worldcat.org/fast/1358031"
91
+ position: 10
92
+ replacements:
93
+ maxRecords: '20'
94
+ -
95
+ query: 'mark twain'
96
+ subauth: intangible
97
+ subject_uri: "http://id.worldcat.org/fast/1200561"
98
+ position: 3
99
+ replacements:
100
+ maxRecords: '10'
28
101
  term:
29
102
  -
30
103
  identifier: 'http://id.worldcat.org/fast/1914919'
@@ -3,6 +3,9 @@ authority:
3
3
  service: ld4l_cache
4
4
  context: true
5
5
  search:
6
+ #------------------
7
+ # Connection tests
8
+ #------------------
6
9
  -
7
10
  query: full
8
11
  subauth: aspect_ratio
@@ -253,3 +256,307 @@ search:
253
256
  query: laser
254
257
  subauth: video_format
255
258
  result_size: 130
259
+ #------------------
260
+ # Accuracy tests
261
+ #------------------
262
+ -
263
+ query: full
264
+ subauth: aspect_ratio
265
+ position: 3
266
+ subject_uri: "http://rdaregistry.info/termList/AspectRatio/1001"
267
+ replacements:
268
+ maxRecords: '20'
269
+ -
270
+ query: librettos
271
+ subauth: collective_title
272
+ position: 3
273
+ subject_uri: "http://rdaregistry.info/termList/CollTitle/1010"
274
+ replacements:
275
+ maxRecords: '20'
276
+ -
277
+ query: coat of arms
278
+ subauth: illustrative_content
279
+ position: 3
280
+ subject_uri: "http://rdaregistry.info/termList/IllusContent/1001"
281
+ replacements:
282
+ maxRecords: '20'
283
+ -
284
+ query: multipart
285
+ subauth: mode_of_issuance
286
+ position: 3
287
+ subject_uri: "http://rdaregistry.info/termList/ModeIssue/1002"
288
+ replacements:
289
+ maxRecords: '20'
290
+ -
291
+ query: tonic sol-fa
292
+ subauth: form_of_musical_notation
293
+ position: 3
294
+ subject_uri: "http://rdaregistry.info/termList/MusNotation/1009"
295
+ replacements:
296
+ maxRecords: '20'
297
+ -
298
+ query: jigsaw puzzle
299
+ subauth: carrier_extent_unit
300
+ position: 3
301
+ subject_uri: "http://rdaregistry.info/termList/RDACarrierEU/1017"
302
+ replacements:
303
+ maxRecords: '20'
304
+ -
305
+ query: online
306
+ subauth: carrier_type
307
+ position: 3
308
+ subject_uri: "http://rdaregistry.info/termList/RDACarrierType/1018"
309
+ replacements:
310
+ maxRecords: '20'
311
+ -
312
+ query: vector
313
+ subauth: cartographic_data_type
314
+ position: 3
315
+ subject_uri: "http://rdaregistry.info/termList/RDACartoDT/1002"
316
+ replacements:
317
+ maxRecords: '20'
318
+ -
319
+ query: polychrome
320
+ subauth: colour_content
321
+ position: 3
322
+ subject_uri: "http://rdaregistry.info/termList/RDAColourContent/1003"
323
+ replacements:
324
+ maxRecords: '20'
325
+ -
326
+ query: image
327
+ subauth: content_type
328
+ position: 8
329
+ subject_uri: "http://rdaregistry.info/termList/RDAContentType/1014"
330
+ replacements:
331
+ maxRecords: '20'
332
+ -
333
+ query: mother
334
+ subauth: generation
335
+ position: 3
336
+ subject_uri: "http://rdaregistry.info/termList/RDAGeneration/1008"
337
+ replacements:
338
+ maxRecords: '20'
339
+ -
340
+ query: paper
341
+ subauth: material
342
+ position: 3
343
+ subject_uri: "http://rdaregistry.info/termList/RDAMaterial/1025"
344
+ replacements:
345
+ maxRecords: '20'
346
+ -
347
+ query: audio
348
+ subauth: media_type
349
+ position: 3
350
+ subject_uri: "http://rdaregistry.info/termList/RDAMediaType/1001"
351
+ replacements:
352
+ maxRecords: '20'
353
+ -
354
+ query: mixed
355
+ subauth: polarity
356
+ position: 3
357
+ subject_uri: "http://rdaregistry.info/termList/RDAPolarity/1003"
358
+ replacements:
359
+ maxRecords: '20'
360
+ -
361
+ query: title
362
+ subauth: recording_sources
363
+ position: 7
364
+ subject_uri: "http://rdaregistry.info/termList/RDARecordingSources/1003"
365
+ replacements:
366
+ maxRecords: '20'
367
+ -
368
+ query: high
369
+ subauth: reduction_ratio
370
+ position: 3
371
+ subject_uri: "http://rdaregistry.info/termList/RDAReductionRatio/1005"
372
+ replacements:
373
+ maxRecords: '20'
374
+ -
375
+ query: Region 5
376
+ subauth: regional_encoding
377
+ position: 3
378
+ subject_uri: "http://rdaregistry.info/termList/RDARegionalEncoding/1011"
379
+ replacements:
380
+ maxRecords: '20'
381
+ -
382
+ query: self-describing manifestation
383
+ subauth: terms
384
+ position: 3
385
+ subject_uri: "http://rdaregistry.info/termList/RDATerms/1080"
386
+ replacements:
387
+ maxRecords: '20'
388
+ -
389
+ query: spiral
390
+ subauth: type_of_binding
391
+ position: 3
392
+ subject_uri: "http://rdaregistry.info/termList/RDATypeOfBinding/1003"
393
+ replacements:
394
+ maxRecords: '20'
395
+ -
396
+ query: blueline process
397
+ subauth: production_method
398
+ position: 3
399
+ subject_uri: "http://rdaregistry.info/termList/RDAproductionMethod/1001"
400
+ replacements:
401
+ maxRecords: '20'
402
+ -
403
+ query: braille
404
+ subauth: form_of_tactile_notation
405
+ position: 4
406
+ subject_uri: "http://rdaregistry.info/termList/TacNotation/1001"
407
+ replacements:
408
+ maxRecords: '20'
409
+ -
410
+ query: 48mo
411
+ subauth: bibliographic_format
412
+ position: 4
413
+ subject_uri: "http://rdaregistry.info/termList/bookFormat/1008"
414
+ replacements:
415
+ maxRecords: '20'
416
+ -
417
+ query: PAL
418
+ subauth: broadcast_standard
419
+ position: 4
420
+ subject_uri: "http://rdaregistry.info/termList/broadcastStand/1003"
421
+ replacements:
422
+ maxRecords: '20'
423
+ -
424
+ query: quadraphonic
425
+ subauth: config_playback_channels
426
+ position: 4
427
+ subject_uri: "http://rdaregistry.info/termList/configPlayback/1003"
428
+ replacements:
429
+ maxRecords: '20'
430
+ -
431
+ query: audio
432
+ subauth: file_type
433
+ position: 3
434
+ subject_uri: "http://rdaregistry.info/termList/fileType/1001"
435
+ replacements:
436
+ maxRecords: '20'
437
+ -
438
+ query: large
439
+ subauth: font_size
440
+ position: 3
441
+ subject_uri: "http://rdaregistry.info/termList/fontSize/1002"
442
+ replacements:
443
+ maxRecords: '20'
444
+ -
445
+ query: choir
446
+ subauth: format_of_notated_music
447
+ position: 3
448
+ subject_uri: "http://rdaregistry.info/termList/formatNoteMus/1001"
449
+ replacements:
450
+ maxRecords: '20'
451
+ -
452
+ query: times
453
+ subauth: frequency
454
+ position: 3
455
+ subject_uri: "http://rdaregistry.info/termList/frequency/1006"
456
+ replacements:
457
+ maxRecords: '20'
458
+ -
459
+ query: unknown
460
+ subauth: gender
461
+ position: 3
462
+ subject_uri: "http://rdaregistry.info/termList/gender/1003"
463
+ replacements:
464
+ maxRecords: '20'
465
+ -
466
+ query: fine
467
+ subauth: groove_pitch
468
+ position: 1
469
+ subject_uri: "http://rdaregistry.info/termList/groovePitch/1005"
470
+ replacements:
471
+ maxRecords: '10'
472
+ -
473
+ query: coarse
474
+ subauth: groove_width
475
+ position: 1
476
+ subject_uri: "http://rdaregistry.info/termList/grooveWidth/1001"
477
+ replacements:
478
+ maxRecords: '10'
479
+ -
480
+ query: single
481
+ subauth: layout
482
+ position: 2
483
+ subject_uri: "http://rdaregistry.info/termList/layout/1002"
484
+ replacements:
485
+ maxRecords: '10'
486
+ -
487
+ query: action stroke
488
+ subauth: form_of_notated_movement
489
+ position: 2
490
+ subject_uri: "http://rdaregistry.info/termList/noteMove/1009"
491
+ replacements:
492
+ maxRecords: '10'
493
+ -
494
+ query: imax
495
+ subauth: presentation_format
496
+ position: 2
497
+ subject_uri: "http://rdaregistry.info/termList/presFormat/1004"
498
+ replacements:
499
+ maxRecords: '10'
500
+ -
501
+ query: optical
502
+ subauth: recording_medium
503
+ position: 2
504
+ subject_uri: "http://rdaregistry.info/termList/recMedium/1003"
505
+ replacements:
506
+ maxRecords: '10'
507
+ -
508
+ query: music
509
+ subauth: rofch
510
+ position: 2
511
+ subject_uri: "http://rdaregistry.info/termList/rofch/T1002"
512
+ replacements:
513
+ maxRecords: '10'
514
+ -
515
+ query: varies
516
+ subauth: scale_designation
517
+ position: 2
518
+ subject_uri: "http://rdaregistry.info/termList/scale/1003"
519
+ replacements:
520
+ maxRecords: '10'
521
+ -
522
+ query: silent
523
+ subauth: sound_content
524
+ position: 2
525
+ subject_uri: "http://rdaregistry.info/termList/soundCont/1002"
526
+ replacements:
527
+ maxRecords: '10'
528
+ -
529
+ query: dolby a
530
+ subauth: special_playback
531
+ position: 4
532
+ subject_uri: "http://rdaregistry.info/termList/specPlayback/1005"
533
+ replacements:
534
+ maxRecords: '10'
535
+ -
536
+ query: provisional
537
+ subauth: status_of_identification
538
+ position: 4
539
+ subject_uri: "http://rdaregistry.info/termList/statIdentification/1002"
540
+ replacements:
541
+ maxRecords: '10'
542
+ -
543
+ query: edge
544
+ subauth: track_config
545
+ position: 4
546
+ subject_uri: "http://rdaregistry.info/termList/trackConfig/1002"
547
+ replacements:
548
+ maxRecords: '10'
549
+ -
550
+ query: analog
551
+ subauth: type_of_recording
552
+ position: 4
553
+ subject_uri: "http://rdaregistry.info/termList/typeRec/1001"
554
+ replacements:
555
+ maxRecords: '10'
556
+ -
557
+ query: Hi 8
558
+ subauth: video_format
559
+ position: 3
560
+ subject_uri: "http://rdaregistry.info/termList/videoFormat/1007"
561
+ replacements:
562
+ maxRecords: '10'