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
@@ -73,6 +73,7 @@
73
73
  "geocoordinates": "oclc.geographic",
74
74
  "geographic": "oclc.geographic",
75
75
  "event_name": "oclc.eventName",
76
+ "meeting": "oclc.meeting",
76
77
  "person": "oclc.personalName",
77
78
  "personal_name": "oclc.personalName",
78
79
  "organization": "oclc.corporateName",
@@ -92,13 +92,10 @@
92
92
  "concept": "Concept",
93
93
  "event": "Event",
94
94
  "person": "Person",
95
- "personal_name": "Person",
96
95
  "organization": "Organization",
97
- "corporate_name": "Organization",
98
96
  "place": "Place",
99
97
  "intangible": "Intangible",
100
- "work": "Work",
101
- "creative_work": "Work"
98
+ "work": "Work"
102
99
  }
103
100
  }
104
101
  }
@@ -2,8 +2,39 @@
2
2
  authority:
3
3
  service: direct
4
4
  search:
5
+ #------------------
6
+ # Connection tests
7
+ #------------------
5
8
  -
6
9
  query: milk
10
+ #------------------
11
+ # Accuracy tests
12
+ #------------------
13
+ -
14
+ pending: true
15
+ query: extrakce rozpouštědlem
16
+ position: 5
17
+ subject_uri: "http://aims.fao.org/aos/agrovoc/c_28368"
18
+ replacements:
19
+ maxRecords: '20'
20
+ -
21
+ query: vodka
22
+ position: 1
23
+ subject_uri: "http://aims.fao.org/aos/agrovoc/c_23837"
24
+ replacements:
25
+ maxRecords: '1'
26
+ -
27
+ query: Mud Sunfish
28
+ position: 5
29
+ subject_uri: "http://aims.fao.org/aos/agrovoc/c_42559"
30
+ replacements:
31
+ maxRecords: '10'
32
+ -
33
+ query: Acantharchus pomotis
34
+ position: 1
35
+ subject_uri: "http://aims.fao.org/aos/agrovoc/c_42559"
36
+ replacements:
37
+ maxRecords: '10'
7
38
  term:
8
39
  -
9
40
  identifier: "http://aims.fao.org/aos/agrovoc/c_9513"
@@ -1,10 +1,41 @@
1
+ # Supported subauthorities: none
1
2
  ---
2
3
  authority:
3
4
  service: ld4l_cache
4
5
  context: true
5
6
  search:
7
+ #------------------
8
+ # Connection tests
9
+ #------------------
6
10
  -
7
11
  query: milk
12
+ #------------------
13
+ # Accuracy tests
14
+ #------------------
15
+ -
16
+ query: extrakce rozpouštědlem
17
+ position: 5
18
+ subject_uri: "http://aims.fao.org/aos/agrovoc/c_28368"
19
+ replacements:
20
+ maxRecords: '20'
21
+ -
22
+ query: vodka
23
+ position: 1
24
+ subject_uri: "http://aims.fao.org/aos/agrovoc/c_23837"
25
+ replacements:
26
+ maxRecords: '1'
27
+ -
28
+ query: Mud Sunfish
29
+ position: 5
30
+ subject_uri: "http://aims.fao.org/aos/agrovoc/c_42559"
31
+ replacements:
32
+ maxRecords: '10'
33
+ -
34
+ query: Acantharchus pomotis
35
+ position: 1
36
+ subject_uri: "http://aims.fao.org/aos/agrovoc/c_42559"
37
+ replacements:
38
+ maxRecords: '10'
8
39
  term:
9
40
  -
10
41
  identifier: 'http://aims.fao.org/aos/agrovoc/c_9513'
@@ -1,8 +1,15 @@
1
+ # Supported subauthorities:
2
+ # person
3
+ # corporate
4
+ # imprint
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: John Winters
8
15
  -
@@ -14,27 +21,38 @@ search:
14
21
  -
15
22
  query: Typographia Plantiniana
16
23
  subauth: corporate
24
+ #------------------
25
+ # Accuracy tests
26
+ #------------------
17
27
  -
