fma_realestate 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +22 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +111 -0
- data/Rakefile +6 -0
- data/fma_realestate.gemspec +26 -0
- data/lib/fma_realestate.rb +21 -0
- data/lib/fma_realestate/cass.rb +7 -0
- data/lib/fma_realestate/client.rb +79 -0
- data/lib/fma_realestate/exceptions.rb +7 -0
- data/lib/fma_realestate/public_record.rb +19 -0
- data/lib/fma_realestate/version.rb +3 -0
- data/spec/fixtures/search_by_address.json +244 -0
- data/spec/fixtures/search_by_address_advanced.json +244 -0
- data/spec/fixtures/search_by_advanced.json +215 -0
- data/spec/fixtures/search_by_global.json +4205 -0
- data/spec/fixtures/tiger.json +32 -0
- data/spec/fma_realestate/cass_spec.rb +47 -0
- data/spec/fma_realestate/public_record_spec.rb +184 -0
- data/spec/fma_realestate_spec.rb +16 -0
- data/spec/spec_helper.rb +17 -0
- data/spec/support/request_fixture_helper.rb +5 -0
- data/spec/support/shared_examples.rb +50 -0
- metadata +148 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: c85b2b133e4ffb9894d542a7004a4e7b37fda1df
|
4
|
+
data.tar.gz: 3190a4aaaca7faf5f969ddfd7d5d8173e108183e
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 1643524c0b314960ccb8a8fb81ca96698875b79e034b1eeb23ad39e5fdd2acff8f1007eed85348b4944151312a311cfdf384fbfeefee05c3877276d13d8b1159
|
7
|
+
data.tar.gz: af381df429c434bf77c009ba676925c17452027db353a75d61afeb53b91c4820830bb054bc6c8a95fe1dfb7775119c144574459a9e57f8fa62ce3ba72b5c5b1a
|
data/.gitignore
ADDED
@@ -0,0 +1,22 @@
|
|
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
|
18
|
+
*.bundle
|
19
|
+
*.so
|
20
|
+
*.o
|
21
|
+
*.a
|
22
|
+
mkmf.log
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2015 Blaine Johnson
|
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,111 @@
|
|
1
|
+
# FmaRealestate
|
2
|
+
|
3
|
+
FMA Real Estate and CASS Ruby Client
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'fma_realestate'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install fma_realestate
|
18
|
+
|
19
|
+
## Requirements
|
20
|
+
|
21
|
+
* Ruby 1.8.7 or above
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
```ruby
|
26
|
+
# Global config
|
27
|
+
# if using rails, create initializer: /config/initializers/fma_realestate.rb
|
28
|
+
FmaRealestate.configure do |config|
|
29
|
+
config.access_token = 'your_access_token'
|
30
|
+
end
|
31
|
+
|
32
|
+
# or
|
33
|
+
|
34
|
+
FmaRealestate.access_token = 'your_access_token'
|
35
|
+
```
|
36
|
+
|
37
|
+
```ruby
|
38
|
+
# Sample client configuration, shown with default values:
|
39
|
+
config = {
|
40
|
+
:access_token => FmaRealestate.access_token, # initialize the client with an access token
|
41
|
+
:raise_errors => false, # choose between returning false or raising a proper exception when API calls fails
|
42
|
+
|
43
|
+
# Connection properties
|
44
|
+
:retries => 0, # automatically retry a certain number of times before returning
|
45
|
+
:read_timeout => 10, # set longer read_timeout, default is 10 seconds
|
46
|
+
:write_timeout => 10, # set longer write_timeout, default is 10 seconds
|
47
|
+
:persistent => false # when true, make multiple requests calls using a single persistent connection. Use +close_connection+ method on the client to manually clean up sockets
|
48
|
+
}
|
49
|
+
```
|
50
|
+
|
51
|
+
```ruby
|
52
|
+
# Example Cass client usage
|
53
|
+
cass_client = Cass.new # using default config
|
54
|
+
response_hash = cass_client.tiger(
|
55
|
+
:street_address => "123 N Easy St.", # optional
|
56
|
+
:city => "Boulder", # optional
|
57
|
+
:state => "CO", # optional
|
58
|
+
:zip => "" # optional
|
59
|
+
)
|
60
|
+
```
|
61
|
+
|
62
|
+
```ruby
|
63
|
+
# Example PublicRecord client usage
|
64
|
+
public_record_client = RealEstate.new # using default config
|
65
|
+
|
66
|
+
# PublicRecord#search_by_address
|
67
|
+
response_hash = public_record_client.search_by_address(
|
68
|
+
:street_address => "123 N Easy St.", # optional
|
69
|
+
:city => "Boulder", # optional
|
70
|
+
:state => "CO", # optional
|
71
|
+
:zip => "" # optional
|
72
|
+
)
|
73
|
+
|
74
|
+
# PublicRecord#search_by_advanced
|
75
|
+
response_hash = public_record_client.search_by_advanced(
|
76
|
+
:legal_description => "" # optional
|
77
|
+
:owner_name => "Jon Doe" # optional
|
78
|
+
:street_address => "123 N Easy St.", # optional
|
79
|
+
:city => "Boulder", # optional
|
80
|
+
:state => "CO", # optional
|
81
|
+
:zip => "", # optional
|
82
|
+
:county => "Boulder" # optional
|
83
|
+
)
|
84
|
+
|
85
|
+
# PublicRecord#search_by_address_advanced
|
86
|
+
response_hash = public_record_client.search_by_address_advanced(
|
87
|
+
:legal_description => "" # optional
|
88
|
+
:owner_name => "Jon Doe" # optional
|
89
|
+
:street_address => "123 N Easy St.", # optional
|
90
|
+
:city => "Boulder", # optional
|
91
|
+
:state => "CO", # optional
|
92
|
+
:zip => "", # optional
|
93
|
+
:county => "Boulder" # optional
|
94
|
+
)
|
95
|
+
|
96
|
+
# PublicRecord#search_by_global
|
97
|
+
response_hash = public_record_client.search_by_address_advanced(
|
98
|
+
:q => "123 N Easy St." # required
|
99
|
+
)
|
100
|
+
```
|
101
|
+
|
102
|
+
## FmaRealstate API Reference
|
103
|
+
Please refer to the <a href="http://realestate.firstmoversadvantage.com/api_documentation" target="_blank">official api documentation</a>
|
104
|
+
|
105
|
+
## Contributing
|
106
|
+
|
107
|
+
1. Fork it ( https://github.com/[my-github-username]/fma_realestate/fork )
|
108
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
109
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
110
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
111
|
+
5. Create a new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'fma_realestate/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "fma_realestate"
|
8
|
+
spec.version = FmaRealestate::VERSION
|
9
|
+
spec.authors = ["Blaine Johnson"]
|
10
|
+
spec.email = ["customer.service@firstmoversadvantage.com"]
|
11
|
+
spec.summary = "FMA Real Estate and CASS Ruby Client"
|
12
|
+
# spec.description = %q{TODO: Write a longer description. Optional.}
|
13
|
+
spec.homepage = "http://realestate.firstmoversadvantage.com/"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0")
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_dependency 'excon', '~> 0.37'
|
22
|
+
spec.add_dependency 'json', '~> 1.5'
|
23
|
+
spec.add_development_dependency "bundler", "~> 1.6"
|
24
|
+
spec.add_development_dependency "rake"
|
25
|
+
spec.add_development_dependency "rspec"
|
26
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
require 'excon'
|
2
|
+
require 'json'
|
3
|
+
|
4
|
+
require "fma_realestate/version"
|
5
|
+
require "fma_realestate/client"
|
6
|
+
require "fma_realestate/cass"
|
7
|
+
require "fma_realestate/public_record"
|
8
|
+
require "fma_realestate/exceptions"
|
9
|
+
|
10
|
+
module FmaRealestate
|
11
|
+
|
12
|
+
def self.configure
|
13
|
+
yield self
|
14
|
+
true
|
15
|
+
end
|
16
|
+
|
17
|
+
class << self
|
18
|
+
attr_accessor :access_token
|
19
|
+
end
|
20
|
+
|
21
|
+
end
|
@@ -0,0 +1,79 @@
|
|
1
|
+
module FmaRealestate
|
2
|
+
class Client
|
3
|
+
BASE_URI = 'http://realestate.firstmoversadvantage.com'.freeze
|
4
|
+
|
5
|
+
def initialize(config = {})
|
6
|
+
@access_token = config[:access_token] || FmaRealestate.access_token
|
7
|
+
@raise_errors = config[:raise_errors] || false
|
8
|
+
@retries = config[:retries] || 0
|
9
|
+
@read_timeout = config[:read_timeout] || 10
|
10
|
+
@write_timeout = config[:write_timeout] || 10
|
11
|
+
@connection = Excon.new(BASE_URI, :persistent => config[:persistent] || false)
|
12
|
+
end
|
13
|
+
|
14
|
+
# Closes the connection underlying socket.
|
15
|
+
# Use when you employ persistent connections and are done with your requests.
|
16
|
+
def close_connection
|
17
|
+
@connection.reset
|
18
|
+
end
|
19
|
+
|
20
|
+
protected
|
21
|
+
|
22
|
+
def get(path, params = {})
|
23
|
+
run(:get, path, [200], params)
|
24
|
+
end
|
25
|
+
|
26
|
+
def run(verb, path, expected_status_codes, params_or_body = nil, idempotent = true)
|
27
|
+
packet = {
|
28
|
+
:idempotent => idempotent,
|
29
|
+
:expects => expected_status_codes,
|
30
|
+
:method => verb,
|
31
|
+
:path => path,
|
32
|
+
:read_timeout => @read_timeout,
|
33
|
+
:write_timeout => @write_timeout,
|
34
|
+
:retry_limit => @retries,
|
35
|
+
:headers => {
|
36
|
+
'Accept' => 'application/json',
|
37
|
+
'User-Agent' => 'FmaRealestate Ruby Client'
|
38
|
+
}
|
39
|
+
}
|
40
|
+
if params_or_body.is_a?(Hash)
|
41
|
+
packet.merge!(:query => params_or_body)
|
42
|
+
else
|
43
|
+
packet.merge!(:body => params_or_body)
|
44
|
+
end
|
45
|
+
|
46
|
+
if !@access_token.nil? && @access_token != ''
|
47
|
+
packet[:headers].merge!('Authorization' => "Token token=#{@access_token}")
|
48
|
+
end
|
49
|
+
|
50
|
+
response = request_error_handler do
|
51
|
+
@connection.request(packet)
|
52
|
+
end
|
53
|
+
|
54
|
+
response ? ::JSON.load(response.body) : false
|
55
|
+
end
|
56
|
+
|
57
|
+
def request_error_handler(&blk)
|
58
|
+
begin
|
59
|
+
yield blk if block_given?
|
60
|
+
rescue Excon::Errors::NotFound => exception
|
61
|
+
raise(ResourceNotFound, "Error: #{exception.message}")
|
62
|
+
rescue Excon::Errors::BadRequest => exception
|
63
|
+
raise(BadRequest, "Error: #{exception.message}")
|
64
|
+
rescue Excon::Errors::Unauthorized => exception
|
65
|
+
raise(AuthenticationError, "Error: #{exception.message}")
|
66
|
+
rescue Excon::Errors::Error => exception
|
67
|
+
# Catch all others errors. Samples:
|
68
|
+
#
|
69
|
+
# <Excon::Errors::SocketError: Connection refused - connect(2) (Errno::ECONNREFUSED)>
|
70
|
+
# <Excon::Errors::InternalServerError: Expected([200, 204, 404]) <=> Actual(500 InternalServerError)>
|
71
|
+
# <Excon::Errors::Timeout: read timeout reached>
|
72
|
+
# <Excon::Errors::BadGateway: Expected([200]) <=> Actual(502 Bad Gateway)>
|
73
|
+
raise(HTTPError, "Error: #{exception.message}")
|
74
|
+
end
|
75
|
+
rescue RequestError
|
76
|
+
@raise_errors ? raise : false
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
module FmaRealestate
|
2
|
+
class PublicRecord < Client
|
3
|
+
def search_by_address(params={})
|
4
|
+
get('/api/public_records/search_by_address', params)
|
5
|
+
end
|
6
|
+
|
7
|
+
def search_by_advanced(params={})
|
8
|
+
get('/api/public_records/search_by_advanced', params)
|
9
|
+
end
|
10
|
+
|
11
|
+
def search_by_address_advanced(params={})
|
12
|
+
get('/api/public_records/search_by_address_advanced', params)
|
13
|
+
end
|
14
|
+
|
15
|
+
def search_by_global(params={})
|
16
|
+
get('/api/public_records/search_by_global', params)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,244 @@
|
|
1
|
+
{
|
2
|
+
"cass": {
|
3
|
+
"address_type": "S",
|
4
|
+
"census_block": "3015",
|
5
|
+
"census_tract": "012204",
|
6
|
+
"city": "Boulder",
|
7
|
+
"county_name": "Boulder",
|
8
|
+
"county_number": "013",
|
9
|
+
"dpbc": "25",
|
10
|
+
"dpv_confirmation_indicator": "Y",
|
11
|
+
"fips": "08013",
|
12
|
+
"in_city": "Boulder",
|
13
|
+
"in_state": "CO",
|
14
|
+
"in_street_address": "1325 Pearl Street",
|
15
|
+
"in_zip": "80302",
|
16
|
+
"latitude": 40.01831,
|
17
|
+
"longitude": -105.278027,
|
18
|
+
"post_directional": "",
|
19
|
+
"pre_directional": "",
|
20
|
+
"return_code": "1",
|
21
|
+
"search_key": "80302524725",
|
22
|
+
"state": "CO",
|
23
|
+
"state_number": "08",
|
24
|
+
"street_address": "1325 Pearl St",
|
25
|
+
"street_name": "PEARL",
|
26
|
+
"street_number": "1325",
|
27
|
+
"street_suffix": "ST",
|
28
|
+
"unit_number": "",
|
29
|
+
"unit_type": "",
|
30
|
+
"zip_4": "5247",
|
31
|
+
"zip_5": "80302",
|
32
|
+
"zip_9": "80302-5247"
|
33
|
+
},
|
34
|
+
"count": 1,
|
35
|
+
"results": [
|
36
|
+
{
|
37
|
+
"assr_year": "2013",
|
38
|
+
"cass_city": "Boulder",
|
39
|
+
"cass_dpbc": "25",
|
40
|
+
"cass_return_code": 1,
|
41
|
+
"cass_search_key": "80302524725",
|
42
|
+
"cass_state": "CO",
|
43
|
+
"cass_street_address": "1325 Pearl St",
|
44
|
+
"cass_unit_number": "",
|
45
|
+
"cass_unit_type": "",
|
46
|
+
"cass_updated_on": "2014-12-14",
|
47
|
+
"cass_zip_4": "5247",
|
48
|
+
"cass_zip_5": "80302",
|
49
|
+
"core_based_statistical_area_code": "14500",
|
50
|
+
"created_at": "2014-12-15T04:26:34.000Z",
|
51
|
+
"fips_place_code": "07850",
|
52
|
+
"id": 48287440,
|
53
|
+
"last_assr_upd": "20140611",
|
54
|
+
"last_tax_updt": "20140311",
|
55
|
+
"latitude": "40.01831",
|
56
|
+
"longitude": "-105.278027",
|
57
|
+
"minor_civil_division_code": "90342",
|
58
|
+
"mm_fips_county_name": "BOULDER",
|
59
|
+
"mm_fips_muni_code": "013",
|
60
|
+
"mm_fips_state_code": "08",
|
61
|
+
"mm_muni_name": "BOULDER",
|
62
|
+
"mm_state_code": "CO",
|
63
|
+
"process_id": "148404",
|
64
|
+
"sa_addtns_sqft": "0",
|
65
|
+
"sa_appraise_val": "0",
|
66
|
+
"sa_appraise_yr": "2013",
|
67
|
+
"sa_architecture_code": "",
|
68
|
+
"sa_attic_sqft": "0",
|
69
|
+
"sa_bldg_code": "8",
|
70
|
+
"sa_bldg_shape_code": "",
|
71
|
+
"sa_bldg_sqft": "0",
|
72
|
+
"sa_blk_nbr_1": "95",
|
73
|
+
"sa_blk_nbr_2": "",
|
74
|
+
"sa_bsmt_2_code": "",
|
75
|
+
"sa_bsmt_fin_sqft": "0",
|
76
|
+
"sa_bsmt_unfin_sqft": "0",
|
77
|
+
"sa_census_block_group": "3",
|
78
|
+
"sa_census_tract": "012204",
|
79
|
+
"sa_company_flag": "Y",
|
80
|
+
"sa_condition_code": "4.0",
|
81
|
+
"sa_construction_code": "1",
|
82
|
+
"sa_construction_qlty": "8.0",
|
83
|
+
"sa_cool_code": "",
|
84
|
+
"sa_date_noval_transfer": "",
|
85
|
+
"sa_date_transfer": "",
|
86
|
+
"sa_doc_nbr_fmt": "",
|
87
|
+
"sa_doc_nbr_noval": "",
|
88
|
+
"sa_exemp_flag_1": "",
|
89
|
+
"sa_exemp_flag_2": "",
|
90
|
+
"sa_exemp_flag_3": "",
|
91
|
+
"sa_exemp_flag_4": "",
|
92
|
+
"sa_exemp_flag_5": "",
|
93
|
+
"sa_exemp_flag_6": "",
|
94
|
+
"sa_exemp_val_1": "0",
|
95
|
+
"sa_exemp_val_2": "0",
|
96
|
+
"sa_exemp_val_3": "0",
|
97
|
+
"sa_exemp_val_4": "0",
|
98
|
+
"sa_exemp_val_5": "0",
|
99
|
+
"sa_exemp_val_6": "0",
|
100
|
+
"sa_exterior_1_code": "",
|
101
|
+
"sa_fin_sqft_1": "75623",
|
102
|
+
"sa_fin_sqft_2": "0",
|
103
|
+
"sa_fin_sqft_3": "0",
|
104
|
+
"sa_fin_sqft_4": "0",
|
105
|
+
"sa_fin_sqft_tot": "75623",
|
106
|
+
"sa_fireplace_code": "",
|
107
|
+
"sa_foundation_code": "",
|
108
|
+
"sa_garage_carport": "",
|
109
|
+
"sa_geo_qlty_code": "0",
|
110
|
+
"sa_grg_1_code": "",
|
111
|
+
"sa_grg_sqft_1": "0",
|
112
|
+
"sa_heat_code": "",
|
113
|
+
"sa_heat_src_fuel_code": "",
|
114
|
+
"sa_imprv_pct": "30.39",
|
115
|
+
"sa_imprv_pct_appraise": "",
|
116
|
+
"sa_imprv_pct_mrkt": "30",
|
117
|
+
"sa_inactive_parcel_flag": "",
|
118
|
+
"sa_lgl_dscrptn": "PUBLIC SQUARE BLK BETWEEN BLK 94 & 95 BOULDER O T",
|
119
|
+
"sa_lgl_unit": "",
|
120
|
+
"sa_lot_depth": "0",
|
121
|
+
"sa_lot_nbr_1": "1",
|
122
|
+
"sa_lot_nbr_2": "",
|
123
|
+
"sa_lot_nbr_3": "",
|
124
|
+
"sa_lot_width": "0",
|
125
|
+
"sa_lotsize": "89507.0000",
|
126
|
+
"sa_mail_city": "BOULDER",
|
127
|
+
"sa_mail_crrt": "B900",
|
128
|
+
"sa_mail_dir": "",
|
129
|
+
"sa_mail_fraction": "",
|
130
|
+
"sa_mail_house_nbr": "",
|
131
|
+
"sa_mail_plus_4": "0471",
|
132
|
+
"sa_mail_post_dir": "",
|
133
|
+
"sa_mail_state": "CO",
|
134
|
+
"sa_mail_street_name": "PO BOX 471",
|
135
|
+
"sa_mail_suf": "",
|
136
|
+
"sa_mail_unit_pre": "",
|
137
|
+
"sa_mail_unit_val": "",
|
138
|
+
"sa_mail_zip": "80306",
|
139
|
+
"sa_nbr_bath": "0.00",
|
140
|
+
"sa_nbr_bath_1qtr": "0",
|
141
|
+
"sa_nbr_bath_3qtr": "0",
|
142
|
+
"sa_nbr_bath_bsmt_full": "0",
|
143
|
+
"sa_nbr_bath_bsmt_half": "0",
|
144
|
+
"sa_nbr_bath_dq": "0.00",
|
145
|
+
"sa_nbr_bath_full": "0",
|
146
|
+
"sa_nbr_bath_half": "0",
|
147
|
+
"sa_nbr_bedrms": "0",
|
148
|
+
"sa_nbr_rms": "0",
|
149
|
+
"sa_nbr_stories": "0",
|
150
|
+
"sa_nbr_units": "0",
|
151
|
+
"sa_owner_1": "COUNTY OF BOULDER",
|
152
|
+
"sa_owner_1_et_flag": "",
|
153
|
+
"sa_owner_1_first": "COUNTY OF BOULDER",
|
154
|
+
"sa_owner_1_group": "",
|
155
|
+
"sa_owner_1_last": "",
|
156
|
+
"sa_owner_1_mid": "",
|
157
|
+
"sa_owner_1_sp_first": "",
|
158
|
+
"sa_owner_1_sp_mid": "",
|
159
|
+
"sa_owner_1_sp_suf": "",
|
160
|
+
"sa_owner_1_suf": "",
|
161
|
+
"sa_owner_1_trust_flag": "",
|
162
|
+
"sa_owner_1_type": "1",
|
163
|
+
"sa_owner_2": "",
|
164
|
+
"sa_owner_2_et_flag": "",
|
165
|
+
"sa_owner_2_first": "",
|
166
|
+
"sa_owner_2_group": "",
|
167
|
+
"sa_owner_2_last": "",
|
168
|
+
"sa_owner_2_mid": "",
|
169
|
+
"sa_owner_2_sp_first": "",
|
170
|
+
"sa_owner_2_sp_mid": "",
|
171
|
+
"sa_owner_2_sp_suf": "",
|
172
|
+
"sa_owner_2_suf": "",
|
173
|
+
"sa_owner_2_trust_flag": "",
|
174
|
+
"sa_owner_2_type": "",
|
175
|
+
"sa_ownership_status_code": "",
|
176
|
+
"sa_parcel_account_nbr": "",
|
177
|
+
"sa_parcel_nbr_alt": "",
|
178
|
+
"sa_parcel_nbr_change_yr": "2006",
|
179
|
+
"sa_parcel_nbr_previous": "0085095",
|
180
|
+
"sa_parcel_nbr_primary": "R0085095",
|
181
|
+
"sa_parcel_nbr_reference": "146330324001",
|
182
|
+
"sa_patio_porch_code": "",
|
183
|
+
"sa_pool_code": "",
|
184
|
+
"sa_privacy_code": "",
|
185
|
+
"sa_property_id": 20763722,
|
186
|
+
"sa_quarter": "SW",
|
187
|
+
"sa_quarter_quarter": "",
|
188
|
+
"sa_range": "70W",
|
189
|
+
"sa_roof_code": "",
|
190
|
+
"sa_scm_id": 93,
|
191
|
+
"sa_section": "30",
|
192
|
+
"sa_shell_parcel_flag": "",
|
193
|
+
"sa_site_city": "BOULDER",
|
194
|
+
"sa_site_crrt": "C034",
|
195
|
+
"sa_site_dir": "",
|
196
|
+
"sa_site_fraction": "",
|
197
|
+
"sa_site_house_nbr": "1325",
|
198
|
+
"sa_site_mail_same": "N",
|
199
|
+
"sa_site_plus_4": "5247",
|
200
|
+
"sa_site_post_dir": "",
|
201
|
+
"sa_site_state": "CO",
|
202
|
+
"sa_site_street_name": "PEARL",
|
203
|
+
"sa_site_suf": "ST",
|
204
|
+
"sa_site_unit_pre": "",
|
205
|
+
"sa_site_unit_val": "",
|
206
|
+
"sa_site_zip": "80302",
|
207
|
+
"sa_sqft": "75623",
|
208
|
+
"sa_sqft_assr_tot": "75623",
|
209
|
+
"sa_sqft_dq": "0",
|
210
|
+
"sa_structure_code": "12",
|
211
|
+
"sa_structure_nbr": "3",
|
212
|
+
"sa_subdivision": "BOULDER O T EAST & WEST & NORT",
|
213
|
+
"sa_tax_val": "0.00",
|
214
|
+
"sa_tax_year_delinq": "0",
|
215
|
+
"sa_township": "01N",
|
216
|
+
"sa_tract_nbr": "0",
|
217
|
+
"sa_val_appraise_imprv": "0",
|
218
|
+
"sa_val_appraise_land": "0",
|
219
|
+
"sa_val_assd": "4499872",
|
220
|
+
"sa_val_assd_imprv": "1367872",
|
221
|
+
"sa_val_assd_land": "3132000",
|
222
|
+
"sa_val_assd_prev": "4499872",
|
223
|
+
"sa_val_full_cash": "0",
|
224
|
+
"sa_val_market": "15516800",
|
225
|
+
"sa_val_market_imprv": "4716800",
|
226
|
+
"sa_val_market_land": "10800000",
|
227
|
+
"sa_val_transfer": "0",
|
228
|
+
"sa_view_code": "",
|
229
|
+
"sa_x_coord": "-105.278183",
|
230
|
+
"sa_y_coord": "40.018799",
|
231
|
+
"sa_yr_apn_added": "2006",
|
232
|
+
"sa_yr_blt": "1935",
|
233
|
+
"sa_yr_blt_effect": "1970",
|
234
|
+
"sa_yr_land_appraise": "2013",
|
235
|
+
"sa_zoning": "9131",
|
236
|
+
"sr_unique_id": "",
|
237
|
+
"sr_unique_id_noval": "0",
|
238
|
+
"taxyear": "0",
|
239
|
+
"updated_at": "2014-12-15T04:26:34.000Z",
|
240
|
+
"use_code_muni": "9139",
|
241
|
+
"use_code_std": "MGOV"
|
242
|
+
}
|
243
|
+
]
|
244
|
+
}
|