mits 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
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,589 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <PhysicalProperty>
3
+ <Management>
4
+ <Identification IDType = "ManagementID">
5
+ <IDValue>6890047</IDValue>
6
+ </Identification>
7
+ <PropertyContacts>
8
+ <Companies>
9
+ <Identification IDType = "ManagementID">
10
+ <IDValue>6890047</IDValue>
11
+ </Identification>
12
+ <CompanyName>Camden</CompanyName>
13
+ </Companies>
14
+ </PropertyContacts>
15
+ </Management>
16
+ <Property>
17
+ <Identification IDType = "ManagementID">
18
+ <IDValue>6890047</IDValue>
19
+ </Identification>
20
+ <PropertyID>
21
+ <Identification IDType = "PrimaryID">
22
+ <IDValue>89851</IDValue>
23
+ </Identification>
24
+ <Identification IDType = "SecondaryID">
25
+ <IDValue>89851</IDValue>
26
+ </Identification>
27
+ <MarketingName>Camden Lakes</MarketingName>
28
+ <Address AddressType = "property">
29
+ <Address>11401 Dr. Martin Luther King Jr. St N</Address>
30
+ <City>Saint Petersburg</City>
31
+ <State>FL</State>
32
+ <PostalCode>33716</PostalCode>
33
+ <Email>sales@camdenliving.com</Email>
34
+ </Address>
35
+ <Phone PhoneType = "office">
36
+ <PhoneNumber>727-577-7557</PhoneNumber>
37
+ <Extension/>
38
+ </Phone>
39
+ <Phone PhoneType = "fax">
40
+ <PhoneNumber>727-579-0280</PhoneNumber>
41
+ <Extension/>
42
+ </Phone>
43
+ </PropertyID>
44
+ <ILS_Identification RentalType = "Unspecified" ILS_IdentificationType = "Apartment"/>
45
+ <Information>
46
+ <StructureType>Standard</StructureType>
47
+ <UnitCount>688</UnitCount>
48
+ <YearBuilt>1982</YearBuilt>
49
+ <YearRemodeled>1999</YearRemodeled>
50
+ <OfficeHour>
51
+ <OpenTime>1:00 PM</OpenTime>
52
+ <CloseTime>5:00 PM</CloseTime>
53
+ <Day>Sunday</Day>
54
+ </OfficeHour>
55
+ <OfficeHour>
56
+ <OpenTime>10:00 AM</OpenTime>
57
+ <CloseTime>6:00 PM</CloseTime>
58
+ <Day>Monday</Day>
59
+ </OfficeHour>
60
+ <OfficeHour>
61
+ <OpenTime>10:00 AM</OpenTime>
62
+ <CloseTime>6:00 PM</CloseTime>
63
+ <Day>Tuesday</Day>
64
+ </OfficeHour>
65
+ <OfficeHour>
66
+ <OpenTime>10:00 AM</OpenTime>
67
+ <CloseTime>6:00 PM</CloseTime>
68
+ <Day>Wednesday</Day>
69
+ </OfficeHour>
70
+ <OfficeHour>
71
+ <OpenTime>10:00 AM</OpenTime>
72
+ <CloseTime>7:00 PM</CloseTime>
73
+ <Day>Thursday</Day>
74
+ </OfficeHour>
75
+ <OfficeHour>
76
+ <OpenTime>10:00 AM</OpenTime>
77
+ <CloseTime>6:00 PM</CloseTime>
78
+ <Day>Friday</Day>
79
+ </OfficeHour>
80
+ <OfficeHour>
81
+ <OpenTime>10:00 AM</OpenTime>
82
+ <CloseTime>5:00 PM</CloseTime>
83
+ <Day>Saturday</Day>
84
+ </OfficeHour>
85
+ <ShortDescription>Camden Lakes is a pet-friendly community near Tampa Bay in Florida with one and two bedroom apartment homes just waiting for you!</ShortDescription>
86
+ <LongDescription>Surrounded by panoramic lake views, Camden Lakes' one and two bedroom apartments feature walk-in closets, chair railings and spacious pantries. Select homes include stackable washers/dryers. Sixty-six acres of lush landscaping make our pet-friendly community a calming retreat, which offers a fitness center, swimming pools and tennis courts. Located near major employers such as Raymond James Financial, Jabil Circuit and Home Shopping Network, we're situated between the Gandy Bridge and I-275 for easy access to the Tampa Bay area.</LongDescription>
87
+ <LeaseLength/>
88
+ <DrivingDirections>Located on Dr. Martin Luther King Jr. Street, just north of the Gandy Bridge. From Tampa: Take Howard Frankland Bridge to 4th Street Exit and we're located approximately 2 miles on the right.</DrivingDirections>
89
+ </Information>
90
+ <Amenity AmenityType = "Other">
91
+ <Description>Extra storage</Description>
92
+ </Amenity>
93
+ <Amenity AmenityType = "Other">
94
+ <Description>Two outdoor sports courts</Description>
95
+ </Amenity>
96
+ <Amenity AmenityType = "Other">
97
+ <Description>Two lighted tennis courts</Description>
98
+ </Amenity>
99
+ <Amenity AmenityType = "Other">
100
+ <Description>Fitness center</Description>
101
+ </Amenity>
102
+ <Amenity AmenityType = "Other">
103
+ <Description>Online rent payments &amp; maintenance requests</Description>
104
+ </Amenity>
105
+ <Amenity AmenityType = "Other">
106
+ <Description>Car care center</Description>
107
+ </Amenity>
108
+ <Amenity AmenityType = "Other">
109
+ <Description>24-hour emergency maintenance</Description>
110
+ </Amenity>
111
+ <Amenity AmenityType = "Other">
112
+ <Description>Bark park</Description>
113
+ </Amenity>
114
+ <Amenity AmenityType = "Other">
115
+ <Description>Front door trash pick-up</Description>
116
+ </Amenity>
117
+ <Amenity AmenityType = "Other">
118
+ <Description>Two resort-style swimming pools</Description>
119
+ </Amenity>
120
+ <Amenity AmenityType = "Laundry">
121
+ <Description>Clothes care center</Description>
122
+ </Amenity>
123
+ <Policy>
124
+ <Pet Allowed = "true">
125
+ <Pets PetType = "Cat" Count = "2"/>
126
+ <Comment/>
127
+ <Deposit>0</Deposit>
128
+ <Fee>0</Fee>
129
+ <Rent>0</Rent>
130
+ <Restrictions>We welcome your cats and dogs, up to two pets per apartment, with no weight limit. *Breed restrictions apply. We do not permit American Pit Bull Terrier, American Staffordshire Terrier, Staffordshire Bull Terrier, any mix of the previous breeds, or any other dog or breed deemed aggressive. See management for pet approval and deposit and fee information.</Restrictions>
131
+ <PetCare>true</PetCare>
132
+ </Pet>
133
+ <Pet Allowed = "true">
134
+ <Pets PetType = "Dog" Count = "2"/>
135
+ <Comment/>
136
+ <Deposit>0</Deposit>
137
+ <Fee>0</Fee>
138
+ <Rent>0</Rent>
139
+ <Restrictions>We welcome your cats and dogs, up to two pets per apartment, with no weight limit. *Breed restrictions apply. We do not permit American Pit Bull Terrier, American Staffordshire Terrier, Staffordshire Bull Terrier, any mix of the previous breeds, or any other dog or breed deemed aggressive. See management for pet approval and deposit and fee information.</Restrictions>
140
+ <PetCare>true</PetCare>
141
+ </Pet>
142
+ </Policy>
143
+ <Floorplan>
144
+ <Identification IDType = "FloorPlanID">
145
+ <IDValue>546053</IDValue>
146
+ </Identification>
147
+ <FloorplanType>Internal</FloorplanType>
148
+ <Name>Keystone</Name>
149
+ <UnitCount>0</UnitCount>
150
+ <UnitsAvailable>0</UnitsAvailable>
151
+ <DisplayedUnitsAvailable>0</DisplayedUnitsAvailable>
152
+ <TotalRoomCount>2</TotalRoomCount>
153
+ <Room RoomType = "Bedroom">
154
+ <Count>1</Count>
155
+ <Comment>Comment</Comment>
156
+ </Room>
157
+ <Room RoomType = "Bathroom">
158
+ <Count>1.00</Count>
159
+ <Comment>max</Comment>
160
+ </Room>
161
+ <SquareFeet Min = "600" Max = "615"/>
162
+ <MarketRent Min = "779" Max = "979"/>
163
+ <EffectiveRent Min = "779" Max = "979"/>
164
+ <Amenity AmenityType = "Balcony">
165
+ <Description>Balcony</Description>
166
+ <Rank>0</Rank>
167
+ </Amenity>
168
+ <Amenity AmenityType = "CeilingFan">
169
+ <Description>CeilingFan</Description>
170
+ <Rank>0</Rank>
171
+ </Amenity>
172
+ <Amenity AmenityType = "Patio">
173
+ <Description>Patio</Description>
174
+ <Rank>0</Rank>
175
+ </Amenity>
176
+ <Amenity AmenityType = "Refrigerator">
177
+ <Description>Refrigerator</Description>
178
+ <Rank>0</Rank>
179
+ </Amenity>
180
+ <File Active = "true" FileID = "387377">
181
+ <FileType>Floorplan</FileType>
182
+ <Description/>
183
+ <Name/>
184
+ <Caption/>
185
+ <Format>jpg</Format>
186
+ <Src>http://capi.myleasestar.com/v2/dimg/8210468/834x768/8210468.jpg</Src>
187
+ <Width>834</Width>
188
+ <Height>768</Height>
189
+ <Rank>1</Rank>
190
+ <AffiliateID>546053</AffiliateID>
191
+ </File>
192
+ <File Active = "true" FileID = "387378">
193
+ <FileType>Floorplan</FileType>
194
+ <Description/>
195
+ <Name/>
196
+ <Caption/>
197
+ <Format>jpg</Format>
198
+ <Src>http://capi.myleasestar.com/v2/dimg/8210469/1300x1300/8210469.jpg</Src>
199
+ <Width>1300</Width>
200
+ <Height>1300</Height>
201
+ <Rank>2</Rank>
202
+ <AffiliateID>546053</AffiliateID>
203
+ </File>
204
+ </Floorplan>
205
+ <Floorplan>
206
+ <Identification IDType = "FloorPlanID">
207
+ <IDValue>546054</IDValue>
208
+ </Identification>
209
+ <FloorplanType>Internal</FloorplanType>
210
+ <Name>Echo</Name>
211
+ <UnitCount>0</UnitCount>
212
+ <UnitsAvailable>0</UnitsAvailable>
213
+ <DisplayedUnitsAvailable>0</DisplayedUnitsAvailable>
214
+ <TotalRoomCount>2</TotalRoomCount>
215
+ <Room RoomType = "Bedroom">
216
+ <Count>1</Count>
217
+ <Comment>Comment</Comment>
218
+ </Room>
219
+ <Room RoomType = "Bathroom">
220
+ <Count>1.00</Count>
221
+ <Comment>max</Comment>
222
+ </Room>
223
+ <SquareFeet Min = "726" Max = "726"/>
224
+ <MarketRent Min = "859" Max = "1059"/>
225
+ <EffectiveRent Min = "859" Max = "1059"/>
226
+ <Amenity AmenityType = "Balcony">
227
+ <Description>Balcony</Description>
228
+ <Rank>0</Rank>
229
+ </Amenity>
230
+ <Amenity AmenityType = "CeilingFan">
231
+ <Description>CeilingFan</Description>
232
+ <Rank>0</Rank>
233
+ </Amenity>
234
+ <Amenity AmenityType = "Patio">
235
+ <Description>Patio</Description>
236
+ <Rank>0</Rank>
237
+ </Amenity>
238
+ <Amenity AmenityType = "Refrigerator">
239
+ <Description>Refrigerator</Description>
240
+ <Rank>0</Rank>
241
+ </Amenity>
242
+ <File Active = "true" FileID = "387379">
243
+ <FileType>Floorplan</FileType>
244
+ <Description/>
245
+ <Name/>
246
+ <Caption/>
247
+ <Format>jpg</Format>
248
+ <Src>http://capi.myleasestar.com/v2/dimg/8210470/904x768/8210470.jpg</Src>
249
+ <Width>904</Width>
250
+ <Height>768</Height>
251
+ <Rank>3</Rank>
252
+ <AffiliateID>546054</AffiliateID>
253
+ </File>
254
+ <File Active = "true" FileID = "387380">
255
+ <FileType>Floorplan</FileType>
256
+ <Description/>
257
+ <Name/>
258
+ <Caption/>
259
+ <Format>jpg</Format>
260
+ <Src>http://capi.myleasestar.com/v2/dimg/8210471/1300x1300/8210471.jpg</Src>
261
+ <Width>1300</Width>
262
+ <Height>1300</Height>
263
+ <Rank>4</Rank>
264
+ <AffiliateID>546054</AffiliateID>
265
+ </File>
266
+ </Floorplan>
267
+ <Floorplan>
268
+ <Identification IDType = "FloorPlanID">
269
+ <IDValue>546055</IDValue>
270
+ </Identification>
271
+ <FloorplanType>Internal</FloorplanType>
272
+ <Name>Leclare</Name>
273
+ <UnitCount>0</UnitCount>
274
+ <UnitsAvailable>0</UnitsAvailable>
275
+ <DisplayedUnitsAvailable>0</DisplayedUnitsAvailable>
276
+ <TotalRoomCount>4</TotalRoomCount>
277
+ <Room RoomType = "Bedroom">
278
+ <Count>2</Count>
279
+ <Comment>Comment</Comment>
280
+ </Room>
281
+ <Room RoomType = "Bathroom">
282
+ <Count>2.00</Count>
283
+ <Comment>max</Comment>
284
+ </Room>
285
+ <SquareFeet Min = "810" Max = "810"/>
286
+ <MarketRent Min = "939" Max = "1179"/>
287
+ <EffectiveRent Min = "939" Max = "1179"/>
288
+ <Amenity AmenityType = "Balcony">
289
+ <Description>Balcony</Description>
290
+ <Rank>0</Rank>
291
+ </Amenity>
292
+ <Amenity AmenityType = "CeilingFan">
293
+ <Description>CeilingFan</Description>
294
+ <Rank>0</Rank>
295
+ </Amenity>
296
+ <Amenity AmenityType = "Patio">
297
+ <Description>Patio</Description>
298
+ <Rank>0</Rank>
299
+ </Amenity>
300
+ <Amenity AmenityType = "Refrigerator">
301
+ <Description>Refrigerator</Description>
302
+ <Rank>0</Rank>
303
+ </Amenity>
304
+ <File Active = "true" FileID = "387381">
305
+ <FileType>Floorplan</FileType>
306
+ <Description/>
307
+ <Name/>
308
+ <Caption/>
309
+ <Format>jpg</Format>
310
+ <Src>http://capi.myleasestar.com/v2/dimg/8210472/768x1005/8210472.jpg</Src>
311
+ <Width>768</Width>
312
+ <Height>1005</Height>
313
+ <Rank>5</Rank>
314
+ <AffiliateID>546055</AffiliateID>
315
+ </File>
316
+ <File Active = "true" FileID = "387382">
317
+ <FileType>Floorplan</FileType>
318
+ <Description/>
319
+ <Name/>
320
+ <Caption/>
321
+ <Format>jpg</Format>
322
+ <Src>http://capi.myleasestar.com/v2/dimg/8210473/1300x1300/8210473.jpg</Src>
323
+ <Width>1300</Width>
324
+ <Height>1300</Height>
325
+ <Rank>6</Rank>
326
+ <AffiliateID>546055</AffiliateID>
327
+ </File>
328
+ </Floorplan>
329
+ <Floorplan>
330
+ <Identification IDType = "FloorPlanID">
331
+ <IDValue>546057</IDValue>
332
+ </Identification>
333
+ <FloorplanType>Internal</FloorplanType>
334
+ <Name>Carroll</Name>
335
+ <UnitCount>0</UnitCount>
336
+ <UnitsAvailable>0</UnitsAvailable>
337
+ <DisplayedUnitsAvailable>0</DisplayedUnitsAvailable>
338
+ <TotalRoomCount>4</TotalRoomCount>
339
+ <Room RoomType = "Bedroom">
340
+ <Count>2</Count>
341
+ <Comment>Comment</Comment>
342
+ </Room>
343
+ <Room RoomType = "Bathroom">
344
+ <Count>2.00</Count>
345
+ <Comment>max</Comment>
346
+ </Room>
347
+ <SquareFeet Min = "885" Max = "885"/>
348
+ <MarketRent Min = "1169" Max = "1329"/>
349
+ <EffectiveRent Min = "1169" Max = "1329"/>
350
+ <Amenity AmenityType = "Balcony">
351
+ <Description>Balcony</Description>
352
+ <Rank>0</Rank>
353
+ </Amenity>
354
+ <Amenity AmenityType = "CeilingFan">
355
+ <Description>CeilingFan</Description>
356
+ <Rank>0</Rank>
357
+ </Amenity>
358
+ <Amenity AmenityType = "Patio">
359
+ <Description>Patio</Description>
360
+ <Rank>0</Rank>
361
+ </Amenity>
362
+ <Amenity AmenityType = "Refrigerator">
363
+ <Description>Refrigerator</Description>
364
+ <Rank>0</Rank>
365
+ </Amenity>
366
+ <File Active = "true" FileID = "387385">
367
+ <FileType>Floorplan</FileType>
368
+ <Description/>
369
+ <Name/>
370
+ <Caption/>
371
+ <Format>jpg</Format>
372
+ <Src>http://capi.myleasestar.com/v2/dimg/8210477/692x1024/8210477.jpg</Src>
373
+ <Width>692</Width>
374
+ <Height>1024</Height>
375
+ <Rank>7</Rank>
376
+ <AffiliateID>546057</AffiliateID>
377
+ </File>
378
+ <File Active = "true" FileID = "387386">
379
+ <FileType>Floorplan</FileType>
380
+ <Description/>
381
+ <Name/>
382
+ <Caption/>
383
+ <Format>jpg</Format>
384
+ <Src>http://capi.myleasestar.com/v2/dimg/8210478/1300x1300/8210478.jpg</Src>
385
+ <Width>1300</Width>
386
+ <Height>1300</Height>
387
+ <Rank>8</Rank>
388
+ <AffiliateID>546057</AffiliateID>
389
+ </File>
390
+ </Floorplan>
391
+ <Floorplan>
392
+ <Identification IDType = "FloorPlanID">
393
+ <IDValue>546056</IDValue>
394
+ </Identification>
395
+ <FloorplanType>Internal</FloorplanType>
396
+ <Name>Crenshaw</Name>
397
+ <UnitCount>0</UnitCount>
398
+ <UnitsAvailable>0</UnitsAvailable>
399
+ <DisplayedUnitsAvailable>0</DisplayedUnitsAvailable>
400
+ <TotalRoomCount>4</TotalRoomCount>
401
+ <Room RoomType = "Bedroom">
402
+ <Count>2</Count>
403
+ <Comment>Comment</Comment>
404
+ </Room>
405
+ <Room RoomType = "Bathroom">
406
+ <Count>2.00</Count>
407
+ <Comment>max</Comment>
408
+ </Room>
409
+ <SquareFeet Min = "903" Max = "903"/>
410
+ <MarketRent Min = "1159" Max = "1359"/>
411
+ <EffectiveRent Min = "1159" Max = "1359"/>
412
+ <Amenity AmenityType = "Balcony">
413
+ <Description>Balcony</Description>
414
+ <Rank>0</Rank>
415
+ </Amenity>
416
+ <Amenity AmenityType = "CeilingFan">
417
+ <Description>CeilingFan</Description>
418
+ <Rank>0</Rank>
419
+ </Amenity>
420
+ <Amenity AmenityType = "Patio">
421
+ <Description>Patio</Description>
422
+ <Rank>0</Rank>
423
+ </Amenity>
424
+ <Amenity AmenityType = "Refrigerator">
425
+ <Description>Refrigerator</Description>
426
+ <Rank>0</Rank>
427
+ </Amenity>
428
+ <File Active = "true" FileID = "387383">
429
+ <FileType>Floorplan</FileType>
430
+ <Description/>
431
+ <Name/>
432
+ <Caption/>
433
+ <Format>jpg</Format>
434
+ <Src>http://capi.myleasestar.com/v2/dimg/8210474/768x1017/8210474.jpg</Src>
435
+ <Width>768</Width>
436
+ <Height>1017</Height>
437
+ <Rank>9</Rank>
438
+ <AffiliateID>546056</AffiliateID>
439
+ </File>
440
+ <File Active = "true" FileID = "387384">
441
+ <FileType>Floorplan</FileType>
442
+ <Description/>
443
+ <Name/>
444
+ <Caption/>
445
+ <Format>jpg</Format>
446
+ <Src>http://capi.myleasestar.com/v2/dimg/8210475/1300x1300/8210475.jpg</Src>
447
+ <Width>1300</Width>
448
+ <Height>1300</Height>
449
+ <Rank>10</Rank>
450
+ <AffiliateID>546056</AffiliateID>
451
+ </File>
452
+ </Floorplan>
453
+ <Utility MajorUtility = "Some">
454
+ <AirCon>false</AirCon>
455
+ <BroadbandInternet>false</BroadbandInternet>
456
+ <Cable>false</Cable>
457
+ <Electric>false</Electric>
458
+ <Gas>false</Gas>
459
+ <Heat>false</Heat>
460
+ <HotWater>false</HotWater>
461
+ <Satellite>false</Satellite>
462
+ <Sewer>false</Sewer>
463
+ <Telephone>false</Telephone>
464
+ <Trash>false</Trash>
465
+ <Water>false</Water>
466
+ <UtilityPortionIncluded>0</UtilityPortionIncluded>
467
+ </Utility>
468
+ <File Active = "true" FileID = "268135">
469
+ <FileType>Logo</FileType>
470
+ <Description/>
471
+ <Name/>
472
+ <Caption/>
473
+ <Format>png</Format>
474
+ <Src>http://capi.myleasestar.com/v2/dimg/5719594/898x428/5719594.png</Src>
475
+ <Width>898</Width>
476
+ <Height>428</Height>
477
+ <Rank>1</Rank>
478
+ <AffiliateID>89851</AffiliateID>
479
+ </File>
480
+ <File Active = "true" FileID = "408660">
481
+ <FileType>Photo</FileType>
482
+ <Description/>
483
+ <Name/>
484
+ <Caption/>
485
+ <Format>jpg</Format>
486
+ <Src>http://capi.myleasestar.com/v2/dimg/9850808/640x431/9850808.jpg</Src>
487
+ <Width>640</Width>
488
+ <Height>431</Height>
489
+ <Rank>1</Rank>
490
+ <AffiliateID>89851</AffiliateID>
491
+ </File>
492
+ <File Active = "true" FileID = "408661">
493
+ <FileType>Photo</FileType>
494
+ <Description/>
495
+ <Name/>
496
+ <Caption/>
497
+ <Format>jpg</Format>
498
+ <Src>http://capi.myleasestar.com/v2/dimg/9850809/647x428/9850809.jpg</Src>
499
+ <Width>647</Width>
500
+ <Height>428</Height>
501
+ <Rank>2</Rank>
502
+ <AffiliateID>89851</AffiliateID>
503
+ </File>
504
+ <File Active = "true" FileID = "408662">
505
+ <FileType>Photo</FileType>
506
+ <Description/>
507
+ <Name/>
508
+ <Caption/>
509
+ <Format>jpg</Format>
510
+ <Src>http://capi.myleasestar.com/v2/dimg/9850810/642x428/9850810.jpg</Src>
511
+ <Width>642</Width>
512
+ <Height>428</Height>
513
+ <Rank>3</Rank>
514
+ <AffiliateID>89851</AffiliateID>
515
+ </File>
516
+ <File Active = "true" FileID = "408663">
517
+ <FileType>Photo</FileType>
518
+ <Description/>
519
+ <Name/>
520
+ <Caption/>
521
+ <Format>jpg</Format>
522
+ <Src>http://capi.myleasestar.com/v2/dimg/9850811/644x428/9850811.jpg</Src>
523
+ <Width>644</Width>
524
+ <Height>428</Height>
525
+ <Rank>4</Rank>
526
+ <AffiliateID>89851</AffiliateID>
527
+ </File>
528
+ <File Active = "true" FileID = "408664">
529
+ <FileType>Photo</FileType>
530
+ <Description/>
531
+ <Name/>
532
+ <Caption/>
533
+ <Format>jpg</Format>
534
+ <Src>http://capi.myleasestar.com/v2/dimg/9850812/672x428/9850812.jpg</Src>
535
+ <Width>672</Width>
536
+ <Height>428</Height>
537
+ <Rank>5</Rank>
538
+ <AffiliateID>89851</AffiliateID>
539
+ </File>
540
+ <File Active = "true" FileID = "408665">
541
+ <FileType>Photo</FileType>
542
+ <Description/>
543
+ <Name/>
544
+ <Caption/>
545
+ <Format>jpg</Format>
546
+ <Src>http://capi.myleasestar.com/v2/dimg/9850817/644x428/9850817.jpg</Src>
547
+ <Width>644</Width>
548
+ <Height>428</Height>
549
+ <Rank>6</Rank>
550
+ <AffiliateID>89851</AffiliateID>
551
+ </File>
552
+ <File Active = "true" FileID = "408666">
553
+ <FileType>Photo</FileType>
554
+ <Description/>
555
+ <Name/>
556
+ <Caption/>
557
+ <Format>jpg</Format>
558
+ <Src>http://capi.myleasestar.com/v2/dimg/9850818/642x428/9850818.jpg</Src>
559
+ <Width>642</Width>
560
+ <Height>428</Height>
561
+ <Rank>7</Rank>
562
+ <AffiliateID>89851</AffiliateID>
563
+ </File>
564
+ <File Active = "true" FileID = "408667">
565
+ <FileType>Photo</FileType>
566
+ <Description/>
567
+ <Name/>
568
+ <Caption/>
569
+ <Format>jpg</Format>
570
+ <Src>http://capi.myleasestar.com/v2/dimg/9850819/642x428/9850819.jpg</Src>
571
+ <Width>642</Width>
572
+ <Height>428</Height>
573
+ <Rank>8</Rank>
574
+ <AffiliateID>89851</AffiliateID>
575
+ </File>
576
+ <File Active = "true" FileID = "408668">
577
+ <FileType>Photo</FileType>
578
+ <Description/>
579
+ <Name/>
580
+ <Caption/>
581
+ <Format>jpg</Format>
582
+ <Src>http://capi.myleasestar.com/v2/dimg/9850820/642x428/9850820.jpg</Src>
583
+ <Width>642</Width>
584
+ <Height>428</Height>
585
+ <Rank>9</Rank>
586
+ <AffiliateID>89851</AffiliateID>
587
+ </File>
588
+ </Property>
589
+ </PhysicalProperty>