18
- query: Joannes Philippus de Lignamine
28
+ query: Johannes Philippus de Lignamine
19
29
  subauth: person
20
- position: 1
30
+ position: 4
21
31
  subject_uri: "http://thesaurus.cerl.org/record/cnp00372755"
22
32
  replacements:
23
33
  maxRecords: '8'
24
34
  -
25
- query: Joannes Philippus de Lignamine
35
+ query: Johannes Philippus de Lignamine
26
36
  subauth: person
27
- position: 2
37
+ position: 4
28
38
  subject_uri: "http://thesaurus.cerl.org/record/cnp00895966"
29
39
  replacements:
30
40
  maxRecords: '8'
31
41
  -
42
+ pending: true
32
43
  query: Jacob Winter
33
44
  subauth: person
34
45
  position: 2
35
46
  subject_uri: "http://thesaurus.cerl.org/record/cnp02081773"
36
47
  replacements:
37
48
  maxRecords: '8'
49
+ -
50
+ query: Typographia Plantiniana
51
+ subauth: corporate
52
+ position: 1
53
+ subject_uri: "http://thesaurus.cerl.org/record/cnc00011608"
54
+ replacements:
55
+ maxRecords: '8'
38
56
  -
39
57
  query: Jacob Winter
40
58
  subauth: imprint
@@ -43,19 +61,13 @@ search:
43
61
  replacements:
44
62
  maxRecords: '8'
45
63
  -
64
+ pending: true
46
65
  query: Plantin
47
66
  subauth: imprint
48
67
  position: 1
49
68
  subject_uri: "http://thesaurus.cerl.org/record/cni00007649"
50
69
  replacements:
51
70
  maxRecords: '8'
52
- -
53
- query: Typographia Plantiniana
54
- subauth: corporate
55
- position: 1
56
- subject_uri: "http://thesaurus.cerl.org/record/cnc00011608"
57
- replacements:
58
- maxRecords: '8'
59
71
  term:
60
72
  -
61
73
  identifier: "http://thesaurus.cerl.org/record/cnp00895966"
@@ -1,9 +1,42 @@
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
  search:
12
+ #------------------
13
+ # Connection tests
14
+ #------------------
5
15
  -
6
16
  query: 'Barack Obama'
17
+ #------------------
18
+ # Accuracy tests
19
+ #------------------
20
+ -
21
+ query: Volleyball
22
+ position: 5
23
+ subject_uri: "http://dbpedia.org/resource/Volleyball"
24
+ replacements:
25
+ maxRecords: '10'
26
+ -
27
+ pending: true
28
+ query: Volleyb
29
+ position: 5
30
+ subject_uri: "http://dbpedia.org/resource/Volleyball"
31
+ replacements:
32
+ maxRecords: '10'
33
+ -
34
+ pending: true
35
+ query: volleyb
36
+ position: 5
37
+ subject_uri: "http://dbpedia.org/resource/Volleyball"
38
+ replacements:
39
+ maxRecords: '10'
7
40
  term:
8
41
  -
9
42
  identifier: 'http://dbpedia.org/resource/Barack_Obama'
@@ -2,8 +2,43 @@
2
2
  authority:
3
3
  service: direct
4
4
  search:
5
+ #------------------
6
+ # Connection tests
7
+ #------------------
5
8
  -
6
9
  query: Ithaca
10
+ #------------------
11
+ # Accuracy tests
12
+ #------------------
13
+ -
14
+ pending: true
15
+ query: France
16
+ subject_uri: 'http://sws.geonames.org/261707/'
17
+ position: 10
18
+ replacements:
19
+ maxRecords: '15'
20
+ -
21
+ pending: true
22
+ query: New York
23
+ subject_uri: "http://sws.geonames.org/5128581/"
24
+ position: 3
25
+ replacements:
26
+ maxRecords: '8'
27
+ -
28
+ pending: true
29
+ query: Chicago
30
+ subject_uri: 'http://sws.geonames.org/4887398/'
31
+ position: 10
32
+ replacements:
33
+ maxRecords: '15'
34
+ -
35
+ pending: true
36
+ query: Ithaca Island
37
+ subauth: terrain
38
+ subject_uri: "http://sws.geonames.org/261707/"
39
+ position: 10
40
+ replacements:
41
+ maxRecords: '15'
7
42
  term:
