-
Notifications
You must be signed in to change notification settings - Fork 0
/
v3.json
2931 lines (2931 loc) · 119 KB
/
v3.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"InspectionReport": {
"property": {
"structures": {
"attachmentType": {
"Metadata": [
{
"Name": "attachmentType",
"DataType": "Enumerated",
"DisplayText": "Attachment Type",
"Description": "User to select the best option to identify whether the structure is attached to another structure.\n\nAs the user faces the property, the attachment type for a 'Semi-Detached' property should reflect the side that is not attached (e.g., A structure is 'Left Semi-Detached' if the user faces an end unit that does not have a unit to the left). ",
"Conditionally": "function execute(data,cx){return cx.IsEmpty() && cx.FindValue('structureType')=='DWELLING'; }",
"Enumeration": [
{
"Key": "DETACHED",
"Value": "Detached"
},
{
"Key": "ATTACHED",
"Value": "Attached"
},
{
"Key": "LEFT_SEMI_DETACHED",
"Value": "Left Semi-detached/Duplex"
},
{
"Key": "RIGHT_SEMI_DETACHED",
"Value": "Right Semi-detached/Duplex"
}
],
"UITooltip": "Select the best option to describe whether the structure is detached or how it is attached.",
"HelpTextId": "539911fdeb8742f297a2c7a73b616917"
}
]
},
"structureType": {
"Metadata": [
{
"Name": "structureType",
"DataType": "Enumerated",
"DisplayText": "Structure Type",
"Description": "Select the best option to classify all permanently affixed structures. Structures greater than 200 square feet finished area that include a kitchen and bathroom should be identified as a dwelling.",
"Required": "True",
"Enumeration": [
{
"Key": "DWELLING",
"Value": "Dwelling"
},
{
"Key": "OUTBUILDING",
"Value": "Outbuilding",
"Children": [
{
"Key": "GREENHOUSE",
"Value": "Greenhouse"
},
{
"Key": "TOOLSHED",
"Value": "Toolshed"
},
{
"Key": "WORKSHOP",
"Value": "Workshop"
},
{
"Key": "BARN",
"Value": "Barn"
},
{
"Key": "POLE_BUILDING",
"Value": "Pole Building"
},
{
"Key": "STABLES",
"Value": "Stables"
},
{
"Key": "RIDING_ARENA",
"Value": "Riding Arena"
},
{
"Key": "POOL_HOUSE",
"Value": "Poolhouse"
}
]
}
],
"UITooltip": "Identify the type of structure. Select the option that best describes the building.",
"HelpTextId": "7d60daf09ea3463d9e483cde0e4a7eaf"
}
]
},
"constructionType": {
"Metadata": [
{
"Name": "constructionType",
"DataType": "Enumerated",
"DisplayText": "Construction Type",
"Description": "Indicate the construction type that best describes the construction of the majority of the structure.",
"Required": "True",
"Enumeration": [
{
"Key": "",
"Value": "Conventional",
"Children": [
{
"Key": "FRAME",
"Value": "Frame"
},
{
"Key": "MASONRY",
"Value": "Masonry"
}
]
},
{
"Key": "",
"Value": "Unconventional",
"Children": [
{
"Key": "LOG",
"Value": "Log"
},
{
"Key": "GEODESIC",
"Value": "Geodesic"
},
{
"Key": "EARTH_BERM",
"Value": "Earth Berm"
}
]
},
{
"Key": "",
"Value": "Manufactured",
"Children": [
{
"Key": "MANUFACTURED",
"Value": "Manufactured"
},
{
"Key": "MODULAR",
"Value": "Modular"
}
]
}
],
"UITooltip": "Select the option that best describes the construction type.",
"HelpTextId": "f1ed7ca78d314a4cb5e1b43eea3be470"
}
]
},
"constructionStatus": {
"Metadata": [
{
"Name": "constructionStatus",
"DataType": "Enumerated",
"DisplayText": "Construction Status",
"Description": "User to select the option that best describes the structure’s construction status.",
"Required": "True",
"Enumeration": [
{
"Key": "COMPLETE",
"Value": "Complete"
},
{
"Key": "INCOMPLETE",
"Value": "Incomplete",
"Children": [
{
"Key": "INCOMPLETE_CONSTRUCTION",
"Value": "Incomplete Construction"
},
{
"Key": "INCOMPLETE_RENOVATION_CONSTRUCTION",
"Value": "Incomplete Renovation"
},
{
"Key": "PROPOSED",
"Value": "Proposed"
}
]
}
],
"UITooltip": "What is the structure’s current status?",
"HelpTextId": "932ca75d2aad42ad86d61c23904e556f"
}
]
},
"units": {
"unitType": {
"Metadata": [
{
"Name": "unitType",
"DataType": "Enumerated",
"DisplayText": "Unit Type",
"Description": "Select the best option to classify the unit, Primary or Accessory. An accessory unit is typically an additional living area independent of the primary dwelling unit, and includes a fully functioning kitchen and bathroom.",
"Required": "True",
"Enumeration": [
{
"Key": "PRIMARY",
"Value": "Primary"
},
{
"Key": "ACCESSORY",
"Value": "Accessory"
}
]
}
]
},
"levels": {
"rooms": {
"roomType": {
"Metadata": [
{
"Name": "roomType",
"DataType": "Enumerated",
"DisplayText": "Room Type",
"Description": "User to select the best option to identify the room. \n\nA bedroom is defined as having a window, closet, and door that can be closed. The bedroom should have two means of egress, i.e. the door and window.",
"Required": "True",
"Enumeration": [
{
"Key": "FOYER",
"Value": "Foyer"
},
{
"Key": "LIVING_ROOM",
"Value": "Living Room"
},
{
"Key": "DINING_ROOM",
"Value": "Dining Room"
},
{
"Key": "KITCHEN",
"Value": "Kitchen"
},
{
"Key": "DEN",
"Value": "Den"
},
{
"Key": "FAMILY_ROOM",
"Value": "Family Room"
},
{
"Key": "REC_ROOM",
"Value": "Rec Room"
},
{
"Key": "BEDROOM",
"Value": "Bedroom"
},
{
"Key": "BATHROOM",
"Value": "Bathroom"
},
{
"Key": "LAUNDRY_ROOM",
"Value": "Laundry Room"
},
{
"Key": "HALL",
"Value": "Hall"
},
{
"Key": "LIBRARY",
"Value": "Library"
},
{
"Key": "MEDIA",
"Value": "Media"
},
{
"Key": "OFFICE",
"Value": "Office"
},
{
"Key": "UTILITY",
"Value": "Utility"
},
{
"Key": "WORKSHOP",
"Value": "Workshop"
},
{
"Key": "BUTLERS_PANTRY",
"Value": "Butlers Pantry"
},
{
"Key": "OTHER_ROOM",
"Value": "Other Room"
}
],
"UITooltip": "What type of room is this? Select the option that best matches.",
"HelpTextId": "684129ec1c0f465cbd996d53d81a68c5"
}
]
},
"otherRoomTypeDescription": {
"Metadata": [
{
"Name": "otherRoomTypeDescription",
"DataType": "String",
"DisplayText": "Room Name",
"Description": "User to enter free form text to describe the type of room when room type of 'OTHER_ROOM' is selected. The acceptable string length is 100 characters or less.",
"UITooltip": "You selected 'Other' room type. Provide a name for the room.",
"UIControl": "textarea",
"HelpTextId": "7e26cb6e8d984589a9c10fca3e5b0432"
}
]
},
"interiorDeficiencies": {
"deficiencyName": {
"Metadata": [
{
"Name": "deficiencyName",
"DataType": "Enumerated",
"DisplayText": "Deficiency Name",
"Description": "User to identify any room components that are deficient.",
"Required": "True",
"Enumeration": [
{
"Key": "NONE_OBSERVED",
"Value": "None Observed"
},
{
"Key": "FLOORING",
"Value": "Flooring"
},
{
"Key": "PLUMBING_FIXTURES",
"Value": "Plumbing Fixtures"
},
{
"Key": "ELECTRICAL_FIXTURES",
"Value": "Electrical Fixtures"
},
{
"Key": "CABINET_COUNTERTOPS",
"Value": "Cabinet Countertops"
},
{
"Key": "APPLIANCES",
"Value": "Appliances"
},
{
"Key": "WALLS",
"Value": "Walls"
},
{
"Key": "CEILING",
"Value": "Ceiling"
},
{
"Key": "TRIM_FINISH",
"Value": "TrimAndFinish"
},
{
"Key": "BATHROOM_WAINSCOT",
"Value": "BathroomWainscot"
},
{
"Key": "OTHER",
"Value": "Other"
}
],
"UITooltip": "Are there any components of this room with obvious damage or wear and tear that need to be addressed?",
"HelpTextId": "904c1a2a8e1248d0b771ff9241d824f2"
}
]
},
"deficiencyType": {
"Metadata": [
{
"Name": "deficiencyType",
"DataType": "Enumerated",
"DisplayText": "Deficiency Type",
"Description": "User to identify the type of deficiency of the component selected.",
"Conditionally": "function execute(data,cx){return cx.IsEmpty() && cx.FindValue('deficiencyName')!='NONE_OBSERVED'}",
"Enumeration": [
{
"Key": "EXCESSIVE_WEAR",
"Value": "Excessive Wear and Tear"
},
{
"Key": "DAMAGE",
"Value": "Damaged"
},
{
"Key": "EVIDENCE_OF_MOLD",
"Value": "Mold Evident"
},
{
"Key": "EVIDENCE_OF_INFESTATION",
"Value": "Infestation Evident"
},
{
"Key": "MISSING",
"Value": "Missing"
},
{
"Key": "POOR_FUNCTIONAL_UTILITY",
"Value": "Functional Concerns"
},
{
"Key": "OTHER",
"Value": "Other"
}
],
"UITooltip": "What type of damage or wear and tear did you observe?",
"HelpTextId": "7a259c6eabec412a99b04231e359647f"
}
]
},
"interiorDeficiencySeverity": {
"Metadata": [
{
"Name": "interiorDeficiencySeverity",
"DataType": "Boolean",
"DisplayText": "Is Habitability Affected?",
"Description": "User to select whether the deficient item does (TRUE) or does not (FALSE) impact the safety, structural integrity, or habitability of the affected room.",
"Conditionally": "function execute(data,cx){return cx.IsEmpty() && cx.FindValue('deficiencyName')!='NONE_OBSERVED'}",
"UITooltip": "Does the deficiency impact the safety, structural integrity, or habitability of the room?",
"HelpTextId": "867bca4eb64547819196586a61c658b9"
}
]
},
"descriptionInteriorDeficiency": {
"Metadata": [
{
"Name": "descriptionInteriorDeficiency",
"DataType": "String",
"DisplayText": "Description",
"Description": "User to provide a text description of any deficiencies observed.",
"Conditionally": "function execute(data,cx){return cx.IsEmpty() && cx.FindValue('deficiencyName')!='NONE_OBSERVED'}",
"UITooltip": "Provide a short description of each deficiency observed.",
"UIControl": "textarea"
}
]
},
"cv_photos": {
"photoType": {
"Metadata": [
{
"Name": "photoType",
"DataType": "Enumerated",
"DisplayText": "Photo Type",
"Description": "Photo Type",
"Required": "True",
"Enumeration": [
{
"Key": "FLOORING_INTERIOR_DEFICIENCY",
"Value": "FLOORING_INTERIOR_DEFICIENCY"
},
{
"Key": "PLUMBING_FIXTURES_INTERIOR_DEFICIENCY",
"Value": "PLUMBING_FIXTURES_INTERIOR_DEFICIENCY"
},
{
"Key": "ELECTRICAL_FIXTURES_INTERIOR_DEFICIENCY",
"Value": "ELECTRICAL_FIXTURES_INTERIOR_DEFICIENCY"
},
{
"Key": "CABINET_COUNTERTOPS_INTERIOR_DEFICIENCY",
"Value": "CABINET_COUNTERTOPS_INTERIOR_DEFICIENCY"
},
{
"Key": "APPLIANCES_INTERIOR_DEFICIENCY",
"Value": "APPLIANCES_INTERIOR_DEFICIENCY"
},
{
"Key": "WALLS_INTERIOR_DEFICIENCY",
"Value": "WALLS_INTERIOR_DEFICIENCY"
},
{
"Key": "CEILING_INTERIOR_DEFICIENCY",
"Value": "CEILING_INTERIOR_DEFICIENCY"
},
{
"Key": "OTHER_INTERIOR_DEFICIENCY",
"Value": "OTHER_INTERIOR_DEFICIENCY"
}
]
}
]
},
"Metadata": [
{
"ConverType": "None",
"MaxOccurs": "unbounded",
"MinOccurs": "0",
"Conditionally": "function execute(data,cx) {\r\n var rtype = cx.FindValue(\"deficiencyName\");\r\n var values = cx.FindChildValues(\"photoType\");\r\n if (rtype!='NONE_OBSERVED' && values.length==0){\r\n return { _output:true, _label: 'The photo(s) '+rtype+\"_INTERIOR_DEFICIENCY are required.\"}; \r\n }\r\n return false;\r\n}"
}
]
},
"deficiencyRemediationType": {
"Metadata": [
{
"Name": "deficiencyRemediationType",
"DataType": "Enumerated",
"DisplayText": "Does the deciciency require repair, alteration, or inspection?",
"Description": "User to select the best option that characterizes the type of remediation need for the deficiency.",
"Conditionally": "function execute(data,cx){return cx.IsEmpty() && cx.FindValue('deficiencyName')!='NONE_OBSERVED'}",
"Enumeration": [
{
"Key": "REPAIR_REQUIRED",
"Value": "Repair Required"
},
{
"Key": "ALTERATION_REQUIRED",
"Value": "Alteration Required"
},
{
"Key": "INSPECTION_REQUIRED",
"Value": "Inspection Required"
},
{
"Key": "NONE_REQUIRED",
"Value": "None Required"
}
],
"UITooltip": "Select the best option that characterizes the type of remediation need for the deficiency."
}
]
},
"Metadata": [
{
"ConverType": "None",
"MaxOccurs": "unbounded",
"MinOccurs": "0",
"Required": "True"
}
]
},
"plumbingFixtures": {
"fixtureType": {
"Metadata": [
{
"Name": "fixturesType",
"DataType": "Enumerated",
"DisplayText": "Fixture Type",
"Description": "User to select the best option to identify each plumbing or bathroom fixture found in each individual room.Note: The count and type of fixtures will determine the bathroom type programmatically. A full bathroom is identified by the presence of a shower/tub, sink, and toilet fixtures. A half-bath is identified by the presence of sink and toilet fixtures, with no shower/tub.",
"Required": "True",
"Enumeration": [
{
"Key": "SINK",
"Value": "Sink"
},
{
"Key": "DOUBLE_SINK",
"Value": "Double Sink"
},
{
"Key": "TOILET",
"Value": "Toilet"
},
{
"Key": "TUB_SHOWER",
"Value": "Tub and Shower Combo"
},
{
"Key": "WALK_IN_SHOWER",
"Value": "Walk-in Shower"
},
{
"Key": "TUB_W_NO_SHOWER",
"Value": "Tub with No Shower"
},
{
"Key": "FREESTANDING_TUB",
"Value": "Freestanding Tub"
},
{
"Key": "APPLIANCE_HOOKUP",
"Value": "Appliance Hookup"
},
{
"Key": "LAUNDRY_HOOKUP",
"Value": "Laundry Hookup"
},
{
"Key": "POT_FILLER",
"Value": "Pot Filler"
},
{
"Key": "JETTED_TUB",
"Value": "Jetted Tub"
},
{
"Key": "ROUGH_IN",
"Value": "Rough In"
},
{
"Key": "NONE_OBSERVED",
"Value": "None Observed"
}
],
"UITooltip": "List all plumbing and bathroom fixtures in this room.",
"HelpTextId": "7f37bf8d813a4cd0816ab2cf6ee9c4f3"
}
]
},
"Metadata": [
{
"ConverType": "None",
"MaxOccurs": "unbounded",
"MinOccurs": "0",
"Conditionally": "function execute(data,cx){return cx.IsEmpty() && ['BATHROOM','KITCHEN','BUTLERS_PANTRY','LAUNDRY_ROOM'].indexOf(cx.FindValue('roomType'))>=0;}"
}
]
},
"roomFeatures": {
"roomFeatureType": {
"Metadata": [
{
"Name": "roomFeatureType",
"DataType": "Enumerated",
"DisplayText": "Feature",
"Description": "User to select any room feature(s) from the list of values provided if any exists within the room.",
"Required": "True",
"Enumeration": [
{
"Key": "FIREPLACE",
"Value": "Fireplace"
},
{
"Key": "WOOD_STOVE",
"Value": "Wood Stove"
},
{
"Key": "BUILT_INS",
"Value": "Built Ins"
},
{
"Key": "WET_BAR",
"Value": "Wet Bar"
},
{
"Key": "WALK_IN_CLOSET",
"Value": "Walk-in Closet"
}
],
"UITooltip": "Do any of the following features exist within the room?",
"HelpTextId": "c26aa0dece204056a0bbc2080e76baf8"
}
]
},
"Metadata": [
{
"ConverType": "None",
"MaxOccurs": "unbounded",
"MinOccurs": "0"
}
]
},
"cv_interiorWallType": {
"Metadata": [
{
"Name": "cv_interiorWallType",
"DataType": "Enumerated",
"DisplayText": "Type",
"Description": "User to select the option that best indentifies the type of wall material used in the roo",
"Required": "True",
"Enumeration": [
{
"Key": "DRYWALL",
"Value": "Drywall"
},
{
"Key": "PLASTER",
"Value": "Plaster"
},
{
"Key": "WOOD",
"Value": "Wood"
},
{
"Key": "CONCRETE",
"Value": "Concrete"
},
{
"Key": "BRICK",
"Value": "Brick"
}
]
}
]
},
"cv_interiorFloorType": {
"Metadata": [
{
"Name": "cv_interiorFloorType",
"DataType": "Enumerated",
"DisplayText": "Type",
"Description": "User to select the option that best indentifies the type of flooring used in the room",
"Required": "True",
"Enumeration": [
{
"Key": "HARDWOOD",
"Value": "Hardwood"
},
{
"Key": "CARPET",
"Value": "Carpet"
},
{
"Key": "TILE",
"Value": "Tile"
},
{
"Key": "VINYL",
"Value": "Vinyl"
},
{
"Key": "LAMINATE",
"Value": "Laminate"
}
]
}
]
},
"cv_interiorFeatures": {
"cv_featureType": {
"Metadata": [
{
"Name": "InteriorFeatureType",
"DataType": "Enumerated",
"DisplayText": "Interior Feature Type",
"Description": "Interior Feature Type",
"Enumeration": [
{
"Key": "TrimAndFinish",
"Value": "Trim And Finish"
},
{
"Key": "BathroomWainscot",
"Value": "Bathroom Wainscot"
}
]
}
]
},
"cv_featureTypeDescription": {
"Metadata": [
{
"Name": "InteriorFeatureTypeDescription",
"DataType": "String",
"DisplayText": "Description",
"Description": "This field should contain a description of the materials and conditions.",
"UITooltip": "Interior Feature Type Description",
"UIControl": "textarea"
}
]
},
"Metadata": [
{
"ConverType": "None",
"MaxOccurs": "unbounded",
"MinOccurs": "0"
}
]
},
"interiorUpdates": {
"interiorUpdatedComponent": {
"Metadata": [
{
"Name": "interiorUpdatedComponent",
"DataType": "Enumerated",
"Required": "True",
"DisplayText": "Update Component",
"Description": "User to select any room components that have been replaced or refinished.",
"Enumeration": [
{
"Key": "NONE_OBSERVED",
"Value": "None Observed"
},
{
"Key": "FLOORING",
"Value": "Flooring"
},
{
"Key": "PLUMBING_FIXTURES",
"Value": "Plumbing Fixtures"
},
{
"Key": "ELECTRICAL_FIXTURES",
"Value": "Electrical Fixtures"
},
{
"Key": "CABINET_COUNTERTOPS",
"Value": "Cabinet Countertops"
},
{
"Key": "APPLIANCES",
"Value": "Appliances"
},
{
"Key": "WALLS",
"Value": "Walls"
},
{
"Key": "CEILING",
"Value": "Ceiling"
},
{
"Key": "TRIM_FINISH",
"Value": "TrimAndFinish"
},
{
"Key": "BATHROOM_WAINSCOT",
"Value": "BathroomWainscot"
},
{
"Key": "OTHER",
"Value": "Other"
}
],
"UITooltip": "Select any applicable interior components from the list that have been replaced or refinished.",
"HelpTextId": "e1bc4af784754be1b7eab1a0e065ab82"
}
]
},
"interiorUpdateType": {
"Metadata": [
{
"Name": "interiorUpdateType",
"DataType": "Enumerated",
"DisplayText": "Update Type",
"Description": "User to select the manner in which the component was updated.Refinished = Changed the existing component, such as by painting or refacing.Example: Painting of walls, refinishing of cabinets.Replaced = Removed and replaced the existing component with new materials.",
"Conditionally": "function execute(data,cx){return cx.IsEmpty() && cx.FindValue('interiorUpdatedComponent')!='NONE_OBSERVED';}",
"Enumeration": [
{
"Key": "REPLACED",
"Value": "Replaced"
},
{
"Key": "REFINISHED",
"Value": "Refinished"
}
],
"UITooltip": "Select the manner in which the component was updated.",
"HelpTextId": "a9380a6c03604276ab8f538387454561"
}
]
},
"interiorUpdateTimeframe": {
"Metadata": [
{
"Name": "interiorUpdateTimeframe",
"DataType": "Integer",
"DisplayText": "What year was the update completed?",
"Description": "User to provide the four digit year in which the update was completed",
"Conditionally": "function execute(data,cx){return cx.IsEmpty() && cx.FindValue('interiorUpdatedComponent')!='NONE_OBSERVED';}",
"UITooltip": "Select the approximate timeframe in which the update was completed",
"HelpTextId": "08a2c36216484662984d98e8cf5635a6"
}
]
},
"interiorUpdateDescription": {
"Metadata": [
{
"Name": "interiorUpdateDescription",
"DataType": "String",
"DisplayText": "Description",
"Description": "User to provide a free form text description of the interior update(s) identified within the room.",
"Conditionally": "function execute(data,cx){return cx.IsEmpty() && cx.FindValue('interiorUpdatedComponent')!='NONE_OBSERVED';}",
"UITooltip": "Provide a concise description of every interior update identified."
}
]
},
"cv_photos": {
"photoType": {
"Metadata": [
{
"Name": "photoType",
"DataType": "Enumerated",
"DisplayText": "Photo Type",
"Description": "Photo Type",
"Required": "True",
"Enumeration": [
{
"Key": "OTHER",
"Value": "OTHER"
},
{
"Key": "OTHER_INTERIOR_UPDATE",
"Value": "OTHER_INTERIOR_UPDATE"
},
{
"Key": "FLOORING_INTERIOR_UPDATE",
"Value": "FLOORING_INTERIOR_UPDATE"
},
{
"Key": "PLUMBING_FIXTURES_INTERIOR_UPDATE",
"Value": "PLUMBING_FIXTURES_INTERIOR_UPDATE"
},
{
"Key": "ELECTRICAL_FIXTURES_INTERIOR_UPDATE",
"Value": "ELECTRICAL_FIXTURES_INTERIOR_UPDATE"
},
{
"Key": "CABINET_COUNTERTOPS_INTERIOR_UPDATE",
"Value": "CABINET_COUNTERTOPS_INTERIOR_UPDATE"
},
{
"Key": "APPLIANCES_INTERIOR_UPDATE",
"Value": "APPLIANCES_INTERIOR_UPDATE"
},
{
"Key": "WALLS_INTERIOR_UPDATE",
"Value": "WALLS_INTERIOR_UPDATE"
},
{
"Key": "CEILING_INTERIOR_UPDATE",
"Value": "CEILING_INTERIOR_UPDATE"
}
]
}
]
},
"Metadata": [
{
"ConverType": "None",
"MaxOccurs": "unbounded",
"MinOccurs": "0",
"RequiredMessage": "At least one interiorUpdate photo is required.",
"Conditionally": "function execute(data,cx){return cx.IsEmpty() && cx.FindValue('interiorUpdatedComponent')!='NONE_OBSERVED';}"
}
]
},
"Metadata": [
{
"ConverType": "None",
"MaxOccurs": "unbounded",
"MinOccurs": "0",
"Required": "True"
}
]
},
"cv_kitchenEquipment": {
"cv_equipmentType": {
"Metadata": [
{
"Name": "KitchenEquipmentType",
"DataType": "Enumerated",
"DisplayText": "Kitchen Equipment Type",
"Description": "Kitchen Equipment Type",
"Required": "True",
"Enumeration": [
{
"Key": "Refrigerator",
"Value": "Refrigerator"
},
{
"Key": "RangeOven",
"Value": "RangeOven"
},
{
"Key": "Dishwasher",
"Value": "Dishwasher"
},
{
"Key": "Disposal",
"Value": "Disposal"
},
{
"Key": "Microwave",
"Value": "Microwave"
},
{
"Key": "WasherDryer",
"Value": "WasherDryer"
},
{
"Key": "Other",
"Value": "Other"
}
]
}
]
},
"cv_equipmentDescription": {
"Metadata": [
{
"Name": "KitchenEquipmentDescription",
"DataType": "String",
"DisplayText": "Kitchen Equipment Description",
"Description": "Kitchen Equipment Description",
"Required": "True"
}
]
},
"Metadata": [
{
"ConverType": "None",
"MaxOccurs": "unbounded",
"MinOccurs": "0"