mits 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (105) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -1
  3. data/README.md +4 -4
  4. data/lib/mits.rb +4 -1
  5. data/lib/mits/base_mapper.rb +20 -0
  6. data/lib/mits/document.rb +16 -5
  7. data/lib/mits/saxerator_ext.rb +8 -1
  8. data/lib/mits/v3.0/address.rb +20 -0
  9. data/lib/mits/v3.0/amenity.rb +12 -0
  10. data/lib/mits/v3.0/company.rb +13 -0
  11. data/lib/mits/v3.0/deposit.rb +13 -0
  12. data/lib/mits/v3.0/fees.rb +17 -0
  13. data/lib/mits/v3.0/file.rb +18 -0
  14. data/lib/mits/v3.0/floorplan.rb +13 -0
  15. data/lib/mits/v3.0/mapper.rb +50 -0
  16. data/lib/mits/v3.0/mapper/address_mapper.rb +35 -0
  17. data/lib/mits/v3.0/mapper/amenities_mapper.rb +19 -0
  18. data/lib/mits/v3.0/mapper/company_mapper.rb +15 -0
  19. data/lib/mits/v3.0/mapper/deposit_mapper.rb +32 -0
  20. data/lib/mits/v3.0/mapper/fees_mapper.rb +19 -0
  21. data/lib/mits/v3.0/mapper/files_mapper.rb +25 -0
  22. data/lib/mits/v3.0/mapper/floorplan_mapper.rb +27 -0
  23. data/lib/mits/v3.0/mapper/pet_policy_mapper.rb +37 -0
  24. data/lib/mits/v3.0/mapper/policy_mapper.rb +12 -0
  25. data/lib/mits/v3.0/mapper/property_mapper.rb +57 -0
  26. data/lib/mits/v3.0/pet.rb +13 -0
  27. data/lib/mits/v3.0/pet_policy.rb +17 -0
  28. data/lib/mits/v3.0/policy.rb +10 -0
  29. data/lib/mits/v3.0/property.rb +23 -0
  30. data/lib/mits/v4.1/address.rb +21 -0
  31. data/lib/mits/v4.1/amenity.rb +21 -0
  32. data/lib/mits/v4.1/company.rb +8 -0
  33. data/lib/mits/v4.1/deposit.rb +8 -0
  34. data/lib/mits/v4.1/fees.rb +8 -0
  35. data/lib/mits/v4.1/file.rb +8 -0
  36. data/lib/mits/v4.1/mapper.rb +45 -0
  37. data/lib/mits/v4.1/mapper/address_mapper.rb +29 -0
  38. data/lib/mits/v4.1/mapper/company_mapper.rb +9 -0
  39. data/lib/mits/v4.1/mapper/property_mapper.rb +48 -0
  40. data/lib/mits/v4.1/mapper/units_mapper.rb +26 -0
  41. data/lib/mits/v4.1/pet.rb +8 -0
  42. data/lib/mits/v4.1/pet_policy.rb +8 -0
  43. data/lib/mits/v4.1/policy.rb +8 -0
  44. data/lib/mits/v4.1/property.rb +22 -0
  45. data/lib/mits/v4.1/unit.rb +13 -0
  46. data/lib/mits/version.rb +1 -1
  47. data/mits.gemspec +5 -4
  48. data/spec/fixtures/MITS_3.0_Property.yml +583 -0
  49. data/spec/fixtures/MITS_3.0_Sample.xml +589 -0
  50. data/spec/fixtures/{property.yml → MITS_4.1_Property.yml} +0 -0
  51. data/spec/fixtures/{mits.xml → MITS_4.1_Sample.xml} +0 -0
  52. data/spec/lib/mits/document_spec.rb +3 -3
  53. data/spec/lib/mits/v3.0/address_spec.rb +21 -0
  54. data/spec/lib/mits/v3.0/amenity_spec.rb +13 -0
  55. data/spec/lib/mits/{entities → v3.0}/company_spec.rb +0 -0
  56. data/spec/lib/mits/v3.0/deposit_spec.rb +14 -0
  57. data/spec/lib/mits/v3.0/fees_spec.rb +18 -0
  58. data/spec/lib/mits/v3.0/file_spec.rb +20 -0
  59. data/spec/lib/mits/v3.0/floorplan_spec.rb +14 -0
  60. data/spec/lib/mits/v3.0/mapper_spec.rb +198 -0
  61. data/spec/lib/mits/v3.0/pet_policy_spec.rb +17 -0
  62. data/spec/lib/mits/v3.0/pet_spec.rb +15 -0
  63. data/spec/lib/mits/v3.0/property_spec.rb +23 -0
  64. data/spec/lib/mits/v4.1/address_spec.rb +22 -0
  65. data/spec/lib/mits/v4.1/amenity_spec.rb +11 -0
  66. data/spec/lib/mits/v4.1/company_spec.rb +0 -0
  67. data/spec/lib/mits/v4.1/deposit_spec.rb +14 -0
  68. data/spec/lib/mits/v4.1/fees_spec.rb +18 -0
  69. data/spec/lib/mits/v4.1/file_spec.rb +20 -0
  70. data/spec/lib/mits/v4.1/mapper_spec.rb +194 -0
  71. data/spec/lib/mits/v4.1/pet_policy_spec.rb +16 -0
  72. data/spec/lib/mits/v4.1/pet_spec.rb +15 -0
  73. data/spec/lib/mits/v4.1/property_spec.rb +23 -0
  74. data/spec/lib/mits/v4.1/unit_spec.rb +14 -0
  75. metadata +112 -53
  76. data/lib/mits/entities/address.rb +0 -16
  77. data/lib/mits/entities/amenity.rb +0 -8
  78. data/lib/mits/entities/company.rb +0 -11
  79. data/lib/mits/entities/deposit.rb +0 -11
  80. data/lib/mits/entities/fees.rb +0 -15
  81. data/lib/mits/entities/file.rb +0 -16
  82. data/lib/mits/entities/pet.rb +0 -11
  83. data/lib/mits/entities/pet_policy.rb +0 -15
  84. data/lib/mits/entities/property.rb +0 -20
  85. data/lib/mits/entities/unit.rb +0 -11
  86. data/lib/mits/mapper.rb +0 -48
  87. data/lib/mits/mappers/address_mapper.rb +0 -29
  88. data/lib/mits/mappers/amenities_mapper.rb +0 -14
  89. data/lib/mits/mappers/company_mapper.rb +0 -11
  90. data/lib/mits/mappers/deposit_mapper.rb +0 -24
  91. data/lib/mits/mappers/fees_mapper.rb +0 -15
  92. data/lib/mits/mappers/files_mapper.rb +0 -19
  93. data/lib/mits/mappers/pet_policy_mapper.rb +0 -28
  94. data/lib/mits/mappers/property_mapper.rb +0 -41
  95. data/lib/mits/mappers/units_mapper.rb +0 -22
  96. data/spec/lib/mits/entities/address_spec.rb +0 -16
  97. data/spec/lib/mits/entities/amenity_spec.rb +0 -8
  98. data/spec/lib/mits/entities/deposit_spec.rb +0 -11
  99. data/spec/lib/mits/entities/fees_spec.rb +0 -15
  100. data/spec/lib/mits/entities/file_spec.rb +0 -17
  101. data/spec/lib/mits/entities/pet_policy_spec.rb +0 -14
  102. data/spec/lib/mits/entities/pet_spec.rb +0 -12
  103. data/spec/lib/mits/entities/property_spec.rb +0 -20
  104. data/spec/lib/mits/entities/unit_spec.rb +0 -11
  105. data/spec/lib/mits/mapper_spec.rb +0 -180
