qa_server 7.5.1 → 7.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop_fixme.yml +3 -2
  3. data/.travis.yml +1 -1
  4. data/CHANGELOG.md +28 -0
  5. data/app/assets/stylesheets/qa_server/_check-status.scss +4 -0
  6. data/app/assets/stylesheets/qa_server/_monitor-status.scss +45 -0
  7. data/app/cache_processors/concerns/qa_server/cache_keys.rb +1 -0
  8. data/app/cache_processors/qa_server/scenario_history_cache.rb +19 -1
  9. data/app/controllers/qa_server/monitor_status_controller.rb +39 -9
  10. data/app/models/qa_server/scenario_run_history.rb +12 -3
  11. data/app/models/qa_server/search_scenario.rb +6 -0
  12. data/app/presenters/qa_server/check_status_presenter.rb +1 -1
  13. data/app/presenters/qa_server/monitor_status/current_status_presenter.rb +9 -8
  14. data/app/presenters/qa_server/monitor_status/history_presenter.rb +55 -4
  15. data/app/presenters/qa_server/monitor_status/history_up_down_presenter.rb +58 -0
  16. data/app/presenters/qa_server/monitor_status_presenter.rb +7 -2
  17. data/app/services/qa_server/history_up_down_service.rb +103 -0
  18. data/app/services/qa_server/time_service.rb +6 -0
  19. data/app/views/qa_server/check_status/index.html.erb +7 -6
  20. data/app/views/qa_server/monitor_status/_test_summary.html.erb +1 -1
  21. data/app/views/qa_server/monitor_status/_test_up_down_connection_history.html.erb +30 -0
  22. data/app/views/qa_server/monitor_status/index.html.erb +2 -1
  23. data/config/locales/qa_server.en.yml +8 -7
  24. data/lib/generators/qa_server/templates/config/authorities/linked_data/getty_tgn_ld4l_cache.json +24 -14
  25. data/lib/generators/qa_server/templates/config/authorities/linked_data/getty_ulan_ld4l_cache.json +104 -8
  26. data/lib/generators/qa_server/templates/config/authorities/linked_data/locnames_rwo2_ld4l_cache.json +4 -4
  27. data/lib/generators/qa_server/templates/config/authorities/linked_data/locnames_rwo3_ld4l_cache.json +4 -4
  28. data/lib/generators/qa_server/templates/config/authorities/linked_data/locnames_rwo_ld4l_cache.json +4 -4
  29. data/lib/generators/qa_server/templates/config/authorities/linked_data/locvocabs_ld4l_cache.json +1 -1
  30. data/lib/generators/qa_server/templates/config/authorities/linked_data/mesh_nlm_ld4l_cache.json +1 -0
  31. data/lib/generators/qa_server/templates/config/authorities/linked_data/oclcfast_direct.json +4 -0
  32. data/lib/generators/qa_server/templates/config/authorities/linked_data/oclcfast_ld4l_cache.json +1 -0
  33. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/cerl_ld4l_cache_validation.yml +3 -3
  34. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/geonames_ld4l_cache_validation.yml +2 -5
  35. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/getty_aat_ld4l_cache_validation.yml +0 -3
  36. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/getty_tgn_ld4l_cache_validation.yml +3 -7
  37. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/getty_ulan_ld4l_cache_validation.yml +5 -5
  38. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locdemographics_ld4l_cache_validation.yml +0 -4
  39. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locgenres_ld4l_cache_validation.yml +0 -9
  40. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locnames_ld4l_cache_validation.yml +1 -7
  41. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locnames_rwo2_ld4l_cache_validation.yml +78 -0
  42. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locnames_rwo3_ld4l_cache_validation.yml +73 -0
  43. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locnames_rwo_ld4l_cache_validation.yml +11 -11
  44. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locsubjects_ld4l_cache_validation.yml +1 -3
  45. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/locvocabs_ld4l_cache_validation.yml +246 -0
  46. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/mesh_nlm_ld4l_cache_validation.yml +8 -5
  47. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/oclcfast_direct_validation.yml +13 -7
  48. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/oclcfast_ld4l_cache_validation.yml +19 -3
  49. data/lib/generators/qa_server/templates/config/authorities/linked_data/scenarios/rda_registry_ld4l_cache_validation.yml +0 -3
  50. data/lib/generators/qa_server/templates/config/initializers/qa_server.rb +8 -0
  51. data/lib/qa_server/configuration.rb +14 -0
  52. data/lib/qa_server/version.rb +1 -1
  53. data/qa_server.gemspec +5 -5
  54. data/spec/feature/accuracy_spec.rb +1 -1
  55. data/spec/i18n_spec.rb +0 -1
  56. data/spec/lib/configuration_spec.rb +22 -0
  57. data/spec/presenters/qa_server/monitor_status/history_presenter_spec.rb +81 -0
  58. data/spec/services/qa_server/history_up_down_service_spec.rb +86 -0
  59. metadata +39 -12