8
43
  -
9
44
  identifier: 'https://sws.geonames.org/261707/'
@@ -1,15 +1,25 @@
1
+ # Supported subauthorities:
2
+ # area
3
+ # place
4
+ # area_and_place
5
+ # water
6
+ # park
7
+ # road
8
+ # spot
9
+ # terrain
10
+ # undersea
11
+ # vegetation
12
+ # all
1
13
  ---
2
14
  authority:
3
15
  service: ld4l_cache
4
16
  context: true
5
17
  search:
18
+ #------------------
19
+ # Connection tests
20
+ #------------------
6
21
  -
7
22
  query: Ithaca
8
- -
9
- query: France
10
- subauth: area
11
- expect: 'http://sws.geonames.org/261707/'
12
- postion: 10
13
23
  -
14
24
  query: Ithaca
15
25
  subauth: place
@@ -38,6 +48,49 @@ search:
38
48
  -
39
49
  query: Red
40
50
  subauth: vegetation
51
+ #------------------
52
+ # Accuracy tests
53
+ #------------------
54
+ # TBD - tests for subauths
55
+ # area_and_place
56
+ # water
57
+ # park
58
+ # road
59
+ # spot
60
+ # terrain
61
+ # undersea
62
+ # vegetation
63
+ # all
64
+ -
65
+ pending: true
66
+ query: New York
67
+ subject_uri: "http://sws.geonames.org/5128581/"
68
+ position: 3
69
+ replacements:
70
+ maxRecords: '8'
71
+ -
72
+ pending: true
73
+ query: France
74
+ subauth: area
75
+ subject_uri: "http://sws.geonames.org/3017382"
76
+ position: 10
77
+ replacements:
78
+ maxRecords: '15'
79
+ -
80
+ pending: true
81
+ query: Chicago
82
+ subauth: place
83
+ subject_uri: "http://sws.geonames.org/4887398/"
84
+ position: 10
85
+ replacements:
86
+ maxRecords: '15'
87
+ -
88
+ query: Ithaca Island
89
+ subauth: terrain
90
+ subject_uri: "http://sws.geonames.org/261707/"
91
+ position: 10
92
+ replacements:
93
+ maxRecords: '15'
41
94
  term:
42
95
  -
43
96
  identifier: 'http://sws.geonames.org/261707/'
@@ -1,7 +1,41 @@
1
+ # Supported subauthorities:
2
+ # Activities
3
+ # Activities__Disciplines
4
+ # Activities__Events
5
+ # Activities__Functions
6
+ # Activities__Physical_and_Mental
7
+ # Activities__Processes_and_Techniques
8
+ # Agents
9
+ # Agents__Living_Organisms
10
+ # Agents__Organizations
11
+ # Agents__People
12
+ # Associated_Concepts
13
+ # Associated_Concepts__Associated_Concepts
14
+ # Brand_Names
15
+ # Brand_Names__Brand_Names
16
+ # Materials
17
+ # Materials__Materials
18
+ # Objects
19
+ # Objects__Built_Environment
20
+ # Objects__Components
21
+ # Objects__Furnishings_and_Equipment
22
+ # Objects__Object_Genres
23
+ # Objects__Object_Groupings and Systems
24
+ # Objects__Visual_and_Verbal_Communication
25
+ # Physical_Attributes
26
+ # Physical_Attributes__Attributes_and_Properties
27
+ # Physical_Attributes__Color
28
+ # Physical_Attributes__Conditions_and_Effects
29
+ # Physical_Attributes__Design_Elements
30
+ # Styles_and_Periods
31
+ # Styles_and_Periods__Styles_and_Periods
1
32
  ---
2
33
  authority:
3
34
  service: ld4l_cache
4
35
  search:
36
+ #------------------
37
+ # Connection tests
38
+ #------------------
5
39
  -
6
40
  query: amphora
7
41
  -
@@ -115,6 +149,228 @@ search:
115
149
  query: Contemporary