@@ -0,0 +1,26 @@
1
+ module MITS
2
+ module V4_1
3
+ module Mapper
4
+ module UnitsMapper
5
+ def units(tags)
6
+ tags = [tags] unless tags.is_a? Array
7
+ tags.map do |tag|
8
+ Unit.new(bathrooms: try(tag[:UnitBathrooms], :to_f),
9
+ bedrooms: try(tag[:UnitBedrooms], :to_f),
10
+ name: tag[:MarketingName],
11
+ rent: try(tag[:UnitRent], :to_f),
12
+ sqft: unit_sqft(tag))
13
+ end
14
+ end
15
+
16
+ private
17
+
18
+ def unit_sqft(tag)
19
+ min = tag[:MinSquareFeet]
20
+ max = tag[:MaxSquareFeet]
21
+ Range.new(min.to_i, max.to_i)
22
+ end
23
+ end
24
+ end
25
+ end
26
+ end
@@ -0,0 +1,8 @@
1
+ require 'mits/v3.0/pet'
2
+
3
+ module MITS
4
+ module V4_1
5
+ class Pet < V3_0::Pet
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ require 'mits/v3.0/pet_policy'
2
+
3
+ module MITS
4
+ module V4_1
5
+ class PetPolicy < V3_0::PetPolicy
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,8 @@
1
+ require 'mits/v3.0/policy'
2
+
3
+ module MITS
4
+ module V4_1
5
+ class Policy < V3_0::Policy
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,22 @@
1
+ module MITS
2
+ module V4_1
3
+ class Property
4
+ include SimpleObjects::Base
5
+
6
+ attribute :address
7
+ attribute :amenities
8
+ attribute :company_id
9
+ attribute :deposit
10
+ attribute :description
11
+ attribute :fees
12
+ attribute :files
13
+ attribute :id
14
+ attribute :name
15
+ attribute :policy
16
+ attribute :summary
17
+ attribute :type
18
+ attribute :units
19
+ attribute :website
20
+ end
21
+ end
22
+ end
@@ -0,0 +1,13 @@
1
+ module MITS
2
+ module V4_1
3
+ class Unit
4
+ include SimpleObjects::Base
5
+
6
+ attribute :bathrooms
7
+ attribute :bedrooms
8
+ attribute :name
9
+ attribute :rent
10
+ attribute :sqft
11
+ end
12
+ end
13
+ end
data/lib/mits/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module MITS
2
- VERSION = '0.1.0'
2
+ VERSION = '0.2.0'
3
3
  end