@@ -2,6 +2,9 @@
2
2
  "QA_CONFIG_VERSION": "2.2",
3
3
  "service_uri": "http://ld4l.org/ld4l_services/cache",
4
4
  "prefixes": {
5
+ "getty": "http://vocab.getty.edu/ontology#",
6
+ "schema": "https://schema.org/",
7
+ "skosxl": "http://www.w3.org/2008/05/skos-xl#",
5
8
  "vivo": "http://vivoweb.org/ontology/core#"
6
9
  },
7
10
  "term": {
@@ -26,11 +29,9 @@
26
29
  "term_id": "URI",
27
30
  "results": {
28
31
  "id_ldpath": "dc:identifier ::xsd:string",
29
- "label_ldpath": "skos:prefLabel ::xsd:string",
30
- "altlabel_ldpath": "skos:altLabel ::xsd:string",
31
- "broader_ldpath": "skos:broader ::xsd:anyURI",
32
- "narrower_ldpath": "skos:narrower ::xsd:anyURI",
33
- "sameas_ldpath": "skos:exactMatch ::xsd:anyURI"
32
+ "label_ldpath": "^foaf:focus / skosxl:prefLabel / skosxl:literalForm ::xsd:string",
33
+ "altlabel_ldpath": "^foaf:focus/skosxl:altLabel/skosxl:literalForm :: xsd:string",
34
+ "broader_ldpath": "^foaf:focus/getty:broaderPreferred/skosxl:altLabel/skosxl:literalForm ::xsd:anyURI"
34
35
  }
35
36
  },
36
37
  "search": {
@@ -85,14 +86,109 @@
85
86
  },
86
87
  "total_count_ldpath": "vivo:count",
87
88
  "results": {
88
- "id_ldpath": "dc:identifier ::xsd:string",
89
- "label_ldpath": "skos:prefLabel ::xsd:string",
89
+ "label_ldpath": "^foaf:focus / skosxl:prefLabel / skosxl:literalForm ::xsd:string",
90
90
  "sort_ldpath": "vivo:rank ::xsd:string"
91
91
  },