116
150
  subauth: Styles_and_Periods__Styles_and_Periods
117
151
  result_size: 190
152
+ #------------------
153
+ # Accuracy tests
154
+ #------------------
155
+ -
156
+ query: precious
157
+ position: 5
158
+ subject_uri: "http://vocab.getty.edu/aat/300011054"
159
+ replacements:
160
+ maxRecords: '10'
161
+ -
162
+ query: demonstrations
163
+ subauth: Activities
164
+ position: 5
165
+ subject_uri: "http://vocab.getty.edu/aat/300262795"
166
+ replacements:
167
+ maxRecords: '10'
168
+ -
169
+ query: demonstrations
170
+ subauth: Activities__Events
171
+ position: 5
172
+ subject_uri: "http://vocab.getty.edu/aat/300262795"
173
+ replacements:
174
+ maxRecords: '10'
175
+ -
176
+ query: ontology
177
+ subauth: Activities__Disciplines
178
+ position: 5
179
+ subject_uri: "http://vocab.getty.edu/aat/300054295"
180
+ replacements:
181
+ maxRecords: '10'
182
+ -
183
+ query: lobbying
184
+ subauth: Activities__Functions
185
+ position: 5
186
+ subject_uri: "http://vocab.getty.edu/aat/300077524"
187
+ replacements:
188
+ maxRecords: '10'
189
+ -
190
+ query: bhāvanā
191
+ subauth: Activities__Physical_and_Mental
192
+ position: 5
193
+ subject_uri: "http://vocab.getty.edu/aat/300264364"
194
+ replacements:
195
+ maxRecords: '10'
196
+ -
197
+ query: gestabiliseerd
198
+ subauth: Activities__Processes_and_Techniques
199
+ position: 5
200
+ subject_uri: "http://vocab.getty.edu/aat/300163757"
201
+ replacements:
202
+ maxRecords: '10'
203
+ -
204
+ query: disidente
205
+ subauth: Agents
206
+ position: 5
207
+ subject_uri: "http://vocab.getty.edu/aat/300136713"
208
+ replacements:
209
+ maxRecords: '10'
210
+ -
211
+ query: RNA
212
+ subauth: Agents__Living_Organisms
213
+ position: 5
214
+ subject_uri: "http://vocab.getty.edu/aat/300410331"
215
+ replacements:
216
+ maxRecords: '10'
217
+ -
218
+ query: printmaking studios
219
+ subauth: Agents__Organizations
220
+ position: 5
221
+ subject_uri: "http://vocab.getty.edu/aat/300312299"
222
+ replacements:
223
+ maxRecords: '10'
224
+ -
225
+ pending: true
226
+ query: alter egos
227
+ subauth: Agents__People
228
+ position: 5
229
+ subject_uri: "http://vocab.getty.edu/aat/300435335"
230
+ replacements:
231
+ maxRecords: '10'
232
+ -
233
+ query: credit
234
+ subauth: Associated_Concepts
235
+ position: 5
236
+ subject_uri: "http://vocab.getty.edu/aat/300055706"
237
+ replacements:
238
+ maxRecords: '10'
239
+ -
240
+ pending: true
241
+ query: palindrome
242
+ subauth: Associated_Concepts__Associated_Concepts
243
+ position: 5
244
+ subject_uri: "http://vocab.getty.edu/aat/300417834"
245
+ replacements:
246
+ maxRecords: '10'
247
+ -
248
+ query: Crayola Cutter (TM)
249
+ subauth: Brand_Names
250
+ position: 5
251
+ subject_uri: "http://vocab.getty.edu/aat/300391344"
252
+ replacements:
253
+ maxRecords: '10'
254
+ -
255
+ query: Masonite
256
+ subauth: Brand_Names__Brand_Names
257
+ position: 5
258
+ subject_uri: "http://vocab.getty.edu/aat/300014205"
259
+ replacements:
260
+ maxRecords: '10'
261
+ -
262
+ query: mesh
263
+ subauth: Materials
264
+ position: 5
265
+ subject_uri: "http://vocab.getty.edu/aat/300014654"
266
+ replacements:
267
+ maxRecords: '10'
268
+ -
269
+ query: residuos tóxicos
270
+ subauth: Materials__Materials
271
+ position: 5
272
+ subject_uri: "http://vocab.getty.edu/aat/300253882"
273
+ replacements:
274
+ maxRecords: '10'
275
+ -
276
+ pending: true
277
+ query: lloy lloy
278
+ subauth: Objects
279
+ position: 5
280
+ subject_uri: "http://vocab.getty.edu/aat/300410934"
281
+ replacements:
282
+ maxRecords: '10'
283
+ -
284
+ query: areas, protected
285
+ subauth: Objects__Built_Environment
286
+ position: 5
287
+ subject_uri: "http://vocab.getty.edu/aat/300386975"
288
+ replacements:
289
+ maxRecords: '10'
290
+ -
291
+ query: gewelfschotels
292
+ subauth: Objects__Components
293
+ position: 5
294
+ subject_uri: "http://vocab.getty.edu/aat/300391167"
295
+ replacements:
296
+ maxRecords: '10'
297
+ -
298
+ query: dung-chen
299
+ subauth: Objects__Furnishings_and_Equipment
300
+ position: 5
301
+ subject_uri: "http://vocab.getty.edu/aat/300222195"
302
+ replacements:
303
+ maxRecords: '10'
304
+ -
305
+ query: oggetti (realia)
306
+ subauth: Objects__Object_Genres
307
+ position: 5
308
+ subject_uri: "http://vocab.getty.edu/aat/300265419"
309
+ replacements:
310
+ maxRecords: '10'
311
+ -
312
+ query: VistaVision (TM)
313
+ subauth: Objects__Object_Groupings and Systems
314
+ position: 5
315
+ subject_uri: "http://vocab.getty.edu/aat/300264671"
316
+ replacements:
317
+ maxRecords: '10'
318
+ -
319
+ query: hours
320
+ subauth: Objects__Visual_and_Verbal_Communication
321
+ position: 5
322
+ subject_uri: "http://vocab.getty.edu/aat/300404017"
323
+ replacements:
324
+ maxRecords: '10'
325
+ -
326
+ query: serpentiformes
327
+ subauth: Physical_Attributes
328
+ position: 5
329
+ subject_uri: "http://vocab.getty.edu/aat/300311305"
330
+ replacements:
331
+ maxRecords: '10'
332
+ -
333
+ query: 不穩定性
334
+ subauth: Physical_Attributes__Attributes_and_Properties
335
+ position: 5
336
+ subject_uri: "http://vocab.getty.edu/aat/300221189"
337
+ replacements:
338
+ maxRecords: '10'
339
+ -
340
+ query: eggplant
341
+ subauth: Physical_Attributes__Color
342
+ position: 5
343
+ subject_uri: "http://vocab.getty.edu/aat/300311492"
344
+ replacements:
345
+ maxRecords: '10'
346
+ -
347
+ query: microwear
348
+ subauth: Physical_Attributes__Conditions_and_Effects
349
+ position: 5
350
+ subject_uri: "http://vocab.getty.edu/aat/300249983"
351
+ replacements:
352
+ maxRecords: '10'
353
+ -
354
+ query: filigrana
355
+ subauth: Physical_Attributes__Design_Elements
356
+ position: 5
357
+ subject_uri: "http://vocab.getty.edu/aat/300220293"
358
+ replacements:
359
+ maxRecords: '10'
360
+ -
361
+ query: Ontarian
362
+ subauth: Styles_and_Periods
363
+ position: 5
364
+ subject_uri: "http://vocab.getty.edu/aat/300386484"
365
+ replacements:
366
+ maxRecords: '10'
367
+ -
368
+ query: old-fashioned
369
+ subauth: Styles_and_Periods__Styles_and_Periods
370
+ position: 5
371
+ subject_uri: "http://vocab.getty.edu/aat/300312275"
372
+ replacements:
373
+ maxRecords: '10'
118
374
  term:
119
375
  -
120
376
  identifier: 'http://vocab.getty.edu/aat/300265730'