data/mits.gemspec CHANGED
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
8
8
  spec.version = MITS::VERSION
9
9
  spec.authors = ['Sean Callan']
10
10
  spec.email = ['seancallan@gmail.com']
11
- spec.summary = 'A SAX powered MITS reader for Ruby.'
12
- spec.description = 'A SAX powered Multifamily Information and Transactions Standard (MITS) reader for Ruby.'
11
+ spec.summary = 'A Multifamily Information and Transactions Standard (MITS) reader for Ruby.'
12
+ spec.description = 'A SAX powered reader for Multifamily Information and Transactions Standard (MITS) files.'
13
13
  spec.homepage = 'https://github.com/doomspork/mits'
14
14
  spec.license = 'MIT'
15
15
 
@@ -18,8 +18,9 @@ Gem::Specification.new do |spec|
18
18
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
19
  spec.require_paths = ['lib']
20
20
 
21
- spec.add_dependency 'simple_objects', '~> 1.1'
22
- spec.add_dependency 'saxerator', '~> 0.9.5'
21
+ spec.add_dependency 'simple_objects', '~> 1.2'
22
+ spec.add_dependency 'saxerator', '~> 0.9.5'
23
+ spec.add_dependency 'versions.rb', '~> 1.1'
23
24
 
24
25
  spec.add_development_dependency 'bundler', '~> 1.7'
25
26
  spec.add_development_dependency 'coveralls', '~> 0.7'