92
+ "context": {
93
+ "properties": [
94
+ {
95
+ "property_label_i18n": "qa.linked_data.authority.getty_tgn_ld4l_cache.preferred_label",
96
+ "property_label_default": "Preferred label",
97
+ "ldpath": "^foaf:focus/skosxl:prefLabel/skosxl:literalForm :: xsd:string",
98
+ "selectable": true,
99
+ "drillable": false
100
+ },
101
+ {
102
+ "property_label_i18n": "qa.linked_data.authority.getty_tgn_ld4l_cache.variant_label",
103
+ "property_label_default": "Variant label",
104
+ "ldpath": "^foaf:focus/skosxl:altLabel/skosxl:literalForm :: xsd:string",
105
+ "selectable": false,
106
+ "drillable": false
107
+ },
108
+ {
109
+ "property_label_i18n": "qa.linked_data.authority.getty_tgn_ld4l_cache.description",
110
+ "property_label_default": "Description",
111
+ "ldpath": "getty:biographyPreferred / schema:description :: xsd:string",
112
+ "selectable": false,
113
+ "drillable": false
114
+ },
115
+ {
116
+ "property_label_i18n": "qa.linked_data.authority.getty_tgn_ld4l_cache.start_date",
117
+ "property_label_default": "Start date",
118
+ "ldpath": "getty:biographyPreferred / getty:estStart",
119
+ "selectable": false,
120
+ "drillable": false
121
+ },
122
+ {
123
+ "property_label_i18n": "qa.linked_data.authority.getty_tgn_ld4l_cache.end_date",
124
+ "property_label_default": "End date",
125
+ "ldpath": "getty:biographyPreferred / getty:estEnd",
126
+ "selectable": false,
127
+ "drillable": false
128
+ },
129
+ {
130
+ "property_label_i18n": "qa.linked_data.authority.getty_tgn_ld4l_cache.foundation_location",
131
+ "property_label_default": "Foundation location",
132
+ "ldpath": "getty:biographyPreferred/schema:foundationLocation / ^foaf:focus / getty:parentString :: xsd:string",
133
+ "selectable": false,
134
+ "drillable": false
135
+ },
136
+ {
137
+ "property_label_i18n": "qa.linked_data.authority.getty_tgn_ld4l_cache.nationality",
138
+ "property_label_default": "Nationality",
139
+ "ldpath": "schema:nationality / skosxl:prefLabel / skosxl:literalForm :: xsd:string",
140
+ "selectable": false,
141
+ "drillable": false
142
+ },
143
+ {
144
+ "property_label_i18n": "qa.linked_data.authority.getty_tgn_ld4l_cache.birth_place",
145
+ "property_label_default": "Birth place",
146
+ "ldpath": "getty:biographyPreferred / schema:birthPlace / ^foaf:focus / skosxl:prefLabel / skosxl:literalForm :: xsd:string",
147
+ "selectable": false,
148
+ "drillable": false
149
+ },
150
+ {
151
+ "property_label_i18n": "qa.linked_data.authority.getty_tgn_ld4l_cache.death_place",
152
+ "property_label_default": "Death place",
153
+ "ldpath": "getty:biographyPreferred / schema:deathPlace / ^foaf:focus / skosxl:prefLabel / skosxl:literalForm :: xsd:string",
154
+ "selectable": false,
155
+ "drillable": false
156
+ },
157
+ {
158
+ "property_label_i18n": "qa.linked_data.authority.getty_tgn_ld4l_cache.agent_type",
159
+ "property_label_default": "Agent type",
160
+ "ldpath": "^foaf:focus / getty:agentType / skosxl:altLabel / skosxl:literalForm :: xsd:string",
161
+ "selectable": false,
162
+ "drillable": false
163
+ },
164
+ {
165
+ "property_label_i18n": "qa.linked_data.authority.getty_tgn_ld4l_cache.gender",
166
+ "property_label_default": "Gender",
167
+ "ldpath": "getty:biographyPreferred/schema:gender / skosxl:prefLabel / skosxl:literalForm :: xsd:string",
168
+ "selectable": false,
169
+ "drillable": false
170
+ },
171
+ {
172
+ "property_label_i18n": "qa.linked_data.authority.getty_aat_ld4l_cache.broader",
173
+ "property_label_default": "Broader",
174
+ "ldpath": "^foaf:focus/getty:broaderPreferred :: xsd:string",
175
+ "selectable": false,
176
+ "drillable": true,
177
+ "expansion_label_ldpath": "skos:prefLabel ::xsd:string",
178
+ "expansion_id_ldpath": "dc:identifier ::xsd:string"
179
+ },
180
+ {
181
+ "property_label_i18n": "qa.linked_data.authority.getty_aat_ld4l_cache.scope_note",
182
+ "property_label_default": "Scope note",
183
+ "ldpath": "^foaf:focus/skos:scopeNote :: xsd:string",
184
+ "selectable": false,
185
+ "drillable": false
186
+ }
187
+ ]
188
+ },
92
189
  "subauthorities": {
93
190
  "person": "Person",
94
191
  "organization": "Organization"
95
192
  }
96
193
  }
97
194
  }
98
-
@@ -86,7 +86,7 @@
86
86
  "total_count_ldpath": "vivo:count",
87
87
  "results": {
88
88
  "id_ldpath": "^madsrdf:identifiesRWO/loc:lccn ::xsd:string",
89
- "label_ldpath": "rdfs:label ::xsd:string",
89
+ "label_ldpath": "^madsrdf:identifiesRWO/madsrdf:authoritativeLabel ::xsd:string",
90
90
  "sort_ldpath": "vivo:rank ::xsd:string"
91
91
  },
