DPLibrary 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/DPLibrary.gemspec ADDED
@@ -0,0 +1,30 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'DPLibrary/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'DPLibrary'
8
+ spec.version = DPLibrary::VERSION
9
+ spec.authors = ['phereford']
10
+ spec.email = ['phereford@gmail.com']
11
+ spec.description = %q{Ruby API wrapper for the Digital Public Library of America API}
12
+ spec.summary = %q{A ruby gem that is an API wrapper for the DPLA}
13
+ spec.homepage = 'http://github.com/pford/DPLibrary'
14
+ spec.license = 'MIT'
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(spec)/})
19
+ spec.require_paths = ['lib']
20
+
21
+ spec.add_dependency 'faraday', '~> 0.8.7'
22
+ spec.add_dependency 'faraday_middleware', '~> 0.9.0'
23
+ spec.add_dependency 'rake', '~> 10.0.3'
24
+
25
+ spec.add_development_dependency 'rspec', '~> 2.13.0'
26
+ spec.add_development_dependency 'vcr', '~> 2.4.0'
27
+ spec.add_development_dependency 'pry'
28
+ spec.add_development_dependency 'bundler', '~> 1.3'
29
+ spec.add_development_dependency 'rake'
30
+ end
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in DPLibrary.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 phereford
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,57 @@
1
+ [![Code Climate](https://codeclimate.com/github/phereford/DPLibrary.png)](https://codeclimate.com/github/phereford/DPLibrary)
2
+ # DPLibrary
3
+
4
+ A simple ruby API wrapper around the [Digital Public Library of
5
+ America](http://http://dp.la/info/developers/)
6
+
7
+ ## Installation
8
+
9
+ Add this line to your application's Gemfile:
10
+
11
+ gem 'DPLibrary'
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install DPLibrary
20
+
21
+ ## Configuration
22
+
23
+ 1. Acquire an API KEY from dp.la. To do this, simply run the
24
+ following command from your terminal (replace YOUR_EMAIL with your
25
+ email):
26
+
27
+ ```
28
+ curl -v -XPOST http://api.dp.la/v2/api_key/YOUR_EMAIL@example.com
29
+ ```
30
+
31
+ You will receive an email with an api key (should take less than 5
32
+ minutes).
33
+
34
+ 2) Before making any api calls you will need to set your api
35
+ key in your application. To do that, do the following:
36
+
37
+ ```
38
+ DPLibrary.api_key = '<API KEY GOES HERE>'
39
+ ```
40
+
41
+ If you are using a rails app, putting this in a config/initializer makes
42
+ the most sense.
43
+
44
+ ## Usages
45
+
46
+ ## ToDo's
47
+ * Write Tests
48
+ * Write up usage documentation
49
+ * Dry up lib files
50
+
51
+ ## Contributing
52
+
53
+ 1. Fork it
54
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
55
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
56
+ 4. Push to the branch (`git push origin my-new-feature`)
57
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,7 @@
1
+ require 'bundler/gem_tasks'
2
+
3
+ require 'rspec/core/rake_task'
4
+
5
+ RSpec::Core::RakeTask.new('spec')
6
+
7
+ task :default => :spec
@@ -0,0 +1,9 @@
1
+ module DPLibrary
2
+ class Base
3
+ include DPLibrary::Request
4
+
5
+ def initialize(response)
6
+ JSON.parse(response)
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,17 @@
1
+ module DPLibrary
2
+ class Collection
3
+ attr_accessor :id,
4
+ :title,
5
+ :name
6
+
7
+ def initialize(hash)
8
+ set_values(hash)
9
+ end
10
+
11
+ def set_values(collection_hash)
12
+ self.id = collection_hash['id']
13
+ self.title = collection_hash['title']
14
+ self.name = collection_hash['name']
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,5 @@
1
+ module DPLibrary
2
+ module Configuration
3
+ BASE_URL = 'http://api.dp.la/v2/'
4
+ end
5
+ end
@@ -0,0 +1,17 @@
1
+ require 'faraday'
2
+ require 'faraday_middleware'
3
+
4
+ module DPLibrary
5
+ module Connection
6
+ def connection
7
+ @connection = begin
8
+ Faraday.new(:url => DPLibrary::Configuration::BASE_URL, :params => { :api_key => DPLibrary.api_key } ) do |c|
9
+ c.request :url_encoded
10
+ c.request :json
11
+ c.response :json
12
+ c.adapter Faraday.default_adapter
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,55 @@
1
+ module DPLibrary
2
+ class Document
3
+ attr_accessor :id,
4
+ :url,
5
+ :source,
6
+ :title,
7
+ :description,
8
+ :subject,
9
+ :language,
10
+ :format,
11
+ :type,
12
+ :publisher,
13
+ :creator,
14
+ :provider,
15
+ :collection,
16
+ :original_record,
17
+ :score
18
+
19
+ def initialize(response_hash={})
20
+ set_values(response_hash)
21
+ end
22
+
23
+ private
24
+ def set_values(hash={})
25
+ self.id = hash['id']
26
+ self.url = hash['isShownAt']
27
+ self.source = hash['dataProvider']
28
+ self.title = hash['sourceResource']['title']
29
+ self.description = hash['sourceResource']['description']
30
+ self.subject = hash['sourceResource']['subject']
31
+ self.language = hash['sourceResource']['language']
32
+ self.format = hash['sourceResource']['format']
33
+ self.type = hash['sourceResource']['type']
34
+ self.publisher = hash['sourceResource']['publisher']
35
+ self.creator = hash['sourceResource']['creator']
36
+ self.score = hash['score']
37
+
38
+ self.provider = create_provider(hash['provider'])
39
+ self.original_record = create_original_record(hash['originalRecord'])
40
+ self.collection = create_collection(hash['sourceResource']['collection'])
41
+ end
42
+
43
+ def create_provider(provider_hash)
44
+ Provider.new(provider_hash)
45
+ end
46
+
47
+ def create_original_record(original_record_hash)
48
+ OriginalRecord.new(original_record_hash)
49
+ end
50
+
51
+ def create_collection(collection_hash)
52
+ Collection.new(collection_hash)
53
+ end
54
+ end
55
+ end
@@ -0,0 +1,39 @@
1
+ module DPLibrary
2
+ class DocumentCollection < Base
3
+ attr_accessor :count,
4
+ :offset,
5
+ :limit,
6
+ :documents
7
+
8
+ def initialize(parameters)
9
+ json_response = find(parameters)
10
+
11
+ response_values = super(json_response)
12
+
13
+ set_method(response_values)
14
+ end
15
+
16
+ private
17
+ def find(parameters)
18
+ get('items', parameters)
19
+ end
20
+
21
+ def set_method(values)
22
+ self.count = values['count']
23
+ self.offset = values['start']
24
+ self.limit = values['limit']
25
+
26
+ self.documents = create_documents(values['docs'])
27
+ end
28
+
29
+ def create_documents(document_array)
30
+ documents = []
31
+
32
+ document_array.each do |document|
33
+ documents << Document.new(document)
34
+ end
35
+
36
+ documents
37
+ end
38
+ end
39
+ end
@@ -0,0 +1,35 @@
1
+ module DPLibrary
2
+ class OriginalRecord
3
+ attr_accessor :id,
4
+ :title,
5
+ :url,
6
+ :description,
7
+ :source,
8
+ :subject,
9
+ :date,
10
+ :label,
11
+ :language,
12
+ :type,
13
+ :creator,
14
+ :publisher
15
+
16
+ def initialize(hash)
17
+ set_values(hash)
18
+ end
19
+
20
+ def set_values(hash)
21
+ self.id = hash['id']
22
+ self.title = hash['title']
23
+ self.url = hash['handle']
24
+ self.source = hash['contributor']
25
+ self.description = hash['description']
26
+ self.subject = hash['subject']
27
+ self.date = hash['datestamp']
28
+ self.label = hash['label']
29
+ self.language = hash['language']
30
+ self.type = hash['type']
31
+ self.creator = hash['creator']
32
+ self.publisher = hash['publisher']
33
+ end
34
+ end
35
+ end
@@ -0,0 +1,16 @@
1
+ module DPLibrary
2
+ class Provider
3
+ attr_accessor :id,
4
+ :name
5
+
6
+ def initialize(hash)
7
+ set_values(hash)
8
+ end
9
+
10
+ private
11
+ def set_values(hash)
12
+ self.id = hash['@id']
13
+ self.name = hash['name']
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,18 @@
1
+ module DPLibrary
2
+ module Request
3
+ include DPLibrary::Connection
4
+
5
+ def get(path, options={})
6
+ request(:get, path, options)
7
+ end
8
+
9
+ private
10
+ def request(request_type, path, options)
11
+ response = connection.send(request_type, path) do |request|
12
+ options.each{ |k,v| request.params[k.to_s] = v }
13
+ end
14
+
15
+ response.body.to_json
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,3 @@
1
+ module DPLibrary
2
+ VERSION = "0.0.1"
3
+ end
data/lib/DPLibrary.rb ADDED
@@ -0,0 +1,18 @@
1
+ require 'DPLibrary/version'
2
+
3
+ module DPLibrary
4
+ autoload :Configuration, 'DPLibrary/configuration'
5
+ autoload :Connection, 'DPLibrary/connection'
6
+ autoload :Request, 'DPLibrary/request'
7
+
8
+ autoload :Base, 'DPLibrary/base'
9
+ autoload :DocumentCollection, 'DPLibrary/document_collection'
10
+ autoload :Collection, 'DPLibrary/collection'
11
+ autoload :Document, 'DPLibrary/document'
12
+ autoload :Provider, 'DPLibrary/provider'
13
+ autoload :OriginalRecord, 'DPLibrary/original_record'
14
+
15
+ class << self
16
+ attr_accessor :api_key
17
+ end
18
+ end
@@ -0,0 +1,16 @@
1
+ require 'spec_helper'
2
+
3
+ describe DPLibrary::DocumentCollection do
4
+ subject do
5
+ DPLibrary.stub(:api_key).and_return('bb9ec047f463cd046c8a26c4237a3349')
6
+ DPLibrary::DocumentCollection.new({q: 'chicken'})
7
+ end
8
+
9
+ context '.new', :vcr do
10
+ it { should_not be nil }
11
+ end
12
+
13
+ context '#set_method' do
14
+ its(:count) { should be_kind_of(Integer) }
15
+ end
16
+ end
@@ -0,0 +1,407 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://api.dp.la/v2/items?api_key=bb9ec047f463cd046c8a26c4237a3349&q=chicken
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.8.7
12
+ response:
13
+ status:
14
+ code: 200
15
+ message:
16
+ headers:
17
+ server:
18
+ - nginx/1.1.19
19
+ cache-control:
20
+ - max-age=0, private, must-revalidate
21
+ content-type:
22
+ - application/json; charset=utf-8
23
+ date:
24
+ - Sat, 04 May 2013 14:45:39 GMT
25
+ status:
26
+ - 200 OK
27
+ x-request-id:
28
+ - a76715392f8c37db54ed405e690de4de
29
+ transfer-encoding:
30
+ - chunked
31
+ x-runtime:
32
+ - '0.038133'
33
+ etag:
34
+ - ! '"4c50858ec78356677fcc7d0d2cb7c1d0"'
35
+ connection:
36
+ - close
37
+ x-ua-compatible:
38
+ - IE=Edge,chrome=1
39
+ body:
40
+ encoding: US-ASCII
41
+ string: ! '{"count":752,"start":0,"limit":10,"docs":[{"_rev":"1-6849f37b68385026eb3a73d58bcd624d","ingestDate":"2013-04-12T00:14:48.121953","@context":{"edm":"http://www.europeana.eu/schemas/edm/","isShownAt":"edm:isShownAt","dpla":"http://dp.la/terms/","dataProvider":"edm:dataProvider","aggregatedDigitalResource":"dpla:aggregatedDigitalResource","state":"dpla:state","hasView":"edm:hasView","provider":"edm:provider","collection":"dpla:aggregation","object":"edm:object","stateLocatedIn":"dpla:stateLocatedIn","begin":{"@type":"xsd:date","@id":"dpla:dateRangeStart"},"@vocab":"http://purl.org/dc/terms/","LCSH":"http://id.loc.gov/authorities/subjects","sourceResource":"edm:sourceResource","name":"xsd:string","coordinates":"dpla:coordinates","end":{"@type":"xsd:date","@id":"dpla:dateRangeEnd"},"originalRecord":"dpla:originalRecord"},"id":"8ce4474d8b1eefffaa5ce4ce34369c43","isShownAt":"http://www.biodiversitylibrary.org/item/79580","_id":"bhl--http://www.biodiversitylibrary.org/item/79580","dataProvider":"Library
42
+ of Congress","sourceResource":{"title":"The chicken cholera preventive and
43
+ exterminator, a treatise giving the cause, symptoms, prevention, and extermination
44
+ of chicken cholera","description":"","subject":[{"name":"Chicken cholera"}],"language":[{"iso639_3":"eng","name":"English"}],"format":"Book","collection":{"id":"24087df2c58f149a8167a9589cffd830","title":"Volumes","@id":"http://dp.la/api/collections/bhl--LoC","name":"Library
45
+ of Congress"},"type":"text","publisher":"Wooster [Ohio]Republican steam press
46
+ print,1875","creator":"Hill, A. J"},"provider":{"@id":"http://dp.la/api/contributor/bhl","name":"Biodiversity
47
+ Heritage Library"},"@id":"http://dp.la/api/items/8ce4474d8b1eefffaa5ce4ce34369c43","ingestType":"item","originalRecord":{"id":"oai:biodiversitylibrary.org:item/79580","title":"The
48
+ chicken cholera preventive and exterminator, a treatise giving the cause,
49
+ symptoms, prevention, and extermination of chicken cholera; ","handle":"http://www.biodiversitylibrary.org/item/79580","setSpec":"item","contributor":"Library
50
+ of Congress","description":"","subject":"Chicken cholera","datestamp":"2012-06-22T02:33:26Z","label":"The
51
+ chicken cholera preventive and exterminator, a treatise giving the cause,
52
+ symptoms, prevention, and extermination of chicken cholera; ","language":"English","type":["text","Book"],"creator":"Hill,
53
+ A. J. ","publisher":"Wooster [Ohio]Republican steam press print,1875."},"score":1.9722701},{"_rev":"1-dc90c28da9eeff1fe1c85c7d64f383de","ingestDate":"2013-04-12T00:41:49.022568","@context":{"edm":"http://www.europeana.eu/schemas/edm/","isShownAt":"edm:isShownAt","dpla":"http://dp.la/terms/","dataProvider":"edm:dataProvider","aggregatedDigitalResource":"dpla:aggregatedDigitalResource","state":"dpla:state","hasView":"edm:hasView","provider":"edm:provider","collection":"dpla:aggregation","object":"edm:object","stateLocatedIn":"dpla:stateLocatedIn","begin":{"@type":"xsd:date","@id":"dpla:dateRangeStart"},"@vocab":"http://purl.org/dc/terms/","LCSH":"http://id.loc.gov/authorities/subjects","sourceResource":"edm:sourceResource","name":"xsd:string","coordinates":"dpla:coordinates","end":{"@type":"xsd:date","@id":"dpla:dateRangeEnd"},"originalRecord":"dpla:originalRecord"},"id":"50fb97da5b96c4eae8b8c73c1576d2b7","isShownAt":"http://www.biodiversitylibrary.org/item/93963","_id":"bhl--http://www.biodiversitylibrary.org/item/93963","dataProvider":"Library
54
+ of Congress","sourceResource":{"title":"The chicken cholera preventive and
55
+ exterminator, a treatise giving the cause, symptoms, prevention, and extermination
56
+ of chicken cholera","description":"","subject":[{"name":"Chicken cholera"}],"language":[{"iso639_3":"eng","name":"English"}],"format":"Book","collection":{"id":"24087df2c58f149a8167a9589cffd830","title":"Volumes","@id":"http://dp.la/api/collections/bhl--LoC","name":"Library
57
+ of Congress"},"type":"text","publisher":"West Salem, Ohio,Buckeye farmer print,1875","creator":"Hill,
58
+ A. J"},"provider":{"@id":"http://dp.la/api/contributor/bhl","name":"Biodiversity
59
+ Heritage Library"},"@id":"http://dp.la/api/items/50fb97da5b96c4eae8b8c73c1576d2b7","ingestType":"item","originalRecord":{"id":"oai:biodiversitylibrary.org:item/93963","title":"The
60
+ chicken cholera preventive and exterminator, a treatise giving the cause,
61
+ symptoms, prevention, and extermination of chicken cholera. ","handle":"http://www.biodiversitylibrary.org/item/93963","setSpec":"item","contributor":"Library
62
+ of Congress","description":"","subject":"Chicken cholera","datestamp":"2012-10-09T02:04:19Z","label":"The
63
+ chicken cholera preventive and exterminator, a treatise giving the cause,
64
+ symptoms, prevention, and extermination of chicken cholera. ","language":"English","type":["text","Book"],"creator":"Hill,
65
+ A. J. ","publisher":"West Salem, Ohio,Buckeye farmer print,1875."},"score":1.9663649},{"ingestDate":"2013-04-14T14:52:03.431974","_rev":"1-312517cac73575e4fb860766cea44a5e","id":"3735587153432cd17e3f978bab08fa1a","@context":{"edm":"http://www.europeana.eu/schemas/edm/","isShownAt":"edm:isShownAt","dpla":"http://dp.la/terms/","dataProvider":"edm:dataProvider","aggregatedDigitalResource":"dpla:aggregatedDigitalResource","state":"dpla:state","hasView":"edm:hasView","provider":"edm:provider","collection":"dpla:aggregation","object":"edm:object","stateLocatedIn":"dpla:stateLocatedIn","begin":{"@type":"xsd:date","@id":"dpla:dateRangeStart"},"@vocab":"http://purl.org/dc/terms/","LCSH":"http://id.loc.gov/authorities/subjects","sourceResource":"edm:sourceResource","name":"xsd:string","coordinates":"dpla:coordinates","end":{"@type":"xsd:date","@id":"dpla:end"},"originalRecord":"dpla:originalRecord"},"isShownAt":"http://thoth.library.utah.edu:1701/primo_library/libweb/action/dlDisplay.do?vid=MWDL&afterPDS=true&docId=digcoll_uuu_11uspace/1728","_id":"mwdl--digcoll_uuu_11uspace/1728","dataProvider":"University
66
+ of Utah","sourceResource":{"title":"Characterization of the chicken GCAP gene
67
+ array and analyses of GCAP1, GCAP2, and GC1 gene expression in normal and
68
+ rd chicken pineal","description":["Journal Article","PURPOSE: This study had
69
+ three objectives: (1) to characterize the structures of the chicken GCAP1
70
+ and GCAP2 genes; (2) to determine if GCAP1, GCAP2, and GC1 genes are expressed
71
+ in chicken pineal gland; (3) if GC1 is expressed in chicken pineal, to determine
72
+ if the GC1 null mutation carried by the retinal degeneration (rd) chicken
73
+ is associated with degenerative changes within the pineal glands of these
74
+ animals. METHODS: GCAP1 and GCAP2 gene structures were determined by analyses
75
+ of chicken cosmid and cDNA clones. The putative transcription start points
76
+ for these genes were determined using 5''-RACE. GCAP1, GCAP2 and GC1 transcripts
77
+ were analyzed using Northern blot and RT-PCR. Routine light microscopy was
78
+ used to examine pineal morphology. RESULTS: Chicken GCAP1 and GCAP2 genes
79
+ are arranged in a tail-to-tail array. Each protein is encoded by 4 exons that
80
+ are interrupted by 3 introns of variable length, the positions of which are
81
+ identical within each gene. The putative transcription start points for GCAP1
82
+ and GCAP2 are 314 and 243 bases upstream of the translation start codons of
83
+ these genes, respectively. As in retina, GCAP1, GCAP2 and GC1 genes are expressed
84
+ in the chicken pineal. Although the GC1 null mutation is present in both the
85
+ retina and pineal of the rd chicken, only the retina appears to undergo degeneration.
86
+ CONCLUSIONS: The identical arrangement of chicken, human, and mouse GCAP1/2
87
+ genes suggests that these genes originated from an ancient gene duplication/inversion
88
+ event that occurred during evolution prior to vertebrate diversification.
89
+ The expression of GC1, GCAP1, and GCAP2 in chicken pineal is consistent with
90
+ the hypothesis that chicken pineal contains a functional phototransduction
91
+ cascade. The absence of cellular degeneration in the rd pineal gland suggests
92
+ that GC1 is not critical for pineal cell survival."],"subject":[{"name":"Molecular
93
+ Sequence Data"},{"name":"Promoter Regions (Genetics)"},{"name":"Retinal Degeneration"},{"name":"Calcium-Binding
94
+ Proteins"},{"name":"Guanylate Cyclase"},{"name":"Pineal Gland"}],"rights":"(c)
95
+ Molecular Vision","isPartOf":"University of Utah UScholar Works","language":[{"iso639_3":"eng","name":"English"}],"collection":{"id":"fcd9663d450b786d938cc53ae732fa13","title":"Mwdl","@id":"http://dp.la/api/collections/fcd9663d450b786d938cc53ae732fa13"},"stateLocatedIn":[{"name":"UT"}],"date":{"displayDate":"1999","end":"1999","begin":"1999"},"type":"text","identifier":"http://content.lib.utah.edu/u?/uspace,1728","creator":["Baehr,
96
+ Wolfgang","Semple-Rowland, S L","Larkin, P","Bronson, J D","Nykamp, K","Streit,
97
+ W J"]},"provider":{"@id":"http://dp.la/api/contributor/mwdl","name":"Mountain
98
+ West Digital Library"},"ingestType":"item","@id":"http://dp.la/api/items/3735587153432cd17e3f978bab08fa1a","object":"http://content.lib.utah.edu/utils/getthumbnail/collection/uspace/id/1728","originalRecord":{"PrimoNMBib":{"record":{"control":{"originalsourceid":"1728","sourceid":"digcoll_uuu_11","addsrcrecordid":"uuu-11-205-1251","sourcedbandrecordid":"uspace","sourceformat":"Digital
99
+ Entity","recordid":"digcoll_uuu_11uspace/1728","sourcesystem":"Other","sourcerecordid":"uspace/1728"},"sort":{"creationdate":"1999","author":"Baehr,
100
+ W","title":"Characterization of the chicken GCAP gene array and analyses of
101
+ GCAP1, GCAP2, and GC1 gene expression in normal and rd chicken pineal"},"addata":{"date":"1999","pub":"Molecular
102
+ Vision"},"search":{"lsr04":"1251","addtitle":"Semple-Rowland SL, Larkin P,
103
+ Bronson JD, Nykamp K, Streit WJ, Baehr W. (1999). Characterization of the
104
+ chicken GCAP gene array and analyses of GCAP1, GCAP2, and GC1 gene expression
105
+ in normal and rd chicken pineal. Molecular Vision, 5(14).","lsr13":"University
106
+ of Utah UScholar Works","lsr12":"University of Utah","lsr03":"205","lsr02":"11","lsr01":"uuu","scope":["uu","mw","ir"],"subject":["Molecular
107
+ Sequence Data; Promoter Regions (Genetics); Retinal Degeneration","Calcium-Binding
108
+ Proteins; Guanylate Cyclase; Pineal Gland"],"lsr10":"University of Utah J.
109
+ Willard Marriott Library CONTENTdm OAI Server Repository","addsrcrecordid":"uuu-11-205-1251","creationdate":"1999","creatorcontrib":["Baehr,
110
+ Wolfgang; Semple-Rowland, S L; Larkin, P; Bronson, J D; Nykamp, K; Streit,
111
+ W J;","School of Medicine; Ophthalmology"],"title":"Characterization of the
112
+ chicken GCAP gene array and analyses of GCAP1, GCAP2, and GC1 gene expression
113
+ in normal and rd chicken pineal","description":["Journal Article","PURPOSE:
114
+ This study had three objectives: (1) to characterize the structures of the
115
+ chicken GCAP1 and GCAP2 genes; (2) to determine if GCAP1, GCAP2, and GC1 genes
116
+ are expressed in chicken pineal gland; (3) if GC1 is expressed in chicken
117
+ pineal, to determine if the GC1 null mutation carried by the retinal degeneration
118
+ (rd) chicken is associated with degenerative changes within the pineal glands
119
+ of these animals. METHODS: GCAP1 and GCAP2 gene structures were determined
120
+ by analyses of chicken cosmid and cDNA clones. The putative transcription
121
+ start points for these genes were determined using 5''-RACE. GCAP1, GCAP2
122
+ and GC1 transcripts were analyzed using Northern blot and RT-PCR. Routine
123
+ light microscopy was used to examine pineal morphology. RESULTS: Chicken GCAP1
124
+ and GCAP2 genes are arranged in a tail-to-tail array. Each protein is encoded
125
+ by 4 exons that are interrupted by 3 introns of variable length, the positions
126
+ of which are identical within each gene. The putative transcription start
127
+ points for GCAP1 and GCAP2 are 314 and 243 bases upstream of the translation
128
+ start codons of these genes, respectively. As in retina, GCAP1, GCAP2 and
129
+ GC1 genes are expressed in the chicken pineal. Although the GC1 null mutation
130
+ is present in both the retina and pineal of the rd chicken, only the retina
131
+ appears to undergo degeneration. CONCLUSIONS: The identical arrangement of
132
+ chicken, human, and mouse GCAP1/2 genes suggests that these genes originated
133
+ from an ancient gene duplication/inversion event that occurred during evolution
134
+ prior to vertebrate diversification. The expression of GC1, GCAP1, and GCAP2
135
+ in chicken pineal is consistent with the hypothesis that chicken pineal contains
136
+ a functional phototransduction cascade. The absence of cellular degeneration
137
+ in the rd pineal gland suggests that GC1 is not critical for pineal cell survival."],"sourceid":"digcoll_uuu_11","lsr09":"University
138
+ of Utah, J. Willard Marriott Library","recordid":"digcoll_uuu_11uspace/1728","rsrctype":"text"},"facets":{"genre":"unknown","prefilter":"text","topic":["Molecular
139
+ Sequence Data","Promoter Regions (Genetics)","Retinal Degeneration","Calcium-Binding
140
+ Proteins","Guanylate Cyclase","Pineal Gland"],"toplevel":"online_resources","lfc01":"University
141
+ of Utah UScholar Works","format":"Unknown","lfc02":"University of Utah","collection":"Digital
142
+ Collections","lfc03":"University of Utah, J. Willard Marriott Library","creationdate":"1999","lfc04":"University
143
+ of Utah J. Willard Marriott Library CONTENTdm OAI Server Repository","creatorcontrib":["Baehr,
144
+ Wolfgang","Semple-Rowland, S L","Larkin, P","Bronson, J D","Nykamp, K","Streit,
145
+ W J"],"frbrtype":"6","frbrgroupid":"120209995","language":"eng","rsrctype":"text"},"links":{"linktorsrc":"$$Tdigcoll_uuu_11_linktores$$DOpen
146
+ resource in a new window","thumbnail":"$$Tdigcoll_uuu_11_linktothumb$$DSee
147
+ Thumbnail"},"display":{"subject":"Molecular Sequence Data; Promoter Regions
148
+ (Genetics); Retinal Degeneration; Calcium-Binding Proteins; Guanylate Cyclase;
149
+ Pineal Gland","rights":"(c) Molecular Vision","format":"Unknown","type":"Text","creationdate":"1999","lds17":"text","lds18":"text;","creator":"Baehr,
150
+ Wolfgang; Semple-Rowland, S L; Larkin, P; Bronson, J D; Nykamp, K; Streit,
151
+ W J;","publisher":"Molecular Vision","title":"Characterization of the chicken
152
+ GCAP gene array and analyses of GCAP1, GCAP2, and GC1 gene expression in normal
153
+ and rd chicken pineal","lds02":"University of Utah J. Willard Marriott Library
154
+ CONTENTdm OAI Server Repository","lds11":"Semple-Rowland SL, Larkin P, Bronson
155
+ JD, Nykamp K, Streit WJ, Baehr W. (1999). Characterization of the chicken
156
+ GCAP gene array and analyses of GCAP1, GCAP2, and GC1 gene expression in normal
157
+ and rd chicken pineal. Molecular Vision, 5(14).","lds01":"University of Utah,
158
+ J. Willard Marriott Library","lds04":"University of Utah UScholar Works","description":["Journal
159
+ Article","PURPOSE: This study had three objectives: (1) to characterize the
160
+ structures of the chicken GCAP1 and GCAP2 genes; (2) to determine if GCAP1,
161
+ GCAP2, and GC1 genes are expressed in chicken pineal gland; (3) if GC1 is
162
+ expressed in chicken pineal, to determine if the GC1 null mutation carried
163
+ by the retinal degeneration (rd) chicken is associated with degenerative changes
164
+ within the pineal glands of these animals. METHODS: GCAP1 and GCAP2 gene structures
165
+ were determined by analyses of chicken cosmid and cDNA clones. The putative
166
+ transcription start points for these genes were determined using 5''-RACE.
167
+ GCAP1, GCAP2 and GC1 transcripts"],"contributor":"School of Medicine; Ophthalmology","lds03":"University
168
+ of Utah","language":"eng","identifier":["ir-main,1725","http://content.lib.utah.edu/cdm/ref/collection/uspace/id/1728"]},"delivery":{"delcategory":"Online
169
+ Resource","institution":"MWDL"},"ranking":{"booster2":"1","booster1":"1"}},"xmlns":"http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib"},"LINKS":{"linktorsrc":"http://content.lib.utah.edu/u?/uspace,1728","thumbnail":"http://content.lib.utah.edu/utils/getthumbnail/collection/uspace/id/1728"},"RANK":"0.7996294","_id":"digcoll_uuu_11uspace/1728","SEARCH_ENGINE_TYPE":"Local
170
+ Search Engine","ID":"4257481","SEARCH_ENGINE":"Local Search Engine","GETIT":{"deliveryCategory":"Online
171
+ Resource","GetIt2":"http://sfx7.exlibrisgroup.com/uutah?ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2013-04-14T12%3A50%3A28IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Journal-digcoll_uuu_11&rft_val_fmt=info:ofi/fmt:kev:mtx:&rft.genre=&rft.atitle=&rft.jtitle=&rft.btitle=&rft.aulast=&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=&rft.aucorp=&rft.volume=&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=&rft.epage=&rft.pages=&rft.artnum=&rft.issn=&rft.eissn=&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/&rft.object_id=&rft.eisbn=&rft_dat=<digcoll_uuu_11>uspace/2581</digcoll_uuu_11>&rft_id=info:oai/","GetIt1":"http://content.lib.utah.edu/u?/uspace,2581"},"NO":"682439"},"score":1.7962033},{"ingestDate":"2013-04-14T13:52:17.999527","_rev":"1-0c6beac1d5189a189cf6ff23c083f038","id":"b8fade1c0f42cba49e390ddc3a240b7b","@context":{"edm":"http://www.europeana.eu/schemas/edm/","isShownAt":"edm:isShownAt","dpla":"http://dp.la/terms/","dataProvider":"edm:dataProvider","aggregatedDigitalResource":"dpla:aggregatedDigitalResource","state":"dpla:state","hasView":"edm:hasView","provider":"edm:provider","collection":"dpla:aggregation","object":"edm:object","stateLocatedIn":"dpla:stateLocatedIn","begin":{"@type":"xsd:date","@id":"dpla:dateRangeStart"},"@vocab":"http://purl.org/dc/terms/","LCSH":"http://id.loc.gov/authorities/subjects","sourceResource":"edm:sourceResource","name":"xsd:string","coordinates":"dpla:coordinates","end":{"@type":"xsd:date","@id":"dpla:end"},"originalRecord":"dpla:originalRecord"},"isShownAt":"http://thoth.library.utah.edu:1701/primo_library/libweb/action/dlDisplay.do?vid=MWDL&afterPDS=true&docId=digcoll_uuu_11USHS_Class/14874","_id":"mwdl--digcoll_uuu_11USHS_Class/14874","dataProvider":"Utah
172
+ State Historical Society","sourceResource":{"title":"Chicken Chalet Drive-In
173
+ P.1; No. 29967","extent":"8.9 inches x 3.5 inches","description":"29967 Sign
174
+ for the Chicken Chalet Drive-In. Chicken Chalet, Inc. Located at 258 W. 33rd.
175
+ S., June 25, 1959. Shipler #73185.","subject":[{"name":"Restaurants"}],"rights":"Digital
176
+ Image \u00a9 2008 Utah State Historical Society. All Rights Reserved.","relation":["Relation:
177
+ 725.7","Is part of: Classified Photograph Collection"],"collection":{"id":"fcd9663d450b786d938cc53ae732fa13","title":"Mwdl","@id":"http://dp.la/api/collections/fcd9663d450b786d938cc53ae732fa13"},"stateLocatedIn":[{"name":"UT"}],"isPartOf":"Utah
178
+ State Historical Society Classified Photograph Collection","type":"image","identifier":"http://content.lib.utah.edu/u?/USHS_Class,14874"},"provider":{"@id":"http://dp.la/api/contributor/mwdl","name":"Mountain
179
+ West Digital Library"},"ingestType":"item","@id":"http://dp.la/api/items/b8fade1c0f42cba49e390ddc3a240b7b","object":"http://content.lib.utah.edu/utils/getthumbnail/collection/USHS_Class/id/14874","originalRecord":{"PrimoNMBib":{"record":{"control":{"originalsourceid":"14874","sourceid":"digcoll_uuu_11","addsrcrecordid":"uuu-11-119-1038","sourcedbandrecordid":"USHS_Class","sourceformat":"Digital
180
+ Entity","recordid":"digcoll_uuu_11USHS_Class/14874","sourcesystem":"Other","sourcerecordid":"USHS_Class/14874"},"sort":{"title":"Chicken
181
+ Chalet Drive-In P.1"},"addata":{"date":"2009","pub":"Utah State Historical
182
+ Society"},"search":{"lsr04":"1038","lsr13":"Utah State Historical Society
183
+ Classified Photograph Collection","addtitle":["Relation: 725.7","Is part of:
184
+ Classified Photograph Collection","No. 29967"],"lsr12":"Utah State Historical
185
+ Society","lsr03":"119","lsr15":"Classified Photograph Collection","lsr02":"11","lsr01":"uuu","scope":["uu","mw"],"subject":"Restaurants","lsr10":"University
186
+ of Utah J. Willard Marriott Library CONTENTdm OAI Server Repository","addsrcrecordid":"uuu-11-119-1038","creatorcontrib":"Digitized
187
+ by: J. Willard Marriott Library, University of Utah","title":"Chicken Chalet
188
+ Drive-In P.1","description":"29967 Sign for the Chicken Chalet Drive-In. Chicken
189
+ Chalet, Inc. Located at 258 W. 33rd. S., June 25, 1959. Shipler #73185.","sourceid":"digcoll_uuu_11","lsr09":"University
190
+ of Utah, J. Willard Marriott Library","recordid":"digcoll_uuu_11USHS_Class/14874","rsrctype":"images"},"facets":{"genre":"unknown","topic":"Restaurants","prefilter":"images","toplevel":"online_resources","frbrtype":"6","frbrgroupid":"120376525","lfc01":"Utah
191
+ State Historical Society Classified Photograph Collection","collection":"Digital
192
+ Collections","lfc02":"Utah State Historical Society","format":"image/jp2","lfc03":"University
193
+ of Utah, J. Willard Marriott Library","lfc04":"University of Utah J. Willard
194
+ Marriott Library CONTENTdm OAI Server Repository","rsrctype":"images"},"links":{"linktorsrc":"$$Tdigcoll_uuu_11_linktores$$DOpen
195
+ resource in a new window","thumbnail":"$$Tdigcoll_uuu_11_linktothumb$$DSee
196
+ Thumbnail"},"display":{"subject":"Restaurants","relation":["Relation: 725.7","Is
197
+ part of: Classified Photograph Collection"],"rights":"Digital Image \u00a9
198
+ 2008 Utah State Historical Society. All Rights Reserved.","format":"image/jp2","type":"Image","lds17":"image","lds05":"8.9
199
+ inches x 3.5 inches","lds18":"image","publisher":"Utah State Historical Society","title":"Chicken
200
+ Chalet Drive-In P.1","lds12":"Print Photograph","lds02":"University of Utah
201
+ J. Willard Marriott Library CONTENTdm OAI Server Repository","lds10":"No.
202
+ 29967","lds01":"University of Utah, J. Willard Marriott Library","contributor":"Digitized
203
+ by: J. Willard Marriott Library, University of Utah","lds04":"Utah State Historical
204
+ Society Classified Photograph Collection","description":"29967 Sign for the
205
+ Chicken Chalet Drive-In. Chicken Chalet, Inc. Located at 258 W. 33rd. S.,
206
+ June 25, 1959. Shipler #73185.","lds03":"Utah State Historical Society","identifier":["39222001696553.tif","http://content.lib.utah.edu/cdm/ref/collection/USHS_Class/id/14874"]},"delivery":{"delcategory":"Online
207
+ Resource","institution":"MWDL"},"ranking":{"booster2":"1","booster1":"1"}},"xmlns":"http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib"},"LINKS":{"linktorsrc":"http://content.lib.utah.edu/u?/USHS_Class,14874","thumbnail":"http://content.lib.utah.edu/utils/getthumbnail/collection/USHS_Class/id/14874"},"RANK":"0.7996294","_id":"digcoll_uuu_11USHS_Class/14874","SEARCH_ENGINE_TYPE":"Local
208
+ Search Engine","ID":"4217936","SEARCH_ENGINE":"Local Search Engine","GETIT":{"deliveryCategory":"Online
209
+ Resource","GetIt2":"http://sfx7.exlibrisgroup.com/uutah?ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2013-04-14T11%3A50%3A52IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Journal-digcoll_uuu_11&rft_val_fmt=info:ofi/fmt:kev:mtx:&rft.genre=&rft.atitle=&rft.jtitle=&rft.btitle=&rft.aulast=&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=&rft.aucorp=&rft.volume=&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=&rft.epage=&rft.pages=&rft.artnum=&rft.issn=&rft.eissn=&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/&rft.object_id=&rft.eisbn=&rft_dat=<digcoll_uuu_11>USHS_Class/9141</digcoll_uuu_11>&rft_id=info:oai/","GetIt1":"http://content.lib.utah.edu/u?/USHS_Class,9141"},"NO":"655302"},"score":1.4927405},{"_rev":"4-fdb735ba3d733b2c9a13a73e3d36ff3c","ingestDate":"2013-04-29T21:58:44.641105","@context":{"edm":"http://www.europeana.eu/schemas/edm/","isShownAt":"edm:isShownAt","dpla":"http://dp.la/terms/","dataProvider":"edm:dataProvider","aggregatedDigitalResource":"dpla:aggregatedDigitalResource","state":"dpla:state","hasView":"edm:hasView","provider":"edm:provider","collection":"dpla:aggregation","object":"edm:object","stateLocatedIn":"dpla:stateLocatedIn","begin":{"@type":"xsd:date","@id":"dpla:dateRangeStart"},"@vocab":"http://purl.org/dc/terms/","LCSH":"http://id.loc.gov/authorities/subjects","sourceResource":"edm:sourceResource","name":"xsd:string","coordinates":"dpla:coordinates","end":{"@type":"xsd:date","@id":"dpla:dateRangeEnd"},"originalRecord":"dpla:originalRecord"},"id":"84afd4fa7c022fe85abe068896a513c6","isShownAt":"http://openvault.wgbh.org/catalog/ntw-mla000240-opening-sequence-from-lulu-smith
210
+ -the-chicken-that-ate-columbus ","_id":"digital-commonwealth--http://digitalcommonwealth.org/items/show/64372","dataProvider":"WGBH","sourceResource":{"subject":[{"name":"Audience
211
+ participation television programs Comedy Drama Parodies Television--Production
212
+ and direction"}],"description":"This short excerpt from the opening sequence
213
+ of \"Lulu Smith: The Chicken that Ate Columbus\" features the narrator posing
214
+ a set of questions to the audience, and introducing the viewer to the QUBE
215
+ cable system in Ohio. [*DURING THE COURSE OF THE OPEN VAULT WEBSITE PROJECT,
216
+ THIS STREAMING CLIP WAS REMOVED FROM BOTH THE NTW & OPEN VAULT WEBSITE DUE
217
+ TO RIGHTS ISSUES*]","title":"Opening sequence from \"Lulu Smith: The Chicken
218
+ that Ate Columbus\"","collection":{"id":"285ca7b8845da5e6316e6558fac491b4","title":"WGBH
219
+ OpenVault","@id":"http://dp.la/api/collections/285ca7b8845da5e6316e6558fac491b4"}},"provider":{"@id":"http://dp.la/api/contributor/digital-commonwealth","name":"Digital
220
+ Commonwealth"},"ingestType":"item","@id":"http://dp.la/api/items/84afd4fa7c022fe85abe068896a513c6","originalRecord":{"id":"oai:digitalcommonwealth.org:64372","title":"Opening
221
+ sequence from \"Lulu Smith: The Chicken that Ate Columbus\" ","handle":["http://openvault.wgbh.org/catalog/ntw-mla000240-opening-sequence-from-lulu-smith
222
+ -the-chicken-that-ate-columbus ","http://digitalcommonwealth.org/items/show/64372"],"setSpec":"215","subject":"Audience
223
+ participation television programs Comedy Drama Parodies Television--Production
224
+ and direction ","description":"This short excerpt from the opening sequence
225
+ of \"Lulu Smith: The Chicken that Ate Columbus\" features the narrator posing
226
+ a set of questions to the audience, and introducing the viewer to the QUBE
227
+ cable system in Ohio. [*DURING THE COURSE OF THE OPEN VAULT WEBSITE PROJECT,
228
+ THIS STREAMING CLIP WAS REMOVED FROM BOTH THE NTW & OPEN VAULT WEBSITE DUE
229
+ TO RIGHTS ISSUES*] ","label":"Opening sequence from \"Lulu Smith: The Chicken
230
+ that Ate Columbus\" ","datestamp":"2013-02-24T19:38:00Z"},"score":1.4901004},{"ingestDate":"2013-04-14T14:21:40.804780","_rev":"1-d20da73e8131e18cf797e9f415b102a7","id":"32170d053b4d808550b2cec21ee90af9","@context":{"edm":"http://www.europeana.eu/schemas/edm/","isShownAt":"edm:isShownAt","dpla":"http://dp.la/terms/","dataProvider":"edm:dataProvider","aggregatedDigitalResource":"dpla:aggregatedDigitalResource","state":"dpla:state","hasView":"edm:hasView","provider":"edm:provider","collection":"dpla:aggregation","object":"edm:object","stateLocatedIn":"dpla:stateLocatedIn","begin":{"@type":"xsd:date","@id":"dpla:dateRangeStart"},"@vocab":"http://purl.org/dc/terms/","LCSH":"http://id.loc.gov/authorities/subjects","sourceResource":"edm:sourceResource","name":"xsd:string","coordinates":"dpla:coordinates","end":{"@type":"xsd:date","@id":"dpla:end"},"originalRecord":"dpla:originalRecord"},"isShownAt":"http://thoth.library.utah.edu:1701/primo_library/libweb/action/dlDisplay.do?vid=MWDL&afterPDS=true&docId=digcoll_uuu_11VE_Photos/435","_id":"mwdl--digcoll_uuu_11VE_Photos/435","dataProvider":"Uintah
231
+ County (UT) Library","sourceResource":{"title":"Chicken Farm Visit","spatial":[{"name":"Vernal
232
+ (Utah)"}],"description":"From left, Bry Stringham, Ken Stringham, and DeMar
233
+ Dudley visit the Dudley chicken farm on an annual Chamber of Commerce farm
234
+ tour.","subject":[{"name":"Farming"},{"name":"Dudley Chicken Farm"}],"rights":"Digital
235
+ image, copyright 2003 Uintah County Library","isPartOf":"Vernal (UT) Express
236
+ Photograph Collection","language":[{"iso639_3":"eng","name":"English"}],"collection":{"id":"fcd9663d450b786d938cc53ae732fa13","title":"Mwdl","@id":"http://dp.la/api/collections/fcd9663d450b786d938cc53ae732fa13"},"stateLocatedIn":[{"name":"UT"}],"date":{"displayDate":"1961-03-09","end":"1961-03-09","begin":"1961-03-09"},"type":"image","identifier":"http://content.lib.utah.edu/u?/VE_Photos,435"},"provider":{"@id":"http://dp.la/api/contributor/mwdl","name":"Mountain
237
+ West Digital Library"},"ingestType":"item","@id":"http://dp.la/api/items/32170d053b4d808550b2cec21ee90af9","object":"http://content.lib.utah.edu/utils/getthumbnail/collection/VE_Photos/id/435","originalRecord":{"PrimoNMBib":{"record":{"control":{"originalsourceid":"435","sourceid":"digcoll_uuu_11","addsrcrecordid":"uuu-11-117-1047","sourcedbandrecordid":"VE_Photos","sourceformat":"Digital
238
+ Entity","recordid":"digcoll_uuu_11VE_Photos/435","sourcesystem":"Other","sourcerecordid":"VE_Photos/435"},"sort":{"title":"Chicken
239
+ Farm Visit","creationdate":"1961"},"addata":{"date":"1961","pub":"Uintah County
240
+ Library Regional History Center"},"search":{"lsr04":"1047","lsr13":"Vernal
241
+ (UT) Express Photograph Collection","lsr12":"Uintah County (UT) Library","lsr03":"117","lsr02":"11","lsr14":"Vernal
242
+ (Utah)","lsr01":"uuu","scope":["uu","mw"],"subject":"Farming; Dudley Chicken
243
+ Farm","lsr10":"University of Utah J. Willard Marriott Library CONTENTdm OAI
244
+ Server Repository","addsrcrecordid":"uuu-11-117-1047","creationdate":"1961-03-09","title":"Chicken
245
+ Farm Visit","description":"From left, Bry Stringham, Ken Stringham, and DeMar
246
+ Dudley visit the Dudley chicken farm on an annual Chamber of Commerce farm
247
+ tour.","sourceid":"digcoll_uuu_11","lsr09":"University of Utah, J. Willard
248
+ Marriott Library","recordid":"digcoll_uuu_11VE_Photos/435","rsrctype":"images"},"facets":{"genre":"unknown","prefilter":"images","topic":["Farming","Dudley
249
+ Chicken Farm"],"toplevel":"online_resources","lfc01":"Vernal (UT) Express
250
+ Photograph Collection","format":"image/jpeg","lfc02":"Uintah County (UT) Library","collection":"Digital
251
+ Collections","lfc03":"University of Utah, J. Willard Marriott Library","creationdate":"1961-03-09","lfc04":"University
252
+ of Utah J. Willard Marriott Library CONTENTdm OAI Server Repository","lfc08":"Vernal
253
+ (Utah)","frbrtype":"6","frbrgroupid":"120257435","language":"eng","rsrctype":"images"},"links":{"linktorsrc":"$$Tdigcoll_uuu_11_linktores$$DOpen
254
+ resource in a new window","thumbnail":"$$Tdigcoll_uuu_11_linktothumb$$DSee
255
+ Thumbnail"},"display":{"subject":"Farming; Dudley Chicken Farm","rights":"Digital
256
+ image, copyright 2003 Uintah County Library","format":"image/jpeg","type":"Image","creationdate":"1961-03-09","lds17":"image","lds08":"Vernal
257
+ (Utah);","lds18":"Image","publisher":"Uintah County Library Regional History
258
+ Center","title":"Chicken Farm Visit","lds12":"Vernal Express Collection; B&W
259
+ copy negative and print; 6 cm x 6 cm","lds02":"University of Utah J. Willard
260
+ Marriott Library CONTENTdm OAI Server Repository","coverage":"Vernal (Utah);","lds01":"University
261
+ of Utah, J. Willard Marriott Library","lds04":"Vernal (UT) Express Photograph
262
+ Collection","description":"From left, Bry Stringham, Ken Stringham, and DeMar
263
+ Dudley visit the Dudley chicken farm on an annual Chamber of Commerce farm
264
+ tour.","lds03":"Uintah County (UT) Library","language":"eng","identifier":["174-2","http://content.lib.utah.edu/cdm/ref/collection/VE_Photos/id/435"]},"delivery":{"delcategory":"Online
265
+ Resource","institution":"MWDL"},"ranking":{"booster2":"1","booster1":"1"}},"xmlns":"http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib"},"LINKS":{"linktorsrc":"http://content.lib.utah.edu/u?/VE_Photos,435","thumbnail":"http://content.lib.utah.edu/utils/getthumbnail/collection/VE_Photos/id/435"},"RANK":"0.7996294","_id":"digcoll_uuu_11VE_Photos/435","SEARCH_ENGINE_TYPE":"Local
266
+ Search Engine","ID":"4230801","SEARCH_ENGINE":"Local Search Engine","GETIT":{"deliveryCategory":"Online
267
+ Resource","GetIt2":"http://sfx7.exlibrisgroup.com/uutah?ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2013-04-14T12%3A20%3A26IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Journal-digcoll_uuu_11&rft_val_fmt=info:ofi/fmt:kev:mtx:&rft.genre=&rft.atitle=&rft.jtitle=&rft.btitle=&rft.aulast=&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=&rft.aucorp=&rft.volume=&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=&rft.epage=&rft.pages=&rft.artnum=&rft.issn=&rft.eissn=&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/&rft.object_id=&rft.eisbn=&rft_dat=<digcoll_uuu_11>Uintah_History/2558</digcoll_uuu_11>&rft_id=info:oai/","GetIt1":"http://content.lib.utah.edu/u?/Uintah_History,2558"},"NO":"668167"},"score":1.4485863},{"ingestDate":"2013-04-14T13:50:32.873133","_rev":"1-c8f4f0b542d86f930be0aa05d948c748","id":"d5d33e93d1c6188386a7db3f805f5382","@context":{"edm":"http://www.europeana.eu/schemas/edm/","isShownAt":"edm:isShownAt","dpla":"http://dp.la/terms/","dataProvider":"edm:dataProvider","aggregatedDigitalResource":"dpla:aggregatedDigitalResource","state":"dpla:state","hasView":"edm:hasView","provider":"edm:provider","collection":"dpla:aggregation","object":"edm:object","stateLocatedIn":"dpla:stateLocatedIn","begin":{"@type":"xsd:date","@id":"dpla:dateRangeStart"},"@vocab":"http://purl.org/dc/terms/","LCSH":"http://id.loc.gov/authorities/subjects","sourceResource":"edm:sourceResource","name":"xsd:string","coordinates":"dpla:coordinates","end":{"@type":"xsd:date","@id":"dpla:end"},"originalRecord":"dpla:originalRecord"},"isShownAt":"http://thoth.library.utah.edu:1701/primo_library/libweb/action/dlDisplay.do?vid=MWDL&afterPDS=true&docId=digcoll_uuu_11USHS_Class/14879","_id":"mwdl--digcoll_uuu_11USHS_Class/14879","dataProvider":"Utah
268
+ State Historical Society","sourceResource":{"title":"Coon Chicken Inn P.1;
269
+ No. 17747","extent":"7.6 inches x 7.7 inches","description":"17747 Carol Wineriter,
270
+ Donor. 2950 Highland Dr. Plate used at Salt Lake City''s Coon Chicken Inn.","subject":[{"name":"Restaurants"}],"rights":"Digital
271
+ Image \u00a9 2008 Utah State Historical Society. All Rights Reserved.","relation":["Relation:
272
+ 725.7","Is part of: Classified Photograph Collection"],"collection":{"id":"fcd9663d450b786d938cc53ae732fa13","title":"Mwdl","@id":"http://dp.la/api/collections/fcd9663d450b786d938cc53ae732fa13"},"stateLocatedIn":[{"name":"UT"}],"isPartOf":"Utah
273
+ State Historical Society Classified Photograph Collection","type":"image","identifier":"http://content.lib.utah.edu/u?/USHS_Class,14879"},"provider":{"@id":"http://dp.la/api/contributor/mwdl","name":"Mountain
274
+ West Digital Library"},"ingestType":"item","@id":"http://dp.la/api/items/d5d33e93d1c6188386a7db3f805f5382","object":"http://content.lib.utah.edu/utils/getthumbnail/collection/USHS_Class/id/14879","originalRecord":{"PrimoNMBib":{"record":{"control":{"originalsourceid":"14879","sourceid":"digcoll_uuu_11","addsrcrecordid":"uuu-11-119-1038","sourcedbandrecordid":"USHS_Class","sourceformat":"Digital
275
+ Entity","recordid":"digcoll_uuu_11USHS_Class/14879","sourcesystem":"Other","sourcerecordid":"USHS_Class/14879"},"sort":{"title":"Coon
276
+ Chicken Inn P.1"},"addata":{"date":"2009","pub":"Utah State Historical Society"},"search":{"lsr04":"1038","lsr13":"Utah
277
+ State Historical Society Classified Photograph Collection","addtitle":["Relation:
278
+ 725.7","Is part of: Classified Photograph Collection","No. 17747"],"lsr12":"Utah
279
+ State Historical Society","lsr03":"119","lsr15":"Classified Photograph Collection","lsr02":"11","lsr01":"uuu","scope":["uu","mw"],"subject":"Restaurants","lsr10":"University
280
+ of Utah J. Willard Marriott Library CONTENTdm OAI Server Repository","addsrcrecordid":"uuu-11-119-1038","creatorcontrib":"Digitized
281
+ by: J. Willard Marriott Library, University of Utah","title":"Coon Chicken
282
+ Inn P.1","description":"17747 Carol Wineriter, Donor. 2950 Highland Dr. Plate
283
+ used at Salt Lake City''s Coon Chicken Inn.","sourceid":"digcoll_uuu_11","lsr09":"University
284
+ of Utah, J. Willard Marriott Library","recordid":"digcoll_uuu_11USHS_Class/14879","rsrctype":"images"},"facets":{"genre":"unknown","topic":"Restaurants","prefilter":"images","toplevel":"online_resources","frbrtype":"6","frbrgroupid":"120376530","lfc01":"Utah
285
+ State Historical Society Classified Photograph Collection","collection":"Digital
286
+ Collections","lfc02":"Utah State Historical Society","format":"image/jp2","lfc03":"University
287
+ of Utah, J. Willard Marriott Library","lfc04":"University of Utah J. Willard
288
+ Marriott Library CONTENTdm OAI Server Repository","rsrctype":"images"},"links":{"linktorsrc":"$$Tdigcoll_uuu_11_linktores$$DOpen
289
+ resource in a new window","thumbnail":"$$Tdigcoll_uuu_11_linktothumb$$DSee
290
+ Thumbnail"},"display":{"subject":"Restaurants","relation":["Relation: 725.7","Is
291
+ part of: Classified Photograph Collection"],"rights":"Digital Image \u00a9
292
+ 2008 Utah State Historical Society. All Rights Reserved.","format":"image/jp2","type":"Image","lds17":"image","lds05":"7.6
293
+ inches x 7.7 inches","lds18":"image","publisher":"Utah State Historical Society","title":"Coon
294
+ Chicken Inn P.1","lds12":"Print Photograph","lds02":"University of Utah J.
295
+ Willard Marriott Library CONTENTdm OAI Server Repository","lds10":"No. 17747","lds01":"University
296
+ of Utah, J. Willard Marriott Library","contributor":"Digitized by: J. Willard
297
+ Marriott Library, University of Utah","lds04":"Utah State Historical Society
298
+ Classified Photograph Collection","description":"17747 Carol Wineriter, Donor.
299
+ 2950 Highland Dr. Plate used at Salt Lake City''s Coon Chicken Inn.","lds03":"Utah
300
+ State Historical Society","identifier":["39222001696603.tif","http://content.lib.utah.edu/cdm/ref/collection/USHS_Class/id/14879"]},"delivery":{"delcategory":"Online
301
+ Resource","institution":"MWDL"},"ranking":{"booster2":"1","booster1":"1"}},"xmlns":"http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib"},"LINKS":{"linktorsrc":"http://content.lib.utah.edu/u?/USHS_Class,14879","thumbnail":"http://content.lib.utah.edu/utils/getthumbnail/collection/USHS_Class/id/14879"},"RANK":"0.7996294","_id":"digcoll_uuu_11USHS_Class/14879","SEARCH_ENGINE_TYPE":"Local
302
+ Search Engine","ID":"4217005","SEARCH_ENGINE":"Local Search Engine","GETIT":{"deliveryCategory":"Online
303
+ Resource","GetIt2":"http://sfx7.exlibrisgroup.com/uutah?ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2013-04-14T11%3A49%3A02IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Journal-digcoll_uuu_11&rft_val_fmt=info:ofi/fmt:kev:mtx:&rft.genre=&rft.atitle=&rft.jtitle=&rft.btitle=&rft.aulast=&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=&rft.aucorp=&rft.volume=&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=&rft.epage=&rft.pages=&rft.artnum=&rft.issn=&rft.eissn=&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/&rft.object_id=&rft.eisbn=&rft_dat=<digcoll_uuu_11>UU_Photo_Archives/35681</digcoll_uuu_11>&rft_id=info:oai/","GetIt1":"http://content.lib.utah.edu/u?/UU_Photo_Archives,35681"},"NO":"654371"},"score":1.2342211},{"ingestDate":"2013-04-17T09:33:21.049749","_rev":"5-e097b4fd3aeab6ff72eaf9839cc17fac","id":"b779ab204cdd73132159c728692aca79","@context":{"edm":"http://www.europeana.eu/schemas/edm/","isShownAt":"edm:isShownAt","dpla":"http://dp.la/terms/","dataProvider":"edm:dataProvider","aggregatedDigitalResource":"dpla:aggregatedDigitalResource","state":"dpla:state","hasView":"edm:hasView","provider":"edm:provider","collection":"dpla:aggregation","object":"edm:object","stateLocatedIn":"dpla:stateLocatedIn","begin":{"@type":"xsd:date","@id":"dpla:dateRangeStart"},"@vocab":"http://purl.org/dc/terms/","LCSH":"http://id.loc.gov/authorities/subjects","sourceResource":"edm:sourceResource","name":"xsd:string","coordinates":"dpla:coordinates","end":{"@type":"xsd:date","@id":"dpla:end"},"originalRecord":"dpla:originalRecord"},"isShownAt":"http://collections.si.edu/search/results.htm?q=record_ID%3Anmah_600961&repo=DPLA","_id":"smithsonian--http://collections.si.edu/search/results.htm?q=record_ID%3Anmah_600961&repo=DPLA","dataProvider":"National
304
+ Museum of American History, Kenneth E. Behring Center","sourceResource":{"title":"Water
305
+ Jug","spatial":{"state":"Utuado Municipio","region":["United States of America","Puerto
306
+ Rico"],"coordinates":"18.2469997406, -66.6480026245","name":"Puerto Rico"},"subject":[{"name":"Household
307
+ Tools and Equipment"},{"name":"Daily Life"},{"name":"Cultures & Communities"},{"name":"Vidal"},{"name":"Puerto
308
+ Rico"}],"description":"Chickens are a familiar decorative theme in household
309
+ objects. This contemporary chicken-shaped <i>botijo</i>, or water jug is made
310
+ of terra cotta with a removable stopper in the form of a chicken head.","temporal":[{"displayDate":"ca
311
+ 1980","end":"1980","begin":"1980"}],"rights":"Gift of Teodoro Vidal","collection":{"id":"fdc2b01e474420828fee5dad60b81754","title":"Vidal","@id":"http://dp.la/api/collections/fdc2b01e474420828fee5dad60b81754"},"date":{"displayDate":"ca
312
+ 1980","end":"1980","begin":"1980"}},"provider":{"@id":"http://dp.la/api/contributor/smithsonian","name":"Smithsonian
313
+ Institution"},"ingestType":"item","@id":"http://dp.la/api/items/b779ab204cdd73132159c728692aca79","object":"http://ids.si.edu/ids/deliveryService?id=NMAH-AHB2006q05030&max=150","originalRecord":{"descriptiveNonRepeating":{"title_sort":"WATER
314
+ JUG","title":{"#text":"Water Jug","@label":"Title"},"online_media":{"media":{"#text":"http://ids.si.edu/ids/dynamic?id=NMAH-AHB2006q05030","@idsId":"NMAH-AHB2006q05030","@rights":"This
315
+ image was obtained from the Smithsonian Institution. The image or its contents
316
+ may be protected by international copyright laws. Contact NMAHDigitalAssets@si.edu
317
+ for more information.","@type":"Images","@thumbnail":"http://ids.si.edu/ids/deliveryService?id=NMAH-AHB2006q05030&max=150"},"@mediaCount":"1"},"unit_code":"NMAH","data_source":"National
318
+ Museum of American History, Kenneth E. Behring Center","record_ID":"nmah_600961"},"freetext":{"topic":[{"#text":"Daily
319
+ Life","@label":"subject"},{"#text":"Cultures & Communities","@label":"subject"},{"#text":"Puerto
320
+ Rico","@label":"subject"},{"#text":"Household Tools and Equipment","@label":"subject"},{"#text":"Vidal","@label":"subject"}],"title":{"#text":"Botijo
321
+ de Agua","@label":"Title (Spanish)"},"dataSource":{"#text":"National Museum
322
+ of American History, Kenneth E. Behring Center","@label":"Data Source"},"creditLine":{"#text":"Gift
323
+ of Teodoro Vidal","@label":"Credit Line"},"physicalDescription":[{"#text":"ceramic
324
+ (overall material)","@label":"Physical Description"},{"#text":"overall: 26.5
325
+ cm x 16.5 cm x 26.5 cm; 10 7/16 in x 6 1/2 in x 10 7/16 in","@label":"Measurements"}],"setName":[{"#text":"Home
326
+ and Community Life: Ethnic","@label":"See more items in"},{"#text":"Vidal","@label":"See
327
+ more items in"}],"notes":[{"#text":"Chickens are a familiar decorative theme
328
+ in household objects. This contemporary chicken-shaped <i>botijo</i>, or water
329
+ jug is made of terra cotta with a removable stopper in the form of a chicken
330
+ head.","@label":"Description"},{"#text":"Currently not on view","@label":"Location"}],"place":{"#text":"Puerto
331
+ Rico","@label":"place made"},"date":{"#text":"ca 1980","@label":"Date made"},"identifier":[{"#text":"1997.0097.0082","@label":"ID
332
+ Number"},{"#text":"1997.0097.0082","@label":"catalog number"},{"#text":"1997.0097","@label":"accession
333
+ number"}],"objectType":{"#text":"ceramic jug","@label":"Object Name"}},"_id":"nmah_600961","indexedStructured":{"geoLocation":{"Other":{"#text":"Puerto
334
+ Rico","@type":"Place"},"L1":{"#text":" North America","@type":""},"L2":{"#text":"United
335
+ States of America","@type":""},"L3":{"#text":"Puerto Rico","@type":""}},"topic":["Daily
336
+ Life","Household Tools and Equipment","Cultures & Communities","Vidal"],"online_media_type":"Images","online_media_rights":"Public
337
+ Domain","place":"Puerto Rico"}},"score":1.2340382},{"ingestDate":"2013-04-17T12:17:37.236195","_rev":"3-cc96570b1bf00f54f84a90e6f6af5326","id":"ff124885469c74f81edb6e42ce292c4a","@context":{"edm":"http://www.europeana.eu/schemas/edm/","isShownAt":"edm:isShownAt","dpla":"http://dp.la/terms/","dataProvider":"edm:dataProvider","aggregatedDigitalResource":"dpla:aggregatedDigitalResource","state":"dpla:state","hasView":"edm:hasView","provider":"edm:provider","collection":"dpla:aggregation","object":"edm:object","stateLocatedIn":"dpla:stateLocatedIn","begin":{"@type":"xsd:date","@id":"dpla:dateRangeStart"},"@vocab":"http://purl.org/dc/terms/","LCSH":"http://id.loc.gov/authorities/subjects","sourceResource":"edm:sourceResource","name":"xsd:string","coordinates":"dpla:coordinates","end":{"@type":"xsd:date","@id":"dpla:end"},"originalRecord":"dpla:originalRecord"},"isShownAt":"http://collections.si.edu/search/results.htm?q=record_ID%3Afsg_S2005.419&repo=DPLA","_id":"smithsonian--http://collections.si.edu/search/results.htm?q=record_ID%3Afsg_S2005.419&repo=DPLA","dataProvider":"Freer
338
+ Gallery of Art and Arthur M. Sackler Gallery","sourceResource":{"title":"Spirit
339
+ house figure of a chicken coop","spatial":{"state":"Changwat Phra Nakhon Si
340
+ Ayutthaya","coordinates":"14.3434448242, 100.566482544","country":"Kingdom
341
+ of Thailand","name":"Ayutthaya, Ayutthaya province, Thailand"},"subject":[{"name":"Ayutthaya
342
+ period (1351 - 1767)"},{"name":"Unglazed"},{"name":"Thailand"},{"name":"Chicken"},{"name":"Bangkok
343
+ period (1782 - )"},{"name":"Earthenware"}],"temporal":[{"displayDate":"16th-19th
344
+ century","end":null,"begin":null},{"displayDate":"Ayutthaya period or Bangkok
345
+ period","end":null,"begin":null}],"rights":"Gift of Osborne and Gratia Hauge,
346
+ and Victor and Takako Hauge","format":"Earthenware","collection":{"id":"66df33f3f1b5dda88c10824678f3ae93","title":"Freer
347
+ Gallery of Art and Arthur M. Sackler Gallery Collection","@id":"http://dp.la/api/collections/66df33f3f1b5dda88c10824678f3ae93"},"date":{"displayDate":"16th-19th
348
+ century","end":null,"begin":null},"identifier":"S2005.419"},"provider":{"@id":"http://dp.la/api/contributor/smithsonian","name":"Smithsonian
349
+ Institution"},"ingestType":"item","@id":"http://dp.la/api/items/ff124885469c74f81edb6e42ce292c4a","object":"http://www.asia.si.edu/collections/medium/S2005.419.jpg","originalRecord":{"descriptiveNonRepeating":{"title_sort":"SPIRIT
350
+ HOUSE FIGURE OF A CHICKEN COOP","title":{"#text":"Spirit house figure of a
351
+ chicken coop","@label":"Title"},"online_media":{"media":{"#text":"http://www.asia.si.edu/collections/zoom/S2005.419.jpg","@idsId":"http://www.asia.si.edu/collections/zoom/S2005.419.jpg","@type":"Images","@thumbnail":"http://www.asia.si.edu/collections/medium/S2005.419.jpg"},"@mediaCount":"1"},"record_ID":"fsg_S2005.419","data_source":"Freer
352
+ Gallery of Art and Arthur M. Sackler Gallery","record_link":"http://collections.si.edu/search/results.htm?q=record_ID%3Afsg_S2005.419&repo=DPLA","unit_code":"FSG"},"freetext":{"topic":[{"#text":"chicken","@label":"Topic"},{"#text":"Thailand","@label":"Topic"},{"#text":"Ayutthaya
353
+ period (1351 - 1767)","@label":"Topic"},{"#text":"earthenware","@label":"Topic"},{"#text":"unglazed","@label":"Topic"},{"#text":"Bangkok
354
+ period (1782 - )","@label":"Topic"}],"dataSource":{"#text":"Freer Gallery
355
+ of Art and Arthur M. Sackler Gallery","@label":"Data Source"},"creditLine":{"#text":"Gift
356
+ of Osborne and Gratia Hauge, and Victor and Takako Hauge","@label":"Credit
357
+ Line"},"physicalDescription":{"#text":"Earthenware","@label":"Medium"},"setName":{"#text":"Freer
358
+ Gallery of Art and Arthur M. Sackler Gallery Collection","@label":"See more
359
+ items in"},"place":{"#text":"Ayutthaya, Ayutthaya province, Thailand","@label":"Origin"},"date":[{"#text":"16th-19th
360
+ century","@label":"Date"},{"#text":"Ayutthaya period or Bangkok period","@label":"Period"}],"identifier":{"#text":"S2005.419","@label":"Accession
361
+ Number"},"objectType":[{"#text":"Ceramic","@label":"Type"},{"#text":"Sculpture","@label":"Type"}]},"_id":"fsg_S2005.419","indexedStructured":{"geoLocation":{"L2":{"#text":"Thailand","@type":"Country"},"L1":{"#text":"
362
+ Asia","@type":"Continent"}},"object_type":["Sculpture (visual work)","Ceramics
363
+ (objects)"],"topic":["Pottery","Chicken","Unglazed","Ayutthaya period (1351
364
+ - 1767)","Bangkok period (1782 - )"],"online_media_type":"Images","place":["Ayutthaya
365
+ province","Thailand","Ayutthaya"],"date":["1890s","1500s"]}},"score":1.2340382},{"@context":{"edm":"http://www.europeana.eu/schemas/edm/","isShownAt":"edm:isShownAt","dpla":"http://dp.la/terms/","dataProvider":"edm:dataProvider","aggregatedDigitalResource":"dpla:aggregatedDigitalResource","state":"dpla:state","hasView":"edm:hasView","provider":"edm:provider","collection":"dpla:aggregation","object":"edm:object","stateLocatedIn":"dpla:stateLocatedIn","begin":{"@type":"xsd:date","@id":"dpla:dateRangeStart"},"@vocab":"http://purl.org/dc/terms/","LCSH":"http://id.loc.gov/authorities/subjects","sourceResource":"edm:sourceResource","name":"xsd:string","coordinates":"dpla:coordinates","end":{"@type":"xsd:date","@id":"dpla:end"},"originalRecord":"dpla:originalRecord"},"isShownAt":"http://dp.la/info/nara-content-notification/","dataProvider":"National
366
+ Archives at College Park - Still Pictures","hasView":[{"format":"image/gif","url":"http://media.nara.gov/media/images/19/26/19-2555a.gif"}],"provider":{"@id":"http://dp.la/api/contributor/nara","name":"National
367
+ Archives and Records Administration"},"object":"http://media.nara.gov/media/images/19/26/19-2555t.gif","id":"20040732cd29f94d6a3827cb3254a38b","_rev":"2-717b1093cedc46fc8db574f112df903c","ingestDate":"2013-04-11T21:21:42.181142","_id":"nara--522123","sourceResource":{"title":"Haskell
368
+ County, Kansas. Miscellaneous scenes - Chicken yard with woman in background","description":"Full
369
+ caption reads as follows: Haskell County, Kansas. Miscellaneous scenes - Chicken
370
+ yard with woman in background.","rights":"Restrictions: Unrestricted; Use
371
+ status: Unrestricted","collection":{"id":"2ec583fe70bc1d0c8230d598db8b0792","title":"Records
372
+ of the Bureau of Agricultural Economics, 1876 - 1959","@id":"http://dp.la/api/collections/2ec583fe70bc1d0c8230d598db8b0792"},"stateLocatedIn":{"name":"MD"},"isPartOf":"Series:
373
+ Photographic Prints Documenting Programs and Activities of the Bureau of Agricultural
374
+ Economics and Predecessor Agencies, ca. 1922 - ca. 1947","date":{"displayDate":"04/1941","end":"1941-04","begin":"1941-04"},"type":"image","creator":"Department
375
+ of Agriculture. Bureau of Agricultural Economics. Division of Economic Information.
376
+ (ca. 1922 - ca. 1953)"},"ingestType":"item","@id":"http://dp.la/api/items/20040732cd29f94d6a3827cb3254a38b","originalRecord":{"contributors":{"contributor":{"contributor-id":"5307166","num":"1","standard":"Y","contributor-display":"Rusinow,
377
+ Irving","contributor-type":"Photographer","contributor-record-type":"PER"}},"use-restriction":{"use-status":"Unrestricted","specific-use-restrictions":null},"created-timestamp":"1/20/2013
378
+ 16:0:59","local-identifier-desc":"83-G-41934","indexable-dates":{"date-range":"[g_x64_30,
379
+ b_x4_486, b_x4_481, g_x128_15, b_x2_961, g_x8_243, g_x32_60, g_x4_480, b_x8_242,
380
+ g_x16_120, g_x16_121, b_x8_241, g_x8_240]"},"variant-control-numbers":{"variant-control-number":{"variant-type":"NAIL
381
+ Control Number","num":"1","variant-number-desc":"NWDNS-83-G-41934","mlr":"false","variant-number":"NWDNS-83-G-41934"}},"access-restriction":{"restriction-status":"Unrestricted","specific-access-restrictions":null},"title-date":"04/1941","parent":{"parent-id":"521048","parent-title":"Photographic
382
+ Prints Documenting Programs and Activities of the Bureau of Agricultural Economics
383
+ and Predecessor Agencies, compiled ca. 1922 - ca. 1947, documenting the period
384
+ ca. 1911 - ca. 1947","parent-lod":"Series"},"general-records-types":{"general-records-type":{"general-records-type-desc":"Photographs
385
+ and other Graphic Materials","general-records-type-id":"4237050","num":"1"}},"arc-id-desc":"522123","physical-occurrences":{"physical-occurrence":{"copy-status":"Preservation-Reproduction-Reference","media-occurrences":{"media-occurrence":{"num":"1","media-type":"Photographic
386
+ Print"}},"reference-units":{"reference-unit":{"summary":"true","phone":"301-837-0561","num":"1","fax":"301-837-3621","email":"stillpixorder@nara.gov","name":"National
387
+ Archives at College Park - Still Pictures","mailcode":"RD-DC-S","state":"MD","address1":"National
388
+ Archives at College Park","address2":"8601 Adelphi Road","ref-id":"31","postcode":"20740-6001","city":"College
389
+ Park"}}}},"creators":{"creator":{"summary":"true","creator-record-type":"ORG","creator-display":"Department
390
+ of Agriculture. Bureau of Agricultural Economics. Division of Economic Information.\t
391
+ (ca. 1922 - ca. 1953)","num":"1","standard":"Y","creator-id":"1105712","creator-type":"Most
392
+ Recent"}},"title-only":"Haskell County, Kansas. Miscellaneous scenes - Chicken
393
+ yard with woman in background.","title":"Haskell County, Kansas. Miscellaneous
394
+ scenes - Chicken yard with woman in background.","production-dates":{"production-date":"04/1941"},"scope-content-note":"Full
395
+ caption reads as follows: Haskell County, Kansas. Miscellaneous scenes - Chicken
396
+ yard with woman in background.\n","_id":"522123","arc-id":"522123","level-of-desc":{"lod-display":"Item","level-id":"NAVI"},"parent-control-group":{"parent-control-lod":"Record
397
+ Group","parent-control-id":"83","parent-control-title":"Records of the Bureau
398
+ of Agricultural Economics, 1876 - 1959"},"sequence-number":"1075","edited-timestamp":"[g_x32_364,
399
+ g_x8_1457, b_x1_11660, g_x2_5830, g_x128_91, g_x16_728, g_x64_182, g_x4_2915]","hierarchy":{"hierarchy-item":[{"hierarchy-item-id":"521048","hierarchy-item-inclusive-dates":"ca.
400
+ 1922 - ca. 1947","hierarchy-item-lod":"Series","hierarchy-item-title":"Photographic
401
+ Prints Documenting Programs and Activities of the Bureau of Agricultural Economics
402
+ and Predecessor Agencies, ca. 1922 - ca. 1947"},{"hierarchy-item-id":"412","hierarchy-item-record-group-number":"83","hierarchy-item-lod":"Record
403
+ Group","hierarchy-item-title":"Records of the Bureau of Agricultural Economics,
404
+ 1876 - 1959"}]},"objects":{"object":{"thumbnail-url":"http://media.nara.gov/media/images/19/26/19-2555t.gif","num":"1","object-sequence-number":"1","mime-type":"image/gif","file-size":"107699","file-url":"http://media.nara.gov/media/images/19/26/19-2555a.gif"}},"local-identifier":"83-G-41934"},"score":1.2340382}],"facets":[]}'
405
+ http_version:
406
+ recorded_at: Sat, 04 May 2013 14:45:39 GMT
407
+ recorded_with: VCR 2.4.0
@@ -0,0 +1,15 @@
1
+ require 'DPLibrary'
2
+ require 'rspec'
3
+ require 'vcr'
4
+
5
+ VCR.configure do |config|
6
+ config.configure_rspec_metadata!
7
+ config.cassette_library_dir = 'spec/cassettes'
8
+ config.hook_into :faraday
9
+ config.default_cassette_options = { :record => :new_episodes, :erb => true }
10
+ end
11
+
12
+ RSpec.configure do |config|
13
+ config.mock_with :rspec
14
+ config.treat_symbols_as_metadata_keys_with_true_values = true
15
+ end
metadata ADDED
@@ -0,0 +1,203 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: DPLibrary
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - phereford
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-05-05 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: faraday
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 0.8.7
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: 0.8.7
30
+ - !ruby/object:Gem::Dependency
31
+ name: faraday_middleware
32
+ requirement: !ruby/object:Gem::Requirement
33
+ none: false
34
+ requirements:
35
+ - - ~>
36
+ - !ruby/object:Gem::Version
37
+ version: 0.9.0
38
+ type: :runtime
39
+ prerelease: false
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ version: 0.9.0
46
+ - !ruby/object:Gem::Dependency
47
+ name: rake
48
+ requirement: !ruby/object:Gem::Requirement
49
+ none: false
50
+ requirements:
51
+ - - ~>
52
+ - !ruby/object:Gem::Version
53
+ version: 10.0.3
54
+ type: :runtime
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: 10.0.3
62
+ - !ruby/object:Gem::Dependency
63
+ name: rspec
64
+ requirement: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ~>
68
+ - !ruby/object:Gem::Version
69
+ version: 2.13.0
70
+ type: :development
71
+ prerelease: false
72
+ version_requirements: !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ~>
76
+ - !ruby/object:Gem::Version
77
+ version: 2.13.0
78
+ - !ruby/object:Gem::Dependency
79
+ name: vcr
80
+ requirement: !ruby/object:Gem::Requirement
81
+ none: false
82
+ requirements:
83
+ - - ~>
84
+ - !ruby/object:Gem::Version
85
+ version: 2.4.0
86
+ type: :development
87
+ prerelease: false
88
+ version_requirements: !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ~>
92
+ - !ruby/object:Gem::Version
93
+ version: 2.4.0
94
+ - !ruby/object:Gem::Dependency
95
+ name: pry
96
+ requirement: !ruby/object:Gem::Requirement
97
+ none: false
98
+ requirements:
99
+ - - ! '>='
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
102
+ type: :development
103
+ prerelease: false
104
+ version_requirements: !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ! '>='
108
+ - !ruby/object:Gem::Version
109
+ version: '0'
110
+ - !ruby/object:Gem::Dependency
111
+ name: bundler
112
+ requirement: !ruby/object:Gem::Requirement
113
+ none: false
114
+ requirements:
115
+ - - ~>
116
+ - !ruby/object:Gem::Version
117
+ version: '1.3'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ none: false
122
+ requirements:
123
+ - - ~>
124
+ - !ruby/object:Gem::Version
125
+ version: '1.3'
126
+ - !ruby/object:Gem::Dependency
127
+ name: rake
128
+ requirement: !ruby/object:Gem::Requirement
129
+ none: false
130
+ requirements:
131
+ - - ! '>='
132
+ - !ruby/object:Gem::Version
133
+ version: '0'
134
+ type: :development
135
+ prerelease: false
136
+ version_requirements: !ruby/object:Gem::Requirement
137
+ none: false
138
+ requirements:
139
+ - - ! '>='
140
+ - !ruby/object:Gem::Version
141
+ version: '0'
142
+ description: Ruby API wrapper for the Digital Public Library of America API
143
+ email:
144
+ - phereford@gmail.com
145
+ executables: []
146
+ extensions: []
147
+ extra_rdoc_files: []
148
+ files:
149
+ - .gitignore
150
+ - DPLibrary.gemspec
151
+ - Gemfile
152
+ - LICENSE.txt
153
+ - README.md
154
+ - Rakefile
155
+ - lib/DPLibrary.rb
156
+ - lib/DPLibrary/base.rb
157
+ - lib/DPLibrary/collection.rb
158
+ - lib/DPLibrary/configuration.rb
159
+ - lib/DPLibrary/connection.rb
160
+ - lib/DPLibrary/document.rb
161
+ - lib/DPLibrary/document_collection.rb
162
+ - lib/DPLibrary/original_record.rb
163
+ - lib/DPLibrary/provider.rb
164
+ - lib/DPLibrary/request.rb
165
+ - lib/DPLibrary/version.rb
166
+ - spec/DPLibrary/item_spec.rb
167
+ - spec/cassettes/DPLibrary_Item/_new/.yml
168
+ - spec/spec_helper.rb
169
+ homepage: http://github.com/pford/DPLibrary
170
+ licenses:
171
+ - MIT
172
+ post_install_message:
173
+ rdoc_options: []
174
+ require_paths:
175
+ - lib
176
+ required_ruby_version: !ruby/object:Gem::Requirement
177
+ none: false
178
+ requirements:
179
+ - - ! '>='
180
+ - !ruby/object:Gem::Version
181
+ version: '0'
182
+ segments:
183
+ - 0
184
+ hash: 1547178292703935714
185
+ required_rubygems_version: !ruby/object:Gem::Requirement
186
+ none: false
187
+ requirements:
188
+ - - ! '>='
189
+ - !ruby/object:Gem::Version
190
+ version: '0'
191
+ segments:
192
+ - 0
193
+ hash: 1547178292703935714
194
+ requirements: []
195
+ rubyforge_project:
196
+ rubygems_version: 1.8.24
197
+ signing_key:
198
+ specification_version: 3
199
+ summary: A ruby gem that is an API wrapper for the DPLA
200
+ test_files:
201
+ - spec/DPLibrary/item_spec.rb
202
+ - spec/cassettes/DPLibrary_Item/_new/.yml
203
+ - spec/spec_helper.rb