@@ -0,0 +1,583 @@
1
+ ---
2
+ :Identification:
3
+ :IDType: 'ManagementID'
4
+ :IDValue: '6890047'
5
+ :PropertyID:
6
+ :Identification:
7
+ - :IDValue: '89851'
8
+ :IDType: PrimaryID
9
+ - :IDValue: '89851'
10
+ :IDType: SecondaryID
11
+ :MarketingName: Camden Lakes
12
+ :Address:
13
+ :Address: 11401 Dr. Martin Luther King Jr. St N
14
+ :City: Saint Petersburg
15
+ :State: FL
16
+ :PostalCode: '33716'
17
+ :Email: sales@camdenliving.com
18
+ :AddressType: property
19
+ :Phone:
20
+ - :PhoneNumber: 727-577-7557
21
+ :Extension:
22
+ :PhoneType: office
23
+ - :PhoneNumber: 727-579-0280
24
+ :Extension:
25
+ :PhoneType: fax
26
+ :ILS_Identification:
27
+ :RentalType: Unspecified
28
+ :ILS_IdentificationType: Apartment
29
+ :Information:
30
+ :StructureType: Standard
31
+ :UnitCount: '688'
32
+ :YearBuilt: '1982'
33
+ :YearRemodeled: '1999'
34
+ :OfficeHour:
35
+ - :OpenTime: 1:00 PM
36
+ :CloseTime: 5:00 PM
37
+ :Day: Sunday
38
+ - :OpenTime: 10:00 AM
39
+ :CloseTime: 6:00 PM
40
+ :Day: Monday
41
+ - :OpenTime: 10:00 AM
42
+ :CloseTime: 6:00 PM
43
+ :Day: Tuesday
44
+ - :OpenTime: 10:00 AM
45
+ :CloseTime: 6:00 PM
46
+ :Day: Wednesday
47
+ - :OpenTime: 10:00 AM
48
+ :CloseTime: 7:00 PM
49
+ :Day: Thursday
50
+ - :OpenTime: 10:00 AM
51
+ :CloseTime: 6:00 PM
52
+ :Day: Friday
53
+ - :OpenTime: 10:00 AM
54
+ :CloseTime: 5:00 PM
55
+ :Day: Saturday
56
+ :ShortDescription: a short description
57
+ :LongDescription: a very long description
58
+ :LeaseLength:
59
+ :DrivingDirections: 'Located on Dr. Martin Luther King Jr. Street, just north of
60
+ the Gandy Bridge. From Tampa: Take Howard Frankland Bridge to 4th Street Exit
61
+ and we''re located approximately 2 miles on the right.'
62
+ :Amenity:
63
+ - :Description: Extra storage
64
+ :AmenityType: Other
65
+ - :Description: Two outdoor sports courts
66
+ :AmenityType: Other
67
+ - :Description: Two lighted tennis courts
68
+ :AmenityType: Other
69
+ - :Description: Fitness center
70
+ :AmenityType: Other
71
+ - :Description: Online rent payments & maintenance requests
72
+ :AmenityType: Other
73
+ - :Description: Car care center
74
+ :AmenityType: Other
75
+ - :Description: 24-hour emergency maintenance
76
+ :AmenityType: Other
77
+ - :Description: Bark park
78
+ :AmenityType: Other
79
+ - :Description: Front door trash pick-up
80
+ :AmenityType: Other
81
+ - :Description: Two resort-style swimming pools
82
+ :AmenityType: Other
83
+ - :Description: Clothes care center
84
+ :AmenityType: Laundry
85
+ :Policy:
86
+ :Pet:
87
+ - :Pets:
88
+ :PetType: Cat
89
+ :Count: '2'
90
+ :Comment:
91
+ :Deposit: '0'
92
+ :Fee: '0'
93
+ :Rent: '0'
94
+ :Restrictions: We welcome your cats and dogs, up to two pets per apartment, with
95
+ no weight limit. *Breed restrictions apply. We do not permit American Pit Bull
96
+ Terrier, American Staffordshire Terrier, Staffordshire Bull Terrier, any mix
97
+ of the previous breeds, or any other dog or breed deemed aggressive. See management
98
+ for pet approval and deposit and fee information.
99
+ :PetCare: 'true'
100
+ :Allowed: 'true'
101
+ - :Pets:
102
+ :PetType: Dog
103
+ :Count: '2'
104
+ :Comment:
105
+ :Deposit: '0'
106
+ :Fee: '0'
107
+ :Rent: '0'
108
+ :Restrictions: We welcome your cats and dogs, up to two pets per apartment, with
109
+ no weight limit. *Breed restrictions apply. We do not permit American Pit Bull
110
+ Terrier, American Staffordshire Terrier, Staffordshire Bull Terrier, any mix
111
+ of the previous breeds, or any other dog or breed deemed aggressive. See management
112
+ for pet approval and deposit and fee information.
113
+ :PetCare: 'true'
114
+ :Allowed: 'true'
115
+ :Deposit:
116
+ :Amount:
117
+ :ValueRange:
118
+ :Exact: '3000.00'
119
+ :Currency: USD
120
+ :AmountType: Actual
121
+ :DepositType: Security Deposit
122
+ :Fee:
123
+ :ProrateType: Standard
124
+ :LateType: Standard
125
+ :LatePercent: '0'
126
+ :LateMinFee: '0'
127
+ :LateFeePerDay: '0'
128
+ :NonRefundableHoldFee: '0'
129
+ :AdminFee: '0'
130
+ :ApplicationFee: '50.00'
131
+ :BrokerFee: '0'
132
+ :Floorplan:
133
+ - :Identification:
134
+ :IDValue: '546053'
135
+ :IDType: FloorPlanID
136
+ :FloorplanType: Internal
137
+ :Name: Keystone
138
+ :UnitCount: '0'
139
+ :UnitsAvailable: '0'
140
+ :DisplayedUnitsAvailable: '0'
141
+ :TotalRoomCount: '2'
142
+ :Room:
143
+ - :Count: '1'
144
+ :Comment: Comment
145
+ :RoomType: Bedroom
146
+ - :Count: '1.00'
147
+ :Comment: max
148
+ :RoomType: Bathroom
149
+ :SquareFeet:
150
+ :Min: '600'
151
+ :Max: '615'
152
+ :MarketRent:
153
+ :Min: '779'
154
+ :Max: '979'
155
+ :EffectiveRent:
156
+ :Min: '779'
157
+ :Max: '979'
158
+ :Amenity:
159
+ - :Description: Balcony
160
+ :Rank: '0'
161
+ :AmenityType: Balcony
162
+ - :Description: CeilingFan
163
+ :Rank: '0'
164
+ :AmenityType: CeilingFan
165
+ - :Description: Patio
166
+ :Rank: '0'
167
+ :AmenityType: Patio
168
+ - :Description: Refrigerator
169
+ :Rank: '0'
170
+ :AmenityType: Refrigerator
171
+ :File:
172
+ - :FileType: Floorplan
173
+ :Description:
174
+ :Name:
175
+ :Caption:
176
+ :Format: jpg
177
+ :Src: http://capi.myleasestar.com/v2/dimg/8210468/834x768/8210468.jpg
178
+ :Width: '834'
179
+ :Height: '768'
180
+ :Rank: '1'
181
+ :AffiliateID: '546053'
182
+ :Active: 'true'
183
+ :FileID: '387377'
184
+ - :FileType: Floorplan
185
+ :Description:
186
+ :Name:
187
+ :Caption:
188
+ :Format: jpg
189
+ :Src: http://capi.myleasestar.com/v2/dimg/8210469/1300x1300/8210469.jpg
190
+ :Width: '1300'
191
+ :Height: '1300'
192
+ :Rank: '2'
193
+ :AffiliateID: '546053'
194
+ :Active: 'true'
195
+ :FileID: '387378'
196
+ - :Identification:
197
+ :IDValue: '546054'
198
+ :IDType: FloorPlanID
199
+ :FloorplanType: Internal
200
+ :Name: Echo
201
+ :UnitCount: '0'
202
+ :UnitsAvailable: '0'
203
+ :DisplayedUnitsAvailable: '0'
204
+ :TotalRoomCount: '2'
205
+ :Room:
206
+ - :Count: '1'
207
+ :Comment: Comment
208
+ :RoomType: Bedroom
209
+ - :Count: '1.00'
210
+ :Comment: max
211
+ :RoomType: Bathroom
212
+ :SquareFeet:
213
+ :Min: '726'
214
+ :Max: '726'
215
+ :MarketRent:
216
+ :Min: '859'
217
+ :Max: '1059'
218
+ :EffectiveRent:
219
+ :Min: '859'
220
+ :Max: '1059'
221
+ :Amenity:
222
+ - :Description: Balcony
223
+ :Rank: '0'
224
+ :AmenityType: Balcony
225
+ - :Description: CeilingFan
226
+ :Rank: '0'
227
+ :AmenityType: CeilingFan
228
+ - :Description: Patio
229
+ :Rank: '0'
230
+ :AmenityType: Patio
231
+ - :Description: Refrigerator
232
+ :Rank: '0'
233
+ :AmenityType: Refrigerator
234
+ :File:
235
+ - :FileType: Floorplan
236
+ :Description:
237
+ :Name:
238
+ :Caption:
239
+ :Format: jpg
240
+ :Src: http://capi.myleasestar.com/v2/dimg/8210470/904x768/8210470.jpg
241
+ :Width: '904'
242
+ :Height: '768'
243
+ :Rank: '3'
244
+ :AffiliateID: '546054'
245
+ :Active: 'true'
246
+ :FileID: '387379'
247
+ - :FileType: Floorplan
248
+ :Description:
249
+ :Name:
250
+ :Caption:
251
+ :Format: jpg
252
+ :Src: http://capi.myleasestar.com/v2/dimg/8210471/1300x1300/8210471.jpg
253
+ :Width: '1300'
254
+ :Height: '1300'
255
+ :Rank: '4'
256
+ :AffiliateID: '546054'
257
+ :Active: 'true'
258
+ :FileID: '387380'
259
+ - :Identification:
260
+ :IDValue: '546055'
261
+ :IDType: FloorPlanID
262
+ :FloorplanType: Internal
263
+ :Name: Leclare
264
+ :UnitCount: '0'
265
+ :UnitsAvailable: '0'
266
+ :DisplayedUnitsAvailable: '0'
267
+ :TotalRoomCount: '4'
268
+ :Room:
269
+ - :Count: '2'
270
+ :Comment: Comment
271
+ :RoomType: Bedroom
272
+ - :Count: '2.00'
273
+ :Comment: max
274
+ :RoomType: Bathroom
275
+ :SquareFeet:
276
+ :Min: '810'
277
+ :Max: '810'
278
+ :MarketRent:
279
+ :Min: '939'
280
+ :Max: '1179'
281
+ :EffectiveRent:
282
+ :Min: '939'
283
+ :Max: '1179'
284
+ :Amenity:
285
+ - :Description: Balcony
286
+ :Rank: '0'
287
+ :AmenityType: Balcony
288
+ - :Description: CeilingFan
289
+ :Rank: '0'
290
+ :AmenityType: CeilingFan
291
+ - :Description: Patio
292
+ :Rank: '0'
293
+ :AmenityType: Patio
294
+ - :Description: Refrigerator
295
+ :Rank: '0'
296
+ :AmenityType: Refrigerator
297
+ :File:
298
+ - :FileType: Floorplan
299
+ :Description:
300
+ :Name:
301
+ :Caption:
302
+ :Format: jpg
303
+ :Src: http://capi.myleasestar.com/v2/dimg/8210472/768x1005/8210472.jpg
304
+ :Width: '768'
305
+ :Height: '1005'
306
+ :Rank: '5'
307
+ :AffiliateID: '546055'
308
+ :Active: 'true'
309
+ :FileID: '387381'
310
+ - :FileType: Floorplan
311
+ :Description:
312
+ :Name:
313
+ :Caption:
314
+ :Format: jpg
315
+ :Src: http://capi.myleasestar.com/v2/dimg/8210473/1300x1300/8210473.jpg
316
+ :Width: '1300'
317
+ :Height: '1300'
318
+ :Rank: '6'
319
+ :AffiliateID: '546055'
320
+ :Active: 'true'
321
+ :FileID: '387382'
322
+ - :Identification:
323
+ :IDValue: '546057'
324
+ :IDType: FloorPlanID
325
+ :FloorplanType: Internal
326
+ :Name: Carroll
327
+ :UnitCount: '0'
328
+ :UnitsAvailable: '0'
329
+ :DisplayedUnitsAvailable: '0'
330
+ :TotalRoomCount: '4'
331
+ :Room:
332
+ - :Count: '2'
333
+ :Comment: Comment
334
+ :RoomType: Bedroom
335
+ - :Count: '2.00'
336
+ :Comment: max
337
+ :RoomType: Bathroom
338
+ :SquareFeet:
339
+ :Min: '885'
340
+ :Max: '885'
341
+ :MarketRent:
342
+ :Min: '1169'
343
+ :Max: '1329'
344
+ :EffectiveRent:
345
+ :Min: '1169'
346
+ :Max: '1329'
347
+ :Amenity:
348
+ - :Description: Balcony
349
+ :Rank: '0'
350
+ :AmenityType: Balcony
351
+ - :Description: CeilingFan
352
+ :Rank: '0'
353
+ :AmenityType: CeilingFan
354
+ - :Description: Patio
355
+ :Rank: '0'
356
+ :AmenityType: Patio
357
+ - :Description: Refrigerator
358
+ :Rank: '0'
359
+ :AmenityType: Refrigerator
360
+ :File:
361
+ - :FileType: Floorplan
362
+ :Description:
363
+ :Name:
364
+ :Caption:
365
+ :Format: jpg
366
+ :Src: http://capi.myleasestar.com/v2/dimg/8210477/692x1024/8210477.jpg
367
+ :Width: '692'
368
+ :Height: '1024'
369
+ :Rank: '7'
370
+ :AffiliateID: '546057'
371
+ :Active: 'true'
372
+ :FileID: '387385'
373
+ - :FileType: Floorplan
374
+ :Description:
375
+ :Name:
376
+ :Caption:
377
+ :Format: jpg
378
+ :Src: http://capi.myleasestar.com/v2/dimg/8210478/1300x1300/8210478.jpg
379
+ :Width: '1300'
380
+ :Height: '1300'
381
+ :Rank: '8'
382
+ :AffiliateID: '546057'
383
+ :Active: 'true'
384
+ :FileID: '387386'
385
+ - :Identification:
386
+ :IDValue: '546056'
387
+ :IDType: FloorPlanID
388
+ :FloorplanType: Internal
389
+ :Name: Crenshaw
390
+ :UnitCount: '0'
391
+ :UnitsAvailable: '0'
392
+ :DisplayedUnitsAvailable: '0'
393
+ :TotalRoomCount: '4'
394
+ :Room:
395
+ - :Count: '2'
396
+ :Comment: Comment
397
+ :RoomType: Bedroom
398
+ - :Count: '2.00'
399
+ :Comment: max
400
+ :RoomType: Bathroom
401
+ :SquareFeet:
402
+ :Min: '903'
403
+ :Max: '903'
404
+ :MarketRent:
405
+ :Min: '1159'
406
+ :Max: '1359'
407
+ :EffectiveRent:
408
+ :Min: '1159'
409
+ :Max: '1359'
410
+ :Amenity:
411
+ - :Description: Balcony
412
+ :Rank: '0'
413
+ :AmenityType: Balcony
414
+ - :Description: CeilingFan
415
+ :Rank: '0'
416
+ :AmenityType: CeilingFan
417
+ - :Description: Patio
418
+ :Rank: '0'
419
+ :AmenityType: Patio
420
+ - :Description: Refrigerator
421
+ :Rank: '0'
422
+ :AmenityType: Refrigerator
423
+ :File:
424
+ - :FileType: Floorplan
425
+ :Description:
426
+ :Name:
427
+ :Caption:
428
+ :Format: jpg
429
+ :Src: http://capi.myleasestar.com/v2/dimg/8210474/768x1017/8210474.jpg
430
+ :Width: '768'
431
+ :Height: '1017'
432
+ :Rank: '9'
433
+ :AffiliateID: '546056'
434
+ :Active: 'true'
435
+ :FileID: '387383'
436
+ - :FileType: Floorplan
437
+ :Description:
438
+ :Name:
439
+ :Caption:
440
+ :Format: jpg
441
+ :Src: http://capi.myleasestar.com/v2/dimg/8210475/1300x1300/8210475.jpg
442
+ :Width: '1300'
443
+ :Height: '1300'
444
+ :Rank: '10'
445
+ :AffiliateID: '546056'
446
+ :Active: 'true'
447
+ :FileID: '387384'
448
+ :Utility:
449
+ :AirCon: 'false'
450
+ :BroadbandInternet: 'false'
451
+ :Cable: 'false'
452
+ :Electric: 'false'
453
+ :Gas: 'false'
454
+ :Heat: 'false'
455
+ :HotWater: 'false'
456
+ :Satellite: 'false'
457
+ :Sewer: 'false'
458
+ :Telephone: 'false'
459
+ :Trash: 'false'
460
+ :Water: 'false'
461
+ :UtilityPortionIncluded: '0'
462
+ :MajorUtility: Some
463
+ :File:
464
+ - :FileType: Logo
465
+ :Description:
466
+ :Name:
467
+ :Caption:
468
+ :Format: png
469
+ :Src: http://capi.myleasestar.com/v2/dimg/5719594/898x428/5719594.png
470
+ :Width: '898'
471
+ :Height: '428'
472
+ :Rank: '1'
473
+ :AffiliateID: '89851'
474
+ :Active: 'true'
475
+ :FileID: '268135'
476
+ - :FileType: Photo
477
+ :Description:
478
+ :Name:
479
+ :Caption:
480
+ :Format: jpg
481
+ :Src: http://capi.myleasestar.com/v2/dimg/9850808/640x431/9850808.jpg
482
+ :Width: '640'
483
+ :Height: '431'
484
+ :Rank: '1'
485
+ :AffiliateID: '89851'
486
+ :Active: 'true'
487
+ :FileID: '408660'
488
+ - :FileType: Photo
489
+ :Description:
490
+ :Name:
491
+ :Caption:
492
+ :Format: jpg
493
+ :Src: http://capi.myleasestar.com/v2/dimg/9850809/647x428/9850809.jpg
494
+ :Width: '647'
495
+ :Height: '428'
496
+ :Rank: '2'
497
+ :AffiliateID: '89851'
498
+ :Active: 'true'
499
+ :FileID: '408661'
500
+ - :FileType: Photo
501
+ :Description:
502
+ :Name:
503
+ :Caption:
504
+ :Format: jpg
505
+ :Src: http://capi.myleasestar.com/v2/dimg/9850810/642x428/9850810.jpg
506
+ :Width: '642'
507
+ :Height: '428'
508
+ :Rank: '3'
509
+ :AffiliateID: '89851'
510
+ :Active: 'true'
511
+ :FileID: '408662'
512
+ - :FileType: Photo
513
+ :Description:
514
+ :Name:
515
+ :Caption:
516
+ :Format: jpg
517
+ :Src: http://capi.myleasestar.com/v2/dimg/9850811/644x428/9850811.jpg
518
+ :Width: '644'
519
+ :Height: '428'
520
+ :Rank: '4'
521
+ :AffiliateID: '89851'
522
+ :Active: 'true'
523
+ :FileID: '408663'
524
+ - :FileType: Photo
525
+ :Description:
526
+ :Name:
527
+ :Caption:
528
+ :Format: jpg
529
+ :Src: http://capi.myleasestar.com/v2/dimg/9850812/672x428/9850812.jpg
530
+ :Width: '672'
531
+ :Height: '428'
532
+ :Rank: '5'
533
+ :AffiliateID: '89851'
534
+ :Active: 'true'
535
+ :FileID: '408664'
536
+ - :FileType: Photo
537
+ :Description:
538
+ :Name:
539
+ :Caption:
540
+ :Format: jpg
541
+ :Src: http://capi.myleasestar.com/v2/dimg/9850817/644x428/9850817.jpg
542
+ :Width: '644'
543
+ :Height: '428'
544
+ :Rank: '6'
545
+ :AffiliateID: '89851'
546
+ :Active: 'true'
547
+ :FileID: '408665'
548
+ - :FileType: Photo
549
+ :Description:
550
+ :Name:
551
+ :Caption:
552
+ :Format: jpg
553
+ :Src: http://capi.myleasestar.com/v2/dimg/9850818/642x428/9850818.jpg
554
+ :Width: '642'
555
+ :Height: '428'
556
+ :Rank: '7'
557
+ :AffiliateID: '89851'
558
+ :Active: 'true'
559
+ :FileID: '408666'
560
+ - :FileType: Photo
561
+ :Description:
562
+ :Name:
563
+ :Caption:
564
+ :Format: jpg
565
+ :Src: http://capi.myleasestar.com/v2/dimg/9850819/642x428/9850819.jpg
566
+ :Width: '642'
567
+ :Height: '428'
568
+ :Rank: '8'
569
+ :AffiliateID: '89851'
570
+ :Active: 'true'
571
+ :FileID: '408667'
572
+ - :FileType: Photo
573
+ :Description:
574
+ :Name:
575
+ :Caption:
576
+ :Format: jpg
577
+ :Src: http://capi.myleasestar.com/v2/dimg/9850820/642x428/9850820.jpg
578
+ :Width: '642'
579
+ :Height: '428'
580
+ :Rank: '9'
581
+ :AffiliateID: '89851'
582
+ :Active: 'true'
583
+ :FileID: '408668'