summon 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (53) hide show
  1. data/.specification +58 -0
  2. data/History.txt +4 -0
  3. data/Manifest.txt +52 -0
  4. data/PostInstall.txt +4 -0
  5. data/README.rdoc +77 -0
  6. data/Rakefile +25 -0
  7. data/bin/summon +10 -0
  8. data/bin/summonh +19 -0
  9. data/ispec/integration_spec.rb +61 -0
  10. data/lib/summon.rb +41 -0
  11. data/lib/summon/cli.rb +136 -0
  12. data/lib/summon/log.rb +40 -0
  13. data/lib/summon/schema.rb +109 -0
  14. data/lib/summon/schema/availability.rb +14 -0
  15. data/lib/summon/schema/citation.rb +11 -0
  16. data/lib/summon/schema/date.rb +23 -0
  17. data/lib/summon/schema/document.rb +84 -0
  18. data/lib/summon/schema/error.rb +4 -0
  19. data/lib/summon/schema/facet.rb +51 -0
  20. data/lib/summon/schema/query.rb +96 -0
  21. data/lib/summon/schema/range.rb +52 -0
  22. data/lib/summon/schema/search.rb +37 -0
  23. data/lib/summon/schema/suggestion.rb +5 -0
  24. data/lib/summon/service.rb +44 -0
  25. data/lib/summon/transport.rb +13 -0
  26. data/lib/summon/transport/canned.json +2327 -0
  27. data/lib/summon/transport/canned.rb +9 -0
  28. data/lib/summon/transport/errors.rb +12 -0
  29. data/lib/summon/transport/headers.rb +55 -0
  30. data/lib/summon/transport/http.rb +114 -0
  31. data/lib/summon/transport/qstring.rb +49 -0
  32. data/script/console +10 -0
  33. data/script/destroy +14 -0
  34. data/script/generate +14 -0
  35. data/spec/spec.opts +1 -0
  36. data/spec/spec_helper.rb +19 -0
  37. data/spec/summon/log_spec.rb +28 -0
  38. data/spec/summon/schema/availability_spec.rb +31 -0
  39. data/spec/summon/schema/citation_spec.rb +34 -0
  40. data/spec/summon/schema/date_spec.rb +12 -0
  41. data/spec/summon/schema/document_spec.rb +235 -0
  42. data/spec/summon/schema/facet_spec.rb +115 -0
  43. data/spec/summon/schema/query_spec.rb +163 -0
  44. data/spec/summon/schema/range_spec.rb +45 -0
  45. data/spec/summon/schema/search_spec.rb +62 -0
  46. data/spec/summon/schema_spec.rb +143 -0
  47. data/spec/summon/service_spec.rb +18 -0
  48. data/spec/summon/transport/headers_spec.rb +47 -0
  49. data/spec/summon/transport/http_spec.rb +29 -0
  50. data/spec/summon/transport/qstring_spec.rb +24 -0
  51. data/spec/summon_spec.rb +48 -0
  52. data/summon.gemspec +41 -0
  53. metadata +145 -0
