-
Notifications
You must be signed in to change notification settings - Fork 2
/
CfmlAttributes-railo2.json
1124 lines (1124 loc) · 83.6 KB
/
CfmlAttributes-railo2.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
{
"cfabort/type": { "attribOption": [] },
"cfabort/showerror": { "attribOption": [] },
"cfapplet/height": { "attribOption": [] },
"cfapplet/notsupported": { "attribOption": [] },
"cfapplet/align": { "attribOption": [] },
"cfapplet/appletsource": { "attribOption": [] },
"cfapplet/width": { "attribOption": [] },
"cfapplet/name": { "attribOption": [] },
"cfapplet/hspace": { "attribOption": [] },
"cfapplet/paramn": { "attribOption": [] },
"cfapplet/vspace": { "attribOption": [] },
"cfapplication/setclientcookies": { "attribOption": ["true","false"], "type": "boolean" },
"cfapplication/sessionmanagement": { "attribOption": ["true","false"], "type": "boolean" },
"cfapplication/setdomaincookies": { "attribOption": ["true","false"], "type": "boolean" },
"cfapplication/name": { "attribOption": [] },
"cfapplication/sessiontimeout": { "attribOption": [] },
"cfapplication/clientstorage": { "attribOption": [] },
"cfapplication/clientmanagement": { "attribOption": ["true","false"], "type": "boolean" },
"cfapplication/scriptprotect": { "attribOption": [] },
"cfapplication/loginstorage": { "attribOption": [] },
"cfapplication/applicationtimeout": { "attribOption": [] },
"cfargument/default": { "attribOption": [] },
"cfargument/required": { "attribOption": ["true","false"], "type": "boolean" },
"cfargument/hint": { "attribOption": [] },
"cfargument/displayname": { "attribOption": [] },
"cfargument/name": { "attribOption": [] },
"cfargument/type": { "attribOption": [] },
"cfassociate/basetag": { "attribOption": [] },
"cfassociate/datacollection": { "attribOption": [] },
"cfcache/cachedirectory": { "attribOption": [] },
"cfcache/Timespan": { "attribOption": [] },
"cfcache/directory": { "attribOption": [] },
"cfcache/password": { "attribOption": [] },
"cfcache/protocol": { "attribOption": [] },
"cfcache/id": { "attribOption": [] },
"cfcache/key": { "attribOption": [] },
"cfcache/port": { "attribOption": [] },
"cfcache/timeout": { "attribOption": [] },
"cfcache/action": { "attribOption": [] },
"cfcache/expireurl": { "attribOption": [] },
"cfcache/username": { "attribOption": [] },
"cfcalendar/endrange": { "attribOption": [] },
"cfcalendar/visible": { "attribOption": ["true","false"], "type": "boolean" },
"cfcalendar/monthnames": { "attribOption": [] },
"cfcalendar/startrange": { "attribOption": [] },
"cfcalendar/disabled": { "attribOption": [] },
"cfcalendar/tooltip": { "attribOption": [] },
"cfcalendar/onblur": { "attribOption": [] },
"cfcalendar/firstdayofweek": { "attribOption": [] },
"cfcalendar/enabled": { "attribOption": ["true","false"], "type": "boolean" },
"cfcalendar/height": { "attribOption": [] },
"cfcalendar/daynames": { "attribOption": [] },
"cfcalendar/width": { "attribOption": [] },
"cfcalendar/mask": { "attribOption": [] },
"cfcalendar/style": { "attribOption": [] },
"cfcalendar/selecteddate": { "attribOption": [] },
"cfcalendar/onchange": { "attribOption": [] },
"cfcalendar/onfocus": { "attribOption": [] },
"cfcalendar/name": { "attribOption": [] },
"cfcase/delimiters": { "attribOption": [] },
"cfcase/value": { "attribOption": [] },
"cfcatch/type": { "attribOption": [] },
"cfchart/fontitalic": { "attribOption": ["true","false"], "type": "boolean" },
"cfchart/showmarkers": { "attribOption": ["true","false"], "type": "boolean" },
"cfchart/xaxistitle": { "attribOption": [] },
"cfchart/gridlines": { "attribOption": [] },
"cfchart/yaxistype": { "attribOption": [] },
"cfchart/sortxaxis": { "attribOption": ["true","false"], "type": "boolean" },
"cfchart/foregroundcolor": { "attribOption": [] },
"cfchart/databackgroundcolor": { "attribOption": [] },
"cfchart/labelformat": { "attribOption": [] },
"cfchart/style": { "attribOption": [] },
"cfchart/show3d": { "attribOption": ["true","false"], "type": "boolean" },
"cfchart/URL": { "attribOption": [] },
"cfchart/fontbold": { "attribOption": ["true","false"], "type": "boolean" },
"cfchart/name": { "attribOption": [] },
"cfchart/scalefrom": { "attribOption": [] },
"cfchart/backgroundcolor": { "attribOption": [] },
"cfchart/chartheight": { "attribOption": [] },
"cfchart/yaxistitle": { "attribOption": [] },
"cfchart/xoffset": { "attribOption": [] },
"cfchart/tipstyle": { "attribOption": [] },
"cfchart/scaleto": { "attribOption": [] },
"cfchart/format": { "attribOption": [] },
"cfchart/font": { "attribOption": [] },
"cfchart/xaxistype": { "attribOption": [] },
"cfchart/tipbgcolor": { "attribOption": [] },
"cfchart/showlegend": { "attribOption": ["true","false"], "type": "boolean" },
"cfchart/chartwidth": { "attribOption": [] },
"cfchart/markersize": { "attribOption": [] },
"cfchart/showygridlines": { "attribOption": ["true","false"], "type": "boolean" },
"cfchart/showborder": { "attribOption": ["true","false"], "type": "boolean" },
"cfchart/showxgridlines": { "attribOption": ["true","false"], "type": "boolean" },
"cfchart/title": { "attribOption": [] },
"cfchart/pieslicestyle": { "attribOption": [] },
"cfchart/yoffset": { "attribOption": [] },
"cfchart/fontsize": { "attribOption": [] },
"cfchart/seriesplacement": { "attribOption": [] },
"cfchartdata/item": { "attribOption": [] },
"cfchartdata/value": { "attribOption": [] },
"cfchartseries/valuecolumn": { "attribOption": [] },
"cfchartseries/itemcolumn": { "attribOption": [] },
"cfchartseries/query": { "attribOption": [] },
"cfchartseries/markerstyle": { "attribOption": [] },
"cfchartseries/colorlist": { "attribOption": [] },
"cfchartseries/seriescolor": { "attribOption": [] },
"cfchartseries/serieslabel": { "attribOption": [] },
"cfchartseries/type": { "attribOption": [] },
"cfchartseries/datalabelstyle": { "attribOption": [] },
"cfchartseries/paintstyle": { "attribOption": [] },
"cfcol/text": { "attribOption": [] },
"cfcol/align": { "attribOption": [] },
"cfcol/width": { "attribOption": [] },
"cfcol/header": { "attribOption": [] },
"cfcollection/language": { "attribOption": [] },
"cfcollection/path": { "attribOption": [] },
"cfcollection/collection": { "attribOption": [] },
"cfcollection/categories": { "attribOption": ["true","false"], "type": "boolean" },
"cfcollection/name": { "attribOption": [] },
"cfcollection/action": { "attribOption": [] },
"cfcomponent/name": { "attribOption": [] },
"cfcomponent/bindingname": { "attribOption": [] },
"cfcomponent/hint": { "attribOption": [] },
"cfcomponent/wsdlfile": { "attribOption": [] },
"cfcomponent/style": { "attribOption": [] },
"cfcomponent/output": { "attribOption": ["true","false"], "type": "boolean" },
"cfcomponent/serviceportname": { "attribOption": [] },
"cfcomponent/display": { "attribOption": [] },
"cfcomponent/displayname": { "attribOption": [] },
"cfcomponent/synchronized": { "attribOption": ["true","false"], "type": "boolean" },
"cfcomponent/extends": { "attribOption": [] },
"cfcomponent/porttypename": { "attribOption": [] },
"cfcomponent/namespace": { "attribOption": [] },
"cfcontent/content": { "attribOption": [] },
"cfcontent/reset": { "attribOption": ["true","false"], "type": "boolean" },
"cfcontent/deletefile": { "attribOption": ["true","false"], "type": "boolean" },
"cfcontent/variable": { "attribOption": [] },
"cfcontent/file": { "attribOption": [] },
"cfcontent/type": { "attribOption": [] },
"cfcookie/domain": { "attribOption": [] },
"cfcookie/expires": { "attribOption": [] },
"cfcookie/path": { "attribOption": [] },
"cfcookie/name": { "attribOption": [] },
"cfcookie/value": { "attribOption": [] },
"cfcookie/secure": { "attribOption": ["true","false"], "type": "boolean" },
"cfdirectory/mode": { "attribOption": [] },
"cfdirectory/sort": { "attribOption": [] },
"cfdirectory/filter": { "attribOption": [] },
"cfdirectory/directory": { "attribOption": [] },
"cfdirectory/serverpassword": { "attribOption": [] },
"cfdirectory/recurse": { "attribOption": ["true","false"], "type": "boolean" },
"cfdirectory/listinfo": { "attribOption": [] },
"cfdirectory/name": { "attribOption": [] },
"cfdirectory/action": { "attribOption": [] },
"cfdirectory/newdirectory": { "attribOption": [] },
"cfdocument/marginbottom": { "attribOption": [] },
"cfdocument/permissions": { "attribOption": [] },
"cfdocument/filename": { "attribOption": [] },
"cfdocument/proxyuser": { "attribOption": [] },
"cfdocument/pageheight": { "attribOption": [] },
"cfdocument/name": { "attribOption": [] },
"cfdocument/fontembed": { "attribOption": [] },
"cfdocument/pagetype": { "attribOption": [] },
"cfdocument/encryption": { "attribOption": [] },
"cfdocument/src": { "attribOption": [] },
"cfdocument/format": { "attribOption": [] },
"cfdocument/proxyport": { "attribOption": [] },
"cfdocument/backgroundvisible": { "attribOption": ["true","false"], "type": "boolean" },
"cfdocument/proxypassword": { "attribOption": [] },
"cfdocument/marginright": { "attribOption": [] },
"cfdocument/marginleft": { "attribOption": [] },
"cfdocument/scale": { "attribOption": [] },
"cfdocument/pagewidth": { "attribOption": [] },
"cfdocument/proxyserver": { "attribOption": [] },
"cfdocument/ownerpassword": { "attribOption": [] },
"cfdocument/userpassword": { "attribOption": [] },
"cfdocument/unit": { "attribOption": [] },
"cfdocument/overwrite": { "attribOption": ["true","false"], "type": "boolean" },
"cfdocument/srcfile": { "attribOption": [] },
"cfdocument/orientation": { "attribOption": [] },
"cfdocument/margintop": { "attribOption": [] },
"cfdocument/mimetype": { "attribOption": [] },
"cfdocumentitem/type": { "attribOption": [] },
"cfdocumentsection/marginbottom": { "attribOption": [] },
"cfdocumentsection/marginright": { "attribOption": [] },
"cfdocumentsection/marginleft": { "attribOption": [] },
"cfdocumentsection/srcfile": { "attribOption": [] },
"cfdocumentsection/margintop": { "attribOption": [] },
"cfdocumentsection/src": { "attribOption": [] },
"cfdocumentsection/mimetype": { "attribOption": [] },
"cfdump/maxlevel": { "attribOption": [] },
"cfdump/var": { "attribOption": [] },
"cfdump/type": { "attribOption": [] },
"cfdump/eval": { "attribOption": [] },
"cfdump/expand": { "attribOption": ["true","false"], "type": "boolean" },
"cfdump/label": { "attribOption": [] },
"cfelseif/contition": { "attribOption": ["true","false"], "type": "boolean" },
"cferror/mailto": { "attribOption": [] },
"cferror/exception": { "attribOption": [] },
"cferror/template": { "attribOption": [] },
"cferror/type": { "attribOption": [] },
"cfexecute/outputfile": { "attribOption": [] },
"cfexecute/arguments": { "attribOption": [] },
"cfexecute/variable": { "attribOption": [] },
"cfexecute/name": { "attribOption": [] },
"cfexecute/timeout": { "attribOption": [] },
"cfexit/method": { "attribOption": [] },
"cffile/charset": { "attribOption": [] },
"cffile/mode": { "attribOption": [] },
"cffile/source": { "attribOption": [] },
"cffile/fixnewline": { "attribOption": ["true","false"], "type": "boolean" },
"cffile/variable": { "attribOption": [] },
"cffile/filefield": { "attribOption": [] },
"cffile/serverpassword": { "attribOption": [] },
"cffile/output": { "attribOption": [] },
"cffile/accept": { "attribOption": [] },
"cffile/nameconflict": { "attribOption": [] },
"cffile/file": { "attribOption": [] },
"cffile/addnewline": { "attribOption": ["true","false"], "type": "boolean" },
"cffile/destination": { "attribOption": [] },
"cffile/action": { "attribOption": [] },
"cffile/result": { "attribOption": [] },
"cffile/attributes": { "attribOption": [] },
"cfflush/interval": { "attribOption": [] },
"cfform/skin": { "attribOption": [] },
"cfform/onmouseover": { "attribOption": [] },
"cfform/acceptcharset": { "attribOption": [] },
"cfform/onmousemove": { "attribOption": [] },
"cfform/scriptsrc": { "attribOption": [] },
"cfform/enablecab": { "attribOption": ["true","false"], "type": "boolean" },
"cfform/style": { "attribOption": [] },
"cfform/codebase": { "attribOption": [] },
"cfform/passthrough": { "attribOption": [] },
"cfform/onreset": { "attribOption": [] },
"cfform/width": { "attribOption": [] },
"cfform/onmousedown": { "attribOption": [] },
"cfform/dir": { "attribOption": [] },
"cfform/accept": { "attribOption": [] },
"cfform/archive": { "attribOption": [] },
"cfform/name": { "attribOption": [] },
"cfform/enctype": { "attribOption": [] },
"cfform/class": { "attribOption": [] },
"cfform/timeout": { "attribOption": [] },
"cfform/onclick": { "attribOption": [] },
"cfform/format": { "attribOption": [] },
"cfform/preloader": { "attribOption": ["true","false"], "type": "boolean" },
"cfform/method": { "attribOption": [] },
"cfform/height": { "attribOption": [] },
"cfform/onmouseup": { "attribOption": [] },
"cfform/onkeydown": { "attribOption": [] },
"cfform/wmode": { "attribOption": [] },
"cfform/accessible": { "attribOption": ["true","false"], "type": "boolean" },
"cfform/preservedata": { "attribOption": ["true","false"], "type": "boolean" },
"cfform/onsubmit": { "attribOption": [] },
"cfform/lang": { "attribOption": [] },
"cfform/id": { "attribOption": [] },
"cfform/onmouseout": { "attribOption": [] },
"cfform/onload": { "attribOption": [] },
"cfform/target": { "attribOption": [] },
"cfform/onkeyup": { "attribOption": [] },
"cfform/onkeypress": { "attribOption": [] },
"cfform/action": { "attribOption": [] },
"cfform/title": { "attribOption": [] },
"cfform/ondblclick": { "attribOption": [] },
"cfformgroup/style": { "attribOption": [] },
"cfformgroup/id": { "attribOption": [] },
"cfformgroup/width": { "attribOption": [] },
"cfformgroup/visible": { "attribOption": ["true","false"], "type": "boolean" },
"cfformgroup/onchange": { "attribOption": [] },
"cfformgroup/maxrows": { "attribOption": [] },
"cfformgroup/selectedindex": { "attribOption": [] },
"cfformgroup/enabled": { "attribOption": ["true","false"], "type": "boolean" },
"cfformgroup/query": { "attribOption": [] },
"cfformgroup/type": { "attribOption": [] },
"cfformgroup/label": { "attribOption": [] },
"cfformgroup/startrow": { "attribOption": [] },
"cfformgroup/height": { "attribOption": [] },
"cfformgroup/tooltip": { "attribOption": [] },
"cfformitem/height": { "attribOption": [] },
"cfformitem/enabled": { "attribOption": ["true","false"], "type": "boolean" },
"cfformitem/type": { "attribOption": [] },
"cfformitem/width": { "attribOption": [] },
"cfformitem/style": { "attribOption": [] },
"cfformitem/tooltip": { "attribOption": [] },
"cfformitem/visible": { "attribOption": ["true","false"], "type": "boolean" },
"cfformitem/bind": { "attribOption": [] },
"cfforward/template": { "attribOption": [] },
"cfftp/remotefile": { "attribOption": [] },
"cfftp/failifexists": { "attribOption": ["true","false"], "type": "boolean" },
"cfftp/item": { "attribOption": [] },
"cfftp/existing": { "attribOption": [] },
"cfftp/retrycount": { "attribOption": [] },
"cfftp/proxyport": { "attribOption": [] },
"cfftp/proxypassword": { "attribOption": [] },
"cfftp/server": { "attribOption": [] },
"cfftp/directory": { "attribOption": [] },
"cfftp/proxyuser": { "attribOption": [] },
"cfftp/localfile": { "attribOption": [] },
"cfftp/transfermode": { "attribOption": [] },
"cfftp/proxyserver": { "attribOption": [] },
"cfftp/asciiextensionlist": { "attribOption": [] },
"cfftp/password": { "attribOption": [] },
"cfftp/name": { "attribOption": [] },
"cfftp/port": { "attribOption": [] },
"cfftp/timeout": { "attribOption": [] },
"cfftp/action": { "attribOption": [] },
"cfftp/result": { "attribOption": [] },
"cfftp/stoponerror": { "attribOption": ["true","false"], "type": "boolean" },
"cfftp/connection": { "attribOption": [] },
"cfftp/username": { "attribOption": [] },
"cfftp/new": { "attribOption": [] },
"cfftp/passive": { "attribOption": ["true","false"], "type": "boolean" },
"cffunction/access": { "attribOption": [] },
"cffunction/hint": { "attribOption": [] },
"cffunction/returntype": { "attribOption": [] },
"cffunction/output": { "attribOption": ["true","false"], "type": "boolean" },
"cffunction/displayname": { "attribOption": [] },
"cffunction/throws": { "attribOption": [] },
"cffunction/name": { "attribOption": [] },
"cffunction/roles": { "attribOption": [] },
"cffunction/description": { "attribOption": [] },
"cfgraph/itemcolumn": { "attribOption": [] },
"cfgraph/query": { "attribOption": [] },
"cfgraph/gridlines": { "attribOption": [] },
"cfgraph/graphheight": { "attribOption": [] },
"cfgraph/valuelabelfont": { "attribOption": [] },
"cfgraph/linewidth": { "attribOption": [] },
"cfgraph/fill": { "attribOption": [] },
"cfgraph/bordercolor": { "attribOption": [] },
"cfgraph/showitemlabel": { "attribOption": ["true","false"], "type": "boolean" },
"cfgraph/url": { "attribOption": [] },
"cfgraph/titlefont": { "attribOption": [] },
"cfgraph/scalefrom": { "attribOption": [] },
"cfgraph/borderwidth": { "attribOption": [] },
"cfgraph/legendfont": { "attribOption": [] },
"cfgraph/backgroundcolor": { "attribOption": [] },
"cfgraph/barspacing": { "attribOption": [] },
"cfgraph/scaleto": { "attribOption": [] },
"cfgraph/valuecolumn": { "attribOption": [] },
"cfgraph/valuelocation": { "attribOption": [] },
"cfgraph/showlegend": { "attribOption": [] },
"cfgraph/colorlist": { "attribOption": [] },
"cfgraph/showvaluelabel": { "attribOption": ["true","false"], "type": "boolean" },
"cfgraph/linecolor": { "attribOption": [] },
"cfgraph/itemlabelsize": { "attribOption": [] },
"cfgraph/urlcolumn": { "attribOption": [] },
"cfgraph/valuelabelsize": { "attribOption": [] },
"cfgraph/graphwidth": { "attribOption": [] },
"cfgraph/itemlabelorientation": { "attribOption": [] },
"cfgraph/fileformat": { "attribOption": [] },
"cfgraph/itemlabelfont": { "attribOption": [] },
"cfgraph/type": { "attribOption": [] },
"cfgraph/title": { "attribOption": [] },
"cfgraph/depth": { "attribOption": [] },
"cfgraphdata/item": { "attribOption": [] },
"cfgraphdata/color": { "attribOption": [] },
"cfgraphdata/url": { "attribOption": [] },
"cfgraphdata/value": { "attribOption": [] },
"cfgrid/target": { "attribOption": [] },
"cfgrid/width": { "attribOption": [] },
"cfgrid/textcolor": { "attribOption": [] },
"cfgrid/notsupported": { "attribOption": [] },
"cfgrid/height": { "attribOption": [] },
"cfgrid/autowidth": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/rowheaders": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/colheaders": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/bold": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/insertbutton": { "attribOption": [] },
"cfgrid/sortascendingbutton": { "attribOption": [] },
"cfgrid/deletebutton": { "attribOption": [] },
"cfgrid/rowheaderbold": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/selectmode": { "attribOption": [] },
"cfgrid/insert": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/enabled": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/name": { "attribOption": [] },
"cfgrid/onvalidate": { "attribOption": [] },
"cfgrid/gridlines": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/colheaderfontsize": { "attribOption": [] },
"cfgrid/maxrows": { "attribOption": [] },
"cfgrid/italic": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/href": { "attribOption": [] },
"cfgrid/fontsize": { "attribOption": [] },
"cfgrid/visible": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/picturebar": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/onblur": { "attribOption": [] },
"cfgrid/rowheaderalign": { "attribOption": [] },
"cfgrid/format": { "attribOption": [] },
"cfgrid/hspace": { "attribOption": [] },
"cfgrid/onerror": { "attribOption": [] },
"cfgrid/colheadertextcolor": { "attribOption": [] },
"cfgrid/rowheight": { "attribOption": [] },
"cfgrid/rowheaderitalic": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/griddataalign": { "attribOption": [] },
"cfgrid/colheaderfont": { "attribOption": [] },
"cfgrid/tooltip": { "attribOption": [] },
"cfgrid/colheaderalign": { "attribOption": [] },
"cfgrid/delete": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/hrefkey": { "attribOption": [] },
"cfgrid/rowheaderwidth": { "attribOption": [] },
"cfgrid/colheaderitalic": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/rowheadertextcolor": { "attribOption": [] },
"cfgrid/selectcolor": { "attribOption": [] },
"cfgrid/vspace": { "attribOption": [] },
"cfgrid/appendkey": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/style": { "attribOption": [] },
"cfgrid/colheaderbold": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/onfocus": { "attribOption": [] },
"cfgrid/align": { "attribOption": [] },
"cfgrid/rowheaderfontsize": { "attribOption": [] },
"cfgrid/font": { "attribOption": [] },
"cfgrid/highlighthref": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/sort": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/query": { "attribOption": [] },
"cfgrid/bgcolor": { "attribOption": [] },
"cfgrid/sortdescendingbutton": { "attribOption": [] },
"cfgrid/rowheaderfont": { "attribOption": [] },
"cfgrid/onchange": { "attribOption": [] },
"cfgridcolumn/bgcolor": { "attribOption": [] },
"cfgridcolumn/values": { "attribOption": [] },
"cfgridcolumn/headeralign": { "attribOption": [] },
"cfgridcolumn/dataalign": { "attribOption": [] },
"cfgridcolumn/type": { "attribOption": [] },
"cfgridcolumn/valuesdelimiter": { "attribOption": [] },
"cfgridcolumn/italic": { "attribOption": ["true","false"], "type": "boolean" },
"cfgridcolumn/hrefkey": { "attribOption": [] },
"cfgridcolumn/font": { "attribOption": [] },
"cfgridcolumn/select": { "attribOption": ["true","false"], "type": "boolean" },
"cfgridcolumn/bold": { "attribOption": ["true","false"], "type": "boolean" },
"cfgridcolumn/width": { "attribOption": [] },
"cfgridcolumn/headerfontsize": { "attribOption": [] },
"cfgridcolumn/display": { "attribOption": ["true","false"], "type": "boolean" },
"cfgridcolumn/headertextcolor": { "attribOption": [] },
"cfgridcolumn/header": { "attribOption": [] },
"cfgridcolumn/mask": { "attribOption": [] },
"cfgridcolumn/href": { "attribOption": [] },
"cfgridcolumn/numberformat": { "attribOption": [] },
"cfgridcolumn/headerfont": { "attribOption": [] },
"cfgridcolumn/fontsize": { "attribOption": [] },
"cfgridcolumn/headeritalic": { "attribOption": ["true","false"], "type": "boolean" },
"cfgridcolumn/headerbold": { "attribOption": ["true","false"], "type": "boolean" },
"cfgridcolumn/textcolor": { "attribOption": [] },
"cfgridcolumn/target": { "attribOption": [] },
"cfgridcolumn/valuesdisplay": { "attribOption": [] },
"cfgridcolumn/name": { "attribOption": [] },
"cfgridrow/data": { "attribOption": [] },
"cfgridupdate/datasource": { "attribOption": [] },
"cfgridupdate/grid": { "attribOption": [] },
"cfgridupdate/dbname": { "attribOption": [] },
"cfgridupdate/tablequalifier": { "attribOption": [] },
"cfgridupdate/providerdsn": { "attribOption": [] },
"cfgridupdate/username": { "attribOption": [] },
"cfgridupdate/tablename": { "attribOption": [] },
"cfgridupdate/keyonly": { "attribOption": ["true","false"], "type": "boolean" },
"cfgridupdate/dbserver": { "attribOption": [] },
"cfgridupdate/connectstring": { "attribOption": [] },
"cfgridupdate/provider": { "attribOption": [] },
"cfgridupdate/tableowner": { "attribOption": [] },
"cfgridupdate/password": { "attribOption": [] },
"cfgridupdate/dbtype": { "attribOption": [] },
"cfheader/charset": { "attribOption": [] },
"cfheader/statustext": { "attribOption": [] },
"cfheader/statuscode": { "attribOption": [] },
"cfheader/name": { "attribOption": [] },
"cfheader/value": { "attribOption": [] },
"cfhtmlhead/text": { "attribOption": [] },
"cfhttp/charset": { "attribOption": [] },
"cfhttp/getasbinary": { "attribOption": [] },
"cfhttp/throwonerror": { "attribOption": ["true","false"], "type": "boolean" },
"cfhttp/useragent": { "attribOption": [] },
"cfhttp/proxyuser": { "attribOption": [] },
"cfhttp/url": { "attribOption": [] },
"cfhttp/columns": { "attribOption": [] },
"cfhttp/password": { "attribOption": [] },
"cfhttp/file": { "attribOption": [] },
"cfhttp/firstrowasheaders": { "attribOption": ["true","false"], "type": "boolean" },
"cfhttp/textqualifier": { "attribOption": [] },
"cfhttp/name": { "attribOption": [] },
"cfhttp/timeout": { "attribOption": [] },
"cfhttp/delimiter": { "attribOption": [] },
"cfhttp/multipart": { "attribOption": ["true","false"], "type": "boolean" },
"cfhttp/username": { "attribOption": [] },
"cfhttp/result": { "attribOption": [] },
"cfhttp/method": { "attribOption": [] },
"cfhttp/proxyport": { "attribOption": [] },
"cfhttp/proxypassword": { "attribOption": [] },
"cfhttp/path": { "attribOption": [] },
"cfhttp/proxyserver": { "attribOption": [] },
"cfhttp/port": { "attribOption": [] },
"cfhttp/redirect": { "attribOption": ["true","false"], "type": "boolean" },
"cfhttp/resolveurl": { "attribOption": ["true","false"], "type": "boolean" },
"cfhttpparam/encoded": { "attribOption": ["true","false"], "type": "boolean" },
"cfhttpparam/file": { "attribOption": [] },
"cfhttpparam/name": { "attribOption": [] },
"cfhttpparam/type": { "attribOption": [] },
"cfhttpparam/value": { "attribOption": [] },
"cfhttpparam/mimetype": { "attribOption": [] },
"cfif/contition": { "attribOption": ["true","false"], "type": "boolean" },
"cfimport/prefix": { "attribOption": [] },
"cfimport/taglib": { "attribOption": [] },
"cfinclude/template": { "attribOption": [] },
"cfindex/prefix": { "attribOption": [] },
"cfindex/language": { "attribOption": [] },
"cfindex/query": { "attribOption": [] },
"cfindex/custom3": { "attribOption": [] },
"cfindex/custom1": { "attribOption": [] },
"cfindex/recurse": { "attribOption": ["true","false"], "type": "boolean" },
"cfindex/urlpath": { "attribOption": [] },
"cfindex/status": { "attribOption": [] },
"cfindex/collection": { "attribOption": [] },
"cfindex/categoryTree": { "attribOption": [] },
"cfindex/external": { "attribOption": ["true","false"], "type": "boolean" },
"cfindex/extensions": { "attribOption": [] },
"cfindex/category": { "attribOption": [] },
"cfindex/key": { "attribOption": [] },
"cfindex/type": { "attribOption": [] },
"cfindex/custom4": { "attribOption": [] },
"cfindex/custom2": { "attribOption": [] },
"cfindex/action": { "attribOption": [] },
"cfindex/title": { "attribOption": [] },
"cfindex/body": { "attribOption": [] },
"cfinput/onmouseover": { "attribOption": [] },
"cfinput/range": { "attribOption": [] },
"cfinput/border": { "attribOption": [] },
"cfinput/datasrc": { "attribOption": [] },
"cfinput/onmousemove": { "attribOption": [] },
"cfinput/maxlength": { "attribOption": [] },
"cfinput/tooltip": { "attribOption": [] },
"cfinput/style": { "attribOption": [] },
"cfinput/passthrough": { "attribOption": [] },
"cfinput/onvalidate": { "attribOption": [] },
"cfinput/width": { "attribOption": [] },
"cfinput/dir": { "attribOption": [] },
"cfinput/accept": { "attribOption": [] },
"cfinput/alt": { "attribOption": [] },
"cfinput/mask": { "attribOption": [] },
"cfinput/onfocus": { "attribOption": [] },
"cfinput/class": { "attribOption": [] },
"cfinput/value": { "attribOption": [] },
"cfinput/checked": { "attribOption": [] },
"cfinput/tabindex": { "attribOption": [] },
"cfinput/onchange": { "attribOption": [] },
"cfinput/required": { "attribOption": ["true","false"], "type": "boolean" },
"cfinput/validateat": { "attribOption": [] },
"cfinput/monthnames": { "attribOption": [] },
"cfinput/onselect": { "attribOption": [] },
"cfinput/size": { "attribOption": [] },
"cfinput/id": { "attribOption": [] },
"cfinput/onmouseout": { "attribOption": [] },
"cfinput/notab": { "attribOption": [] },
"cfinput/onkeypress": { "attribOption": [] },
"cfinput/title": { "attribOption": [] },
"cfinput/firstdayofweek": { "attribOption": [] },
"cfinput/readonly": { "attribOption": [] },
"cfinput/message": { "attribOption": [] },
"cfinput/daynames": { "attribOption": [] },
"cfinput/align": { "attribOption": [] },
"cfinput/datafld": { "attribOption": [] },
"cfinput/disabled": { "attribOption": [] },
"cfinput/ismap": { "attribOption": [] },
"cfinput/onmousedown": { "attribOption": [] },
"cfinput/name": { "attribOption": [] },
"cfinput/bind": { "attribOption": [] },
"cfinput/label": { "attribOption": [] },
"cfinput/accesskey": { "attribOption": [] },
"cfinput/onclick": { "attribOption": [] },
"cfinput/src": { "attribOption": [] },
"cfinput/height": { "attribOption": [] },
"cfinput/onerror": { "attribOption": [] },
"cfinput/enabled": { "attribOption": [] },
"cfinput/pattern": { "attribOption": [] },
"cfinput/onmouseup": { "attribOption": [] },
"cfinput/onkeydown": { "attribOption": [] },
"cfinput/dataformatas": { "attribOption": [] },
"cfinput/visible": { "attribOption": [] },
"cfinput/lang": { "attribOption": [] },
"cfinput/onblur": { "attribOption": [] },
"cfinput/type": { "attribOption": [] },
"cfinput/hspace": { "attribOption": [] },
"cfinput/onkeyup": { "attribOption": [] },
"cfinput/usemap": { "attribOption": [] },
"cfinput/validate": { "attribOption": [] },
"cfinput/ondblclick": { "attribOption": [] },
"cfinsert/tablequalifier": { "attribOption": [] },
"cfinsert/tablename": { "attribOption": [] },
"cfinsert/tableowner": { "attribOption": [] },
"cfinsert/formfields": { "attribOption": [] },
"cfinsert/password": { "attribOption": [] },
"cfinsert/datasource": { "attribOption": [] },
"cfinsert/username": { "attribOption": [] },
"cfinvoke/serviceport": { "attribOption": [] },
"cfinvoke/proxyport": { "attribOption": [] },
"cfinvoke/proxypassword": { "attribOption": [] },
"cfinvoke/proxyuser": { "attribOption": [] },
"cfinvoke/proxyserver": { "attribOption": [] },
"cfinvoke/password": { "attribOption": [] },
"cfinvoke/webservice": { "attribOption": [] },
"cfinvoke/timeout": { "attribOption": [] },
"cfinvoke/username": { "attribOption": [] },
"cfinvoke/returnvariable": { "attribOption": [] },
"cfinvoke/method": { "attribOption": [] },
"cfinvoke/argumentcollection": { "attribOption": [] },
"cfinvoke/component": { "attribOption": [] },
"cfinvokeargument/omit": { "attribOption": ["true","false"], "type": "boolean" },
"cfinvokeargument/name": { "attribOption": [] },
"cfinvokeargument/value": { "attribOption": [] },
"cfldap/returnasbinary": { "attribOption": [] },
"cfldap/sort": { "attribOption": [] },
"cfldap/filter": { "attribOption": [] },
"cfldap/server": { "attribOption": [] },
"cfldap/start": { "attribOption": [] },
"cfldap/rebind": { "attribOption": ["true","false"], "type": "boolean" },
"cfldap/dn": { "attribOption": [] },
"cfldap/startrow": { "attribOption": [] },
"cfldap/separator": { "attribOption": [] },
"cfldap/password": { "attribOption": [] },
"cfldap/maxrows": { "attribOption": [] },
"cfldap/name": { "attribOption": [] },
"cfldap/filterfile": { "attribOption": [] },
"cfldap/referral": { "attribOption": [] },
"cfldap/port": { "attribOption": [] },
"cfldap/scope": { "attribOption": [] },
"cfldap/timeout": { "attribOption": [] },
"cfldap/action": { "attribOption": [] },
"cfldap/delimiter": { "attribOption": [] },
"cfldap/modifytype": { "attribOption": [] },
"cfldap/attributes": { "attribOption": [] },
"cfldap/username": { "attribOption": [] },
"cfldap/sortcontrol": { "attribOption": [] },
"cflocation/addtoken": { "attribOption": ["true","false"], "type": "boolean" },
"cflocation/url": { "attribOption": [] },
"cflocation/statuscode": { "attribOption": [] },
"cflock/throwontimeout": { "attribOption": ["true","false"], "type": "boolean" },
"cflock/id": { "attribOption": [] },
"cflock/name": { "attribOption": [] },
"cflock/type": { "attribOption": [] },
"cflock/scope": { "attribOption": [] },
"cflock/timeout": { "attribOption": [] },
"cflog/date": { "attribOption": ["true","false"], "type": "boolean" },
"cflog/charset": { "attribOption": [] },
"cflog/text": { "attribOption": [] },
"cflog/application": { "attribOption": ["true","false"], "type": "boolean" },
"cflog/log": { "attribOption": [] },
"cflog/time": { "attribOption": ["true","false"], "type": "boolean" },
"cflog/file": { "attribOption": [] },
"cflog/type": { "attribOption": [] },
"cflog/thread": { "attribOption": ["true","false"], "type": "boolean" },
"cflogin/cookiedomain": { "attribOption": [] },
"cflogin/applicationtoken": { "attribOption": [] },
"cflogin/idletimeout": { "attribOption": [] },
"cfloginuser/password": { "attribOption": [] },
"cfloginuser/name": { "attribOption": [] },
"cfloginuser/roles": { "attribOption": [] },
"cfloop/condition": { "attribOption": [] },
"cfloop/item": { "attribOption": [] },
"cfloop/query": { "attribOption": [] },
"cfloop/charset": { "attribOption": [] },
"cfloop/delimiters": { "attribOption": [] },
"cfloop/list": { "attribOption": [] },
"cfloop/startline": { "attribOption": [] },
"cfloop/to": { "attribOption": [] },
"cfloop/step": { "attribOption": [] },
"cfloop/collection": { "attribOption": [] },
"cfloop/endrow": { "attribOption": [] },
"cfloop/startrow": { "attribOption": [] },
"cfloop/index": { "attribOption": [] },
"cfloop/file": { "attribOption": [] },
"cfloop/from": { "attribOption": [] },
"cfloop/endline": { "attribOption": [] },
"cfmail/query": { "attribOption": [] },
"cfmail/charset": { "attribOption": [] },
"cfmail/mimeattach": { "attribOption": [] },
"cfmail/server": { "attribOption": [] },
"cfmail/proxyuser": { "attribOption": [] },
"cfmail/startrow": { "attribOption": [] },
"cfmail/password": { "attribOption": [] },
"cfmail/maxrows": { "attribOption": [] },
"cfmail/from": { "attribOption": [] },
"cfmail/timeout": { "attribOption": [] },
"cfmail/username": { "attribOption": [] },
"cfmail/proxyport": { "attribOption": [] },
"cfmail/proxypassword": { "attribOption": [] },
"cfmail/wraptext": { "attribOption": [] },
"cfmail/subject": { "attribOption": [] },
"cfmail/failto": { "attribOption": [] },
"cfmail/to": { "attribOption": [] },
"cfmail/mailerid": { "attribOption": [] },
"cfmail/proxyserver": { "attribOption": [] },
"cfmail/cc": { "attribOption": [] },
"cfmail/groupcasesensitive": { "attribOption": ["true","false"], "type": "boolean" },
"cfmail/type": { "attribOption": [] },
"cfmail/port": { "attribOption": [] },
"cfmail/replyto": { "attribOption": [] },
"cfmail/spoolenable": { "attribOption": ["true","false"], "type": "boolean" },
"cfmail/group": { "attribOption": [] },
"cfmail/bcc": { "attribOption": [] },
"cfmailparam/contentID": { "attribOption": [] },
"cfmailparam/disposition": { "attribOption": [] },
"cfmailparam/file": { "attribOption": [] },
"cfmailparam/name": { "attribOption": [] },
"cfmailparam/type": { "attribOption": [] },
"cfmailparam/value": { "attribOption": [] },
"cfmailpart/charset": { "attribOption": [] },
"cfmailpart/wraptext": { "attribOption": [] },
"cfmailpart/type": { "attribOption": [] },
"cfntauthenticate/result": { "attribOption": [] },
"cfntauthenticate/password": { "attribOption": [] },
"cfntauthenticate/listgroups": { "attribOption": ["true","false"], "type": "boolean" },
"cfntauthenticate/throwonerror": { "attribOption": ["true","false"], "type": "boolean" },
"cfntauthenticate/domain": { "attribOption": [] },
"cfntauthenticate/username": { "attribOption": [] },
"cfobject/context": { "attribOption": [] },
"cfobject/delimiters": { "attribOption": [] },
"cfobject/server": { "attribOption": [] },
"cfobject/locale": { "attribOption": [] },
"cfobject/name": { "attribOption": [] },
"cfobject/webservice": { "attribOption": [] },
"cfobject/type": { "attribOption": [] },
"cfobject/class": { "attribOption": [] },
"cfobject/action": { "attribOption": [] },
"cfobject/component": { "attribOption": [] },
"cfobjectcache/action": { "attribOption": [] },
"cfoutput/query": { "attribOption": [] },
"cfoutput/startrow": { "attribOption": [] },
"cfoutput/maxrows": { "attribOption": [] },
"cfoutput/groupcasesensitive": { "attribOption": ["true","false"], "type": "boolean" },
"cfoutput/group": { "attribOption": [] },
"cfparam/default": { "attribOption": [] },
"cfparam/pattern": { "attribOption": [] },
"cfparam/min": { "attribOption": [] },
"cfparam/name": { "attribOption": [] },
"cfparam/type": { "attribOption": [] },
"cfparam/max": { "attribOption": [] },
"cfpop/attachmentpath": { "attribOption": [] },
"cfpop/server": { "attribOption": [] },
"cfpop/uid": { "attribOption": [] },
"cfpop/messagenumber": { "attribOption": [] },
"cfpop/generateuniquefilenames": { "attribOption": ["true","false"], "type": "boolean" },
"cfpop/startrow": { "attribOption": [] },
"cfpop/password": { "attribOption": [] },
"cfpop/maxrows": { "attribOption": [] },
"cfpop/name": { "attribOption": [] },
"cfpop/port": { "attribOption": [] },
"cfpop/timeout": { "attribOption": [] },
"cfpop/action": { "attribOption": [] },
"cfpop/username": { "attribOption": [] },
"cfprocessingdirective/pageencoding": { "attribOption": [] },
"cfprocessingdirective/suppresswhitespace": { "attribOption": ["true","false"], "type": "boolean" },
"cfprocparam/maxlength": { "attribOption": [] },
"cfprocparam/variable": { "attribOption": [] },
"cfprocparam/scale": { "attribOption": [] },
"cfprocparam/null": { "attribOption": ["true","false"], "type": "boolean" },
"cfprocparam/cfsqltype": { "attribOption": [] },
"cfprocparam/type": { "attribOption": [] },
"cfprocparam/dbvarname": { "attribOption": [] },
"cfprocparam/value": { "attribOption": [] },
"cfprocresult/maxrows": { "attribOption": [] },
"cfprocresult/name": { "attribOption": [] },
"cfprocresult/resultset": { "attribOption": [] },
"cfproperty/default": { "attribOption": [] },
"cfproperty/access": { "attribOption": [] },
"cfproperty/required": { "attribOption": ["true","false"], "type": "boolean" },
"cfproperty/hint": { "attribOption": [] },
"cfproperty/displayname": { "attribOption": [] },
"cfproperty/name": { "attribOption": [] },
"cfproperty/type": { "attribOption": [] },
"cfquery/provider": { "attribOption": [] },
"cfquery/connectstring": { "attribOption": [] },
"cfquery/cachedafter": { "attribOption": [] },
"cfquery/dbtype": { "attribOption": [] },
"cfquery/providerdsn": { "attribOption": [] },
"cfquery/dbserver": { "attribOption": [] },
"cfquery/psq": { "attribOption": ["true","false"], "type": "boolean" },
"cfquery/cachename": { "attribOption": [] },
"cfquery/dbname": { "attribOption": [] },
"cfquery/password": { "attribOption": [] },
"cfquery/maxrows": { "attribOption": [] },
"cfquery/name": { "attribOption": [] },
"cfquery/timeout": { "attribOption": [] },
"cfquery/debug": { "attribOption": ["true","false"], "type": "boolean" },
"cfquery/datasource": { "attribOption": [] },
"cfquery/blockfactor": { "attribOption": [] },
"cfquery/username": { "attribOption": [] },
"cfquery/result": { "attribOption": [] },
"cfquery/cachedwithin": { "attribOption": [] },
"cfqueryparam/maxlength": { "attribOption": [] },
"cfqueryparam/list": { "attribOption": ["true","false"], "type": "boolean" },
"cfqueryparam/scale": { "attribOption": [] },
"cfqueryparam/separator": { "attribOption": [] },
"cfqueryparam/null": { "attribOption": ["true","false"], "type": "boolean" },
"cfqueryparam/cfsqltype": { "attribOption": [] },
"cfqueryparam/value": { "attribOption": [] },
"cfregistry/sort": { "attribOption": [] },
"cfregistry/variable": { "attribOption": [] },
"cfregistry/entry": { "attribOption": [] },
"cfregistry/name": { "attribOption": [] },
"cfregistry/type": { "attribOption": [] },
"cfregistry/value": { "attribOption": [] },
"cfregistry/action": { "attribOption": [] },
"cfregistry/branch": { "attribOption": [] },
"cfreport/formula": { "attribOption": [] },
"cfreport/password": { "attribOption": [] },
"cfreport/overwrite": { "attribOption": ["true","false"], "type": "boolean" },
"cfreport/type": { "attribOption": [] },
"cfreport/username": { "attribOption": [] },
"cfreport/query": { "attribOption": [] },
"cfreport/userpassword": { "attribOption": [] },
"cfreport/datasource": { "attribOption": [] },
"cfreport/ownerpassword": { "attribOption": [] },
"cfreport/permissions": { "attribOption": [] },
"cfreport/timeout": { "attribOption": [] },
"cfreport/orderby": { "attribOption": [] },
"cfreport/encryption": { "attribOption": [] },
"cfreport/filename": { "attribOption": [] },
"cfreport/report": { "attribOption": [] },
"cfreport/format": { "attribOption": [] },
"cfreport/template": { "attribOption": [] },
"cfreport/name": { "attribOption": [] },
"cfreportparam/name": { "attribOption": [] },
"cfreportparam/value": { "attribOption": [] },
"cfreturn/expr": { "attribOption": [] },
"cfsavecontent/variable": { "attribOption": [] },
"cfschedule/operation": { "attribOption": [] },
"cfschedule/hidden": { "attribOption": ["true","false"], "type": "boolean" },
"cfschedule/requesttimeout": { "attribOption": [] },
"cfschedule/proxyuser": { "attribOption": [] },
"cfschedule/serverpassword": { "attribOption": [] },
"cfschedule/URL": { "attribOption": [] },
"cfschedule/password": { "attribOption": [] },
"cfschedule/endtime": { "attribOption": [] },
"cfschedule/file": { "attribOption": [] },
"cfschedule/username": { "attribOption": [] },
"cfschedule/publish": { "attribOption": ["true","false"], "type": "boolean" },
"cfschedule/task": { "attribOption": [] },
"cfschedule/returnvariable": { "attribOption": [] },
"cfschedule/starttime": { "attribOption": [] },
"cfschedule/proxyport": { "attribOption": [] },
"cfschedule/proxypassword": { "attribOption": [] },
"cfschedule/enddate": { "attribOption": [] },
"cfschedule/interval": { "attribOption": [] },
"cfschedule/startdate": { "attribOption": [] },
"cfschedule/path": { "attribOption": [] },
"cfschedule/proxyserver": { "attribOption": [] },
"cfschedule/port": { "attribOption": [] },
"cfschedule/action": { "attribOption": [] },
"cfschedule/readonly": { "attribOption": ["true","false"], "type": "boolean" },
"cfschedule/resolveurl": { "attribOption": ["true","false"], "type": "boolean" },
"cfscript/language": { "attribOption": [] },
"cfsearch/language": { "attribOption": [] },
"cfsearch/previouscriteria": { "attribOption": [] },
"cfsearch/suggestions": { "attribOption": [] },
"cfsearch/status": { "attribOption": [] },
"cfsearch/startrow": { "attribOption": [] },
"cfsearch/criteria": { "attribOption": [] },
"cfsearch/collection": { "attribOption": [] },
"cfsearch/categorytree": { "attribOption": [] },
"cfsearch/external": { "attribOption": ["true","false"], "type": "boolean" },
"cfsearch/contextbytes": { "attribOption": [] },
"cfsearch/category": { "attribOption": [] },
"cfsearch/maxrows": { "attribOption": [] },
"cfsearch/name": { "attribOption": [] },
"cfsearch/type": { "attribOption": [] },
"cfsearch/contexthighlightbegin": { "attribOption": [] },
"cfsearch/contextpassages": { "attribOption": [] },
"cfsearch/contexthighlightend": { "attribOption": [] },
"cfselect/onmouseover": { "attribOption": [] },
"cfselect/query": { "attribOption": [] },
"cfselect/message": { "attribOption": [] },
"cfselect/queryposition": { "attribOption": [] },
"cfselect/multiple": { "attribOption": [] },
"cfselect/datasrc": { "attribOption": [] },
"cfselect/onmousemove": { "attribOption": [] },
"cfselect/tooltip": { "attribOption": [] },
"cfselect/style": { "attribOption": [] },
"cfselect/datafld": { "attribOption": [] },
"cfselect/display": { "attribOption": [] },
"cfselect/passthrough": { "attribOption": [] },
"cfselect/disabled": { "attribOption": [] },
"cfselect/width": { "attribOption": [] },
"cfselect/onmousedown": { "attribOption": [] },
"cfselect/dir": { "attribOption": [] },
"cfselect/name": { "attribOption": [] },
"cfselect/onfocus": { "attribOption": [] },
"cfselect/class": { "attribOption": [] },
"cfselect/value": { "attribOption": [] },
"cfselect/label": { "attribOption": [] },
"cfselect/onclick": { "attribOption": [] },
"cfselect/tabindex": { "attribOption": [] },
"cfselect/height": { "attribOption": [] },
"cfselect/selected": { "attribOption": [] },
"cfselect/onchange": { "attribOption": [] },
"cfselect/required": { "attribOption": ["true","false"], "type": "boolean" },
"cfselect/onerror": { "attribOption": [] },
"cfselect/enabled": { "attribOption": ["true","false"], "type": "boolean" },
"cfselect/onmouseup": { "attribOption": [] },
"cfselect/onkeydown": { "attribOption": [] },
"cfselect/dataformatas": { "attribOption": [] },
"cfselect/visible": { "attribOption": ["true","false"], "type": "boolean" },
"cfselect/size": { "attribOption": [] },
"cfselect/lang": { "attribOption": [] },
"cfselect/onblur": { "attribOption": [] },
"cfselect/id": { "attribOption": [] },
"cfselect/onmouseout": { "attribOption": [] },
"cfselect/onkeyup": { "attribOption": [] },
"cfselect/onkeypress": { "attribOption": [] },
"cfselect/editable": { "attribOption": ["true","false"], "type": "boolean" },
"cfselect/title": { "attribOption": [] },
"cfselect/group": { "attribOption": [] },
"cfselect/ondblclick": { "attribOption": [] },
"cfservlet/code": { "attribOption": [] },
"cfservlet/writeoutput": { "attribOption": ["true","false"], "type": "boolean" },
"cfservlet/timeout": { "attribOption": [] },
"cfservlet/debug": { "attribOption": ["true","false"], "type": "boolean" },
"cfservlet/jrunproxy": { "attribOption": [] },
"cfservletparam/variable": { "attribOption": [] },
"cfservletparam/name": { "attribOption": [] },
"cfservletparam/type": { "attribOption": [] },
"cfservletparam/value": { "attribOption": [] },
"cfset/noname": { "attribOption": [] },
"cfsetting/enablecfoutputonly": { "attribOption": [] },
"cfsetting/requesttimeout": { "attribOption": [] },
"cfsetting/showdebugoutput": { "attribOption": ["true","false"], "type": "boolean" },
"cfsleep/time": { "attribOption": [] },
"cfslider/textcolor": { "attribOption": [] },
"cfslider/message": { "attribOption": [] },
"cfslider/range": { "attribOption": [] },
"cfslider/notsupported": { "attribOption": [] },
"cfslider/align": { "attribOption": [] },
"cfslider/bold": { "attribOption": ["true","false"], "type": "boolean" },
"cfslider/lookandfeel": { "attribOption": [] },
"cfslider/onvalidate": { "attribOption": [] },
"cfslider/width": { "attribOption": [] },
"cfslider/name": { "attribOption": [] },
"cfslider/tickmarkmajor": { "attribOption": ["true","false"], "type": "boolean" },
"cfslider/value": { "attribOption": [] },
"cfslider/label": { "attribOption": [] },
"cfslider/font": { "attribOption": [] },
"cfslider/tickmarkimages": { "attribOption": [] },
"cfslider/height": { "attribOption": [] },
"cfslider/tickmarkminor": { "attribOption": ["true","false"], "type": "boolean" },
"cfslider/onerror": { "attribOption": [] },
"cfslider/bgcolor": { "attribOption": [] },
"cfslider/vertical": { "attribOption": ["true","false"], "type": "boolean" },
"cfslider/scale": { "attribOption": [] },
"cfslider/italic": { "attribOption": ["true","false"], "type": "boolean" },
"cfslider/hspace": { "attribOption": [] },
"cfslider/vspace": { "attribOption": [] },
"cfslider/tickmarklabels": { "attribOption": [] },
"cfslider/fontsize": { "attribOption": [] },
"cfslider/refreshlabel": { "attribOption": ["true","false"], "type": "boolean" },
"cfstopwatch/variable": { "attribOption": [] },
"cfstopwatch/label": { "attribOption": [] },
"cfstoredproc/password": { "attribOption": [] },
"cfstoredproc/returncode": { "attribOption": ["true","false"], "type": "boolean" },
"cfstoredproc/dbserver": { "attribOption": [] },
"cfstoredproc/procedure": { "attribOption": [] },
"cfstoredproc/providerdsn": { "attribOption": [] },
"cfstoredproc/timeout": { "attribOption": [] },
"cfstoredproc/debug": { "attribOption": ["true","false"], "type": "boolean" },
"cfstoredproc/datasource": { "attribOption": [] },
"cfstoredproc/result": { "attribOption": [] },
"cfstoredproc/blockfactor": { "attribOption": [] },
"cfstoredproc/username": { "attribOption": [] },
"cfstoredproc/dbname": { "attribOption": [] },
"cfstoredproc/connectstring": { "attribOption": [] },
"cfstoredproc/dbtype": { "attribOption": [] },
"cfstoredproc/provider": { "attribOption": [] },
"cfswitch/expression": { "attribOption": [] },
"cftable/query": { "attribOption": [] },
"cftable/border": { "attribOption": ["true","false"], "type": "boolean" },
"cftable/colspacing": { "attribOption": [] },
"cftable/colheaders": { "attribOption": ["true","false"], "type": "boolean" },
"cftable/startrow": { "attribOption": [] },
"cftable/maxrows": { "attribOption": [] },
"cftable/htmltable": { "attribOption": ["true","false"], "type": "boolean" },
"cftable/headerlines": { "attribOption": [] },
"cftextarea/width": { "attribOption": [] },
"cftextarea/height": { "attribOption": [] },
"cftextarea/lang": { "attribOption": [] },
"cftextarea/bind": { "attribOption": [] },
"cftextarea/passthrough": { "attribOption": [] },
"cftextarea/accept": { "attribOption": [] },
"cftextarea/pattern": { "attribOption": [] },
"cftextarea/readonly": { "attribOption": [] },
"cftextarea/enabled": { "attribOption": ["true","false"], "type": "boolean" },
"cftextarea/onmouseover": { "attribOption": [] },
"cftextarea/range": { "attribOption": [] },
"cftextarea/message": { "attribOption": [] },
"cftextarea/class": { "attribOption": [] },
"cftextarea/name": { "attribOption": [] },
"cftextarea/onvalidate": { "attribOption": [] },
"cftextarea/alt": { "attribOption": [] },
"cftextarea/cols": { "attribOption": [] },
"cftextarea/required": { "attribOption": ["true","false"], "type": "boolean" },
"cftextarea/ondblclick": { "attribOption": [] },
"cftextarea/validate": { "attribOption": [] },
"cftextarea/onkeydown": { "attribOption": [] },
"cftextarea/visible": { "attribOption": ["true","false"], "type": "boolean" },
"cftextarea/tabindex": { "attribOption": [] },
"cftextarea/onblur": { "attribOption": [] },