-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathHtmlAttributes.json
More file actions
2113 lines (2111 loc) · 133 KB
/
HtmlAttributes.json
File metadata and controls
2113 lines (2111 loc) · 133 KB
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/showerror": { "attribOption": [] },
"cfapplet/appletsource": { "attribOption": [] },
"cfapplet/name": { "attribOption": [] },
"cfapplet/height": { "attribOption": [] },
"cfapplet/width": { "attribOption": [] },
"cfapplet/vspace": { "attribOption": [] },
"cfapplet/hspace": { "attribOption": [] },
"cfapplet/align": { "attribOption": ["top","left","bottom","baseline","texttop","absbottom","middle","absmiddle","right"] },
"cfapplet/notsupported": { "attribOption": [] },
"cfapplication/name": { "attribOption": [] },
"cfapplication/loginstorage":{ "attribOption": ["cookie","session"] },
"cfapplication/clientmanagement":{ "attribOption": ["true","false"], "type": "boolean" },
"cfapplication/clientstorage":{ "attribOption": ["cookie","registry","datasource_name"] },
"cfapplication/setclientcookies":{ "attribOption": ["true","false"], "type": "boolean" },
"cfapplication/sessionmanagement":{ "attribOption": ["true","false"], "type": "boolean" },
"cfapplication/sessiontimeout":{ "attribOption": [] },
"cfapplication/applicationtimeout":{ "attribOption": [] },
"cfapplication/setdomaincookies":{ "attribOption": ["true","false"], "type": "boolean" },
"cfapplication/scriptprotect":{ "attribOption": ["none","all","form","url","cookie","cgi","form,url","form,url,cookie","form,url,cookie,cgi"] },
"cfapplication/securejsonprefix":{ "attribOption": ["true","false"] },
"cfapplication/securejson":{ "attribOption": ["true","false"], "type": "boolean" },
"cfapplication/serverSideFormValidation":{ "attribOption": ["true","false"], "type": "boolean" },
"cfapplication/datasource":{ "attribOption": [] },
"cfapplication/exchangeserverversion":{ "attribOption": ["2003","2007","2010"] },
"cfapplication/authcookie":{ "attribOption": [] },
"cfapplication/sessioncookie":{ "attribOption": [] },
"cfapplication/wsversion":{ "attribOption": [] },
"cfargument/name": { "attribOption": [] },
"cfargument/type": { "attribOption": ["any","array","binary","boolean","date","guid","numeric","query","string","struct","uuid","xml","variablename","(component name)"] },
"cfargument/required": { "attribOption": ["true","false"], "type": "boolean" },
"cfargument/default": { "attribOption": [] },
"cfargument/displayname":{ "attribOption": [] },
"cfargument/hint": { "attribOption": [] },
"cfargument/restargsource":{ "attribOption": ["Path","Query ","Matrix","Header","Cookie","Form"] },
"cfargument/restargname":{ "attribOption": [] },
"cfassociate/basetag": { "attribOption": [] },
"cfassociate/datacollection":{ "attribOption": [] },
"cfcache/action": { "attribOption": ["cache","flush","clientcache","servercache","optimal","get","put"] },
"cfcache/directory": { "attribOption": [] },
"cfcache/timespan": { "attribOption": [] },
"cfcache/expireurl": { "attribOption": [] },
"cfcache/username": { "attribOption": [] },
"cfcache/password": { "attribOption": [] },
"cfcache/port": { "attribOption": [] },
"cfcache/protocol": { "attribOption": ["http://","https://"] },
"cfcache/value": { "attribOption": [] },
"cfcache/metadata": { "attribOption": [] },
"cfcache/stripwhitespace":{ "attribOption": ["true","false"], "type": "boolean" },
"cfcache/throwonerror": { "attribOption": [], "type": "boolean" },
"cfcache/id": { "attribOption": [] },
"cfcache/region": { "attribOption": [] },
"cfcache/usecache": { "attribOption": ["true","false"], "type": "boolean" },
"cfcache/dependson": { "attribOption": [] },
"cfcache/idletime": { "attribOption": [] },
"cfcache/name": { "attribOption": [] },
"cfcache/useQueryString":{ "attribOption": ["true","false"], "type": "boolean" },
"cfcache/timeout": { "attribOption": [] },
"cfcache/cachedirectory":{ "attribOption": [] },
"cfcache/key": { "attribOption": [] },
"cfcalendar/name": { "attribOption": [] },
"cfcalendar/height": { "attribOption": [] },
"cfcalendar/width": { "attribOption": [] },
"cfcalendar/selecteddate":{ "attribOption": [] },
"cfcalendar/startrange": { "attribOption": [] },
"cfcalendar/endrange": { "attribOption": [] },
"cfcalendar/disabled": { "attribOption": ["true","false"], "type": "boolean" },
"cfcalendar/mask": { "attribOption": ["MM/DD/YYYY","DD/MM/YYYY","MM/YYYY","MM/YY","YYYY-MM-DD","EEE DD. MMM YYYY"] },
"cfcalendar/firstdayofweek":{ "attribOption": ["0","1","2","3","4","5","6"] },
"cfcalendar/daynames": { "attribOption": ["S,M,T,W,Th,F,S","Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday","Sun,Mon,Tue,Wed,Thu,Fri,Sat"] },
"cfcalendar/monthnames": { "attribOption": ["January,February,March,April,May,June,July,August,September,October,November,December","Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec"] },
"cfcalendar/enabled": { "attribOption": ["true","false"], "type": "boolean" },
"cfcalendar/visible": { "attribOption": ["true","false"], "type": "boolean" },
"cfcalendar/tooltip": { "attribOption": [] },
"cfcalendar/style": { "attribOption": ["haloBlue","haloGreen","haloOrange","haloSilver"] },
"cfcalendar/onchange": { "attribOption": [] },
"cfcalendar/onblur": { "attribOption": [] },
"cfcalendar/onfocus": { "attribOption": [] },
"cfcase/value": { "attribOption": [] },
"cfcase/delimiters": { "attribOption": [",",";","|",":"] },
"cfcatch/type": { "attribOption": ["application","database","template","security","object","missinginclude","expression","lock","custom_type","searchengine","any"] },
"cfcatch/name": { "attribOption": [] },
"cfchart/chartheight": { "attribOption": [] },
"cfchart/chartwidth": { "attribOption": [] },
"cfchart/scalefrom": { "attribOption": [] },
"cfchart/scaleto": { "attribOption": [] },
"cfchart/showxgridlines":{ "attribOption": ["true","false"], "type": "boolean" },
"cfchart/showygridlines":{ "attribOption": ["true","false"], "type": "boolean" },
"cfchart/gridlines": { "attribOption": [] },
"cfchart/seriesplacement":{ "attribOption": ["default","cluster","stacked","percent"] },
"cfchart/foregroundcolor":{ "attribOption": ["aqua","black","blue","fuchsia","grey","green","lime","maroon","navy","olive","purple","red","silver","teal","white","yellow"] },
"cfchart/backgroundcolor":{ "attribOption": ["aqua","black","blue","fuchsia","grey","green","lime","maroon","navy","olive","purple","red","silver","teal","white","yellow"] },
"cfchart/showborder": { "attribOption": ["true","false"], "type": "boolean" },
"cfchart/databackgroundcolor":{ "attribOption": ["aqua","black","blue","fuchsia","grey","green","lime","maroon","navy","olive","purple","red","silver","teal","white","yellow"] },
"cfchart/font": { "attribOption": ["arial","times","courier","arialunicodeMS"] },
"cfchart/fontsize": { "attribOption": [] },
"cfchart/fontitalic": { "attribOption": ["true","false"], "type": "boolean" },
"cfchart/fontbold": { "attribOption": ["true","false"], "type": "boolean" },
"cfchart/labelformat": { "attribOption": ["number","currency","percent","date"] },
"cfchart/xaxistitle": { "attribOption": [] },
"cfchart/yaxistitle": { "attribOption": [] },
"cfchart/xaxistype": { "attribOption": ["category","scale"] },
"cfchart/yaxistype": { "attribOption": ["category","scale"] },
"cfchart/sortxaxis": { "attribOption": ["true","false"], "type": "boolean" },
"cfchart/show3d": { "attribOption": ["true","false"], "type": "boolean" },
"cfchart/xoffset": { "attribOption": [] },
"cfchart/yoffset": { "attribOption": [] },
"cfchart/showlegend": { "attribOption": ["true","false"], "type": "boolean" },
"cfchart/tipstyle": { "attribOption": ["mouseDown","mouseOver","none"] },
"cfchart/tipbgcolor": { "attribOption": ["aqua","black","blue","fuchsia","grey","green","lime","maroon","navy","olive","purple","red","silver","teal","white","yellow"] },
"cfchart/showmarkers": { "attribOption": ["true","false"], "type": "boolean" },
"cfchart/markersize": { "attribOption": [] },
"cfchart/pieslicestyle": { "attribOption": ["solid","sliced"] },
"cfchart/URL": { "attribOption": ["$VALUE$","$ITEMLABEL$","$SERIESLABEL$"] },
"cfchart/name": { "attribOption": [] },
"cfchart/style": { "attribOption": ["beige","blue","default","red","silver","yellow"] },
"cfchart/title": { "attribOption": [] },
"cfchart/arrows": { "attribOption": [] },
"cfchart/aspect3d": { "attribOption": [] },
"cfchart/height": { "attribOption": [] },
"cfchart/labels": { "attribOption": [] },
"cfchart/legend": { "attribOption": [] },
"cfchart/zoom": { "attribOption": [] },
"cfchart/plot": { "attribOption": [] },
"cfchart/preview": { "attribOption": [] },
"cfchart/renderer": { "attribOption": ["Canvas","SVG","Flash","VML"] },
"cfchart/scales": { "attribOption": [] },
"cfchart/tooltip": { "attribOption": [] },
"cfchart/type": { "attribOption": ["Area","Bar","Bubble","Gauge","HBar","HBullet","Line","NestedPie","Pie","Radar","Scatter","Bullet","HFunnel","Funnel","Piano","Curve","Step"] },
"cfchart/xaxis": { "attribOption": [] },
"cfchart/yaxis": { "attribOption": [] },
"cfchart/xaxis2": { "attribOption": [] },
"cfchart/yaxis2": { "attribOption": [] },
"cfchart/xaxisvalues": { "attribOption": [] },
"cfchart/yaxisvalues": { "attribOption": [] },
"cfchart/width": { "attribOption": [] },
"cfchart/alpha": { "attribOption": [] },
"cfchart/background": { "attribOption": [] },
"cfchart/bevel": { "attribOption": [] },
"cfchart/border": { "attribOption": [] },
"cfchart/crosshair": { "attribOption": [] },
"cfchart/fill": { "attribOption": [] },
"cfchart/plotarea": { "attribOption": [] },
"cfchart/format": { "attribOption": ["html","flash","jpg","png"] },
"cfchart/plotarea": { "attribOption": [] },
"cfchart/refresh": { "attribOption": [] },
"cfchart/query": { "attribOption": [] },
"cfchartdata/item": { "attribOption": [] },
"cfchartdata/value": { "attribOption": [] },
"cfchartseries/type": { "attribOption": ["Area","Bar","Bubble","Gauge","HBar","HBullet","Line","NestedPie","Pie","Radar","Scatter","Bullet","HFunnel","Funnel","Piano","Curve","Step"] },
"cfchartseries/query": { "attribOption": [] },
"cfchartseries/itemcolumn":{ "attribOption": [] },
"cfchartseries/valuecolumn":{ "attribOption": [] },
"cfchartseries/paintstyle":{ "attribOption": ["plain","raise","shade","light"] },
"cfchartseries/markerstyle":{ "attribOption": ["rectangle","triangle","diamond","circle","letter","mcross","snow","rcross"] },
"cfchartseries/colorlist":{ "attribOption": [] },
"cfchartseries/datalabelstyle":{ "attribOption": ["none","value","rowlabel","columnlabel","pattern"] },
"cfchartseries/alpha": { "attribOption": [] },
"cfchartseries/background":{ "attribOption": [] },
"cfchartseries/bevel": { "attribOption": [] },
"cfchartseries/border": { "attribOption": [] },
"cfchartseries/aspect": { "attribOption": [] },
"cfchartseries/animate": { "attribOption": [] },
"cfchartseries/data": { "attribOption": [] },
"cfchartseries/hovermarker":{ "attribOption": [] },
"cfchartseries/marker": { "attribOption": [] },
"cfchartseries/scales": { "attribOption": [] },
"cfchartseries/shadow": { "attribOption": [] },
"cfchartseries/zcolumn": { "attribOption": [] },
"cfchartseries/tooltip": { "attribOption": [] },
"cfchartseries/label": { "attribOption": [] },
"cfchartseries/seriescolor":{ "attribOption": [] },
"cfcol/header": { "attribOption": [] },
"cfcol/width": { "attribOption": [] },
"cfcol/align": { "attribOption": ["left","center","right"] },
"cfcol/text": { "attribOption": [] },
"cfcollection/action": { "attribOption": ["categorylist","create","delete","optimize","list","map","repair"] },
"cfcollection/collection":{ "attribOption": [] },
"cfcollection/path": { "attribOption": [] },
"cfcollection/language": { "attribOption": [] },
"cfcollection/name": { "attribOption": [] },
"cfcollection/categories":{ "attribOption": ["true","false"], "type": "boolean" },
"cfcomponent/extends": { "attribOption": [] },
"cfcomponent/initmethod":{ "attribOption": [] },
"cfcomponent/implements":{ "attribOption": [] },
"cfcomponent/output": { "attribOption": ["true","false"], "type": "boolean" },
"cfcomponent/displayname":{ "attribOption": [] },
"cfcomponent/hint": { "attribOption": [] },
"cfcomponent/style": { "attribOption": ["rpc","document","wrapped"] },
"cfcomponent/namespace": { "attribOption": [] },
"cfcomponent/serviceportname":{ "attribOption": [] },
"cfcomponent/porttypename":{ "attribOption": [] },
"cfcomponent/bindingname":{ "attribOption": [] },
"cfcomponent/wsdlfile": { "attribOption": [] },
"cfcomponent/serviceaddress":{ "attribOption": [] },
"cfcomponent/persistent":{ "attribOption": ["true","false"], "type": "boolean" },
"cfcomponent/entityName":{ "attribOption": [] },
"cfcomponent/table": { "attribOption": [] },
"cfcomponent/schema": { "attribOption": [] },
"cfcomponent/catalog": { "attribOption": [] },
"cfcomponent/dynamicinsert":{ "attribOption": ["true","false"], "type": "boolean" },
"cfcomponent/dynamicupdate":{ "attribOption": ["true","false"], "type": "boolean" },
"cfcomponent/readonly": { "attribOption": ["true","false"], "type": "boolean" },
"cfcomponent/selectbeforeupdate":{ "attribOption": ["true","false"], "type": "boolean" },
"cfcomponent/batchsize": { "attribOption": [] },
"cfcomponent/optimisticlock":{ "attribOption": ["none","dirty","all","version"] },
"cfcomponent/lazy": { "attribOption": ["true","false"], "type": "boolean" },
"cfcomponent/rowid": { "attribOption": [] },
"cfcomponent/discriminatorColumn":{ "attribOption": [] },
"cfcomponent/discriminatorValue":{ "attribOption": [] },
"cfcomponent/joinColumn":{ "attribOption": [] },
"cfcomponent/embedded": { "attribOption": ["true","false"], "type": "boolean" },
"cfcomponent/cacheUse": { "attribOption": ["read-only","nonstrict-read-write","read-write","transactional"] },
"cfcomponent/cacheName": { "attribOption": [] },
"cfcomponent/saveMapping":{ "attribOption": ["true","false"], "type": "boolean" },
"cfcomponent/accessors": { "attribOption": ["true","false"], "type": "boolean" },
"cfcomponent/serializable":{ "attribOption": ["true","false"], "type": "boolean" },
"cfcomponent/alias": { "attribOption": [] },
"cfcomponent/datasource":{ "attribOption": [] },
"cfcomponent/mappedSuperClass":{ "attribOption": ["false","true"], "type": "boolean" },
"cfcomponent/rest": { "attribOption": ["false","true"], "type": "boolean" },
"cfcomponent/restPath": { "attribOption": [] },
"cfcomponent/httpMethod":{ "attribOption": ["GET","DELETE","POST","PUT","HEAD","OPTIONS"] },
"cfcomponent/produces": { "attribOption": [] },
"cfcomponent/consumes": { "attribOption": [] },
"cfcomponent/indexable": { "attribOption": ["false","true"], "type": "boolean" },
"cfcomponent/indexLanguage":{ "attribOption": [] },
"cfcomponent/autoindex": { "attribOption": ["false","true"], "type": "boolean" },
"cfcomponent/wsversion": { "attribOption": ["1","2"] },
"cfcontent/type": { "attribOption": ["text/html","text/plain","application/msword","application/msexcel","application/poscript","application/x-zip-compressed","application/pdf","application/rtf","video/x-msvideo","video/quicktime","video/x-mpeg2","audio/x-pn/realaudio","audio/x-mpeg","audio/x-waw","audio/x-aiff","audio/basic","image/tiff","image/jpeg","image/gif","image/x-png","image/x-photo-cd","image/x-MS-bmp","image/x-rgb","image/x-portable-pixmap","image/x-portable-greymap","image/x-portablebitmap"] },
"cfcontent/deletefile": { "attribOption": ["true","false"], "type": "boolean" },
"cfcontent/file": { "attribOption": [] },
"cfcontent/variable": { "attribOption": [] },
"cfcontent/reset": { "attribOption": ["true","false"], "type": "boolean" },
"cfcookie/name": { "attribOption": [] },
"cfcookie/value": { "attribOption": [] },
"cfcookie/expires": { "attribOption": [] },
"cfcookie/secure": { "attribOption": ["true","false"], "type": "boolean" },
"cfcookie/path": { "attribOption": [] },
"cfcookie/domain": { "attribOption": [] },
"cfcookie/httpOnly": { "attribOption": ["true","false"], "type": "boolean" },
"cfcookie/casesensitive":{ "attribOption": ["true","false"], "type": "boolean" },
"cfcookie/encodevalue": { "attribOption": ["true","false"], "type": "boolean" },
"cfcookie/preservecase": { "attribOption": ["true","false"], "type": "boolean" },
"cfdbinfo/type": { "attribOption": ["ClientInfo","Columns","DBNames","Tables","Foreignkeys","Index","Procedures","Version"] },
"cfdbinfo/datasource": { "attribOption": [] },
"cfdbinfo/name": { "attribOption": [] },
"cfdbinfo/dbname": { "attribOption": [] },
"cfdbinfo/username": { "attribOption": [] },
"cfdbinfo/password": { "attribOption": [] },
"cfdbinfo/pattern": { "attribOption": [] },
"cfdbinfo/table": { "attribOption": [] },
"cfdirectory/action": { "attribOption": ["list","create","delete","rename","copy"] },
"cfdirectory/directory": { "attribOption": [] },
"cfdirectory/name": { "attribOption": [] },
"cfdirectory/filter": { "attribOption": [] },
"cfdirectory/mode": { "attribOption": [] },
"cfdirectory/sort": { "attribOption": ["asc","desc"] },
"cfdirectory/newdirectory":{ "attribOption": [] },
"cfdirectory/recurse": { "attribOption": ["true","false"], "type": "boolean" },
"cfdirectory/type": { "attribOption": ["dir","file","all"] },
"cfdirectory/listinfo": { "attribOption": ["name","all"] },
"cfdirectory/storeLocation":{ "attribOption": ["EU","US"] },
"cfdirectory/storeACL": { "attribOption": [] },
"cfdirectory/destination":{ "attribOption": [] },
"cfdiv/id": { "attribOption": [] },
"cfdiv/onBindError": { "attribOption": [] },
"cfdiv/bind": { "attribOption": [] },
"cfdiv/tagName": { "attribOption": ["div","span"] },
"cfdiv/bindonload": { "attribOption": ["false","true"], "type": "boolean" },
"cfdocument/format": { "attribOption": ["PDF","FlashPaper"] },
"cfdocument/filename": { "attribOption": [] },
"cfdocument/overwrite": { "attribOption": ["true","false"], "type": "boolean" },
"cfdocument/name": { "attribOption": [] },
"cfdocument/pagetype": { "attribOption": ["legal","letter","A4","A5","B5","custom"] },
"cfdocument/pageheight": { "attribOption": [] },
"cfdocument/pagewidth": { "attribOption": [] },
"cfdocument/orientation":{ "attribOption": ["portrait","landscape"] },
"cfdocument/margintop": { "attribOption": [] },
"cfdocument/marginbottom":{ "attribOption": [] },
"cfdocument/marginleft": { "attribOption": [] },
"cfdocument/marginright":{ "attribOption": [] },
"cfdocument/unit": { "attribOption": ["in","cm"] },
"cfdocument/encryption": { "attribOption": ["128-bit","40-bit","none"] },
"cfdocument/ownerpassword":{ "attribOption": [] },
"cfdocument/userpassword":{ "attribOption": [] },
"cfdocument/permissions":{ "attribOption": ["AllowPrinting,AllowCopy,AllowScreenReaders","AllowPrinting","AllowModifyContents","AllowCopy","AllowModifyAnnotations","AllowFillIn","AllowScreenReaders","AllowAssembly","AllowDegradedPrinting","AllowPrinting,AllowModifyContents,AllowCopy,AllowModifyAnnotations,AllowFillIn,AllowScreenReaders,AllowAssembly,AllowDegradedPrinting"] },
"cfdocument/fontembed": { "attribOption": ["true","false"], "type": "boolean" },
"cfdocument/backgroundvisible":{ "attribOption": ["true","false"], "type": "boolean" },
"cfdocument/scale": { "attribOption": ["100","90","80","70","60","50","40","30","20","10"] },
"cfdocument/authpassword":{ "attribOption": [] },
"cfdocument/authuser": { "attribOption": [] },
"cfdocument/bookmark": { "attribOption": ["true","false"], "type": "boolean" },
"cfdocument/localurl": { "attribOption": ["true","false"], "type": "boolean" },
"cfdocument/mimetype": { "attribOption": ["text/html","text/plain","application/xml","image/bmp","image/jpeg","image/png","image/gif"] },
"cfdocument/proxypassword":{ "attribOption": [] },
"cfdocument/proxyuser": { "attribOption": [] },
"cfdocument/saveasname": { "attribOption": [] },
"cfdocument/src": { "attribOption": [] },
"cfdocument/srcfile": { "attribOption": [] },
"cfdocument/useragent": { "attribOption": [] },
"cfdocument/proxyhost": { "attribOption": [] },
"cfdocument/proxyport": { "attribOption": [] },
"cfdocument/tagged": { "attribOption": ["true","false"], "type": "boolean" },
"cfdocument/pdfa": { "attribOption": ["true","false"], "type": "boolean" },
"cfdocument/formFields": { "attribOption": ["true","false"], "type": "boolean" },
"cfdocument/formsType": { "attribOption": ["FDF","PDF","HTML","XML"] },
"cfdocument/permissionsPassword":{ "attribOption": [] },
"cfdocument/openPassword":{ "attribOption": [] },
"cfdocumentitem/type": { "attribOption": ["pagebreak","header","footer"] },
"cfdocumentitem/evalAtPrint":{ "attribOption": ["true","false"], "type": "boolean" },
"cfdocumentsection/margintop":{ "attribOption": [] },
"cfdocumentsection/marginbottom":{ "attribOption": [] },
"cfdocumentsection/marginleft":{ "attribOption": [] },
"cfdocumentsection/marginright":{ "attribOption": [] },
"cfdocumentsection/authpassword":{ "attribOption": [] },
"cfdocumentsection/authuser":{ "attribOption": [] },
"cfdocumentsection/mimetype":{ "attribOption": ["text/html","text/plain","application/xml","image/bmp","image/jpeg","image/png","image/gif"] },
"cfdocumentsection/name":{ "attribOption": [] },
"cfdocumentsection/src": { "attribOption": [] },
"cfdocumentsection/srcfile":{ "attribOption": [] },
"cfdocumentsection/useragent":{ "attribOption": [] },
"cfdump/var": { "attribOption": [] },
"cfdump/expand": { "attribOption": ["true","false"], "type": "boolean" },
"cfdump/format": { "attribOption": ["html","text"] },
"cfdump/hide": { "attribOption": [] },
"cfdump/keys": { "attribOption": [] },
"cfdump/label": { "attribOption": [] },
"cfdump/metainfo": { "attribOption": ["true","false"], "type": "boolean" },
"cfdump/output": { "attribOption": ["browser","console","filename"] },
"cfdump/show": { "attribOption": [] },
"cfdump/showUDfs": { "attribOption": ["true","false"], "type": "boolean" },
"cfdump/top": { "attribOption": [] },
"cfdump/abort": { "attribOption": ["true","false"], "type": "boolean" },
"cferror/type": { "attribOption": ["exception","validation","request","monitor"] },
"cferror/template": { "attribOption": [] },
"cferror/mailto": { "attribOption": [] },
"cferror/exception": { "attribOption": ["any","application","database","template","security","object","missinginclude","expression","lock","custom_type"] },
"cfexecute/name": { "attribOption": [] },
"cfexecute/arguments": { "attribOption": [] },
"cfexecute/outputfile": { "attribOption": [] },
"cfexecute/variable": { "attribOption": [] },
"cfexecute/timeout": { "attribOption": [] },
"cfexecute/errorVariable":{ "attribOption": [] },
"cfexecute/errorFile": { "attribOption": [] },
"cfexit/method": { "attribOption": ["exittag","exittemplate","loop"] },
"cffile/action": { "attribOption": ["append","copy","delete","move","read","readbinary","rename","upload","uploadall","write"] },
"cffile/file": { "attribOption": [] },
"cffile/mode": { "attribOption": [] },
"cffile/output": { "attribOption": [] },
"cffile/addnewline": { "attribOption": ["true","false"], "type": "boolean" },
"cffile/attributes": { "attribOption": ["readonly","hidden","normal","system","temporary"] },
"cffile/charset": { "attribOption": ["utf-8","iso-8859-1","windows-1252","us-ascii","shift_jis","iso-2022-jp","euc-jp","euc-kr","big5","euc-cn","utf-16"] },
"cffile/source": { "attribOption": [] },
"cffile/destination": { "attribOption": [] },
"cffile/variable": { "attribOption": [] },
"cffile/filefield": { "attribOption": [] },
"cffile/nameconflict": { "attribOption": ["error","skip","overwrite","makeunique"] },
"cffile/accept": { "attribOption": [] },
"cffile/result": { "attribOption": [] },
"cffile/fixnewline": { "attribOption": ["true","false"] },
"cffile/strict": { "attribOption": ["true","false"], "type": "boolean" },
"cfflush/interval": { "attribOption": [] },
"cfform/name": { "attribOption": [] },
"cfform/action": { "attribOption": [] },
"cfform/method": { "attribOption": ["post","get"] },
"cfform/format": { "attribOption": ["html","flash","xml"] },
"cfform/skin": { "attribOption": ["haloSilver","haloBlue","haloGreen","haloOrange","beige","blue","bluegray","lightgray","red","silver","none","default","basic","basiccss"] },
"cfform/preservedata": { "attribOption": ["true","false"], "type": "boolean" },
"cfform/onload": { "attribOption": [] },
"cfform/onsubmit": { "attribOption": [] },
"cfform/codebase": { "attribOption": [] },
"cfform/archive": { "attribOption": [] },
"cfform/height": { "attribOption": [] },
"cfform/width": { "attribOption": [] },
"cfform/onerror": { "attribOption": [] },
"cfform/wmode": { "attribOption": ["window","transparent","opaque"] },
"cfform/accessible": { "attribOption": ["true","false"], "type": "boolean" },
"cfform/preloader": { "attribOption": ["true","false"], "type": "boolean" },
"cfform/timeout": { "attribOption": [] },
"cfform/scriptsrc": { "attribOption": [] },
"cfform/style": { "attribOption": [] },
"cfform/onreset": { "attribOption": [] },
"cfform/id": { "attribOption": [] },
"cfform/target": { "attribOption": [] },
"cfform/passthrough": { "attribOption": [] },
"cfform/onsuccess": { "attribOption": [] },
"cfform/enctype": { "attribOption": [] },
"cfformgroup/type": { "attribOption": ["horizontal","vertical","fieldset","repeater","hbox","vbox","hdividedbox","vdividedbox","panel","tile","accordion","tabnavigator","page"] },
"cfformgroup/query": { "attribOption": [] },
"cfformgroup/startrow": { "attribOption": [] },
"cfformgroup/maxrows": { "attribOption": [] },
"cfformgroup/label": { "attribOption": [] },
"cfformgroup/id": { "attribOption": [] },
"cfformgroup/style": { "attribOption": [] },
"cfformgroup/selectedindex":{ "attribOption": [] },
"cfformgroup/width": { "attribOption": [] },
"cfformgroup/height": { "attribOption": [] },
"cfformgroup/enabled": { "attribOption": ["true","false"], "type": "boolean" },
"cfformgroup/visible": { "attribOption": ["true","false"], "type": "boolean" },
"cfformgroup/onchange": { "attribOption": [] },
"cfformgroup/tooltip": { "attribOption": [] },
"cfformitem/type": { "attribOption": ["html","text","script","spacer","hrule","vrule"] },
"cfformitem/style": { "attribOption": [] },
"cfformitem/width": { "attribOption": [] },
"cfformitem/height": { "attribOption": [] },
"cfformitem/enabled": { "attribOption": ["true","false"], "type": "boolean" },
"cfformitem/visible": { "attribOption": ["true","false"], "type": "boolean" },
"cfformitem/tooltip": { "attribOption": [] },
"cfformitem/bind": { "attribOption": [] },
"cfftp/action": { "attribOption": ["open","close","changedir","createdir","listdir","removedir","getfile","putfile","rename","remove","getcurrentdir","getcurrenturl","existsdir","existsfile","exists","quote","site","allo","acct"] },
"cfftp/username": { "attribOption": [] },
"cfftp/password": { "attribOption": [] },
"cfftp/server": { "attribOption": [] },
"cfftp/timeout": { "attribOption": [] },
"cfftp/port": { "attribOption": [] },
"cfftp/connection": { "attribOption": [] },
"cfftp/proxyserver": { "attribOption": [] },
"cfftp/retrycount": { "attribOption": [] },
"cfftp/stoponerror": { "attribOption": ["true","false"], "type": "boolean" },
"cfftp/passive": { "attribOption": ["true","false"], "type": "boolean" },
"cfftp/transfermode": { "attribOption": ["auto","ascii","binary"] },
"cfftp/failifexists": { "attribOption": ["true","false"], "type": "boolean" },
"cfftp/directory": { "attribOption": [] },
"cfftp/localfile": { "attribOption": [] },
"cfftp/remotefile": { "attribOption": [] },
"cfftp/item": { "attribOption": [] },
"cfftp/existing": { "attribOption": [] },
"cfftp/new": { "attribOption": [] },
"cfftp/name": { "attribOption": [] },
"cfftp/result": { "attribOption": [] },
"cfftp/attributes": { "attribOption": [] },
"cfftp/passphrase": { "attribOption": [] },
"cfftp/buffersize": { "attribOption": [] },
"cfftp/secure": { "attribOption": ["true","false"] },
"cfftp/asciiextensionlist":{ "attribOption": [] },
"cfftp/key": { "attribOption": [] },
"cfftp/actionparam": { "attribOption": [] },
"cfftp/fingerprint": { "attribOption": [] },
"cffunction/name": { "attribOption": [] },
"cffunction/returntype": { "attribOption": ["Any","Array","Binary","boolean","date","guid","Numeric","Query","String","Struct","UUID","variablename","void","xml","(component name)"] },
"cffunction/roles": { "attribOption": [] },
"cffunction/access": { "attribOption": ["private","package","public","remote"] },
"cffunction/output": { "attribOption": ["true","false"], "type": "boolean" },
"cffunction/displayname":{ "attribOption": [] },
"cffunction/hint": { "attribOption": [] },
"cffunction/description":{ "attribOption": [] },
"cffunction/returnformat":{ "attribOption": ["JSON","plain","WDDX"] },
"cffunction/securejson": { "attribOption": ["true","false"], "type": "boolean" },
"cffunction/verifyclient":{ "attribOption": ["true","false"], "type": "boolean" },
"cffunction/restPath": { "attribOption": [] },
"cffunction/httpMethod": { "attribOption": ["GET","POST","PUT","DELETE","HEAD","OPTIONS"] },
"cffunction/produces": { "attribOption": [] },
"cffunction/consumes": { "attribOption": [] },
"cfgrid/name": { "attribOption": [] },
"cfgrid/bind": { "attribOption": [] },
"cfgrid/pagesize": { "attribOption": [] },
"cfgrid/striperowcolor": { "attribOption": [] },
"cfgrid/preservepageonsort":{ "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/striperows": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/format": { "attribOption": ["applet","flash","xml","html"] },
"cfgrid/height": { "attribOption": [] },
"cfgrid/width": { "attribOption": [] },
"cfgrid/autowidth": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/vspace": { "attribOption": [] },
"cfgrid/hspace": { "attribOption": [] },
"cfgrid/align": { "attribOption": ["top","left","bottom","baseline","texttop","absbottom","middle","absmiddle","right"] },
"cfgrid/query": { "attribOption": [] },
"cfgrid/insert": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/delete": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/sort": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/font": { "attribOption": ["arial","times","courier","arialunicodeMS"] },
"cfgrid/fontsize": { "attribOption": [] },
"cfgrid/italic": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/bold": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/textcolor": { "attribOption": ["black","red","blue","magenta","cyan","orange","darkgray","pink","white","lightgray","yellow"] },
"cfgrid/href": { "attribOption": [] },
"cfgrid/hrefkey": { "attribOption": [] },
"cfgrid/target": { "attribOption": [] },
"cfgrid/appendkey": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/highlighthref": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/onvalidate": { "attribOption": [] },
"cfgrid/onerror": { "attribOption": [] },
"cfgrid/griddataalign": { "attribOption": ["left","center","right"] },
"cfgrid/gridlines": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/rowheight": { "attribOption": [] },
"cfgrid/rowheaders": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/rowheaderalign": { "attribOption": ["left","center","right"] },
"cfgrid/rowheaderfont": { "attribOption": [] },
"cfgrid/rowheaderfontsize":{ "attribOption": [] },
"cfgrid/rowheaderitalic":{ "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/rowheaderbold": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/rowheadertextcolor":{ "attribOption": ["black","red","blue","magenta","cyan","orange","darkgray","pink","white","lightgray","yellow"] },
"cfgrid/colheaders": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/colheaderalign": { "attribOption": ["left","center","right"] },
"cfgrid/colheaderfont": { "attribOption": [] },
"cfgrid/colheaderfontsize":{ "attribOption": [] },
"cfgrid/colheaderitalic":{ "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/colheaderbold": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/colheadertextcolor":{ "attribOption": ["black","red","blue","magenta","cyan","orange","darkgray","pink","white","lightgray","yellow"] },
"cfgrid/bgcolor": { "attribOption": ["black","red","blue","magenta","cyan","orange","darkgray","pink","white","lightgray","yellow"] },
"cfgrid/selectcolor": { "attribOption": ["black","red","blue","magenta","cyan","orange","darkgray","pink","white","lightgray","yellow"] },
"cfgrid/selectmode": { "attribOption": ["edit","single","row","column","browse"] },
"cfgrid/maxrows": { "attribOption": [] },
"cfgrid/notsupported": { "attribOption": [] },
"cfgrid/picturebar": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/insertbutton": { "attribOption": [] },
"cfgrid/deletebutton": { "attribOption": [] },
"cfgrid/sortascendingbutton":{ "attribOption": [] },
"cfgrid/sortdescendingbutton":{ "attribOption": [] },
"cfgrid/style": { "attribOption": [] },
"cfgrid/enabled": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/visible": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/tooltip": { "attribOption": [] },
"cfgrid/onchange": { "attribOption": [] },
"cfgrid/bindonload": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/selectonload": { "attribOption": ["true","false"], "type": "boolean" },
"cfgrid/onblur": { "attribOption": [] },
"cfgrid/onfocus": { "attribOption": [] },
"cfgrid/collapsible": { "attribOption": [], "type": "boolean" },
"cfgrid/groupfield": { "attribOption": [] },
"cfgrid/onLoad": { "attribOption": [] },
"cfgrid/multiRowSelect": { "attribOption": ["true","false"], "type": "boolean" },
"cfgridcolumn/name": { "attribOption": [] },
"cfgridcolumn/header": { "attribOption": [] },
"cfgridcolumn/width": { "attribOption": [] },
"cfgridcolumn/font": { "attribOption": ["arial","times","courier","arialunicodeMS"] },
"cfgridcolumn/fontsize": { "attribOption": [] },
"cfgridcolumn/italic": { "attribOption": ["true","false"], "type": "boolean" },
"cfgridcolumn/bold": { "attribOption": ["true","false"], "type": "boolean" },
"cfgridcolumn/bgcolor": { "attribOption": ["black","red","blue","magenta","cyan","orange","darkgray","pink","white","lightgray","yellow"] },
"cfgridcolumn/textcolor":{ "attribOption": ["black","red","blue","magenta","cyan","orange","darkgray","pink","white","lightgray","yellow"] },
"cfgridcolumn/href": { "attribOption": [] },
"cfgridcolumn/hrefkey": { "attribOption": [] },
"cfgridcolumn/target": { "attribOption": [] },
"cfgridcolumn/select": { "attribOption": ["true","false"], "type": "boolean" },
"cfgridcolumn/display": { "attribOption": ["true","false"], "type": "boolean" },
"cfgridcolumn/type": { "attribOption": ["string_noCase","boolean","numeric","date","combobox","image"] },
"cfgridcolumn/headerfont":{ "attribOption": [] },
"cfgridcolumn/headerfontsize":{ "attribOption": [] },
"cfgridcolumn/headeritalic":{ "attribOption": ["true","false"], "type": "boolean" },
"cfgridcolumn/headerbold":{ "attribOption": ["true","false"], "type": "boolean" },
"cfgridcolumn/headertextcolor":{ "attribOption": ["black","red","blue","magenta","cyan","orange","darkgray","pink","white","lightgray","yellow"] },
"cfgridcolumn/dataalign":{ "attribOption": ["left","right","center"] },
"cfgridcolumn/headeralign":{ "attribOption": ["left","right","center"] },
"cfgridcolumn/numberformat":{ "attribOption": [] },
"cfgridcolumn/values": { "attribOption": [] },
"cfgridcolumn/valuesdisplay":{ "attribOption": [] },
"cfgridcolumn/valuesdelimiter":{ "attribOption": [",",";","|",":"] },
"cfgridcolumn/mask": { "attribOption": [] },
"cfgridcolumn/headerIcon":{ "attribOption": [] },
"cfgridcolumn/autoExpand":{ "attribOption": ["true","false"], "type": "boolean" },
"cfgridcolumn/headerMenu":{ "attribOption": ["true","false"], "type": "boolean" },
"cfgridrow/data": { "attribOption": [] },
"cfgridrow/delimiter": { "attribOption": [] },
"cfgridupdate/grid": { "attribOption": [] },
"cfgridupdate/datasource":{ "attribOption": [] },
"cfgridupdate/tablename":{ "attribOption": [] },
"cfgridupdate/username": { "attribOption": [] },
"cfgridupdate/password": { "attribOption": [] },
"cfgridupdate/tableowner":{ "attribOption": [] },
"cfgridupdate/tablequalifier":{ "attribOption": [] },
"cfgridupdate/keyonly": { "attribOption": ["true","false"], "type": "boolean" },
"cfgridupdate/clientinfo":{ "attribOption": [] },
"cfheader/name": { "attribOption": [] },
"cfheader/value": { "attribOption": [] },
"cfheader/charset": { "attribOption": ["utf-8","iso-8859-1","windows-1252","us-ascii","shift_jis","iso-2022-jp","euc-jp","euc-kr","big5","euc-cn","utf-16"] },
"cfheader/statuscode": { "attribOption": [] },
"cfheader/statustext": { "attribOption": [] },
"cfhtmlhead/text": { "attribOption": [] },
"cfhttp/url": { "attribOption": [] },
"cfhttp/port": { "attribOption": [] },
"cfhttp/method": { "attribOption": ["get","post","put","delete","head","trace","options"] },
"cfhttp/proxyserver": { "attribOption": [] },
"cfhttp/proxyport": { "attribOption": [] },
"cfhttp/proxyuser": { "attribOption": [] },
"cfhttp/proxypassword": { "attribOption": [] },
"cfhttp/username": { "attribOption": [] },
"cfhttp/password": { "attribOption": [] },
"cfhttp/useragent": { "attribOption": [] },
"cfhttp/charset": { "attribOption": ["utf-8","iso-8859-1","windows-1252","us-ascii","shift_jis","iso-2022-jp","euc-jp","euc-kr","big5","euc-cn","utf-16"] },
"cfhttp/resolveurl": { "attribOption": ["true","false"], "type": "boolean" },
"cfhttp/throwonerror": { "attribOption": ["true","false"], "type": "boolean" },
"cfhttp/redirect": { "attribOption": ["true","false"], "type": "boolean" },
"cfhttp/timeout": { "attribOption": [] },
"cfhttp/getasbinary": { "attribOption": ["auto","yes","no","never"] },
"cfhttp/result": { "attribOption": [] },
"cfhttp/delimiter": { "attribOption": [",",";","|",":"] },
"cfhttp/name": { "attribOption": [] },
"cfhttp/columns": { "attribOption": [] },
"cfhttp/firstrowasheaders":{ "attribOption": ["true","false"], "type": "boolean" },
"cfhttp/textqualifier": { "attribOption": ["\"","'"] },
"cfhttp/file": { "attribOption": [] },
"cfhttp/multipart": { "attribOption": ["false","true"], "type": "boolean" },
"cfhttp/clientcertpassword":{ "attribOption": [] },
"cfhttp/path": { "attribOption": [] },
"cfhttp/clientcert": { "attribOption": [] },
"cfhttp/compression": { "attribOption": [] },
"cfhttp/multiparttype": { "attribOption": [] },
"cfhttpparam/type": { "attribOption": ["header","body","xml","cgi","file","url","formfield","cookie"] },
"cfhttpparam/name": { "attribOption": [] },
"cfhttpparam/value": { "attribOption": [] },
"cfhttpparam/file": { "attribOption": [] },
"cfhttpparam/encoded": { "attribOption": ["true","false"], "type": "boolean" },
"cfhttpparam/mimetype": { "attribOption": ["text/plain","text/html"] },
"cfimap/password": { "attribOption": [] },
"cfimap/secure": { "attribOption": ["true","false"], "type": "boolean" },
"cfimap/action": { "attribOption": ["createfolder","open","close","getall","markread","listallfolders","getheaderonly","deletefolder","delete","renamefolder","movemail"] },
"cfimap/timeout": { "attribOption": [] },
"cfimap/messageNumber": { "attribOption": [] },
"cfimap/connection": { "attribOption": [] },
"cfimap/newFolder": { "attribOption": [] },
"cfimap/uid": { "attribOption": [] },
"cfimap/folder": { "attribOption": [] },
"cfimap/port": { "attribOption": [] },
"cfimap/stoponerror": { "attribOption": ["true","false"], "type": "boolean" },
"cfimap/generateUniqueFileNames":{ "attribOption": ["true","false"], "type": "boolean" },
"cfimap/maxrows": { "attribOption": [] },
"cfimap/username": { "attribOption": [] },
"cfimap/startRow": { "attribOption": [] },
"cfimap/attachmentpath": { "attribOption": [] },
"cfimap/server": { "attribOption": [] },
"cfimap/name": { "attribOption": [] },
"cfimap/recurse": { "attribOption": ["true","false"], "type": "boolean" },
"cfimport/taglib": { "attribOption": [] },
"cfimport/prefix": { "attribOption": [] },
"cfimport/path": { "attribOption": [] },
"cfinclude/template": { "attribOption": [] },
"cfinclude/runonce": { "attribOption": ["true","false"], "type": "boolean" },
"cfindex/collection": { "attribOption": [] },
"cfindex/action": { "attribOption": ["abort","commit","delete","deltaimport","fullimport","purge","refresh","status","update"] },
"cfindex/type": { "attribOption": ["file","path","custom","DIH"] },
"cfindex/title": { "attribOption": [] },
"cfindex/key": { "attribOption": [] },
"cfindex/body": { "attribOption": [] },
"cfindex/custom1": { "attribOption": [] },
"cfindex/custom2": { "attribOption": [] },
"cfindex/custom3": { "attribOption": [] },
"cfindex/custom4": { "attribOption": [] },
"cfindex/category": { "attribOption": [] },
"cfindex/categoryTree": { "attribOption": [] },
"cfindex/urlpath": { "attribOption": [] },
"cfindex/extensions": { "attribOption": [] },
"cfindex/query": { "attribOption": [] },
"cfindex/recurse": { "attribOption": ["true","false"], "type": "boolean" },
"cfindex/language": { "attribOption": [] },
"cfindex/status": { "attribOption": [] },
"cfindex/prefix": { "attribOption": [] },
"cfindex/docboost": { "attribOption": [] },
"cfindex/fieldboost": { "attribOption": [] },
"cfindex/autocommit": { "attribOption": ["true","false"], "type": "boolean" },
"cfinput/name": { "attribOption": [] },
"cfinput/autosuggest": { "attribOption": [] },
"cfinput/autoSuggestBindDelay":{ "attribOption": [] },
"cfinput/autoSuggestMinLength":{ "attribOption": [] },
"cfinput/bindAttribute": { "attribOption": [] },
"cfinput/bindonload": { "attribOption": ["true","false"], "type": "boolean" },
"cfinput/id": { "attribOption": [] },
"cfinput/type": { "attribOption": ["button","checkbox","file","hidden","image","password","radio","reset","submit","text","datefield","autosuggest"] },
"cfinput/label": { "attribOption": [] },
"cfinput/style": { "attribOption": [] },
"cfinput/class": { "attribOption": [] },
"cfinput/required": { "attribOption": ["true","false"], "type": "boolean" },
"cfinput/mask": { "attribOption": [] },
"cfinput/validate": { "attribOption": ["date","eurodate","time","float","integer","telephone","zipcode","creditcard","social_security_number","regular_expression"] },
"cfinput/validateat": { "attribOption": ["onSubmit","onServer","onBlur"] },
"cfinput/message": { "attribOption": [] },
"cfinput/range": { "attribOption": [] },
"cfinput/maxlength": { "attribOption": [] },
"cfinput/pattern": { "attribOption": [] },
"cfinput/onvalidate": { "attribOption": [] },
"cfinput/onerror": { "attribOption": [] },
"cfinput/size": { "attribOption": [] },
"cfinput/value": { "attribOption": [] },
"cfinput/bind": { "attribOption": [] },
"cfinput/checked": { "attribOption": ["true","false"], "type": "boolean" },
"cfinput/disabled": { "attribOption": ["true","false"], "type": "boolean" },
"cfinput/src": { "attribOption": [] },
"cfinput/onkeyup": { "attribOption": [] },
"cfinput/onkeydown": { "attribOption": [] },
"cfinput/onmouseup": { "attribOption": [] },
"cfinput/onmousedown": { "attribOption": [] },
"cfinput/onchange": { "attribOption": [] },
"cfinput/onclick": { "attribOption": [] },
"cfinput/daynames": { "attribOption": ["S","M","T","W","Th","F","Sa","Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sun","Mon","Tue","Wed","Thu","Fri","Sat"] },
"cfinput/firstdayofweek":{ "attribOption": ["0","1","2","3","4","5","6"] },
"cfinput/monthnames": { "attribOption": ["January","February","March","April","May","June","July","August","September","October","November","December","Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"] },
"cfinput/enabled": { "attribOption": ["true","false"], "type": "boolean" },
"cfinput/visible": { "attribOption": ["true","false"], "type": "boolean" },
"cfinput/tooltip": { "attribOption": [] },
"cfinput/width": { "attribOption": [] },
"cfinput/height": { "attribOption": [] },
"cfinput/passthrough": { "attribOption": [] },
"cfinput/delimiter": { "attribOption": [] },
"cfinput/maxresultsdisplayed":{ "attribOption": [] },
"cfinput/onbinderror": { "attribOption": [] },
"cfinput/showautosuggestloadingicon":{ "attribOption": ["true","false"], "type": "boolean" },
"cfinput/sourcefortooltip":{ "attribOption": [] },
"cfinput/typeahead": { "attribOption": ["true","false"], "type": "boolean" },
"cfinput/matchContains": { "attribOption": ["true","false"], "type": "boolean" },
"cfinsert/datasource": { "attribOption": [] },
"cfinsert/tablename": { "attribOption": [] },
"cfinsert/tableowner": { "attribOption": [] },
"cfinsert/tablequalifier":{ "attribOption": [] },
"cfinsert/username": { "attribOption": [] },
"cfinsert/password": { "attribOption": [] },
"cfinsert/formfields": { "attribOption": [] },
"cfinsert/providerdsn": { "attribOption": [] },
"cfinsert/dbtype": { "attribOption": [] },
"cfinsert/dbname": { "attribOption": [] },
"cfinsert/dbserver": { "attribOption": [] },
"cfinsert/provider": { "attribOption": [] },
"cfinsert/fetchclientinfo":{ "attribOption": [], "type": "boolean" },
"cfinsert/clientinfo": { "attribOption": [] },
"cfinvoke/component": { "attribOption": [] },
"cfinvoke/method": { "attribOption": [] },
"cfinvoke/returnvariable":{ "attribOption": [] },
"cfinvoke/argumentcollection":{ "attribOption": [] },
"cfinvoke/username": { "attribOption": [] },
"cfinvoke/password": { "attribOption": [] },
"cfinvoke/webservice": { "attribOption": [] },
"cfinvoke/timeout": { "attribOption": [] },
"cfinvoke/proxyserver": { "attribOption": [] },
"cfinvoke/proxyport": { "attribOption": [] },
"cfinvoke/proxyuser": { "attribOption": [] },
"cfinvoke/proxypassword":{ "attribOption": [] },
"cfinvoke/serviceport": { "attribOption": [] },
"cfinvoke/refreshwsdl": { "attribOption": ["true","false"], "type": "boolean" },
"cfinvoke/wsdl2javaargs":{ "attribOption": [] },
"cfinvoke/wsversion": { "attribOption": ["1","2"] },
"cfinvokeargument/name": { "attribOption": [] },
"cfinvokeargument/value":{ "attribOption": [] },
"cfinvokeargument/omit": { "attribOption": ["true","false"], "type": "boolean" },
"cflayout/type": { "attribOption": ["accordion","border","hbox","tab","vbox"] },
"cflayout/align": { "attribOption": ["center","justify","left","right"] },
"cflayout/name": { "attribOption": [] },
"cflayout/padding": { "attribOption": [] },
"cflayout/style": { "attribOption": [] },
"cflayout/tabheight": { "attribOption": [] },
"cflayout/tabposition": { "attribOption": ["top","bottom"] },
"cflayout/titlecollapse":{ "attribOption": ["true","false"], "type": "boolean" },
"cflayout/activeontop": { "attribOption": ["true","false"], "type": "boolean" },
"cflayout/fillheight": { "attribOption": ["true","false"], "type": "boolean" },
"cflayout/fitToWindow": { "attribOption": ["true","false"], "type": "boolean" },
"cflayout/height": { "attribOption": [] },
"cflayout/width": { "attribOption": [] },
"cflayout/buttonStyle": { "attribOption": [] },
"cflayout/tabstrip": { "attribOption": [], "type": "boolean" },
"cflayoutarea/position": { "attribOption": ["bottom","center","left","right","top"] },
"cflayoutarea/align": { "attribOption": ["center","justify","left","right"] },
"cflayoutarea/closable": { "attribOption": ["true","false"], "type": "boolean" },
"cflayoutarea/collapsible":{ "attribOption": ["true","false"], "type": "boolean" },
"cflayoutarea/disabled": { "attribOption": ["true","false"], "type": "boolean" },
"cflayoutarea/initCollapsed":{ "attribOption": ["true","false"], "type": "boolean" },
"cflayoutarea/initHide": { "attribOption": ["true","false"], "type": "boolean" },
"cflayoutarea/maxSize": { "attribOption": [] },
"cflayoutarea/minSize": { "attribOption": [] },
"cflayoutarea/name": { "attribOption": [] },
"cflayoutarea/onBindError":{ "attribOption": [] },
"cflayoutarea/overflow": { "attribOption": ["auto","hidden","scroll","visible"] },
"cflayoutarea/selected": { "attribOption": ["true","false"], "type": "boolean" },
"cflayoutarea/size": { "attribOption": [] },
"cflayoutarea/source": { "attribOption": [] },
"cflayoutarea/splitter": { "attribOption": ["true","false"], "type": "boolean" },
"cflayoutarea/style": { "attribOption": [] },
"cflayoutarea/title": { "attribOption": [] },
"cflayoutarea/refreshonactivate":{ "attribOption": ["true","false"], "type": "boolean" },
"cflayoutarea/titleIcon":{ "attribOption": [] },
"cflayoutarea/bindOnLoad":{ "attribOption": ["true","false"], "type": "boolean" },
"cflayoutarea/tabtip": { "attribOption": [], "type": "boolean" },
"cfldap/server": { "attribOption": [] },
"cfldap/port": { "attribOption": [] },
"cfldap/username": { "attribOption": [] },
"cfldap/password": { "attribOption": [] },
"cfldap/action": { "attribOption": ["query","add","modify","modifyDN","delete"] },
"cfldap/name": { "attribOption": [] },
"cfldap/timeout": { "attribOption": [] },
"cfldap/maxrows": { "attribOption": [] },
"cfldap/start": { "attribOption": [] },
"cfldap/scope": { "attribOption": ["onelevel","base","subtree"] },
"cfldap/attributes": { "attribOption": [] },
"cfldap/returnasbinary": { "attribOption": [] },
"cfldap/filter": { "attribOption": [] },
"cfldap/sort": { "attribOption": [] },
"cfldap/sortcontrol": { "attribOption": ["nocase","asc","desc","nocase, desc","nocase, asc"] },
"cfldap/dn": { "attribOption": [] },
"cfldap/startrow": { "attribOption": [] },
"cfldap/modifytype": { "attribOption": ["add","delete","replace"] },
"cfldap/rebind": { "attribOption": ["true","false"], "type": "boolean" },
"cfldap/referral": { "attribOption": [] },
"cfldap/secure": { "attribOption": ["CFSSL_BASIC"] },
"cfldap/separator": { "attribOption": [",",";","|",":"] },
"cfldap/delimiter": { "attribOption": [",",";","|",":"] },
"cflocation/url": { "attribOption": [] },
"cflocation/addtoken": { "attribOption": ["true","false"], "type": "boolean" },
"cflocation/statuscode": { "attribOption": [] },
"cflock/timeout": { "attribOption": [] },
"cflock/scope": { "attribOption": ["Application","request","Server","Session"] },
"cflock/name": { "attribOption": [] },
"cflock/throwontimeout": { "attribOption": ["true","false"], "type": "boolean" },
"cflock/type": { "attribOption": ["readonly","exclusive"] },
"cflog/text": { "attribOption": [] },
"cflog/log": { "attribOption": ["Application","Scheduler"] },
"cflog/file": { "attribOption": [] },
"cflog/type": { "attribOption": ["information","warning","error","fatal"] },
"cflog/application": { "attribOption": ["true","false"], "type": "boolean" },
"cflogin/idletimeout": { "attribOption": [] },
"cflogin/applicationtoken":{ "attribOption": [] },
"cflogin/cookiedomain": { "attribOption": [] },
"cfloginuser/name": { "attribOption": [] },
"cfloginuser/password": { "attribOption": [] },
"cfloginuser/roles": { "attribOption": [] },
"cfloop/index": { "attribOption": [] },
"cfloop/to": { "attribOption": [] },
"cfloop/from": { "attribOption": [] },
"cfloop/step": { "attribOption": [] },
"cfloop/condition": { "attribOption": [] },
"cfloop/query": { "attribOption": [] },
"cfloop/startrow": { "attribOption": [] },
"cfloop/endrow": { "attribOption": [] },
"cfloop/list": { "attribOption": [] },
"cfloop/delimiters": { "attribOption": [",",";","|",":"] },
"cfloop/collection": { "attribOption": [] },
"cfloop/item": { "attribOption": [] },
"cfloop/array": { "attribOption": [] },
"cfloop/characters": { "attribOption": [] },
"cfloop/file": { "attribOption": [] },
"cfloop/group": { "attribOption": [] },
"cfloop/groupcasesensitive":{ "attribOption": ["true","false"], "type": "boolean" },
"cfmail/to": { "attribOption": [] },
"cfmail/from": { "attribOption": [] },
"cfmail/cc": { "attribOption": [] },
"cfmail/bcc": { "attribOption": [] },
"cfmail/subject": { "attribOption": [] },
"cfmail/replyto": { "attribOption": [] },
"cfmail/failto": { "attribOption": [] },
"cfmail/username": { "attribOption": [] },
"cfmail/password": { "attribOption": [] },
"cfmail/wraptext": { "attribOption": [] },
"cfmail/charset": { "attribOption": ["utf-8","iso-8859-1","windows-1252","us-ascii","shift_jis","iso-2022-jp","euc-jp","euc-kr","big5","euc-cn","utf-16"] },
"cfmail/type": { "attribOption": ["plain","html","text","text/html","text/plain"] },
"cfmail/mimeattach": { "attribOption": [] },
"cfmail/query": { "attribOption": [] },
"cfmail/group": { "attribOption": [] },
"cfmail/groupcasesensitive":{ "attribOption": ["true","false"], "type": "boolean" },
"cfmail/startrow": { "attribOption": [] },
"cfmail/maxrows": { "attribOption": [] },
"cfmail/server": { "attribOption": [] },
"cfmail/port": { "attribOption": [] },
"cfmail/mailerid": { "attribOption": [] },
"cfmail/timeout": { "attribOption": [] },
"cfmail/spoolenable": { "attribOption": ["true","false"], "type": "boolean" },
"cfmail/debug": { "attribOption": ["true","false"], "type": "boolean" },
"cfmail/priority": { "attribOption": ["highest","urgent","normal","low","lowest"] },
"cfmail/usessl": { "attribOption": ["true","false"], "type": "boolean" },
"cfmail/usetls": { "attribOption": ["true","false"], "type": "boolean" },
"cfmail/remove": { "attribOption": [], "type": "boolean" },
"cfmail/keystore": { "attribOption": [] },
"cfmail/keypassword": { "attribOption": [] },
"cfmail/sign": { "attribOption": [], "type": "boolean" },
"cfmail/keyalias": { "attribOption": [] },
"cfmail/keystorepassword":{ "attribOption": [] },
"cfmailparam/file": { "attribOption": [] },
"cfmailparam/type": { "attribOption": ["text/plain","text/html","html","plain","text"] },
"cfmailparam/name": { "attribOption": ["Message-Context","Apparently-To","Approved-By","Fax","Telefax","For-Approval","For-Comment","For-Handling","Mail-System-Version","Mailer","Originating-Client","X-Mailer ","X-Newsreader","X-MimeOLE","User-Agent","Originator-Info","Phone","X-Envelope-From","Envelope-To","X-Envelope-To","X-Face","X-RCPT-TO","X-Sender","X-X-Sender","Posted-To","X-Admin","Errors-To","Return-Receipt-To","Read-Receipt-To","X-Confirm-reading-to","Return-Receipt-Requested","Register-Mail-Reply-Requested-By","Abuse-Reports-To","X-Complaints-To","X-Report-Abuse-To","Content-Alias","Delivered-To","X-Loop","Translated-By","Translation-Of","X-UIDL","X-URI","X-URL","X-IMAP","X-OriginalArrivalTime","Precedence","X-MSMail-Priority","X-Priority","Content-Length","Content-Conversion","Content-Class","Content-SGML-Entity","X-MIME-Autoconverted","List-Digest","Mailing-List","X-Mailing-List","List-Software","List-URL","X-Listserver","X-List-Host","Fcc","Speech-Act","Status","X-No-Archive"] },
"cfmailparam/value": { "attribOption": [] },
"cfmailparam/contentID": { "attribOption": [] },
"cfmailparam/disposition":{ "attribOption": ["attachment","inline"] },
"cfmailparam/content": { "attribOption": [] },
"cfmailparam/remove": { "attribOption": [], "type": "boolean" },
"cfmailpart/type": { "attribOption": ["text/plain","text/html"] },
"cfmailpart/wraptext": { "attribOption": [] },
"cfmailpart/charset": { "attribOption": ["utf-8","iso-8859-1","windows-1252","us-ascii","shift_jis","iso-2022-jp","euc-jp","euc-kr","big5","euc-cn","utf-16"] },
"cfmodule/template": { "attribOption": [] },
"cfmodule/name": { "attribOption": [] },
"cfmodule/attributecollection":{ "attribOption": [] },
"cfntauthenticate/username":{ "attribOption": [] },
"cfntauthenticate/password":{ "attribOption": [] },
"cfntauthenticate/domain":{ "attribOption": [] },
"cfntauthenticate/result":{ "attribOption": [] },
"cfntauthenticate/listgroups":{ "attribOption": ["true","false"], "type": "boolean" },
"cfntauthenticate/throwonerror":{ "attribOption": ["true","false"], "type": "boolean" },
"cfobject/type": { "attribOption": ["com","component","corba","java","dotnet","webservice"] },
"cfobject/action": { "attribOption": ["create","connect"] },
"cfobject/class": { "attribOption": [] },
"cfobject/name": { "attribOption": [] },
"cfobject/context": { "attribOption": ["inproc","local","remote","ior","nameservice"] },
"cfobject/server": { "attribOption": [] },
"cfobject/component": { "attribOption": [] },
"cfobject/locale": { "attribOption": [] },
"cfobject/webservice": { "attribOption": [] },
"cfobject/password": { "attribOption": [] },
"cfobject/secure": { "attribOption": ["true","false"], "type": "boolean" },
"cfobject/protocol": { "attribOption": ["tcp","http"] },
"cfobject/proxyserver": { "attribOption": [] },
"cfobject/refreshwsdl": { "attribOption": ["true","false"], "type": "boolean" },
"cfobject/wsportname": { "attribOption": [] },
"cfobject/wsdl2javaargs":{ "attribOption": [] },
"cfobject/proxyport": { "attribOption": [] },
"cfobject/port": { "attribOption": [] },
"cfobject/proxypassword":{ "attribOption": [] },
"cfobject/assembly": { "attribOption": [] },
"cfobject/username": { "attribOption": [] },
"cfobject/proxyuser": { "attribOption": [] },
"cfobject/wsversion": { "attribOption": ["1","2"] },
"cfobjectcache/action": { "attribOption": ["clear"] },
"cfoutput/query": { "attribOption": [] },
"cfoutput/group": { "attribOption": [] },
"cfoutput/groupcasesensitive":{ "attribOption": ["true","false"], "type": "boolean" },
"cfoutput/startrow": { "attribOption": [] },
"cfoutput/maxrows": { "attribOption": [] },
"cfparam/name": { "attribOption": [] },
"cfparam/type": { "attribOption": ["any","array","binary","boolean","creditcard","date","time","email","eurodate","float","numeric","guid","integer","query","range","regex","regular_expression","ssn","social_security_number","string","struct","telephone","url","uuid","usdate","variablename","xml","zipcode"] },
"cfparam/default": { "attribOption": [] },
"cfparam/max": { "attribOption": [] },
"cfparam/min": { "attribOption": [] },
"cfparam/pattern": { "attribOption": [] },
"cfparam/maxlength": { "attribOption": [] },
"cfpod/bodyStyle": { "attribOption": [] },
"cfpod/headerStyle": { "attribOption": [] },
"cfpod/height": { "attribOption": [] },
"cfpod/name": { "attribOption": [] },
"cfpod/onBindError": { "attribOption": [] },
"cfpod/overflow": { "attribOption": ["auto","hidden","scroll","visible"] },
"cfpod/source": { "attribOption": [] },
"cfpod/title": { "attribOption": [] },
"cfpod/width": { "attribOption": [] },
"cfpop/server": { "attribOption": [] },
"cfpop/port": { "attribOption": [] },
"cfpop/username": { "attribOption": [] },
"cfpop/password": { "attribOption": [] },
"cfpop/action": { "attribOption": ["getHeaderOnly","getAll","delete"] },
"cfpop/name": { "attribOption": [] },
"cfpop/messagenumber": { "attribOption": [] },
"cfpop/uid": { "attribOption": [] },
"cfpop/attachmentpath": { "attribOption": [] },
"cfpop/timeout": { "attribOption": [] },
"cfpop/maxrows": { "attribOption": [] },
"cfpop/startrow": { "attribOption": [] },
"cfpop/generateUniqueFileNames":{ "attribOption": ["true","false"], "type": "boolean" },
"cfpop/secure": { "attribOption": ["true","false"], "type": "boolean" },
"cfprocessingdirective/suppressWhitespace":{ "attribOption": ["true","false"], "type": "boolean" },
"cfprocessingdirective/pageEncoding":{ "attribOption": ["utf-8","iso-8859-1","windows-1252","us-ascii","shift_jis","iso-2022-jp","euc-jp","euc-kr","big5","euc-cn","utf-16"] },
"cfprocparam/type": { "attribOption": ["in","out","inout"] },
"cfprocparam/variable": { "attribOption": [] },
"cfprocparam/value": { "attribOption": [] },
"cfprocparam/cfsqltype": { "attribOption": ["CF_SQL_BIGINT","CF_SQL_BIT","CF_SQL_CHAR","CF_SQL_BLOB","CF_SQL_CLOB","CF_SQL_DATE","CF_SQL_DECIMAL","CF_SQL_DOUBLE","CF_SQL_FLOAT","CF_SQL_IDSTAMP","CF_SQL_INTEGER","CF_SQL_LONGVARCHAR","CF_SQL_MONEY","CF_SQL_MONEY4","CF_SQL_NUMERIC","CF_SQL_REAL","CF_SQL_REFCURSOR","CF_SQL_SMALLINT","CF_SQL_TIME","CF_SQL_TIMESTAMP","CF_SQL_TINYINT","CF_SQL_VARCHAR","CF_SQL_NCHAR","CF_SQL_NVARCHAR","CF_SQL_LONGNVARCHAR","CF_SQL_NCLOB","CF_SQL_SQLXML"] },
"cfprocparam/maxlength": { "attribOption": [] },
"cfprocparam/scale": { "attribOption": [] },
"cfprocparam/null": { "attribOption": ["true","false"], "type": "boolean" },
"cfprocresult/name": { "attribOption": [] },
"cfprocresult/resultset":{ "attribOption": [] },
"cfprocresult/maxrows": { "attribOption": [] },
"cfproperty/name": { "attribOption": [] },
"cfproperty/type": { "attribOption": ["any","array","binary","boolean","date","guid","numeric","query","string","struct","uuid","variablename"] },
"cfproperty/required": { "attribOption": ["true","false"], "type": "boolean" },
"cfproperty/default": { "attribOption": [] },
"cfproperty/displayname":{ "attribOption": [] },
"cfproperty/hint": { "attribOption": [] },
"cfproperty/fieldtype": { "attribOption": ["id","column","one-to-one","one-to-many","many-to-many","many-to-one","collection","timestamp","version"] },
"cfproperty/ormType": { "attribOption": ["string","character","char","short","integer","int","long","big_decimal","float","double","boolean","yes_no","true_false","text","date","timestamp","binary","serializable","blob","clob"] },
"cfproperty/column": { "attribOption": [] },
"cfproperty/generator": { "attribOption": ["increment","identity","sequence","seqhilo","uuid","guid","native","assigned","select","foreign","sequence-indentity"] },
"cfproperty/sequence": { "attribOption": [] },
"cfproperty/selectkey": { "attribOption": [] },
"cfproperty/params": { "attribOption": [] },
"cfproperty/length": { "attribOption": [] },
"cfproperty/precision": { "attribOption": [] },
"cfproperty/index": { "attribOption": [] },
"cfproperty/setter": { "attribOption": ["true","false"], "type": "boolean" },
"cfproperty/getter": { "attribOption": ["true","false"], "type": "boolean" },
"cfproperty/source": { "attribOption": ["vm","db"] },
"cfproperty/elementcolumn":{ "attribOption": [] },
"cfproperty/elementtype":{ "attribOption": ["string","character","char","short","integer","int","long","big_decimal","float","double","boolean","yes_no","true_false","text","date","timestamp","binary","serializable","blob","clob"] },
"cfproperty/structkeytype":{ "attribOption": ["string","character","char","short","integer","int","long","big_decimal","float","double","boolean","yes_no","true_false","text","date","timestamp","binary","serializable","blob","clob"] },
"cfproperty/structkeycolumn":{ "attribOption": [] },
"cfproperty/inversejoincolumn":{ "attribOption": [] },
"cfproperty/linkschema": { "attribOption": [] },
"cfproperty/linkcatalog":{ "attribOption": [] },
"cfproperty/linktable": { "attribOption": [] },
"cfproperty/missingRowIgnored":{ "attribOption": ["true","false"], "type": "boolean" },
"cfproperty/inverse": { "attribOption": ["true","false"], "type": "boolean" },
"cfproperty/orderby": { "attribOption": [] },
"cfproperty/fkcolumn": { "attribOption": [] },
"cfproperty/fetch": { "attribOption": ["join","select"] },
"cfproperty/cascade": { "attribOption": ["all","none","save-update","delete","all-delete-orphan","delete-orphan","create","merge","lock","refresh","evict","replicate"] },
"cfproperty/constrained":{ "attribOption": ["true","false"], "type": "boolean" },
"cfproperty/unique": { "attribOption": ["true","false"] },
"cfproperty/uniquekey": { "attribOption": [] },
"cfproperty/notnull": { "attribOption": ["true","false"], "type": "boolean" },
"cfproperty/update": { "attribOption": ["true","false"] },
"cfproperty/insert": { "attribOption": ["true","false"], "type": "boolean" },
"cfproperty/generated": { "attribOption": ["never","insert","always"] },
"cfproperty/formula": { "attribOption": [] },
"cfproperty/lazy": { "attribOption": ["true","false","extra"] },
"cfproperty/optimisticLock":{ "attribOption": ["true","false"], "type": "boolean" },
"cfproperty/scale": { "attribOption": [] },
"cfproperty/mappedby": { "attribOption": [] },
"cfproperty/cfc": { "attribOption": [] },
"cfproperty/joinColumn": { "attribOption": [] },