@@ -0,0 +1,37 @@
1
+ class Summon::Search < Summon::Schema
2
+ attr :version
3
+ attr :session_id
4
+ attr :page_count
5
+ attr :record_count
6
+
7
+ attr :query_time
8
+ attr :total_request_time
9
+
10
+ attr :query, :transform => :Query
11
+ attr :suggestions, :transform => :Suggestion, :json_name => :didYouMeanSuggestions
12
+ attr :documents, :transform => :Document
13
+ attr :facets, :transform => :Facet, :json_name => "facetFields"
14
+ attr :range_facets, :transform => :RangeFacet, :json_name => "rangeFacetFields"
15
+
16
+ attr :errors, :transform => :Error
17
+
18
+ def empty?
19
+ documents.empty?
20
+ end
21
+
22
+ def record_count
23
+ @record_count || 0
24
+ end
25
+
26
+ def query
27
+ @query || Summon::Query.new
28
+ end
29
+
30
+ def suggestions?
31
+ !@suggestions.empty?
32
+ end
33
+
34
+ def to_s(options = {})
35
+ "<Summon::Search>{records: #{result_count}, pages:#{page_count}, :query_time: #{query.query_time}ms, request_time:#{total_request_time}ms}"
36
+ end
37
+ end
@@ -0,0 +1,5 @@
1
+ class Summon::Suggestion < Summon::Schema
2
+ attr :original_query
3
+ attr :suggested_query
4
+ attr :apply_suggestion_command
5
+ end
@@ -0,0 +1,44 @@
1
+
2
+ module Summon
3
+ class Service
4
+
5
+ attr_reader :transport, :url, :access_id, :client_key
6
+
7
+ def initialize(options = {})
8
+ @url = options[:url] || "http://api.summon.serialssolutions.com"
9
+ @access_id = options[:access_id]
10
+ @secret_key = options[:secret_key]
11
+ @client_key = options[:client_key]
12
+ @log = Log.new(options[:log])
13
+ @transport = options[:transport] || Summon::Transport::Http.new(:url => @url, :access_id => @access_id, :secret_key => @secret_key, :client_key => @client_key, :session_id => options[:session_id], :log => @log)
14
+ end
15
+
16
+ def version
17
+ connect("/version") {|result| result["version"] }
18
+ end
19
+
20
+ def search(params = {})
21
+ connect("/search", params) do |result|
22
+ Summon::Search.new(result)
23
+ end
24
+ end
25
+
26
+ def modify_search(original_search, command)
27
+ search original_search.query.to_hash.merge("s.cmd" => command)
28
+ end
29
+
30
+ #clone a service with overridden options
31
+ def [](options)
32
+ self.class.new({:url => @url, :access_id => @access_id, :secret_key => @secret_key, :client_key => @client_key, :log => @log.impl}.merge(options))
33
+ end
34
+
35
+ private
36
+
37
+ def connect(path, params = {})
38
+ yield @transport.get(path, params)
39
+ end
40
+
41
+ end
42
+ end
43
+
44
+
@@ -0,0 +1,13 @@
1
+
2
+ require 'net/http'
3
+
4
+ module Summon
5
+ module Transport
6
+ require 'summon/transport/errors'
7
+ require 'summon/transport/qstring'
8
+ require 'summon/transport/headers'
9
+ require 'summon/transport/canned'
10
+ require 'summon/transport/http'
11
+ end
12
+ end
13
+
@@ -0,0 +1,2327 @@
1
+ {
2
+ "pageCount": 100456,
3
+ "queryTime": 57,
4
+ "fullTextCount": 0,
5
+ "didYouMeanSuggestions": [
6
+ {
7
+ "originalQuery": "louis rmstrong",
8
+ "newSearchCommand": "s.cmd=setTextQuery%28louis+armstrong%29",
9
+ "suggestedQuery": "louis armstrong"
10
+ }
11
+ ],
12
+ "totalRequestTime": 80,
13
+ "documents": [
14
+ {
15
+ "Publisher_xml": [
16
+ {
17
+ "name": "Spirulina Records"
18
+ },
19
+ {
20
+ "name": "Swingsistersound"
21
+ }
22
+ ],
23
+ "SubjectTerms": [
24
+ "Women's music",
25
+ "Popular music",
26
+ "Rock music"
27
+ ],
28
+ "TableOfContents": [
29
+ "The very thing -- Dark night -- 2 truths & uh lie -- Reckless -- Spin -- Free -- Real of you -- Fire -- Purple hair -- Ghost -- Nuthin' -- Faith."
30
+ ],
31
+ "XQueryRevision": [
32
+ "Rev: 6229"
33
+ ],
34
+ "inHoldings": false,
35
+ "DBID": [
36
+ "GXQ"
37
+ ],
38
+ "Notes": [
39
+ "Compact disc."
40
+ ],
41
+ "PublicationDateYear": [
42
+ "2000"
43
+ ],
44
+ "hasFullText": false,
45
+ "timestamp": [
46
+ "Thu Jul 09 19:44:12 EDT 2009"
47
+ ],
48
+ "Author": [
49
+ "Hunter, Lisa"
50
+ ],
51
+ "PublicationDate": [
52
+ "c2000."
53
+ ],
54
+ "Title": [
55
+ "Lisa Hunter -- alive"
56
+ ],
57
+ "ID": [
58
+ "gvsu_catalog_b16644323"
59
+ ],
60
+ "LCCallNum": [
61
+ "M1630.18 .H95 2000"
62
+ ],
63
+ "Language": [
64
+ "English"
65
+ ],
66
+ "PublicationDateCentury": [
67
+ "2000"
68
+ ],
69
+ "PublicationDateDecade": [
70
+ "2000"
71
+ ],
72
+ "openUrl": "ctx_ver=Z39.88-2004&rfr_id=info:sid\/summon.serialssolutions.com&rft_val_fmt=info:ofi\/fmt:kev:mtx:dc&rft.title=Lisa+Hunter+--+alive&rft.creator=Hunter%2C+Lisa&rft.date=c200-0.&rft.pub=Spirulina+Records&rft.externalDBID=n%2Fa&rft.externalDocID=b16644323",
73
+ "Author_xml": [
74
+ {
75
+ "fullname": "Hunter, Lisa",
76
+ "surname": "Hunter",
77
+ "givenname": "Lisa"
78
+ }
79
+ ],
80
+ "Library": [
81
+ "Women's Center Library"
82
+ ],
83
+ "PublicationDate_xml": [
84
+ {
85
+ "month": "01",
86
+ "text": "c2000.",
87
+ "day": "01",
88
+ "year": "2000"
89
+ }
90
+ ],
91
+ "PublicationPlace": [
92
+ "S.l.",
93
+ "Ann Arbor, Mich"
94
+ ],
95
+ "TemporalSubjectTerms": [
96
+ "1991-2000"
97
+ ],
98
+ "PublicationPlace_xml": [
99
+ {
100
+ "name": "S.l."
101
+ },
102
+ {
103
+ "name": "Ann Arbor, Mich"
104
+ }
105
+ ],
106
+ "DocumentTitleAlternate": [
107
+ "Alive"
108
+ ],
109
+ "score": [
110
+ "1.0"
111
+ ],
112
+ "Snippet": [
113
+ ""
114
+ ],
115
+ "availabilityToken": "b16644323",
116
+ "ContentType": [
117
+ "Audio Recording"
118
+ ],
119
+ "Publisher": [
120
+ "Spirulina Records",
121
+ "Swingsistersound"
122
+ ]
123
+ },
124
+ {
125
+ "Publisher_xml": [
126
+ {
127
+ "name": "Lewis Publishers"
128
+ }
129
+ ],
130
+ "SubjectTerms": [
131
+ "Environmental risk assessment"
132
+ ],
133
+ "TableOfContents": [
134
+ "Introduction and overview of difficulties encountered in developing comparative rankings of environmental problems \/ C. Richard Cothern -- Current concerns regarding the implementation of risk-based management: how real are they? \/ William V. Garetz -- Application of ecological knowledge to environmental problems: ecological risk assessment \/ David Policansky -- Threat of greenhouse warming \/ Rob Coppock -- Revising the risk assessment paradigm: limits on the quantitative ranking of environmental problems \/ Ellen K. Silbergeld -- It is possible to do quantitative assessment of relative risk \/ James D. Wilson -- Noncancer health endpoints: approaches to quantitative risk assessment \/ William Farland and Michael Dourson -- Gaps in knowledge in assessing the risk of cancer \/ Art Gregory -- Estimating viral disease risk from drinking water \/ Charles P. Gerba and Joan B. Rose -- Atmospheric nitrogen oxides: a bridesmaid revisited \/ John Bachmann -- Temporal variations in exposure data \/ Nancy K. Kim.",
135
+ "cont) Integrated approach to risk characterization of multiple pathway chemical exposures \/ Christopher T. DeRosa ... [et al.] -- Method for obtaining guidance for the combination of qualitative rankings by cancer and noncancer risks into a single, qualitative health risk ranking \/ Paul F. Deisler, Jr. -- Use of statistical insignificance in the formulation of risk-based standards for carcinogens \/ Roy E. Albert and Rakesh Shukla -- Possible carcinogenic hazards from natural and synthetic chemicals: setting priorities \/ Lois Swirsky ... [et al.] -- Impact of data gaps in EPA's regional comparative risk projects \/ Rosalie R. Day -- Use of economic data and analysis in comparative risk projects: questions of policy and reliability \/ Palma Risler -- Role of evidential reason and epistemic discourse in establishing the risk of environmental carcinogens \/ Douglas Crawford-Brown and Jeffery Arnold -- How to move quickly to risk-based environmental management: a specific proposal \/ William V. Garetz."
136
+ ],
137
+ "XQueryRevision": [
138
+ "Rev: 6229"
139
+ ],
140
+ "inHoldings": false,
141
+ "DBID": [
142
+ "GXQ"
143
+ ],
144
+ "DEWEY": [
145
+ "363.7"
146
+ ],
147
+ "Notes": [
148
+ "Based on a symposium held on Aug. 28, 1991 in New York City.",
149
+ "Includes bibliographical references and index."
150
+ ],
151
+ "PublicationDateYear": [
152
+ "1993"
153
+ ],
154
+ "hasFullText": false,
155
+ "ISBN": [
156
+ "0873716051 (acid-free paper)"
157
+ ],
158
+ "timestamp": [
159
+ "Thu Jul 09 19:44:12 EDT 2009"
160
+ ],
161
+ "Author": [
162
+ "Cothern, C. Richard"
163
+ ],
164
+ "PageCount": [
165
+ "317 p."
166
+ ],
167
+ "PublicationDate": [
168
+ "c1993."
169
+ ],
170
+ "Title": [
171
+ "Comparative environmental risk assessment"
172
+ ],
173
+ "Genre": [
174
+ "Congresses"
175
+ ],
176
+ "ID": [
177
+ "gvsu_catalog_b14315361"
178
+ ],
179
+ "LCCN": [
180
+ "92002389"
181
+ ],
182
+ "LCCallNum": [
183
+ "TD193.5 .C66 1993"
184
+ ],
185
+ "Language": [
186
+ "English"
187
+ ],
188
+ "PublicationDateCentury": [
189
+ "1900"
190
+ ],
191
+ "PublicationDateDecade": [
192
+ "1990"
193
+ ],
194
+ "openUrl": "ctx_ver=Z39.88-2004&rfr_id=info:sid\/summon.serialssolutions.com&rft_val_fmt=info:ofi\/fmt:kev:mtx:book&rft.genre=book&rft.title=Comparative+environmental+risk+assessment&rft.au=Cothern%2C+C.+Richard&rft.date=c199-3.&rft.pub=Lewis+Publishers&rft.isbn=0873716051+%28acid-free+paper%29&rft.externalDBID=n%2Fa&rft.externalDocID=b14315361",
195
+ "Author_xml": [
196
+ {
197
+ "fullname": "Cothern, C. Richard",
198
+ "surname": "Cothern",
199
+ "givenname": "C. Richard"
200
+ }
201
+ ],
202
+ "Library": [
203
+ "AWRI"
204
+ ],
205
+ "PublicationDate_xml": [
206
+ {
207
+ "month": "01",
208
+ "text": "c1993.",
209
+ "day": "01",
210
+ "year": "1993"
211
+ }
212
+ ],
213
+ "PublicationPlace": [
214
+ "Boca Raton"
215
+ ],
216
+ "PublicationPlace_xml": [
217
+ {
218
+ "name": "Boca Raton"
219
+ }
220
+ ],
221
+ "score": [
222
+ "1.0"
223
+ ],
224
+ "Snippet": [
225
+ ""
226
+ ],
227
+ "availabilityToken": "b14315361",
228
+ "ContentType": [
229
+ "Book"
230
+ ],
231
+ "Publisher": [
232
+ "Lewis Publishers"
233
+ ]
234
+ },
235
+ {
236
+ "Publisher_xml": [
237
+ {
238
+ "name": "CRC Press"
239
+ }
240
+ ],
241
+ "SubjectTerms": [
242
+ "Herbicides",
243
+ "Herbicides",
244
+ "Environmental aspects",
245
+ "Soils",
246
+ "Herbicide content",
247
+ "Environmental chemistry",
248
+ "Environmental Exposure",
249
+ "Soil",
250
+ "analysis"
251
+ ],
252
+ "XQueryRevision": [
253
+ "Rev: 6229"
254
+ ],
255
+ "inHoldings": false,
256
+ "DBID": [
257
+ "GXQ"
258
+ ],
259
+ "DEWEY": [
260
+ "574.5\/222"
261
+ ],
262
+ "Notes": [
263
+ "Includes bibliographical references and index."
264
+ ],
265
+ "PublicationDateYear": [
266
+ "1988"
267
+ ],
268
+ "hasFullText": false,
269
+ "ISBN": [
270
+ "0849343763 (v. 1)",
271
+ "0849343771 (v. 2)"
272
+ ],
273
+ "timestamp": [
274
+ "Thu Jul 09 19:44:12 EDT 2009"
275
+ ],
276
+ "Author": [
277
+ "Grover, R"
278
+ ],
279
+ "PageCount": [
280
+ "v. <1-2"
281
+ ],
282
+ "PublicationDate": [
283
+ "c1988"
284
+ ],
285
+ "Title": [
286
+ "Environmental chemistry of herbicides"
287
+ ],
288
+ "ID": [
289
+ "gvsu_catalog_b13988840"
290
+ ],
291
+ "LCCN": [
292
+ "87028975"
293
+ ],
294
+ "LCCallNum": [
295
+ "SB951.4 .E58 1988"
296
+ ],
297
+ "Language": [
298
+ "English"
299
+ ],
300
+ "PublicationDateCentury": [
301
+ "1900"
302
+ ],
303
+ "PublicationDateDecade": [
304
+ "1980"
305
+ ],
306
+ "openUrl": "ctx_ver=Z39.88-2004&rfr_id=info:sid\/summon.serialssolutions.com&rft_val_fmt=info:ofi\/fmt:kev:mtx:book&rft.genre=book&rft.title=Environmental+chemistry+of+herbicides&rft.au=Grover%2C+R&rft.date=c198&rft.pub=CRC+Press&rft.isbn=0849343763+%28v.+1%29&rft.externalDBID=n%2Fa&rft.externalDocID=b13988840",
307
+ "Author_xml": [
308
+ {
309
+ "fullname": "Grover, R",
310
+ "surname": "Grover",
311
+ "givenname": "R"
312
+ }
313
+ ],
314
+ "Library": [
315
+ "AWRI"
316
+ ],
317
+ "PublicationDate_xml": [
318
+ {
319
+ "month": "01",
320
+ "text": "c1988-",
321
+ "day": "01",
322
+ "year": "1988"
323
+ }
324
+ ],
325
+ "PublicationPlace": [
326
+ "Boca Raton, Fla"
327
+ ],
328
+ "PublicationPlace_xml": [
329
+ {
330
+ "name": "Boca Raton, Fla"
331
+ }
332
+ ],
333
+ "score": [
334
+ "1.0"
335
+ ],
336
+ "Snippet": [
337
+ ""
338
+ ],
339
+ "availabilityToken": "b13988840",
340
+ "ContentType": [
341
+ "Book"
342
+ ],
343
+ "Publisher": [
344
+ "CRC Press"
345
+ ]
346
+ },
347
+ {
348
+ "Publisher_xml": [
349
+ {
350
+ "name": "Harrington Park Press"
351
+ }
352
+ ],
353
+ "SubjectTerms": [
354
+ "Male homosexuality",
355
+ "History",
356
+ "Male friendship"
357
+ ],
358
+ "TableOfContents": [
359
+ "The freedom of the frontier -- Warme Bru\u0308der, mouches, and mollies -- Rom, sodomy, and the lash -- Gone for a soldier -- Sodomites in America's libraries -- Racism and homosexual desire in the antebellum period -- The nation's capital under Jefferson : four case studies -- On the streets of Philadelphia, Annapolis, and Boston -- Spirituality and sublimation -- Gender anarchy as a revolutionary threat -- Male intimacy at the fringes.."
360
+ ],
361
+ "XQueryRevision": [
362
+ "Rev: 6229"
363
+ ],
364
+ "inHoldings": false,
365
+ "DBID": [
366
+ "GXQ"
367
+ ],
368
+ "Notes": [
369
+ "Includes bibliographical references (p. 271-311) and index."
370
+ ],
371
+ "PublicationDateYear": [
372
+ "2006"
373
+ ],
374
+ "URI": [
375
+ "http:\/\/www.loc.gov\/catdir\/toc\/ecip0513\/2005014632.html",
376
+ "http:\/\/firstsearch.oclc.org\/WebZ\/DCARead?standardNoType=1&standardNo=1560233443:srcdbname=worldcat:fromExternal=true&sessionid=0",
377
+ "http:\/\/firstsearch.oclc.org\/WebZ\/DECRead?standardNoType=1&standardNo=1560233443&sessionid=0&srcdbname=worldcat&key=b79f9d2692ada1adb2ba6858597bd58178c63705a76d4cc7cb24baed020b6cbd&ectype=TOC"
378
+ ],
379
+ "hasFullText": false,
380
+ "GeographicLocations_xml": [
381
+ {
382
+ "name": "United States"
383
+ }
384
+ ],
385
+ "ISBN": [
386
+ "1560233443 (hard : alk. paper)",
387
+ "9781560233459",
388
+ "9781560233442",
389
+ "1560233451 (soft : alk. paper)"
390
+ ],
391
+ "timestamp": [
392
+ "Thu Jul 09 19:44:12 EDT 2009"
393
+ ],
394
+ "Author": [
395
+ "Benemann, William"
396
+ ],
397
+ "PageCount": [
398
+ "xx, 322 p."
399
+ ],
400
+ "PublicationDate": [
401
+ "c2006."
402
+ ],
403
+ "Subtitle": [
404
+ "beyond romantic friendships"
405
+ ],
406
+ "Title": [
407
+ "Male-male intimacy in early America"
408
+ ],
409
+ "ID": [
410
+ "gvsu_catalog_b19786062"
411
+ ],
412
+ "LCCN": [
413
+ "2005014632"
414
+ ],
415
+ "Language": [
416
+ "English"
417
+ ],
418
+ "PublicationDateCentury": [
419
+ "2000"
420
+ ],
421
+ "PublicationDateDecade": [
422
+ "2000"
423
+ ],
424
+ "openUrl": "ctx_ver=Z39.88-2004&rfr_id=info:sid\/summon.serialssolutions.com&rft_val_fmt=info:ofi\/fmt:kev:mtx:book&rft.genre=book&rft.title=Male-male+intimacy+in+early+America&rft.au=Benemann%2C+William&rft.date=c200-6.&rft.pub=Harrington+Park+Press&rft.isbn=1560233443+%28hard+%3A+alk.+paper%29&rft.externalDBID=n%2Fa&rft.externalDocID=b19786062",
425
+ "Author_xml": [
426
+ {
427
+ "fullname": "Benemann, William",
428
+ "surname": "Benemann",
429
+ "givenname": "William"
430
+ }
431
+ ],
432
+ "GeographicLocations": [
433
+ "United States"
434
+ ],
435
+ "Library": [
436
+ "LGBT Resource Center"
437
+ ],
438
+ "PublicationDate_xml": [
439
+ {
440
+ "month": "01",
441
+ "text": "c2006.",
442
+ "day": "01",
443
+ "year": "2006"
444
+ }
445
+ ],
446
+ "PublicationPlace": [
447
+ "New York"
448
+ ],
449
+ "PublicationPlace_xml": [
450
+ {
451
+ "name": "New York"
452
+ }
453
+ ],
454
+ "score": [
455
+ "1.0"
456
+ ],
457
+ "Snippet": [
458
+ ""
459
+ ],
460
+ "availabilityToken": "b19786062",
461
+ "ContentType": [
462
+ "Book"
463
+ ],
464
+ "Publisher": [
465
+ "Harrington Park Press"
466
+ ]
467
+ },
468
+ {
469
+ "SubjectTerms": [
470
+ "Job hunting",
471
+ "Occupations",
472
+ "Professions",
473
+ "Vocational guidance"
474
+ ],
475
+ "XQueryRevision": [
476
+ "Rev: 6229"
477
+ ],
478
+ "inHoldings": false,
479
+ "DBID": [
480
+ "GXQ"
481
+ ],
482
+ "Notes": [
483
+ "File contains brochures, catalogs and other publications useful to potential job seekers."
484
+ ],
485
+ "hasFullText": false,
486
+ "timestamp": [
487
+ "Thu Jul 09 19:44:12 EDT 2009"
488
+ ],
489
+ "Title": [
490
+ "Career resources"
491
+ ],
492
+ "ID": [
493
+ "gvsu_catalog_b12245379"
494
+ ],
495
+ "LCCallNum": [
496
+ "Filed by Organization (C...)"
497
+ ],
498
+ "Language": [
499
+ "Unknown"
500
+ ],
501
+ "openUrl": "ctx_ver=Z39.88-2004&rfr_id=info:sid\/summon.serialssolutions.com&rft_val_fmt=info:ofi\/fmt:kev:mtx:book&rft.genre=book&rft.title=Career+resources&rft.externalDBID=n%2Fa&rft.externalDocID=b12245379",
502
+ "CorporateAuthor": [
503
+ "Citizens Insurance"
504
+ ],
505
+ "Library": [
506
+ "Career Services"
507
+ ],
508
+ "PublicationPlace": [
509
+ "Howell, MI"
510
+ ],
511
+ "CorporateAuthor_xml": [
512
+ {
513
+ "name": "Citizens Insurance"
514
+ }
515
+ ],
516
+ "PublicationPlace_xml": [
517
+ {
518
+ "name": "Howell, MI"
519
+ }
520
+ ],
521
+ "score": [
522
+ "1.0"
523
+ ],
524
+ "Snippet": [
525
+ ""
526
+ ],
527
+ "availabilityToken": "b12245379",
528
+ "ContentType": [
529
+ "Book"
530
+ ]
531
+ },
532
+ {
533
+ "SubjectTerms": [
534
+ "Job hunting",
535
+ "Occupations",
536
+ "Professions",
537
+ "Vocational guidance"
538
+ ],
539
+ "XQueryRevision": [
540
+ "Rev: 6229"
541
+ ],
542
+ "inHoldings": false,
543
+ "DBID": [
544
+ "GXQ"
545
+ ],
546
+ "Notes": [
547
+ "File contains brochures, catalogs and other publications useful to potential job seekers."
548
+ ],
549
+ "hasFullText": false,
550
+ "timestamp": [
551
+ "Thu Jul 09 19:44:12 EDT 2009"
552
+ ],
553
+ "Title": [
554
+ "Career resources"
555
+ ],
556
+ "ID": [
557
+ "gvsu_catalog_b12239240"
558
+ ],
559
+ "LCCallNum": [
560
+ "Filed by Organization (A...)"
561
+ ],
562
+ "Language": [
563
+ "Unknown"
564
+ ],
565
+ "openUrl": "ctx_ver=Z39.88-2004&rfr_id=info:sid\/summon.serialssolutions.com&rft_val_fmt=info:ofi\/fmt:kev:mtx:book&rft.genre=book&rft.title=Career+resources&rft.externalDBID=n%2Fa&rft.externalDocID=b12239240",
566
+ "CorporateAuthor": [
567
+ "Amoco Corporation"
568
+ ],
569
+ "Library": [
570
+ "Career Services"
571
+ ],
572
+ "PublicationPlace": [
573
+ "Chicago, IL"
574
+ ],
575
+ "CorporateAuthor_xml": [
576
+ {
577
+ "name": "Amoco Corporation"
578
+ }
579
+ ],
580
+ "PublicationPlace_xml": [
581
+ {
582
+ "name": "Chicago, IL"
583
+ }
584
+ ],
585
+ "score": [
586
+ "1.0"
587
+ ],
588
+ "Snippet": [
589
+ ""
590
+ ],
591
+ "availabilityToken": "b12239240",
592
+ "ContentType": [
593
+ "Book"
594
+ ]
595
+ },
596
+ {
597
+ "Publisher_xml": [
598
+ {
599
+ "name": "CRC Press"
600
+ }
601
+ ],
602
+ "SubjectTerms": [
603
+ "Polychlorinated biphenyls",
604
+ "Environmental aspects",
605
+ "Biphe\u0301nyles polychlore\u0301s",
606
+ "Aspect de l'environnement"
607
+ ],
608
+ "XQueryRevision": [
609
+ "Rev: 6229"
610
+ ],
611
+ "inHoldings": false,
612
+ "DBID": [
613
+ "GXQ"
614
+ ],
615
+ "DEWEY": [
616
+ "363.1\/79"
617
+ ],
618
+ "Notes": [
619
+ "Includes bibliographical references and indexes."
620
+ ],
621
+ "PublicationDateYear": [
622
+ "1986"
623
+ ],
624
+ "hasFullText": false,
625
+ "ISBN": [
626
+ "0849359295 (set)"
627
+ ],
628
+ "timestamp": [
629
+ "Thu Jul 09 19:44:12 EDT 2009"
630
+ ],
631
+ "Author": [
632
+ "Waid, John S"
633
+ ],
634
+ "PageCount": [
635
+ "3 v."
636
+ ],
637
+ "PublicationDate": [
638
+ "c1986-c1987."
639
+ ],
640
+ "Title": [
641
+ "PCBs and the environment"
642
+ ],
643
+ "ID": [
644
+ "gvsu_catalog_b1396950x"
645
+ ],
646
+ "LCCN": [
647
+ "86017549"
648
+ ],
649
+ "LCCallNum": [
650
+ "QH545.P6 P236 1986"
651
+ ],
652
+ "Language": [
653
+ "English"
654
+ ],
655
+ "PublicationDateCentury": [
656
+ "1900"
657
+ ],
658
+ "PublicationDateDecade": [
659
+ "1980"
660
+ ],
661
+ "openUrl": "ctx_ver=Z39.88-2004&rfr_id=info:sid\/summon.serialssolutions.com&rft_val_fmt=info:ofi\/fmt:kev:mtx:book&rft.genre=book&rft.title=PCBs+and+the+environment&rft.au=Waid%2C+John+S&rft.date=c198-6--c1&rft.pub=CRC+Press&rft.isbn=0849359295+%28set%29&rft.externalDBID=n%2Fa&rft.externalDocID=b1396950x",
662
+ "Author_xml": [
663
+ {
664
+ "fullname": "Waid, John S",
665
+ "surname": "Waid",
666
+ "givenname": "John S"
667
+ }
668
+ ],
669
+ "Library": [
670
+ "AWRI"
671
+ ],
672
+ "PublicationDate_xml": [
673
+ {
674
+ "month": "01",
675
+ "text": "c1986-c1987.",
676
+ "day": "01",
677
+ "year": "1986"
678
+ }
679
+ ],
680
+ "PublicationPlace": [
681
+ "Boca Raton, Fla"
682
+ ],
683
+ "PublicationPlace_xml": [
684
+ {
685
+ "name": "Boca Raton, Fla"
686
+ }
687
+ ],
688
+ "score": [
689
+ "1.0"
690
+ ],
691
+ "Snippet": [
692
+ ""
693
+ ],
694
+ "availabilityToken": "b1396950x",
695
+ "ContentType": [
696
+ "Book"
697
+ ],
698
+ "Publisher": [
699
+ "CRC Press"
700
+ ]
701
+ },
702
+ {
703
+ "Publisher_xml": [
704
+ {
705
+ "name": "Swallow Press\/Ohio University Press"
706
+ }
707
+ ],
708
+ "SubjectTerms": [
709
+ "Anorexia",
710
+ "Patients"
711
+ ],
712
+ "TableOfContents": [
713
+ "Body story -- Girl body -- Virgin body -- Starving body -- Wedding body -- Giving birth -- Blind spot."
714
+ ],
715
+ "XQueryRevision": [
716
+ "Rev: 6229"
717
+ ],
718
+ "inHoldings": false,
719
+ "DBID": [
720
+ "GXQ"
721
+ ],
722
+ "DEWEY": [
723
+ "B",
724
+ "362.196\/85262\/0092"
725
+ ],
726
+ "Notes": [
727
+ "Includes bibliographical references (p. 143-148)."
728
+ ],
729
+ "PublicationDateYear": [
730
+ "2004"
731
+ ],
732
+ "hasFullText": false,
733
+ "GeographicLocations_xml": [
734
+ {
735
+ "name": "United States"
736
+ }
737
+ ],
738
+ "ISBN": [
739
+ "0804010641 (pbk. : alk. paper)",
740
+ "0804010633 (cloth : alk. paper)"
741
+ ],
742
+ "RelatedPersons_xml": [
743
+ {
744
+ "fullname": "De Pree, Julia Knowlton",
745
+ "surname": "De Pree",
746
+ "givenname": "Julia Knowlton"
747
+ }
748
+ ],
749
+ "timestamp": [
750
+ "Thu Jul 09 19:44:12 EDT 2009"
751
+ ],
752
+ "Author": [
753
+ "De Pree, Julia Knowlton"
754
+ ],
755
+ "PageCount": [
756
+ "ix, 148 p."
757
+ ],
758
+ "PublicationDate": [
759
+ "c2004."
760
+ ],
761
+ "Title": [
762
+ "Body story"
763
+ ],
764
+ "Genre": [
765
+ "Biography"
766
+ ],
767
+ "ID": [
768
+ "gvsu_catalog_b14147609"
769
+ ],
770
+ "LCCN": [
771
+ "2003027357"
772
+ ],
773
+ "LCCallNum": [
774
+ "RC552.A5 D43 2004"
775
+ ],
776
+ "Language": [
777
+ "English"
778
+ ],
779
+ "PublicationDateCentury": [
780
+ "2000"
781
+ ],
782
+ "PublicationDateDecade": [
783
+ "2000"
784
+ ],
785
+ "openUrl": "ctx_ver=Z39.88-2004&rfr_id=info:sid\/summon.serialssolutions.com&rft_val_fmt=info:ofi\/fmt:kev:mtx:book&rft.genre=book&rft.title=Body+story&rft.au=De+Pree%2C+Julia+Knowlton&rft.date=c200-4.&rft.pub=Swallow+Press%2FOhio+University+Press&rft.isbn=0804010641+%28pbk.+%3A+alk.+paper%29&rft.externalDBID=n%2Fa&rft.externalDocID=b14147609",
786
+ "Author_xml": [
787
+ {
788
+ "fullname": "De Pree, Julia Knowlton",
789
+ "surname": "De Pree",
790
+ "givenname": "Julia Knowlton"
791
+ }
792
+ ],
793
+ "GeographicLocations": [
794
+ "United States"
795
+ ],
796
+ "Library": [
797
+ "Women's Center Library"
798
+ ],
799
+ "PublicationDate_xml": [
800
+ {
801
+ "month": "01",
802
+ "text": "c2004.",
803
+ "day": "01",
804
+ "year": "2004"
805
+ }
806
+ ],
807
+ "PublicationPlace": [
808
+ "Athens, Ohio"
809
+ ],
810
+ "PublicationPlace_xml": [
811
+ {
812
+ "name": "Athens, Ohio"
813
+ }
814
+ ],
815
+ "RelatedPersons": [
816
+ "De Pree, Julia Knowlton"
817
+ ],
818
+ "score": [
819
+ "1.0"
820
+ ],
821
+ "Snippet": [
822
+ ""
823
+ ],
824
+ "availabilityToken": "b14147609",
825
+ "ContentType": [
826
+ "Book"
827
+ ],
828
+ "Publisher": [
829
+ "Swallow Press\/Ohio University Press"
830
+ ]
831
+ },
832
+ {
833
+ "Publisher_xml": [
834
+ {
835
+ "name": "Alyson Publications"
836
+ }
837
+ ],
838
+ "SubjectTerms": [
839
+ "Motion picture actors and actresses",
840
+ "Gay motion picture actors and actresses",
841
+ "Gay erotic films"
842
+ ],
843
+ "XQueryRevision": [
844
+ "Rev: 6229"
845
+ ],
846
+ "inHoldings": false,
847
+ "DBID": [
848
+ "GXQ"
849
+ ],
850
+ "Notes": [
851
+ "Filmography: p. 205-209."
852
+ ],
853
+ "PublicationDateYear": [
854
+ "1996"
855
+ ],
856
+ "hasFullText": false,
857
+ "GeographicLocations_xml": [
858
+ {
859
+ "name": "United States"
860
+ }
861
+ ],
862
+ "ISBN": [
863
+ "1555833837 (pb : acid-free paper)",
864
+ "9781555833831 (pb : acid-free paper)"
865
+ ],
866
+ "RelatedPersons_xml": [
867
+ {
868
+ "fullname": "Stefano, Joey",
869
+ "surname": "Stefano",
870
+ "givenname": "Joey"
871
+ }
872
+ ],
873
+ "timestamp": [
874
+ "Thu Jul 09 19:44:12 EDT 2009"
875
+ ],
876
+ "Author": [
877
+ "Isherwood, Charles"
878
+ ],
879
+ "PageCount": [
880
+ "208 p."
881
+ ],
882
+ "PublicationDate": [
883
+ "1996."
884
+ ],
885
+ "Subtitle": [
886
+ "the life and death of Joey Stefano"
887
+ ],
888
+ "Title": [
889
+ "Wonder bread and ecstasy"
890
+ ],
891
+ "Genre": [
892
+ "Biography"
893
+ ],
894
+ "ID": [
895
+ "gvsu_catalog_b22630090"
896
+ ],
897
+ "LCCN": [
898
+ "96026524"
899
+ ],
900
+ "Language": [
901
+ "English"
902
+ ],
903
+ "PublicationDateCentury": [
904
+ "1900"
905
+ ],
906
+ "PublicationDateDecade": [
907
+ "1990"
908
+ ],
909
+ "openUrl": "ctx_ver=Z39.88-2004&rfr_id=info:sid\/summon.serialssolutions.com&rft_val_fmt=info:ofi\/fmt:kev:mtx:book&rft.genre=book&rft.title=Wonder+bread+and+ecstasy&rft.au=Isherwood%2C+Charles&rft.date=1996&rft.pub=Alyson+Publications&rft.isbn=1555833837+%28pb+%3A+acid-free+paper%29&rft.externalDBID=n%2Fa&rft.externalDocID=b22630090",
910
+ "Author_xml": [
911
+ {
912
+ "fullname": "Isherwood, Charles",
913
+ "surname": "Isherwood",
914
+ "givenname": "Charles"
915
+ }
916
+ ],
917
+ "GeographicLocations": [
918
+ "United States"
919
+ ],
920
+ "Library": [
921
+ "LGBT Resource Center"
922
+ ],
923
+ "PublicationDate_xml": [
924
+ {
925
+ "month": "01",
926
+ "text": "1996.",
927
+ "day": "01",
928
+ "year": "1996"
929
+ }
930
+ ],
931
+ "PublicationPlace": [
932
+ "Los Angeles"
933
+ ],
934
+ "PublicationPlace_xml": [
935
+ {
936
+ "name": "Los Angeles"
937
+ }
938
+ ],
939
+ "RelatedPersons": [
940
+ "Stefano, Joey"
941
+ ],
942
+ "score": [
943
+ "1.0"
944
+ ],
945
+ "Snippet": [
946
+ ""
947
+ ],
948
+ "availabilityToken": "b22630090",
949
+ "ContentType": [
950
+ "Book"
951
+ ],
952
+ "Edition": [
953
+ "1st ed."
954
+ ],
955
+ "Publisher": [
956
+ "Alyson Publications"
957
+ ]
958
+ },
959
+ {
960
+ "Publisher_xml": [
961
+ {
962
+ "name": "Pilgrim Press"
963
+ }
964
+ ],
965
+ "SubjectTerms": [
966
+ "Virtues",
967
+ "Biblical teaching",
968
+ "Blacks in the Bible",
969
+ "Women in the Bible",
970
+ "African American women",
971
+ "Conduct of life",
972
+ "Religious life"
973
+ ],
974
+ "XQueryRevision": [
975
+ "Rev: 6229"
976
+ ],
977
+ "inHoldings": false,
978
+ "DBID": [
979
+ "GXQ"
980
+ ],
981
+ "DEWEY": [
982
+ "277.3\/0082"
983
+ ],
984
+ "Notes": [
985
+ "Includes bibliographical references (p. 131-134) and index."
986
+ ],
987
+ "PublicationDateYear": [
988
+ "2000"
989
+ ],
990
+ "hasFullText": false,
991
+ "ISBN": [
992
+ "082981373X (paper : alk. paper)"
993
+ ],
994
+ "timestamp": [
995
+ "Thu Jul 09 19:44:12 EDT 2009"
996
+ ],
997
+ "Author": [
998
+ "Gill, LaVerne McCain"
999
+ ],
1000
+ "PageCount": [
1001
+ "xxviii, 140 p."
1002
+ ],
1003
+ "PublicationDate": [
1004
+ "2000."
1005
+ ],
1006
+ "Subtitle": [
1007
+ "African women in the Bible and the virtues of black womanhood"
1008
+ ],
1009
+ "Title": [
1010
+ "Daughters of dignity"
1011
+ ],
1012
+ "ID": [
1013
+ "gvsu_catalog_b13923080"
1014
+ ],
1015
+ "LCCN": [
1016
+ "99057376"
1017
+ ],
1018
+ "LCCallNum": [
1019
+ "BS680.V56 G55 2000"
1020
+ ],
1021
+ "Language": [
1022
+ "English"
1023
+ ],
1024
+ "PublicationDateCentury": [
1025
+ "2000"
1026
+ ],
1027
+ "PublicationDateDecade": [
1028
+ "2000"
1029
+ ],
1030
+ "openUrl": "ctx_ver=Z39.88-2004&rfr_id=info:sid\/summon.serialssolutions.com&rft_val_fmt=info:ofi\/fmt:kev:mtx:book&rft.genre=book&rft.title=Daughters+of+dignity&rft.au=Gill%2C+LaVerne+McCain&rft.date=2000&rft.pub=Pilgrim+Press&rft.isbn=082981373X+%28paper+%3A+alk.+paper%29&rft.externalDBID=n%2Fa&rft.externalDocID=b13923080",
1031
+ "Author_xml": [
1032
+ {
1033
+ "fullname": "Gill, LaVerne McCain",
1034
+ "surname": "Gill",
1035
+ "givenname": "LaVerne McCain"
1036
+ }
1037
+ ],
1038
+ "Library": [
1039
+ "Women's Center Library"
1040
+ ],
1041
+ "PublicationDate_xml": [
1042
+ {
1043
+ "month": "01",
1044
+ "text": "2000.",
1045
+ "day": "01",
1046
+ "year": "2000"
1047
+ }
1048
+ ],
1049
+ "PublicationPlace": [
1050
+ "Cleveland, Ohio"
1051
+ ],
1052
+ "PublicationPlace_xml": [
1053
+ {
1054
+ "name": "Cleveland, Ohio"
1055
+ }
1056
+ ],
1057
+ "score": [
1058
+ "1.0"
1059
+ ],
1060
+ "Snippet": [
1061
+ ""
1062
+ ],
1063
+ "availabilityToken": "b13923080",
1064
+ "ContentType": [
1065
+ "Book"
1066
+ ],
1067
+ "Publisher": [
1068
+ "Pilgrim Press"
1069
+ ]
1070
+ },
1071
+ {
1072
+ "SubjectTerms": [
1073
+ "Job hunting",
1074
+ "Occupations",
1075
+ "Professions",
1076
+ "Vocational guidance"
1077
+ ],
1078
+ "XQueryRevision": [
1079
+ "Rev: 6229"
1080
+ ],
1081
+ "inHoldings": false,
1082
+ "DBID": [
1083
+ "GXQ"
1084
+ ],
1085
+ "Notes": [
1086
+ "File contains brochures, catalogs and other publications useful to potential job seekers."
1087
+ ],
1088
+ "hasFullText": false,
1089
+ "timestamp": [
1090
+ "Thu Jul 09 19:44:12 EDT 2009"
1091
+ ],
1092
+ "Title": [
1093
+ "Career resources"
1094
+ ],
1095
+ "ID": [
1096
+ "gvsu_catalog_b12302168"
1097
+ ],
1098
+ "LCCallNum": [
1099
+ "Filed by Organization (L...)"
1100
+ ],
1101
+ "Language": [
1102
+ "Unknown"
1103
+ ],
1104
+ "openUrl": "ctx_ver=Z39.88-2004&rfr_id=info:sid\/summon.serialssolutions.com&rft_val_fmt=info:ofi\/fmt:kev:mtx:book&rft.genre=book&rft.title=Career+resources&rft.externalDBID=n%2Fa&rft.externalDocID=b12302168",
1105
+ "CorporateAuthor": [
1106
+ "Lakeland Regional Health System"
1107
+ ],
1108
+ "Library": [
1109
+ "Career Services"
1110
+ ],
1111
+ "PublicationPlace": [
1112
+ "Benton Harbor, MI"
1113
+ ],
1114
+ "CorporateAuthor_xml": [
1115
+ {
1116
+ "name": "Lakeland Regional Health System"
1117
+ }
1118
+ ],
1119
+ "PublicationPlace_xml": [
1120
+ {
1121
+ "name": "Benton Harbor, MI"
1122
+ }
1123
+ ],
1124
+ "score": [
1125
+ "1.0"
1126
+ ],
1127
+ "Snippet": [
1128
+ ""
1129
+ ],
1130
+ "availabilityToken": "b12302168",
1131
+ "ContentType": [
1132
+ "Book"
1133
+ ]
1134
+ },
1135
+ {
1136
+ "Publisher_xml": [
1137
+ {
1138
+ "name": "VGM Career Horizons"
1139
+ }
1140
+ ],
1141
+ "SubjectTerms": [
1142
+ "Job hunting",
1143
+ "Computer network resources",
1144
+ "Internet",
1145
+ "World Wide Web"
1146
+ ],
1147
+ "TableOfContents": [
1148
+ "Pounding the virtual pavement: Using the Internet in your job search -- Internet job application -- Great job lead banks -- Jobs in business, marketing, and commercial services -- Jobs in the social sciences and the world of nonprofits -- Jobs in the humanities, recreation, hospitality and personal services -- Jobs in natural sciences, health, and medicine -- Jobs in engineering, mathematics, technology and transportation -- Opportunities in government, public policy, and public service -- Entry-level and summer employment, internships, and co-ops -- State and local resources for the United States -- International opportunities -- Resources for diverse audiences -- Lifelong career planning. ch. 1. ch. 2. ch. 3. ch. 4. ch. 5. ch. 6. ch. 7. ch. 8. ch. 9. ch. 10. ch. 11. ch. 12. ch. 13. ch. 14."
1149
+ ],
1150
+ "XQueryRevision": [
1151
+ "Rev: 6229"
1152
+ ],
1153
+ "inHoldings": false,
1154
+ "DBID": [
1155
+ "GXQ"
1156
+ ],
1157
+ "Notes": [
1158
+ "Includes index."
1159
+ ],
1160
+ "PublicationDateYear": [
1161
+ "2000"
1162
+ ],
1163
+ "hasFullText": false,
1164
+ "ISBN": [
1165
+ "0658002252"
1166
+ ],
1167
+ "timestamp": [
1168
+ "Thu Jul 09 19:44:12 EDT 2009"
1169
+ ],
1170
+ "Author": [
1171
+ "Dikel, Margaret F",
1172
+ "Roehm, Frances E"
1173
+ ],
1174
+ "PageCount": [
1175
+ "viii, 344 p."
1176
+ ],
1177
+ "PublicationDate": [
1178
+ "c2000."
1179
+ ],
1180
+ "Title": [
1181
+ "The guide to Internet job searching"
1182
+ ],
1183
+ "ID": [
1184
+ "gvsu_catalog_b13555431"
1185
+ ],
1186
+ "LCCallNum": [
1187
+ "HF5382.7 .D55 2000"
1188
+ ],
1189
+ "Language": [
1190
+ "English"
1191
+ ],
1192
+ "PublicationDateCentury": [
1193
+ "2000"
1194
+ ],
1195
+ "PublicationDateDecade": [
1196
+ "2000"
1197
+ ],
1198
+ "openUrl": "ctx_ver=Z39.88-2004&rfr_id=info:sid\/summon.serialssolutions.com&rft_val_fmt=info:ofi\/fmt:kev:mtx:book&rft.genre=book&rft.title=The+guide+to+Internet+job+searching&rft.au=Dikel%2C+Margaret+F&rft.au=Roehm%2C+Frances+E&rft.date=c200-0.&rft.pub=VGM+Career+Horizons&rft.isbn=0658002252&rft.externalDBID=n%2Fa&rft.externalDocID=b13555431",
1199
+ "Author_xml": [
1200
+ {
1201
+ "fullname": "Dikel, Margaret F",
1202
+ "surname": "Dikel",
1203
+ "givenname": "Margaret F"
1204
+ },
1205
+ {
1206
+ "fullname": "Roehm, Frances E",
1207
+ "surname": "Roehm",
1208
+ "givenname": "Frances E"
1209
+ }
1210
+ ],
1211
+ "Library": [
1212
+ "Career Services"
1213
+ ],
1214
+ "PublicationDate_xml": [
1215
+ {
1216
+ "month": "01",
1217
+ "text": "c2000.",
1218
+ "day": "01",
1219
+ "year": "2000"
1220
+ }
1221
+ ],
1222
+ "PublicationPlace": [
1223
+ "Lincolnwood, Ill"
1224
+ ],
1225
+ "PublicationPlace_xml": [
1226
+ {
1227
+ "name": "Lincolnwood, Ill"
1228
+ }
1229
+ ],
1230
+ "score": [
1231
+ "1.0"
1232
+ ],
1233
+ "Snippet": [
1234
+ ""
1235
+ ],
1236
+ "availabilityToken": "b13555431",
1237
+ "ContentType": [
1238
+ "Book"
1239
+ ],
1240
+ "Edition": [
1241
+ "2000-01 ed."
1242
+ ],
1243
+ "Publisher": [
1244
+ "VGM Career Horizons"
1245
+ ]
1246
+ },
1247
+ {
1248
+ "Publisher_xml": [
1249
+ {
1250
+ "name": "Bantam Books"
1251
+ }
1252
+ ],
1253
+ "SubjectTerms": [
1254
+ "Lesbianism"
1255
+ ],
1256
+ "TableOfContents": [
1257
+ "Lesbian: myth & reality -- Self image -- Sexuality and sex roles -- Life styles -- Lesbians are mothers too -- Growing up gay -- Lesbian paranoia: real & imagined fears -- Lesbians united -- Lesbian\/woman -- Not toleration: lesbian liberation."
1258
+ ],
1259
+ "XQueryRevision": [
1260
+ "Rev: 6229"
1261
+ ],
1262
+ "inHoldings": false,
1263
+ "DBID": [
1264
+ "GXQ"
1265
+ ],
1266
+ "PublicationDateYear": [
1267
+ "1972"
1268
+ ],
1269
+ "hasFullText": false,
1270
+ "GeographicLocations_xml": [
1271
+ {
1272
+ "name": "United States"
1273
+ }
1274
+ ],
1275
+ "ISBN": [
1276
+ "0553117025"
1277
+ ],
1278
+ "timestamp": [
1279
+ "Thu Jul 09 19:44:12 EDT 2009"
1280
+ ],
1281
+ "PublicationSeriesTitle": [
1282
+ "A Bantam book"
1283
+ ],
1284
+ "Author": [
1285
+ "Martin, Del",
1286
+ "Lyon, Phyllis"
1287
+ ],
1288
+ "PageCount": [
1289
+ "310 p."
1290
+ ],
1291
+ "PublicationDate": [
1292
+ "1972"
1293
+ ],
1294
+ "Title": [
1295
+ "Lesbian\/woman"
1296
+ ],
1297
+ "ID": [
1298
+ "gvsu_catalog_b10512640"
1299
+ ],
1300
+ "LCCallNum": [
1301
+ "HQ76.3 .U5 M37 1972"
1302
+ ],
1303
+ "Language": [
1304
+ "English"
1305
+ ],
1306
+ "PublicationDateCentury": [
1307
+ "1900"
1308
+ ],
1309
+ "PublicationDateDecade": [
1310
+ "1970"
1311
+ ],
1312
+ "openUrl": "ctx_ver=Z39.88-2004&rfr_id=info:sid\/summon.serialssolutions.com&rft_val_fmt=info:ofi\/fmt:kev:mtx:book&rft.genre=book&rft.title=Lesbian%2Fwoman&rft.au=Martin%2C+Del&rft.au=Lyon%2C+Phyllis&rft.series=A+Bantam+book&rft.date=1972&rft.pub=Bantam+Books&rft.isbn=0553117025&rft.externalDBID=n%2Fa&rft.externalDocID=b10512640",
1313
+ "Author_xml": [
1314
+ {
1315
+ "fullname": "Martin, Del",
1316
+ "surname": "Martin",
1317
+ "givenname": "Del"
1318
+ },
1319
+ {
1320
+ "fullname": "Lyon, Phyllis",
1321
+ "surname": "Lyon",
1322
+ "givenname": "Phyllis"
1323
+ }
1324
+ ],
1325
+ "GeographicLocations": [
1326
+ "United States"
1327
+ ],
1328
+ "Library": [
1329
+ "LGBT Resource Center",
1330
+ "Zumberge Library"
1331
+ ],
1332
+ "PublicationDate_xml": [
1333
+ {
1334
+ "month": "01",
1335
+ "text": "[1972]",
1336
+ "day": "01",
1337
+ "year": "1972"
1338
+ }
1339
+ ],
1340
+ "PublicationPlace": [
1341
+ "New York"
1342
+ ],
1343
+ "PublicationPlace_xml": [
1344
+ {
1345
+ "name": "New York"
1346
+ }
1347
+ ],
1348
+ "score": [
1349
+ "1.0"
1350
+ ],
1351
+ "Snippet": [
1352
+ ""
1353
+ ],
1354
+ "availabilityToken": "b10512640",
1355
+ "ContentType": [
1356
+ "Book"
1357
+ ],
1358
+ "Publisher": [
1359
+ "Bantam Books"
1360
+ ]
1361
+ },
1362
+ {
1363
+ "Publisher_xml": [
1364
+ {
1365
+ "name": "Viking"
1366
+ }
1367
+ ],
1368
+ "SubjectTerms": [
1369
+ "Feminism",
1370
+ "History",
1371
+ "Women",
1372
+ "Social conditions",
1373
+ "Social conditions"
1374
+ ],
1375
+ "XQueryRevision": [
1376
+ "Rev: 6229"
1377
+ ],
1378
+ "inHoldings": false,
1379
+ "DBID": [
1380
+ "GXQ"
1381
+ ],
1382
+ "DEWEY": [
1383
+ "305.4\/2"
1384
+ ],
1385
+ "Notes": [
1386
+ "Includes bibliographical references (p. 265-266)."
1387
+ ],
1388
+ "PublicationDateYear": [
1389
+ "1989"
1390
+ ],
1391
+ "hasFullText": false,
1392
+ "GeographicLocations_xml": [
1393
+ {
1394
+ "name": "United States"
1395
+ }
1396
+ ],
1397
+ "ISBN": [
1398
+ "0670819107 :"
1399
+ ],
1400
+ "timestamp": [
1401
+ "Thu Jul 09 19:44:12 EDT 2009"
1402
+ ],
1403
+ "Author": [
1404
+ "Shreve, Anita"
1405
+ ],
1406
+ "PageCount": [
1407
+ "ix, 275 p."
1408
+ ],
1409
+ "PublicationDate": [
1410
+ "1989."
1411
+ ],
1412
+ "Subtitle": [
1413
+ "the legacy of the consciousness-raising movement"
1414
+ ],
1415
+ "Title": [
1416
+ "Women together, women alone"
1417
+ ],
1418
+ "ID": [
1419
+ "gvsu_catalog_b1356402x"
1420
+ ],
1421
+ "LCCN": [
1422
+ "88040478"
1423
+ ],
1424
+ "LCCallNum": [
1425
+ "HQ1421 .S57 1989"
1426
+ ],
1427
+ "Language": [
1428
+ "English"
1429
+ ],
1430
+ "PublicationDateCentury": [
1431
+ "1900"
1432
+ ],
1433
+ "PublicationDateDecade": [
1434
+ "1980"
1435
+ ],
1436
+ "openUrl": "ctx_ver=Z39.88-2004&rfr_id=info:sid\/summon.serialssolutions.com&rft_val_fmt=info:ofi\/fmt:kev:mtx:book&rft.genre=book&rft.title=Women+together%2C+women+alone&rft.au=Shreve%2C+Anita&rft.date=1989&rft.pub=Viking&rft.isbn=0670819107+%3A&rft.externalDBID=n%2Fa&rft.externalDocID=b1356402x",
1437
+ "Author_xml": [
1438
+ {
1439
+ "fullname": "Shreve, Anita",
1440
+ "surname": "Shreve",
1441
+ "givenname": "Anita"
1442
+ }
1443
+ ],
1444
+ "GeographicLocations": [
1445
+ "United States"
1446
+ ],
1447
+ "Library": [
1448
+ "Women's Center Library"
1449
+ ],
1450
+ "PublicationDate_xml": [
1451
+ {
1452
+ "month": "01",
1453
+ "text": "1989.",
1454
+ "day": "01",
1455
+ "year": "1989"
1456
+ }
1457
+ ],
1458
+ "PublicationPlace": [
1459
+ "New York"
1460
+ ],
1461
+ "TemporalSubjectTerms": [
1462
+ "20th century",
1463
+ "1980"
1464
+ ],
1465
+ "PublicationPlace_xml": [
1466
+ {
1467
+ "name": "New York"
1468
+ }
1469
+ ],
1470
+ "score": [
1471
+ "1.0"
1472
+ ],
1473
+ "Snippet": [
1474
+ ""
1475
+ ],
1476
+ "availabilityToken": "b1356402x",
1477
+ "ContentType": [
1478
+ "Book"
1479
+ ],
1480
+ "Publisher": [
1481
+ "Viking"
1482
+ ]
1483
+ },
1484
+ {
1485
+ "SubjectTerms": [
1486
+ "Job hunting",
1487
+ "Occupations",
1488
+ "Professions",
1489
+ "Vocational guidance"
1490
+ ],
1491
+ "XQueryRevision": [
1492
+ "Rev: 6229"
1493
+ ],
1494
+ "inHoldings": false,
1495
+ "DBID": [
1496
+ "GXQ"
1497
+ ],
1498
+ "Notes": [
1499
+ "File contains brochures, catalogs and other publications useful to potential job seekers."
1500
+ ],
1501
+ "hasFullText": false,
1502
+ "timestamp": [
1503
+ "Thu Jul 09 19:44:12 EDT 2009"
1504
+ ],
1505
+ "Title": [
1506
+ "Career resources"
1507
+ ],
1508
+ "ID": [
1509
+ "gvsu_catalog_b12308006"
1510
+ ],
1511
+ "LCCallNum": [
1512
+ "Filed by Organization (M...)"
1513
+ ],
1514
+ "Language": [
1515
+ "Unknown"
1516
+ ],
1517
+ "openUrl": "ctx_ver=Z39.88-2004&rfr_id=info:sid\/summon.serialssolutions.com&rft_val_fmt=info:ofi\/fmt:kev:mtx:book&rft.genre=book&rft.title=Career+resources&rft.externalDBID=n%2Fa&rft.externalDocID=b12308006",
1518
+ "CorporateAuthor": [
1519
+ "Manpower Temporary Services"
1520
+ ],
1521
+ "Library": [
1522
+ "Career Services"
1523
+ ],
1524
+ "PublicationPlace": [
1525
+ "Grand Rapids, MI"
1526
+ ],
1527
+ "CorporateAuthor_xml": [
1528
+ {
1529
+ "name": "Manpower Temporary Services"
1530
+ }
1531
+ ],
1532
+ "PublicationPlace_xml": [
1533
+ {
1534
+ "name": "Grand Rapids, MI"
1535
+ }
1536
+ ],
1537
+ "score": [
1538
+ "1.0"
1539
+ ],
1540
+ "Snippet": [
1541
+ ""
1542
+ ],
1543
+ "availabilityToken": "b12308006",
1544
+ "ContentType": [
1545
+ "Book"
1546
+ ]
1547
+ }
1548
+ ],
1549
+ "elapsedQueryTime": 62,
1550
+ "facetFields": [
1551
+ {
1552
+ "pageSize": 200,
1553
+ "displayName": "sys_source_id",
1554
+ "combineMode": "and",
1555
+ "pageNumber": 1,
1556
+ "listValuesCommand": "s.cmd=listFacetValues%28sys_source_id%2Cand%29",
1557
+ "hasAppliedValue": false,
1558
+ "fieldName": "sys_source_id",
1559
+ "hasLimitingValue": true,
1560
+ "removeCommand": "s.cmd=removeFacetField%28sys_source_id%29",
1561
+ "counts": [
1562
+ {
1563
+ "isFurtherLimiting": true,
1564
+ "isNegated": false,
1565
+ "value": "ieee",
1566
+ "count": 46112,
1567
+ "applyCommand": "s.cmd=addFacetValueFilter%28sys_source_id%2Cieee%2Cfalse%29",
1568
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28sys_source_id%2Cieee%2Ctrue%29",
1569
+ "isApplied": false
1570
+ },
1571
+ {
1572
+ "isFurtherLimiting": true,
1573
+ "isNegated": false,
1574
+ "value": "crossref",
1575
+ "count": 136300,
1576
+ "applyCommand": "s.cmd=addFacetValueFilter%28sys_source_id%2Ccrossref%2Cfalse%29",
1577
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28sys_source_id%2Ccrossref%2Ctrue%29",
1578
+ "isApplied": false
1579
+ },
1580
+ {
1581
+ "isFurtherLimiting": true,
1582
+ "isNegated": false,
1583
+ "value": "gvsu",
1584
+ "count": 60534,
1585
+ "applyCommand": "s.cmd=addFacetValueFilter%28sys_source_id%2Cgvsu%2Cfalse%29",
1586
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28sys_source_id%2Cgvsu%2Ctrue%29",
1587
+ "isApplied": false
1588
+ },
1589
+ {
1590
+ "isFurtherLimiting": true,
1591
+ "isNegated": false,
1592
+ "value": "ucalgary",
1593
+ "count": 105651,
1594
+ "applyCommand": "s.cmd=addFacetValueFilter%28sys_source_id%2Cucalgary%2Cfalse%29",
1595
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28sys_source_id%2Cucalgary%2Ctrue%29",
1596
+ "isApplied": false
1597
+ },
1598
+ {
1599
+ "isFurtherLimiting": true,
1600
+ "isNegated": false,
1601
+ "value": "ulrichs",
1602
+ "count": 243315,
1603
+ "applyCommand": "s.cmd=addFacetValueFilter%28sys_source_id%2Culrichs%2Cfalse%29",
1604
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28sys_source_id%2Culrichs%2Ctrue%29",
1605
+ "isApplied": false
1606
+ },
1607
+ {
1608
+ "isFurtherLimiting": true,
1609
+ "isNegated": false,
1610
+ "value": "emerald",
1611
+ "count": 66119,
1612
+ "applyCommand": "s.cmd=addFacetValueFilter%28sys_source_id%2Cemerald%2Cfalse%29",
1613
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28sys_source_id%2Cemerald%2Ctrue%29",
1614
+ "isApplied": false
1615
+ },
1616
+ {
1617
+ "isFurtherLimiting": true,
1618
+ "isNegated": false,
1619
+ "value": "liverpool",
1620
+ "count": 595375,
1621
+ "applyCommand": "s.cmd=addFacetValueFilter%28sys_source_id%2Cliverpool%2Cfalse%29",
1622
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28sys_source_id%2Cliverpool%2Ctrue%29",
1623
+ "isApplied": false
1624
+ },
1625
+ {
1626
+ "isFurtherLimiting": true,
1627
+ "isNegated": false,
1628
+ "value": "usyd",
1629
+ "count": 100010,
1630
+ "applyCommand": "s.cmd=addFacetValueFilter%28sys_source_id%2Cusyd%2Cfalse%29",
1631
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28sys_source_id%2Cusyd%2Ctrue%29",
1632
+ "isApplied": false
1633
+ },
1634
+ {
1635
+ "isFurtherLimiting": true,
1636
+ "isNegated": false,
1637
+ "value": "wmich",
1638
+ "count": 128009,
1639
+ "applyCommand": "s.cmd=addFacetValueFilter%28sys_source_id%2Cwmich%2Cfalse%29",
1640
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28sys_source_id%2Cwmich%2Ctrue%29",
1641
+ "isApplied": false
1642
+ },
1643
+ {
1644
+ "isFurtherLimiting": true,
1645
+ "isNegated": false,
1646
+ "value": "econlit",
1647
+ "count": 25400,
1648
+ "applyCommand": "s.cmd=addFacetValueFilter%28sys_source_id%2Ceconlit%2Cfalse%29",
1649
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28sys_source_id%2Ceconlit%2Ctrue%29",
1650
+ "isApplied": false
1651
+ }
1652
+ ]
1653
+ },
1654
+ {
1655
+ "pageSize": 200,
1656
+ "displayName": "sys_package_id",
1657
+ "combineMode": "and",
1658
+ "pageNumber": 1,
1659
+ "listValuesCommand": "s.cmd=listFacetValues%28sys_package_id%2Cand%29",
1660
+ "hasAppliedValue": false,
1661
+ "fieldName": "sys_package_id",
1662
+ "hasLimitingValue": true,
1663
+ "removeCommand": "s.cmd=removeFacetField%28sys_package_id%29",
1664
+ "counts": [
1665
+ {
1666
+ "isFurtherLimiting": true,
1667
+ "isNegated": false,
1668
+ "value": "luna",
1669
+ "count": 16,
1670
+ "applyCommand": "s.cmd=addFacetValueFilter%28sys_package_id%2Cluna%2Cfalse%29",
1671
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28sys_package_id%2Cluna%2Ctrue%29",
1672
+ "isApplied": false
1673
+ },
1674
+ {
1675
+ "isFurtherLimiting": true,
1676
+ "isNegated": false,
1677
+ "value": "escholarship",
1678
+ "count": 100,
1679
+ "applyCommand": "s.cmd=addFacetValueFilter%28sys_package_id%2Cescholarship%2Cfalse%29",
1680
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28sys_package_id%2Cescholarship%2Ctrue%29",
1681
+ "isApplied": false
1682
+ },
1683
+ {
1684
+ "isFurtherLimiting": true,
1685
+ "isNegated": false,
1686
+ "value": "catalog",
1687
+ "count": 982562,
1688
+ "applyCommand": "s.cmd=addFacetValueFilter%28sys_package_id%2Ccatalog%2Cfalse%29",
1689
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28sys_package_id%2Ccatalog%2Ctrue%29",
1690
+ "isApplied": false
1691
+ },
1692
+ {
1693
+ "isFurtherLimiting": true,
1694
+ "isNegated": false,
1695
+ "value": "primary",
1696
+ "count": 517246,
1697
+ "applyCommand": "s.cmd=addFacetValueFilter%28sys_package_id%2Cprimary%2Cfalse%29",
1698
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28sys_package_id%2Cprimary%2Ctrue%29",
1699
+ "isApplied": false
1700
+ },
1701
+ {
1702
+ "isFurtherLimiting": true,
1703
+ "isNegated": false,
1704
+ "value": "findingaids",
1705
+ "count": 1,
1706
+ "applyCommand": "s.cmd=addFacetValueFilter%28sys_package_id%2Cfindingaids%2Cfalse%29",
1707
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28sys_package_id%2Cfindingaids%2Ctrue%29",
1708
+ "isApplied": false
1709
+ },
1710
+ {
1711
+ "isFurtherLimiting": true,
1712
+ "isNegated": false,
1713
+ "value": "ourroots",
1714
+ "count": 6900,
1715
+ "applyCommand": "s.cmd=addFacetValueFilter%28sys_package_id%2Courroots%2Cfalse%29",
1716
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28sys_package_id%2Courroots%2Ctrue%29",
1717
+ "isApplied": false
1718
+ }
1719
+ ]
1720
+ },
1721
+ {
1722
+ "pageSize": 10,
1723
+ "displayName": "ContentType",
1724
+ "combineMode": "or",
1725
+ "pageNumber": 1,
1726
+ "listValuesCommand": "s.cmd=listFacetValues%28ContentType_sfacet%2Cor%29",
1727
+ "hasAppliedValue": false,
1728
+ "fieldName": "ContentType_sfacet",
1729
+ "hasLimitingValue": true,
1730
+ "removeCommand": "s.cmd=removeFacetField%28ContentType_sfacet%29",
1731
+ "counts": [
1732
+ {
1733
+ "isFurtherLimiting": true,
1734
+ "isNegated": false,
1735
+ "value": "Book",
1736
+ "count": 799602,
1737
+ "applyCommand": "s.cmd=addFacetValueFilter%28ContentType_sfacet%2CBook%2Cfalse%29",
1738
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28ContentType_sfacet%2CBook%2Ctrue%29",
1739
+ "isApplied": false
1740
+ },
1741
+ {
1742
+ "isFurtherLimiting": true,
1743
+ "isNegated": false,
1744
+ "value": "Trade Publication",
1745
+ "count": 14613,
1746
+ "applyCommand": "s.cmd=addFacetValueFilter%28ContentType_sfacet%2CTrade+Publication%2Cfalse%29",
1747
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28ContentType_sfacet%2CTrade+Publication%2Ctrue%29",
1748
+ "isApplied": false
1749
+ },
1750
+ {
1751
+ "isFurtherLimiting": true,
1752
+ "isNegated": false,
1753
+ "value": "Archival Material",
1754
+ "count": 6917,
1755
+ "applyCommand": "s.cmd=addFacetValueFilter%28ContentType_sfacet%2CArchival+Material%2Cfalse%29",
1756
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28ContentType_sfacet%2CArchival+Material%2Ctrue%29",
1757
+ "isApplied": false
1758
+ },
1759
+ {
1760
+ "isFurtherLimiting": true,
1761
+ "isNegated": false,
1762
+ "value": "eBook",
1763
+ "count": 118483,
1764
+ "applyCommand": "s.cmd=addFacetValueFilter%28ContentType_sfacet%2CeBook%2Cfalse%29",
1765
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28ContentType_sfacet%2CeBook%2Ctrue%29",
1766
+ "isApplied": false
1767
+ },
1768
+ {
1769
+ "isFurtherLimiting": true,
1770
+ "isNegated": false,
1771
+ "value": "Journal",
1772
+ "count": 198759,
1773
+ "applyCommand": "s.cmd=addFacetValueFilter%28ContentType_sfacet%2CJournal%2Cfalse%29",
1774
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28ContentType_sfacet%2CJournal%2Ctrue%29",
1775
+ "isApplied": false
1776
+ },
1777
+ {
1778
+ "isFurtherLimiting": true,
1779
+ "isNegated": false,
1780
+ "value": "Magazine",
1781
+ "count": 41709,
1782
+ "applyCommand": "s.cmd=addFacetValueFilter%28ContentType_sfacet%2CMagazine%2Cfalse%29",
1783
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28ContentType_sfacet%2CMagazine%2Ctrue%29",
1784
+ "isApplied": false
1785
+ },
1786
+ {
1787
+ "isFurtherLimiting": true,
1788
+ "isNegated": false,
1789
+ "value": "Government Document",
1790
+ "count": 23035,
1791
+ "applyCommand": "s.cmd=addFacetValueFilter%28ContentType_sfacet%2CGovernment+Document%2Cfalse%29",
1792
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28ContentType_sfacet%2CGovernment+Document%2Ctrue%29",
1793
+ "isApplied": false
1794
+ },
1795
+ {
1796
+ "isFurtherLimiting": true,
1797
+ "isNegated": false,
1798
+ "value": "Conference Proceeding",
1799
+ "count": 45340,
1800
+ "applyCommand": "s.cmd=addFacetValueFilter%28ContentType_sfacet%2CConference+Proceeding%2Cfalse%29",
1801
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28ContentType_sfacet%2CConference+Proceeding%2Ctrue%29",
1802
+ "isApplied": false
1803
+ },
1804
+ {
1805
+ "isFurtherLimiting": true,
1806
+ "isNegated": false,
1807
+ "value": "JournalArticle",
1808
+ "count": 49765,
1809
+ "applyCommand": "s.cmd=addFacetValueFilter%28ContentType_sfacet%2CJournalArticle%2Cfalse%29",
1810
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28ContentType_sfacet%2CJournalArticle%2Ctrue%29",
1811
+ "isApplied": false
1812
+ },
1813
+ {
1814
+ "isFurtherLimiting": true,
1815
+ "isNegated": false,
1816
+ "value": "Journal Article",
1817
+ "count": 179002,
1818
+ "applyCommand": "s.cmd=addFacetValueFilter%28ContentType_sfacet%2CJournal+Article%2Cfalse%29",
1819
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28ContentType_sfacet%2CJournal+Article%2Ctrue%29",
1820
+ "isApplied": false
1821
+ }
1822
+ ]
1823
+ },
1824
+ {
1825
+ "pageSize": 10,
1826
+ "displayName": "IsScholarly",
1827
+ "combineMode": "or",
1828
+ "pageNumber": 1,
1829
+ "listValuesCommand": "s.cmd=listFacetValues%28IsScholarly_b%2Cor%29",
1830
+ "hasAppliedValue": false,
1831
+ "fieldName": "IsScholarly_b",
1832
+ "hasLimitingValue": true,
1833
+ "removeCommand": "s.cmd=removeFacetField%28IsScholarly_b%29",
1834
+ "counts": [
1835
+ {
1836
+ "isFurtherLimiting": true,
1837
+ "isNegated": false,
1838
+ "value": "true",
1839
+ "count": 30710,
1840
+ "applyCommand": "s.cmd=addFacetValueFilter%28IsScholarly_b%2Ctrue%2Cfalse%29",
1841
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28IsScholarly_b%2Ctrue%2Ctrue%29",
1842
+ "isApplied": false
1843
+ },
1844
+ {
1845
+ "isFurtherLimiting": true,
1846
+ "isNegated": false,
1847
+ "value": "false",
1848
+ "count": 351573,
1849
+ "applyCommand": "s.cmd=addFacetValueFilter%28IsScholarly_b%2Cfalse%2Cfalse%29",
1850
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28IsScholarly_b%2Cfalse%2Ctrue%29",
1851
+ "isApplied": false
1852
+ }
1853
+ ]
1854
+ },
1855
+ {
1856
+ "pageSize": 10,
1857
+ "displayName": "Language",
1858
+ "combineMode": "or",
1859
+ "pageNumber": 1,
1860
+ "listValuesCommand": "s.cmd=listFacetValues%28Language_mfacet%2Cor%29",
1861
+ "hasAppliedValue": false,
1862
+ "fieldName": "Language_mfacet",
1863
+ "hasLimitingValue": true,
1864
+ "removeCommand": "s.cmd=removeFacetField%28Language_mfacet%29",
1865
+ "counts": [
1866
+ {
1867
+ "isFurtherLimiting": true,
1868
+ "isNegated": false,
1869
+ "value": "Spanish",
1870
+ "count": 33471,
1871
+ "applyCommand": "s.cmd=addFacetValueFilter%28Language_mfacet%2CSpanish%2Cfalse%29",
1872
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28Language_mfacet%2CSpanish%2Ctrue%29",
1873
+ "isApplied": false
1874
+ },
1875
+ {
1876
+ "isFurtherLimiting": true,
1877
+ "isNegated": false,
1878
+ "value": "Portuguese",
1879
+ "count": 6827,
1880
+ "applyCommand": "s.cmd=addFacetValueFilter%28Language_mfacet%2CPortuguese%2Cfalse%29",
1881
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28Language_mfacet%2CPortuguese%2Ctrue%29",
1882
+ "isApplied": false
1883
+ },
1884
+ {
1885
+ "isFurtherLimiting": true,
1886
+ "isNegated": false,
1887
+ "value": "Latin",
1888
+ "count": 3344,
1889
+ "applyCommand": "s.cmd=addFacetValueFilter%28Language_mfacet%2CLatin%2Cfalse%29",
1890
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28Language_mfacet%2CLatin%2Ctrue%29",
1891
+ "isApplied": false
1892
+ },
1893
+ {
1894
+ "isFurtherLimiting": true,
1895
+ "isNegated": false,
1896
+ "value": "Russian",
1897
+ "count": 4802,
1898
+ "applyCommand": "s.cmd=addFacetValueFilter%28Language_mfacet%2CRussian%2Cfalse%29",
1899
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28Language_mfacet%2CRussian%2Ctrue%29",
1900
+ "isApplied": false
1901
+ },
1902
+ {
1903
+ "isFurtherLimiting": true,
1904
+ "isNegated": false,
1905
+ "value": "French",
1906
+ "count": 41252,
1907
+ "applyCommand": "s.cmd=addFacetValueFilter%28Language_mfacet%2CFrench%2Cfalse%29",
1908
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28Language_mfacet%2CFrench%2Ctrue%29",
1909
+ "isApplied": false
1910
+ },
1911
+ {
1912
+ "isFurtherLimiting": true,
1913
+ "isNegated": false,
1914
+ "value": "Unknown",
1915
+ "count": 68904,
1916
+ "applyCommand": "s.cmd=addFacetValueFilter%28Language_mfacet%2CUnknown%2Cfalse%29",
1917
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28Language_mfacet%2CUnknown%2Ctrue%29",
1918
+ "isApplied": false
1919
+ },
1920
+ {
1921
+ "isFurtherLimiting": true,
1922
+ "isNegated": false,
1923
+ "value": "Italian",
1924
+ "count": 10589,
1925
+ "applyCommand": "s.cmd=addFacetValueFilter%28Language_mfacet%2CItalian%2Cfalse%29",
1926
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28Language_mfacet%2CItalian%2Ctrue%29",
1927
+ "isApplied": false
1928
+ },
1929
+ {
1930
+ "isFurtherLimiting": true,
1931
+ "isNegated": false,
1932
+ "value": "German",
1933
+ "count": 33440,
1934
+ "applyCommand": "s.cmd=addFacetValueFilter%28Language_mfacet%2CGerman%2Cfalse%29",
1935
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28Language_mfacet%2CGerman%2Ctrue%29",
1936
+ "isApplied": false
1937
+ },
1938
+ {
1939
+ "isFurtherLimiting": true,
1940
+ "isNegated": false,
1941
+ "value": "Dutch",
1942
+ "count": 2721,
1943
+ "applyCommand": "s.cmd=addFacetValueFilter%28Language_mfacet%2CDutch%2Cfalse%29",
1944
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28Language_mfacet%2CDutch%2Ctrue%29",
1945
+ "isApplied": false
1946
+ },
1947
+ {
1948
+ "isFurtherLimiting": true,
1949
+ "isNegated": false,
1950
+ "value": "English",
1951
+ "count": 1012517,
1952
+ "applyCommand": "s.cmd=addFacetValueFilter%28Language_mfacet%2CEnglish%2Cfalse%29",
1953
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28Language_mfacet%2CEnglish%2Ctrue%29",
1954
+ "isApplied": false
1955
+ }
1956
+ ]
1957
+ },
1958
+ {
1959
+ "pageSize": 10,
1960
+ "displayName": "Library",
1961
+ "combineMode": "or",
1962
+ "pageNumber": 1,
1963
+ "listValuesCommand": "s.cmd=listFacetValues%28Library_mfacet%2Cor%29",
1964
+ "hasAppliedValue": false,
1965
+ "fieldName": "Library_mfacet",
1966
+ "hasLimitingValue": true,
1967
+ "removeCommand": "s.cmd=removeFacetField%28Library_mfacet%29",
1968
+ "counts": [
1969
+ {
1970
+ "isFurtherLimiting": true,
1971
+ "isNegated": false,
1972
+ "value": "Storage",
1973
+ "count": 38874,
1974
+ "applyCommand": "s.cmd=addFacetValueFilter%28Library_mfacet%2CStorage%2Cfalse%29",
1975
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28Library_mfacet%2CStorage%2Ctrue%29",
1976
+ "isApplied": false
1977
+ },
1978
+ {
1979
+ "isFurtherLimiting": true,
1980
+ "isNegated": false,
1981
+ "value": "MacKimmie Library",
1982
+ "count": 83054,
1983
+ "applyCommand": "s.cmd=addFacetValueFilter%28Library_mfacet%2CMacKimmie+Library%2Cfalse%29",
1984
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28Library_mfacet%2CMacKimmie+Library%2Ctrue%29",
1985
+ "isApplied": false
1986
+ },
1987
+ {
1988
+ "isFurtherLimiting": true,
1989
+ "isNegated": false,
1990
+ "value": "Fisher Research",
1991
+ "count": 57724,
1992
+ "applyCommand": "s.cmd=addFacetValueFilter%28Library_mfacet%2CFisher+Research%2Cfalse%29",
1993
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28Library_mfacet%2CFisher+Research%2Ctrue%29",
1994
+ "isApplied": false
1995
+ },
1996
+ {
1997
+ "isFurtherLimiting": true,
1998
+ "isNegated": false,
1999
+ "value": "Electronic Resource",
2000
+ "count": 95548,
2001
+ "applyCommand": "s.cmd=addFacetValueFilter%28Library_mfacet%2CElectronic+Resource%2Cfalse%29",
2002
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28Library_mfacet%2CElectronic+Resource%2Ctrue%29",
2003
+ "isApplied": false
2004
+ },
2005
+ {
2006
+ "isFurtherLimiting": true,
2007
+ "isNegated": false,
2008
+ "value": "Steelcase Library",
2009
+ "count": 16581,
2010
+ "applyCommand": "s.cmd=addFacetValueFilter%28Library_mfacet%2CSteelcase+Library%2Cfalse%29",
2011
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28Library_mfacet%2CSteelcase+Library%2Ctrue%29",
2012
+ "isApplied": false
2013
+ },
2014
+ {
2015
+ "isFurtherLimiting": true,
2016
+ "isNegated": false,
2017
+ "value": "Harold Cohen Library",
2018
+ "count": 68515,
2019
+ "applyCommand": "s.cmd=addFacetValueFilter%28Library_mfacet%2CHarold+Cohen+Library%2Cfalse%29",
2020
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28Library_mfacet%2CHarold+Cohen+Library%2Ctrue%29",
2021
+ "isApplied": false
2022
+ },
2023
+ {
2024
+ "isFurtherLimiting": true,
2025
+ "isNegated": false,
2026
+ "value": "Store Request",
2027
+ "count": 68353,
2028
+ "applyCommand": "s.cmd=addFacetValueFilter%28Library_mfacet%2CStore+Request%2Cfalse%29",
2029
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28Library_mfacet%2CStore+Request%2Ctrue%29",
2030
+ "isApplied": false
2031
+ },
2032
+ {
2033
+ "isFurtherLimiting": true,
2034
+ "isNegated": false,
2035
+ "value": "Sydney Jones Library",
2036
+ "count": 313203,
2037
+ "applyCommand": "s.cmd=addFacetValueFilter%28Library_mfacet%2CSydney+Jones+Library%2Cfalse%29",
2038
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28Library_mfacet%2CSydney+Jones+Library%2Ctrue%29",
2039
+ "isApplied": false
2040
+ },
2041
+ {
2042
+ "isFurtherLimiting": true,
2043
+ "isNegated": false,
2044
+ "value": "Storage (Sydney)",
2045
+ "count": 17410,
2046
+ "applyCommand": "s.cmd=addFacetValueFilter%28Library_mfacet%2CStorage+%5C%28Sydney%5C%29%2Cfalse%29",
2047
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28Library_mfacet%2CStorage+%5C%28Sydney%5C%29%2Ctrue%29",
2048
+ "isApplied": false
2049
+ },
2050
+ {
2051
+ "isFurtherLimiting": true,
2052
+ "isNegated": false,
2053
+ "value": "Science Fiction Foundation Collection",
2054
+ "count": 26105,
2055
+ "applyCommand": "s.cmd=addFacetValueFilter%28Library_mfacet%2CScience+Fiction+Foundation+Collection%2Cfalse%29",
2056
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28Library_mfacet%2CScience+Fiction+Foundation+Collection%2Ctrue%29",
2057
+ "isApplied": false
2058
+ }
2059
+ ]
2060
+ },
2061
+ {
2062
+ "pageSize": 10,
2063
+ "displayName": "PublicationDate",
2064
+ "combineMode": "or",
2065
+ "pageNumber": 1,
2066
+ "listValuesCommand": "s.cmd=listFacetValues%28PublicationDate_mfacet%2Cor%29",
2067
+ "hasAppliedValue": false,
2068
+ "fieldName": "PublicationDate_mfacet",
2069
+ "hasLimitingValue": true,
2070
+ "removeCommand": "s.cmd=removeFacetField%28PublicationDate_mfacet%29",
2071
+ "counts": [
2072
+ {
2073
+ "isFurtherLimiting": true,
2074
+ "isNegated": false,
2075
+ "value": "2008",
2076
+ "count": 45234,
2077
+ "applyCommand": "s.cmd=addFacetValueFilter%28PublicationDate_mfacet%2C2008%2Cfalse%29",
2078
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28PublicationDate_mfacet%2C2008%2Ctrue%29",
2079
+ "isApplied": false
2080
+ },
2081
+ {
2082
+ "isFurtherLimiting": true,
2083
+ "isNegated": false,
2084
+ "value": "2006",
2085
+ "count": 47502,
2086
+ "applyCommand": "s.cmd=addFacetValueFilter%28PublicationDate_mfacet%2C2006%2Cfalse%29",
2087
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28PublicationDate_mfacet%2C2006%2Ctrue%29",
2088
+ "isApplied": false
2089
+ },
2090
+ {
2091
+ "isFurtherLimiting": true,
2092
+ "isNegated": false,
2093
+ "value": "2007",
2094
+ "count": 44646,
2095
+ "applyCommand": "s.cmd=addFacetValueFilter%28PublicationDate_mfacet%2C2007%2Cfalse%29",
2096
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28PublicationDate_mfacet%2C2007%2Ctrue%29",
2097
+ "isApplied": false
2098
+ },
2099
+ {
2100
+ "isFurtherLimiting": true,
2101
+ "isNegated": false,
2102
+ "value": "2004",
2103
+ "count": 35920,
2104
+ "applyCommand": "s.cmd=addFacetValueFilter%28PublicationDate_mfacet%2C2004%2Cfalse%29",
2105
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28PublicationDate_mfacet%2C2004%2Ctrue%29",
2106
+ "isApplied": false
2107
+ },
2108
+ {
2109
+ "isFurtherLimiting": true,
2110
+ "isNegated": false,
2111
+ "value": "2005",
2112
+ "count": 37249,
2113
+ "applyCommand": "s.cmd=addFacetValueFilter%28PublicationDate_mfacet%2C2005%2Cfalse%29",
2114
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28PublicationDate_mfacet%2C2005%2Ctrue%29",
2115
+ "isApplied": false
2116
+ },
2117
+ {
2118
+ "isFurtherLimiting": true,
2119
+ "isNegated": false,
2120
+ "value": "2002",
2121
+ "count": 35035,
2122
+ "applyCommand": "s.cmd=addFacetValueFilter%28PublicationDate_mfacet%2C2002%2Cfalse%29",
2123
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28PublicationDate_mfacet%2C2002%2Ctrue%29",
2124
+ "isApplied": false
2125
+ },
2126
+ {
2127
+ "isFurtherLimiting": true,
2128
+ "isNegated": false,
2129
+ "value": "2003",
2130
+ "count": 32962,
2131
+ "applyCommand": "s.cmd=addFacetValueFilter%28PublicationDate_mfacet%2C2003%2Cfalse%29",
2132
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28PublicationDate_mfacet%2C2003%2Ctrue%29",
2133
+ "isApplied": false
2134
+ },
2135
+ {
2136
+ "isFurtherLimiting": true,
2137
+ "isNegated": false,
2138
+ "value": "1978",
2139
+ "count": 22697,
2140
+ "applyCommand": "s.cmd=addFacetValueFilter%28PublicationDate_mfacet%2C1978%2Cfalse%29",
2141
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28PublicationDate_mfacet%2C1978%2Ctrue%29",
2142
+ "isApplied": false
2143
+ },
2144
+ {
2145
+ "isFurtherLimiting": true,
2146
+ "isNegated": false,
2147
+ "value": "1979",
2148
+ "count": 24566,
2149
+ "applyCommand": "s.cmd=addFacetValueFilter%28PublicationDate_mfacet%2C1979%2Cfalse%29",
2150
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28PublicationDate_mfacet%2C1979%2Ctrue%29",
2151
+ "isApplied": false
2152
+ },
2153
+ {
2154
+ "isFurtherLimiting": true,
2155
+ "isNegated": false,
2156
+ "value": "1989",
2157
+ "count": 23169,
2158
+ "applyCommand": "s.cmd=addFacetValueFilter%28PublicationDate_mfacet%2C1989%2Cfalse%29",
2159
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28PublicationDate_mfacet%2C1989%2Ctrue%29",
2160
+ "isApplied": false
2161
+ }
2162
+ ]
2163
+ },
2164
+ {
2165
+ "pageSize": 10,
2166
+ "displayName": "SubjectTerms",
2167
+ "combineMode": "and",
2168
+ "pageNumber": 1,
2169
+ "listValuesCommand": "s.cmd=listFacetValues%28SubjectTerms_mfacet%2Cand%29",
2170
+ "hasAppliedValue": false,
2171
+ "fieldName": "SubjectTerms_mfacet",
2172
+ "hasLimitingValue": true,
2173
+ "removeCommand": "s.cmd=removeFacetField%28SubjectTerms_mfacet%29",
2174
+ "counts": [
2175
+ {
2176
+ "isFurtherLimiting": true,
2177
+ "isNegated": false,
2178
+ "value": "law",
2179
+ "count": 9469,
2180
+ "applyCommand": "s.cmd=addFacetValueFilter%28SubjectTerms_mfacet%2Claw%2Cfalse%29",
2181
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28SubjectTerms_mfacet%2Claw%2Ctrue%29",
2182
+ "isApplied": false
2183
+ },
2184
+ {
2185
+ "isFurtherLimiting": true,
2186
+ "isNegated": false,
2187
+ "value": "history",
2188
+ "count": 65910,
2189
+ "applyCommand": "s.cmd=addFacetValueFilter%28SubjectTerms_mfacet%2Chistory%2Cfalse%29",
2190
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28SubjectTerms_mfacet%2Chistory%2Ctrue%29",
2191
+ "isApplied": false
2192
+ },
2193
+ {
2194
+ "isFurtherLimiting": true,
2195
+ "isNegated": false,
2196
+ "value": "reviews",
2197
+ "count": 8058,
2198
+ "applyCommand": "s.cmd=addFacetValueFilter%28SubjectTerms_mfacet%2Creviews%2Cfalse%29",
2199
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28SubjectTerms_mfacet%2Creviews%2Ctrue%29",
2200
+ "isApplied": false
2201
+ },
2202
+ {
2203
+ "isFurtherLimiting": true,
2204
+ "isNegated": false,
2205
+ "value": "philosophy",
2206
+ "count": 9709,
2207
+ "applyCommand": "s.cmd=addFacetValueFilter%28SubjectTerms_mfacet%2Cphilosophy%2Cfalse%29",
2208
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28SubjectTerms_mfacet%2Cphilosophy%2Ctrue%29",
2209
+ "isApplied": false
2210
+ },
2211
+ {
2212
+ "isFurtherLimiting": true,
2213
+ "isNegated": false,
2214
+ "value": "science fiction",
2215
+ "count": 14295,
2216
+ "applyCommand": "s.cmd=addFacetValueFilter%28SubjectTerms_mfacet%2Cscience+fiction%2Cfalse%29",
2217
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28SubjectTerms_mfacet%2Cscience+fiction%2Ctrue%29",
2218
+ "isApplied": false
2219
+ },
2220
+ {
2221
+ "isFurtherLimiting": true,
2222
+ "isNegated": false,
2223
+ "value": "economic conditions",
2224
+ "count": 8250,
2225
+ "applyCommand": "s.cmd=addFacetValueFilter%28SubjectTerms_mfacet%2Ceconomic+conditions%2Cfalse%29",
2226
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28SubjectTerms_mfacet%2Ceconomic+conditions%2Ctrue%29",
2227
+ "isApplied": false
2228
+ },
2229
+ {
2230
+ "isFurtherLimiting": true,
2231
+ "isNegated": false,
2232
+ "value": "social conditions",
2233
+ "count": 8691,
2234
+ "applyCommand": "s.cmd=addFacetValueFilter%28SubjectTerms_mfacet%2Csocial+conditions%2Cfalse%29",
2235
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28SubjectTerms_mfacet%2Csocial+conditions%2Ctrue%29",
2236
+ "isApplied": false
2237
+ },
2238
+ {
2239
+ "isFurtherLimiting": true,
2240
+ "isNegated": false,
2241
+ "value": "education",
2242
+ "count": 10728,
2243
+ "applyCommand": "s.cmd=addFacetValueFilter%28SubjectTerms_mfacet%2Ceducation%2Cfalse%29",
2244
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28SubjectTerms_mfacet%2Ceducation%2Ctrue%29",
2245
+ "isApplied": false
2246
+ },
2247
+ {
2248
+ "isFurtherLimiting": true,
2249
+ "isNegated": false,
2250
+ "value": "politics and government",
2251
+ "count": 16848,
2252
+ "applyCommand": "s.cmd=addFacetValueFilter%28SubjectTerms_mfacet%2Cpolitics+and+government%2Cfalse%29",
2253
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28SubjectTerms_mfacet%2Cpolitics+and+government%2Ctrue%29",
2254
+ "isApplied": false
2255
+ },
2256
+ {
2257
+ "isFurtherLimiting": true,
2258
+ "isNegated": false,
2259
+ "value": "history and criticism",
2260
+ "count": 41449,
2261
+ "applyCommand": "s.cmd=addFacetValueFilter%28SubjectTerms_mfacet%2Chistory+and+criticism%2Cfalse%29",
2262
+ "applyNegatedCommand": "s.cmd=addFacetValueFilter%28SubjectTerms_mfacet%2Chistory+and+criticism%2Ctrue%29",
2263
+ "isApplied": false
2264
+ }
2265
+ ]
2266
+ },
2267
+ {
2268
+ "pageSize": 1,
2269
+ "displayName": "Fulltext",
2270
+ "combineMode": "or",
2271
+ "pageNumber": 1,
2272
+ "hasAppliedValue": false,
2273
+ "fieldName": "Fulltext",
2274
+ "hasLimitingValue": true,
2275
+ "removeCommand": "s.cmd=setParameter%28countFullText%2Cfalse%29",
2276
+ "counts": [
2277
+ {
2278
+ "isFurtherLimiting": true,
2279
+ "isNegated": false,
2280
+ "value": "true",
2281
+ "count": 0,
2282
+ "applyCommand": "s.cmd=setParameter%28fullTextOnly%2Ctrue%29",
2283
+ "isApplied": false
2284
+ }
2285
+ ]
2286
+ }
2287
+ ],
2288
+ "sessionId": "eca42571-59cd-43e0-bee4-4657e7aec02a",
2289
+ "recordCount": 1506825,
2290
+ "rangeFacetFields": [
2291
+
2292
+ ],
2293
+ "scholarlyCount": 30710,
2294
+ "query": {
2295
+ "searchTerms": [
2296
+
2297
+ ],
2298
+ "rangeFilters": [
2299
+
2300
+ ],
2301
+ "facetValueGroupFilters": [
2302
+
2303
+ ],
2304
+ "queryString": "",
2305
+ "facetValueFilters": [
2306
+
2307
+ ],
2308
+ "textQueries": [
2309
+
2310
+ ],
2311
+ "textFilters": [
2312
+
2313
+ ],
2314
+ "facetFields": [
2315
+
2316
+ ],
2317
+ "rangeFacetFields": [
2318
+
2319
+ ],
2320
+ "sort": [
2321
+
2322
+ ],
2323
+ "params": [
2324
+
2325
+ ]
2326
+ }
2327
+ }