92
92
  "context": {
@@ -103,8 +103,8 @@
103
103
  "properties": [
104
104
  {
105
105
  "property_label_default": "Preferred label",
106
- "property_label_i18n": "qa.linked_data.authority.locnames_ld4l_cache.type_label",
107
- "ldpath": "rdfs:label :: xsd:string",
106
+ "property_label_i18n": "qa.linked_data.authority.locnames_ld4l_cache.preferred_label",
107
+ "ldpath": "^madsrdf:identifiesRWO / madsrdf:authoritativeLabel :: xsd:string",
108
108
  "selectable": true,
109
109
  "drillable": false
110
110
  },
@@ -117,7 +117,7 @@
117
117
  },
118
118
  {
119
119
  "property_label_default": "Descriptor",
120
- "property_label_i18n": "qa.linked_data.authority.locnames_ld4l_cache.type_label",
120
+ "property_label_i18n": "qa.linked_data.authority.locnames_ld4l_cache.descriptor",
121
121
  "ldpath": "(madsrdf:entityDescriptor/madsrdf:authoritativeLabel) | (madsrdf:entityDescriptor/skos:prefLabel) | (madsrdf:entityDescriptor/rdfs:label) :: xsd:string",
122
122
  "selectable": false,
123
123
  "drillable": false,
@@ -86,7 +86,7 @@
86
86
  "total_count_ldpath": "vivo:count",
87
87
  "results": {
88
88
  "id_ldpath": "^madsrdf:identifiesRWO/loc:lccn ::xsd:string",
89
- "label_ldpath": "rdfs:label ::xsd:string",
89
+ "label_ldpath": "^madsrdf:identifiesRWO/madsrdf:authoritativeLabel ::xsd:string",
90
90
  "sort_ldpath": "vivo:rank ::xsd:string"
91
91
  },
92
92
  "context": {
@@ -103,8 +103,8 @@
103
103
  "properties": [
104
104
  {
105
105
  "property_label_default": "Preferred label",
106
- "property_label_i18n": "qa.linked_data.authority.locnames_ld4l_cache.type_label",
107
- "ldpath": "rdfs:label :: xsd:string",
106
+ "property_label_i18n": "qa.linked_data.authority.locnames_ld4l_cache.preferred_label",
107
+ "ldpath": "^madsrdf:identifiesRWO / madsrdf:authoritativeLabel :: xsd:string",
108
108
  "selectable": true,
109
109
  "drillable": false
110
110
  },
@@ -117,7 +117,7 @@
117
117
  },
118
118
  {
119
119
  "property_label_default": "Descriptor",
120
- "property_label_i18n": "qa.linked_data.authority.locnames_ld4l_cache.type_label",
120
+ "property_label_i18n": "qa.linked_data.authority.locnames_ld4l_cache.descriptor",
121
121
  "ldpath": "(madsrdf:entityDescriptor/madsrdf:authoritativeLabel) | (madsrdf:entityDescriptor/skos:prefLabel) | (madsrdf:entityDescriptor/rdfs:label) :: xsd:string",
122
122
  "selectable": false,
123
123
  "drillable": false,
@@ -86,7 +86,7 @@
86
86
  "total_count_ldpath": "vivo:count",
87
87
  "results": {
88
88
  "id_ldpath": "^madsrdf:identifiesRWO/loc:lccn ::xsd:string",
89
- "label_ldpath": "rdfs:label ::xsd:string",
89
+ "label_ldpath": "^madsrdf:identifiesRWO/madsrdf:authoritativeLabel ::xsd:string",
90
90
  "sort_ldpath": "vivo:rank ::xsd:string"
91
91
  },
92
92
  "context": {
@@ -103,8 +103,8 @@
103
103
  "properties": [
104
104
  {
105
105
  "property_label_default": "Preferred label",
106
- "property_label_i18n": "qa.linked_data.authority.locnames_ld4l_cache.type_label",
107
- "ldpath": "rdfs:label :: xsd:string",
106
+ "property_label_i18n": "qa.linked_data.authority.locnames_ld4l_cache.preferred_label",
107
+ "ldpath": "^madsrdf:identifiesRWO / madsrdf:authoritativeLabel :: xsd:string",
108
108
  "selectable": true,
109
109
  "drillable": false
110
110
  },
@@ -117,7 +117,7 @@
117
117
  },
118
118
  {
119
119
  "property_label_default": "Descriptor",
120
- "property_label_i18n": "qa.linked_data.authority.locnames_ld4l_cache.type_label",
120
+ "property_label_i18n": "qa.linked_data.authority.locnames_ld4l_cache.descriptor",
121
121
  "ldpath": "(madsrdf:entityDescriptor/madsrdf:authoritativeLabel) | (madsrdf:entityDescriptor/skos:prefLabel) | (madsrdf:entityDescriptor/rdfs:label) :: xsd:string",
122
122
  "selectable": false,
123
123
  "drillable": false,
@@ -12,7 +12,7 @@
12
12
  "url": {
13
13
  "@context": "http://www.w3.org/ns/hydra/context.jsonld",
14
14
  "@type": "IriTemplate",
15
- "template": "http://wintermute.info-science.uiowa.edu:8081/ld4l_services/loc_vocab_batch.jsp?{?query}&{?entity}&{?maxRecords}&{?startRecord}&{?lang}",
15
+ "template": "http://services.ld4l.org/ld4l_services/loc_vocab_batch.jsp?{?query}&{?entity}&{?maxRecords}&{?startRecord}&{?lang}",
16
16
  "variableRepresentation": "BasicRepresentation",
17
17
  "mapping": [
18
18
  {
@@ -206,6 +206,7 @@
206
206
  ]
207
207
  },
208
208
  "subauthorities": {
209
+ "geographic": "Geographic",
209
210
  "subject": "Subject",
210
211
  "publication_type": "FormOfWork"
211
212
  }
@@ -70,8 +70,11 @@
70
70
  },
71
71
  "subauthorities": {
72
72
  "topic": "oclc.topic",
73
+ "concept": "oclc.topic",
73
74
  "geocoordinates": "oclc.geographic",
74
75
  "geographic": "oclc.geographic",
76
+ "place": "oclc.geographic",
77
+ "event": "oclc.eventName",
75
78
  "event_name": "oclc.eventName",
76
79
  "meeting": "oclc.meeting",
77
80
  "person": "oclc.personalName",
@@ -79,6 +82,7 @@
79
82
  "organization": "oclc.corporateName",
80
83
  "corporate_name": "oclc.corporateName",
81
84
  "uniform_title": "oclc.uniformTitle",
85
+ "work": "oclc.uniformTitle",
82
86
  "period": "oclc.period",
83
87
  "form": "oclc.form",
84
88
  "alt_lc": "oclc.altlc"
@@ -91,6 +91,7 @@
91
91
  "subauthorities": {
92
92
  "concept": "Concept",
93
93
  "event": "Event",
94
+ "meeting": "Meeting",
94
95
  "person": "Person",
95
96
  "organization": "Organization",
96
97
  "place": "Place",
@@ -25,6 +25,7 @@ search:
25
25
  # Accuracy tests
26
26
  #------------------
27
27
  -
28
+ pending: true
28
29
  query: Johannes Philippus de Lignamine
29
30
  subauth: person
30
31
  position: 4
@@ -32,6 +33,7 @@ search:
32
33
  replacements:
33
34
  maxRecords: '8'
34
35
  -
36
+ pending: true
35
37
  query: Johannes Philippus de Lignamine
36
38
  subauth: person
37
39
  position: 4
@@ -39,10 +41,9 @@ search:
39
41
  replacements:
40
42
  maxRecords: '8'
41
43
  -
42
- pending: true
43
44
  query: Jacob Winter
44
45
  subauth: person
45
- position: 2
46
+ position: 3
46
47
  subject_uri: "http://thesaurus.cerl.org/record/cnp02081773"
47
48
  replacements:
48
49
  maxRecords: '8'
@@ -61,7 +62,6 @@ search:
61
62
  replacements:
62
63
  maxRecords: '8'
63
64
  -
64
- pending: true
65
65
  query: Plantin
66
66
  subauth: imprint
67
67
  position: 1
@@ -62,22 +62,19 @@ search:
62
62
  # vegetation
63
63
  # all
64
64
  -
65
- pending: true
66
- query: New York
65
+ query: New York City
67
66
  subject_uri: "http://sws.geonames.org/5128581/"
68
67
  position: 3
69
68
  replacements:
70
69
  maxRecords: '8'
71
70
  -
72
- pending: true
73
71
  query: France
74
72
  subauth: area
75
- subject_uri: "http://sws.geonames.org/3017382"
73
+ subject_uri: "http://sws.geonames.org/3017382/"
76
74
  position: 10
77
75
  replacements:
78
76
  maxRecords: '15'
79
77
  -
80
- pending: true
81
78
  query: Chicago
82
79
  subauth: place
83
80
  subject_uri: "http://sws.geonames.org/4887398/"
@@ -222,7 +222,6 @@ search:
222
222
  replacements:
223
223
  maxRecords: '10'
224
224
  -
225
- pending: true
226
225
  query: alter egos
227
226
  subauth: Agents__People
228
227
  position: 5
@@ -237,7 +236,6 @@ search:
237
236
  replacements:
238
237
  maxRecords: '10'
239
238
  -
240
- pending: true
241
239
  query: palindrome
242
240
  subauth: Associated_Concepts__Associated_Concepts
243
241
  position: 5
@@ -273,7 +271,6 @@ search:
273
271
  replacements:
274
272
  maxRecords: '10'
275
273
  -
276
- pending: true
277
274
  query: lloy lloy
278
275
  subauth: Objects
279
276
  position: 5
@@ -12,28 +12,24 @@ search:
12
12
  # Accuracy tests
13
13
  #------------------
14
14
  -
15
- pending: true
16
15
  query: Gouverneur
17
16
  position: 3
18
17
  subject_uri: "http://vocab.getty.edu/tgn/2069433-place"
19
18
  replacements:
20
19
  maxRecords: '10'
21
20
  -
22
- pending: true
23
21
  query: Boulder, CO
24
- position: 9
22
+ position: 3
25
23
  subject_uri: "http://vocab.getty.edu/tgn/2000198-place"
26
24
  replacements:
27
25
  maxRecords: '10'
28
26
  -
29
- pending: true
30
27
  query: Paris, France
31
- position: 30
28
+ position: 10
32
29
  subject_uri: "http://vocab.getty.edu/tgn/7008038-place"
33
30
  replacements:
34
- maxRecords: '100'
31
+ maxRecords: '20'
35
32
  -
36
- pending: true
37
33
  query: Nile River
38
34
  position: 3
39
35
  subject_uri: "http://vocab.getty.edu/tgn/1127805-place"
@@ -21,21 +21,21 @@ search:
21
21
  #------------------
22
22
  -
23
23
  query: Gonzalez-Torres, Felix
24
- subject_uri: "http://vocab.getty.edu/ulan/500114715"
24
+ subject_uri: "http://vocab.getty.edu/ulan/500114715-agent"
25
25
  position: 5
26
26
  replacements:
27
27
  maxRecords: '10'
28
28
  -
29
29
  query: Gouverneur
30
30
  subauth: person
31
- subject_uri: "http://vocab.getty.edu/ulan/500225342"
31
+ subject_uri: "http://vocab.getty.edu/ulan/500225342-agent"
32
32
  position: 5
33
33
  replacements:
34
34
  maxRecords: '10'
35
35
  -
36
36
  query: Octavio Medellin
37
37
  subauth: person
38
- subject_uri: "http://vocab.getty.edu/ulan/500333005"
38
+ subject_uri: "http://vocab.getty.edu/ulan/500333005-agent"
39
39
  position: 3
40
40
  replacements:
41
41
  maxRecords: '8'
@@ -43,10 +43,10 @@ search:
43
43
  query: University of Chicago Library
44
44
  subauth: organization
45
45
  result_size: 100
46
- subject_uri: "http://vocab.getty.edu/ulan/500304715"
46
+ subject_uri: "http://vocab.getty.edu/ulan/500304715-agent"
47
47
  position: 5
48
48
  replacements:
49
49
  maxRecords: '10'
50
50
  term:
51
51
  -
52
- identifier: 'http://vocab.getty.edu/ulan/500020427'
52
+ identifier: 'http://vocab.getty.edu/ulan/500020427-agent'
@@ -19,21 +19,18 @@ search:
19
19
  replacements:
20
20
  maxRecords: '5'
21
21
  -
22
- pending: true
23
22
  query: Biologist
24
23
  position: 3
25
24
  subject_uri: "http://id.loc.gov/authorities/demographicTerms/dg2015060613"
26
25
  replacements:
27
26
  maxRecords: '5'
28
27
  -
29
- pending: true
30
28
  query: social worker
31
29
  position: 1
32
30
  subject_uri: "http://id.loc.gov/authorities/demographicTerms/dg2015060087"
33
31
  replacements:
34
32
  maxRecords: '10'
35
33
  -
36
- pending: true
37
34
  query: Social Worker
38
35
  position: 1
39
36
  subject_uri: "http://id.loc.gov/authorities/demographicTerms/dg2015060087"
@@ -58,7 +55,6 @@ search:
58
55
  replacements:
59
56
  maxRecords: '15'
60
57
  -
61
- pending: true
62
58
  query: African Americans
63
59
  position: 5
64
60
  subject_uri: "http://id.loc.gov/authorities/demographicTerms/dg2015060859"