abrupt 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (84) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +22 -0
  3. data/.rubocop.yml +16 -0
  4. data/.travis.yml +34 -0
  5. data/Gemfile +4 -0
  6. data/Guardfile +51 -0
  7. data/LICENSE.txt +22 -0
  8. data/README.md +36 -0
  9. data/Rakefile +7 -0
  10. data/abrupt.gemspec +41 -0
  11. data/assets/rules/datatypes/cax-RequiredFormElement.ttl +34 -0
  12. data/assets/rules/datatypes/cax-readability.ttl +18 -0
  13. data/assets/rules/datatypes/cax-required.ttl +15 -0
  14. data/assets/rules/list/prp-hasState.ttl +10 -0
  15. data/assets/rules/production/non_required_form_element.ttl +24 -0
  16. data/assets/rules/production/state_has_no_html_element.ttl +21 -0
  17. data/assets/schema/schema.json +49 -0
  18. data/assets/schema/v1/complexity.json +142 -0
  19. data/assets/schema/v1/input.json +1136 -0
  20. data/assets/schema/v1/link.json +41 -0
  21. data/assets/schema/v1/picture.json +47 -0
  22. data/assets/schema/v1/readability.json +51 -0
  23. data/assets/schema/v1/subject.json +88 -0
  24. data/assets/voc/tbox.ttl +1632 -0
  25. data/bin/abrupt +63 -0
  26. data/doc/paper/listings/datatype_rule.ttl +0 -0
  27. data/doc/paper/listings/description_logic_infered.ttl +3 -0
  28. data/doc/paper/listings/description_logic_rule.ttl +15 -0
  29. data/doc/paper/listings/inconsistency_rule.ttl +0 -0
  30. data/doc/paper/listings/limitations.ttl +10 -0
  31. data/doc/paper/listings/production_rule.ttl +0 -0
  32. data/doc/paper/listings/propositional_logic_infered.ttl +6 -0
  33. data/doc/paper/listings/propositional_logic_rule.ttl +15 -0
  34. data/doc/paper/listings/unique_nested_uris.ttl +10 -0
  35. data/doc/paper/literature.bib +56 -0
  36. data/doc/paper/main.tex +322 -0
  37. data/doc/poster/Poster.key +0 -0
  38. data/doc/poster/Poster.pdf +0 -0
  39. data/doc/poster/poster.indd +0 -0
  40. data/doc/poster/resources/graph.graffle +0 -0
  41. data/doc/poster/resources/graph.png +0 -0
  42. data/doc/poster/resources/graph_crop.png +0 -0
  43. data/lib/abrupt.rb +90 -0
  44. data/lib/abrupt/converter.rb +130 -0
  45. data/lib/abrupt/crawler.rb +125 -0
  46. data/lib/abrupt/service/absolute_url.rb +32 -0
  47. data/lib/abrupt/service/base.rb +75 -0
  48. data/lib/abrupt/service/complexity.rb +27 -0
  49. data/lib/abrupt/service/input.rb +15 -0
  50. data/lib/abrupt/service/link.rb +15 -0
  51. data/lib/abrupt/service/picture.rb +19 -0
  52. data/lib/abrupt/service/readability.rb +26 -0
  53. data/lib/abrupt/service/subject.rb +19 -0
  54. data/lib/abrupt/transformation/base.rb +145 -0
  55. data/lib/abrupt/transformation/client/base.rb +8 -0
  56. data/lib/abrupt/transformation/client/page_view.rb +27 -0
  57. data/lib/abrupt/transformation/client/visit.rb +56 -0
  58. data/lib/abrupt/transformation/client/visitor.rb +19 -0
  59. data/lib/abrupt/transformation/website/base.rb +8 -0
  60. data/lib/abrupt/transformation/website/complexity.rb +20 -0
  61. data/lib/abrupt/transformation/website/input.rb +42 -0
  62. data/lib/abrupt/transformation/website/link.rb +27 -0
  63. data/lib/abrupt/transformation/website/picture.rb +26 -0
  64. data/lib/abrupt/transformation/website/readability.rb +15 -0
  65. data/lib/abrupt/transformation/website/subject.rb +22 -0
  66. data/lib/abrupt/version.rb +7 -0
  67. data/spec/cassettes/Abrupt_Crawler/outputs_correct_hash.yml +91250 -0
  68. data/spec/converter_spec.rb +34 -0
  69. data/spec/crawler_spec.rb +11 -0
  70. data/spec/factories/crawled_hashes.rb +468 -0
  71. data/spec/fixtures/rikscha-mainz.owl +17456 -0
  72. data/spec/fixtures/rikscha.ohneBilder.2013-04-30_2013-08-17.xml +51759 -0
  73. data/spec/fixtures/rikscha.ohneBilder.2013-04-30_2013-08-17_min.xml +81 -0
  74. data/spec/fixtures/rikscha_Result.xml +11594 -0
  75. data/spec/fixtures/rikscha_Result_min.xml +574 -0
  76. data/spec/spec_helper.rb +26 -0
  77. data/spec/transformation/base_spec.rb +18 -0
  78. data/spec/transformation/website/complexity_spec.rb +188 -0
  79. data/spec/transformation/website/input_spec.rb +181 -0
  80. data/spec/transformation/website/link_spec.rb +13 -0
  81. data/spec/transformation/website/picture_spec.rb +20 -0
  82. data/spec/transformation/website/readability_spec.rb +22 -0
  83. data/spec/transformation/website/subject_spec.rb +40 -0
  84. metadata +424 -0
@@ -0,0 +1,1136 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-04/schema#",
3
+ "type": "object",
4
+ "required": false,
5
+ "properties": {
6
+ "input": {
7
+ "description": "",
8
+ "type": "object",
9
+ "required": false,
10
+ "properties": {
11
+ "button": {
12
+ "description": "",
13
+ "type": "array",
14
+ "items": {
15
+ "type": "object",
16
+ "properties": {
17
+ "name": {
18
+ "description": "",
19
+ "type": "string"
20
+ },
21
+ "value": {
22
+ "description": "",
23
+ "type": "string"
24
+ },
25
+ "required": {
26
+ "description": "",
27
+ "type": "boolean"
28
+ },
29
+ "id": {
30
+ "description": "",
31
+ "type": "string"
32
+ },
33
+ "class": {
34
+ "description": "",
35
+ "type": "string"
36
+ },
37
+ "style": {
38
+ "description": "",
39
+ "type": "string"
40
+ },
41
+ "placeholder": {
42
+ "description": "",
43
+ "type": "string"
44
+ },
45
+ "type": {
46
+ "description": "",
47
+ "type": "string"
48
+ }
49
+ }
50
+ }
51
+ },
52
+ "checkbox": {
53
+ "description": "",
54
+ "type": "array",
55
+ "items": {
56
+ "type": "object",
57
+ "properties": {
58
+ "name": {
59
+ "description": "",
60
+ "type": "string"
61
+ },
62
+ "value": {
63
+ "description": "",
64
+ "type": "string"
65
+ },
66
+ "required": {
67
+ "description": "",
68
+ "type": "boolean"
69
+ },
70
+ "checked": {
71
+ "description": "",
72
+ "type": "boolean"
73
+ },
74
+ "id": {
75
+ "description": "",
76
+ "type": "string"
77
+ },
78
+ "class": {
79
+ "description": "",
80
+ "type": "string"
81
+ },
82
+ "style": {
83
+ "description": "",
84
+ "type": "string"
85
+ },
86
+ "placeholder": {
87
+ "description": "",
88
+ "type": "string"
89
+ },
90
+ "type": {
91
+ "description": "",
92
+ "type": "string"
93
+ }
94
+ }
95
+ }
96
+ },
97
+ "color": {
98
+ "description": "",
99
+ "type": "array",
100
+ "items": {
101
+ "type": "object",
102
+ "properties": {
103
+ "name": {
104
+ "description": "",
105
+ "type": "string"
106
+ },
107
+ "value": {
108
+ "description": "",
109
+ "type": "string"
110
+ },
111
+ "required": {
112
+ "description": "",
113
+ "type": "string"
114
+ },
115
+ "id": {
116
+ "description": "",
117
+ "type": "string"
118
+ },
119
+ "class": {
120
+ "description": "",
121
+ "type": "string"
122
+ },
123
+ "style": {
124
+ "description": "",
125
+ "type": "string"
126
+ },
127
+ "placeholder": {
128
+ "description": "",
129
+ "type": "string"
130
+ },
131
+ "type": {
132
+ "description": "",
133
+ "type": "string"
134
+ }
135
+ }
136
+ }
137
+ },
138
+ "date": {
139
+ "description": "",
140
+ "type": "array",
141
+ "items": {
142
+ "type": "object",
143
+ "properties": {
144
+ "name": {
145
+ "description": "",
146
+ "type": "string"
147
+ },
148
+ "value": {
149
+ "description": "",
150
+ "type": "string"
151
+ },
152
+ "required": {
153
+ "description": "",
154
+ "type": "boolean"
155
+ },
156
+ "id": {
157
+ "description": "",
158
+ "type": "string"
159
+ },
160
+ "class": {
161
+ "description": "",
162
+ "type": "string"
163
+ },
164
+ "style": {
165
+ "description": "",
166
+ "type": "string"
167
+ },
168
+ "placeholder": {
169
+ "description": "",
170
+ "type": "string"
171
+ },
172
+ "type": {
173
+ "description": "",
174
+ "type": "string"
175
+ }
176
+ }
177
+ }
178
+ },
179
+ "datetime": {
180
+ "description": "",
181
+ "type": "array",
182
+ "items": {
183
+ "type": "object",
184
+ "properties": {
185
+ "name": {
186
+ "description": "",
187
+ "type": "string"
188
+ },
189
+ "value": {
190
+ "description": "",
191
+ "type": "string"
192
+ },
193
+ "required": {
194
+ "description": "",
195
+ "type": "boolean"
196
+ },
197
+ "id": {
198
+ "description": "",
199
+ "type": "string"
200
+ },
201
+ "class": {
202
+ "description": "",
203
+ "type": "string"
204
+ },
205
+ "style": {
206
+ "description": "",
207
+ "type": "string"
208
+ },
209
+ "placeholder": {
210
+ "description": "",
211
+ "type": "string"
212
+ },
213
+ "type": {
214
+ "description": "",
215
+ "type": "string"
216
+ }
217
+ }
218
+ }
219
+ },
220
+ "datetime-local": {
221
+ "description": "",
222
+ "type": "array",
223
+ "items": {
224
+ "type": "object",
225
+ "properties": {
226
+ "name": {
227
+ "description": "",
228
+ "type": "string"
229
+ },
230
+ "value": {
231
+ "description": "",
232
+ "type": "string"
233
+ },
234
+ "required": {
235
+ "description": "",
236
+ "type": "boolean"
237
+ },
238
+ "id": {
239
+ "description": "",
240
+ "type": "string"
241
+ },
242
+ "class": {
243
+ "description": "",
244
+ "type": "string"
245
+ },
246
+ "style": {
247
+ "description": "",
248
+ "type": "string"
249
+ },
250
+ "placeholder": {
251
+ "description": "",
252
+ "type": "string"
253
+ },
254
+ "type": {
255
+ "description": "",
256
+ "type": "string"
257
+ }
258
+ }
259
+ }
260
+ },
261
+ "email": {
262
+ "description": "",
263
+ "type": "array",
264
+ "items": {
265
+ "type": "object",
266
+ "properties": {
267
+ "name": {
268
+ "description": "",
269
+ "type": "string"
270
+ },
271
+ "value": {
272
+ "description": "",
273
+ "type": "string"
274
+ },
275
+ "required": {
276
+ "description": "",
277
+ "type": "boolean"
278
+ },
279
+ "size": {
280
+ "description": "",
281
+ "type": "integer"
282
+ },
283
+ "maxlength": {
284
+ "description": "",
285
+ "type": "integer"
286
+ },
287
+ "id": {
288
+ "description": "",
289
+ "type": "string"
290
+ },
291
+ "class": {
292
+ "description": "",
293
+ "type": "string"
294
+ },
295
+ "style": {
296
+ "description": "",
297
+ "type": "string"
298
+ },
299
+ "placeholder": {
300
+ "description": "",
301
+ "type": "string"
302
+ },
303
+ "type": {
304
+ "description": "",
305
+ "type": "string"
306
+ }
307
+ }
308
+ }
309
+ },
310
+ "file": {
311
+ "description": "",
312
+ "type": "array",
313
+ "items": {
314
+ "type": "object",
315
+ "properties": {
316
+ "name": {
317
+ "description": "",
318
+ "type": "string"
319
+ },
320
+ "value": {
321
+ "description": "",
322
+ "type": "string"
323
+ },
324
+ "required": {
325
+ "description": "",
326
+ "type": "boolean"
327
+ },
328
+ "id": {
329
+ "description": "",
330
+ "type": "string"
331
+ },
332
+ "class": {
333
+ "description": "",
334
+ "type": "string"
335
+ },
336
+ "style": {
337
+ "description": "",
338
+ "type": "string"
339
+ },
340
+ "placeholder": {
341
+ "description": "",
342
+ "type": "string"
343
+ },
344
+ "type": {
345
+ "description": "",
346
+ "type": "string"
347
+ }
348
+ }
349
+ }
350
+ },
351
+ "hidden": {
352
+ "description": "",
353
+ "type": "array",
354
+ "items": {
355
+ "type": "object",
356
+ "properties": {
357
+ "name": {
358
+ "description": "",
359
+ "type": "string"
360
+ },
361
+ "value": {
362
+ "description": "",
363
+ "type": "string"
364
+ },
365
+ "required": {
366
+ "description": "",
367
+ "type": "boolean"
368
+ },
369
+ "id": {
370
+ "description": "",
371
+ "type": "string"
372
+ },
373
+ "class": {
374
+ "description": "",
375
+ "type": "string"
376
+ },
377
+ "style": {
378
+ "description": "",
379
+ "type": "string"
380
+ },
381
+ "placeholder": {
382
+ "description": "",
383
+ "type": "string"
384
+ },
385
+ "type": {
386
+ "description": "",
387
+ "type": "string"
388
+ }
389
+ }
390
+ }
391
+ },
392
+ "image": {
393
+ "description": "",
394
+ "type": "array",
395
+ "items": {
396
+ "type": "object",
397
+ "properties": {
398
+ "name": {
399
+ "description": "",
400
+ "type": "string"
401
+ },
402
+ "value": {
403
+ "description": "",
404
+ "type": "string"
405
+ },
406
+ "required": {
407
+ "description": "",
408
+ "type": "boolean"
409
+ },
410
+ "id": {
411
+ "description": "",
412
+ "type": "string"
413
+ },
414
+ "class": {
415
+ "description": "",
416
+ "type": "string"
417
+ },
418
+ "style": {
419
+ "description": "",
420
+ "type": "string"
421
+ },
422
+ "placeholder": {
423
+ "description": "",
424
+ "type": "string"
425
+ },
426
+ "type": {
427
+ "description": "",
428
+ "type": "string"
429
+ }
430
+ }
431
+ }
432
+ },
433
+ "month": {
434
+ "description": "",
435
+ "type": "array",
436
+ "items": {
437
+ "type": "object",
438
+ "properties": {
439
+ "name": {
440
+ "description": "",
441
+ "type": "string"
442
+ },
443
+ "value": {
444
+ "description": "",
445
+ "type": "string"
446
+ },
447
+ "required": {
448
+ "description": "",
449
+ "type": "boolean"
450
+ },
451
+ "id": {
452
+ "description": "",
453
+ "type": "string"
454
+ },
455
+ "class": {
456
+ "description": "",
457
+ "type": "string"
458
+ },
459
+ "style": {
460
+ "description": "",
461
+ "type": "string"
462
+ },
463
+ "placeholder": {
464
+ "description": "",
465
+ "type": "string"
466
+ },
467
+ "type": {
468
+ "description": "",
469
+ "type": "string"
470
+ }
471
+ }
472
+ }
473
+ },
474
+ "number": {
475
+ "description": "",
476
+ "type": "array",
477
+ "items": {
478
+ "type": "object",
479
+ "properties": {
480
+ "name": {
481
+ "description": "",
482
+ "type": "string"
483
+ },
484
+ "value": {
485
+ "description": "",
486
+ "type": "integer"
487
+ },
488
+ "required": {
489
+ "description": "",
490
+ "type": "boolean"
491
+ },
492
+ "min": {
493
+ "description": "",
494
+ "type": "integer"
495
+ },
496
+ "max": {
497
+ "description": "",
498
+ "type": "integer"
499
+ },
500
+ "id": {
501
+ "description": "",
502
+ "type": "string"
503
+ },
504
+ "class": {
505
+ "description": "",
506
+ "type": "string"
507
+ },
508
+ "style": {
509
+ "description": "",
510
+ "type": "string"
511
+ },
512
+ "placeholder": {
513
+ "description": "",
514
+ "type": "string"
515
+ },
516
+ "type": {
517
+ "description": "",
518
+ "type": "string"
519
+ }
520
+ }
521
+ }
522
+ },
523
+ "password": {
524
+ "description": "",
525
+ "type": "array",
526
+ "items": {
527
+ "type": "object",
528
+ "properties": {
529
+ "name": {
530
+ "description": "",
531
+ "type": "string"
532
+ },
533
+ "value": {
534
+ "description": "",
535
+ "type": "string"
536
+ },
537
+ "required": {
538
+ "description": "",
539
+ "type": "boolean"
540
+ },
541
+ "size": {
542
+ "description": "",
543
+ "type": "integer"
544
+ },
545
+ "maxlength": {
546
+ "description": "",
547
+ "type": "integer"
548
+ },
549
+ "id": {
550
+ "description": "",
551
+ "type": "string"
552
+ },
553
+ "class": {
554
+ "description": "",
555
+ "type": "string"
556
+ },
557
+ "style": {
558
+ "description": "",
559
+ "type": "string"
560
+ },
561
+ "placeholder": {
562
+ "description": "",
563
+ "type": "string"
564
+ },
565
+ "type": {
566
+ "description": "",
567
+ "type": "string"
568
+ }
569
+ }
570
+ }
571
+ },
572
+ "radio": {
573
+ "description": "",
574
+ "type": "array",
575
+ "items": {
576
+ "type": "object",
577
+ "properties": {
578
+ "name": {
579
+ "description": "",
580
+ "type": "string"
581
+ },
582
+ "value": {
583
+ "description": "",
584
+ "type": "string"
585
+ },
586
+ "required": {
587
+ "description": "",
588
+ "type": "boolean"
589
+ },
590
+ "checked": {
591
+ "description": "",
592
+ "type": "boolean"
593
+ },
594
+ "id": {
595
+ "description": "",
596
+ "type": "string"
597
+ },
598
+ "class": {
599
+ "description": "",
600
+ "type": "string"
601
+ },
602
+ "style": {
603
+ "description": "",
604
+ "type": "string"
605
+ },
606
+ "placeholder": {
607
+ "description": "",
608
+ "type": "string"
609
+ },
610
+ "type": {
611
+ "description": "",
612
+ "type": "string"
613
+ }
614
+ }
615
+ }
616
+ },
617
+ "range": {
618
+ "description": "",
619
+ "type": "array",
620
+ "items": {
621
+ "type": "object",
622
+ "properties": {
623
+ "name": {
624
+ "description": "",
625
+ "type": "string"
626
+ },
627
+ "value": {
628
+ "description": "",
629
+ "type": "string"
630
+ },
631
+ "required": {
632
+ "description": "",
633
+ "type": "boolean"
634
+ },
635
+ "id": {
636
+ "description": "",
637
+ "type": "string"
638
+ },
639
+ "class": {
640
+ "description": "",
641
+ "type": "string"
642
+ },
643
+ "style": {
644
+ "description": "",
645
+ "type": "string"
646
+ },
647
+ "placeholder": {
648
+ "description": "",
649
+ "type": "string"
650
+ },
651
+ "type": {
652
+ "description": "",
653
+ "type": "string"
654
+ }
655
+ }
656
+ }
657
+ },
658
+ "reset": {
659
+ "description": "",
660
+ "type": "array",
661
+ "items": {
662
+ "type": "object",
663
+ "properties": {
664
+ "name": {
665
+ "description": "",
666
+ "type": "string"
667
+ },
668
+ "value": {
669
+ "description": "",
670
+ "type": "string"
671
+ },
672
+ "required": {
673
+ "description": "",
674
+ "type": "boolean"
675
+ },
676
+ "id": {
677
+ "description": "",
678
+ "type": "string"
679
+ },
680
+ "class": {
681
+ "description": "",
682
+ "type": "string"
683
+ },
684
+ "style": {
685
+ "description": "",
686
+ "type": "string"
687
+ },
688
+ "placeholder": {
689
+ "description": "",
690
+ "type": "string"
691
+ },
692
+ "type": {
693
+ "description": "",
694
+ "type": "string"
695
+ }
696
+ }
697
+ }
698
+ },
699
+ "search": {
700
+ "description": "",
701
+ "type": "array",
702
+ "items": {
703
+ "type": "object",
704
+ "properties": {
705
+ "name": {
706
+ "description": "",
707
+ "type": "string"
708
+ },
709
+ "value": {
710
+ "description": "",
711
+ "type": "string"
712
+ },
713
+ "required": {
714
+ "description": "",
715
+ "type": "boolean"
716
+ },
717
+ "size": {
718
+ "description": "",
719
+ "type": "integer"
720
+ },
721
+ "maxlength": {
722
+ "description": "",
723
+ "type": "integer"
724
+ },
725
+ "id": {
726
+ "description": "",
727
+ "type": "string"
728
+ },
729
+ "class": {
730
+ "description": "",
731
+ "type": "string"
732
+ },
733
+ "style": {
734
+ "description": "",
735
+ "type": "string"
736
+ },
737
+ "placeholder": {
738
+ "description": "",
739
+ "type": "string"
740
+ },
741
+ "type": {
742
+ "description": "",
743
+ "type": "string"
744
+ }
745
+ }
746
+ }
747
+ },
748
+ "submit": {
749
+ "description": "",
750
+ "type": "array",
751
+ "items": {
752
+ "type": "object",
753
+ "properties": {
754
+ "name": {
755
+ "description": "",
756
+ "type": "string"
757
+ },
758
+ "value": {
759
+ "description": "",
760
+ "type": "string"
761
+ },
762
+ "required": {
763
+ "description": "",
764
+ "type": "boolean"
765
+ },
766
+ "id": {
767
+ "description": "",
768
+ "type": "string"
769
+ },
770
+ "class": {
771
+ "description": "",
772
+ "type": "string"
773
+ },
774
+ "style": {
775
+ "description": "",
776
+ "type": "string"
777
+ },
778
+ "placeholder": {
779
+ "description": "",
780
+ "type": "string"
781
+ },
782
+ "type": {
783
+ "description": "",
784
+ "type": "string"
785
+ }
786
+ }
787
+ }
788
+ },
789
+ "tel": {
790
+ "description": "",
791
+ "type": "array",
792
+ "items": {
793
+ "type": "object",
794
+ "properties": {
795
+ "name": {
796
+ "description": "",
797
+ "type": "string"
798
+ },
799
+ "value": {
800
+ "description": "",
801
+ "type": "string"
802
+ },
803
+ "size": {
804
+ "description": "",
805
+ "type": "integer"
806
+ },
807
+ "maxlength": {
808
+ "description": "",
809
+ "type": "integer"
810
+ },
811
+ "required": {
812
+ "description": "",
813
+ "type": "boolean"
814
+ },
815
+ "id": {
816
+ "description": "",
817
+ "type": "string"
818
+ },
819
+ "class": {
820
+ "description": "",
821
+ "type": "string"
822
+ },
823
+ "style": {
824
+ "description": "",
825
+ "type": "string"
826
+ },
827
+ "placeholder": {
828
+ "description": "",
829
+ "type": "string"
830
+ },
831
+ "type": {
832
+ "description": "",
833
+ "type": "string"
834
+ }
835
+ }
836
+ }
837
+ },
838
+ "text": {
839
+ "description": "",
840
+ "type": "array",
841
+ "items": {
842
+ "type": "object",
843
+ "properties": {
844
+ "name": {
845
+ "description": "",
846
+ "type": "string"
847
+ },
848
+ "value": {
849
+ "description": "",
850
+ "type": "string"
851
+ },
852
+ "required": {
853
+ "description": "",
854
+ "type": "boolean"
855
+ },
856
+ "size": {
857
+ "description": "",
858
+ "type": "integer"
859
+ },
860
+ "maxlength": {
861
+ "description": "",
862
+ "type": "integer"
863
+ },
864
+ "id": {
865
+ "description": "",
866
+ "type": "string"
867
+ },
868
+ "class": {
869
+ "description": "",
870
+ "type": "string"
871
+ },
872
+ "style": {
873
+ "description": "",
874
+ "type": "string"
875
+ },
876
+ "placeholder": {
877
+ "description": "",
878
+ "type": "string"
879
+ },
880
+ "type": {
881
+ "description": "",
882
+ "type": "string"
883
+ }
884
+ }
885
+ }
886
+ },
887
+ "time": {
888
+ "description": "",
889
+ "type": "array",
890
+ "items": {
891
+ "type": "object",
892
+ "properties": {
893
+ "name": {
894
+ "description": "",
895
+ "type": "string"
896
+ },
897
+ "value": {
898
+ "description": "",
899
+ "type": "string"
900
+ },
901
+ "required": {
902
+ "description": "",
903
+ "type": "boolean"
904
+ },
905
+ "id": {
906
+ "description": "",
907
+ "type": "string"
908
+ },
909
+ "class": {
910
+ "description": "",
911
+ "type": "string"
912
+ },
913
+ "style": {
914
+ "description": "",
915
+ "type": "string"
916
+ },
917
+ "placeholder": {
918
+ "description": "",
919
+ "type": "string"
920
+ },
921
+ "type": {
922
+ "description": "",
923
+ "type": "string"
924
+ }
925
+ }
926
+ }
927
+ },
928
+ "url": {
929
+ "description": "",
930
+ "type": "array",
931
+ "items": {
932
+ "type": "object",
933
+ "properties": {
934
+ "name": {
935
+ "description": "",
936
+ "type": "string"
937
+ },
938
+ "value": {
939
+ "description": "",
940
+ "type": "string"
941
+ },
942
+ "required": {
943
+ "description": "",
944
+ "type": "boolean"
945
+ },
946
+ "size": {
947
+ "description": "",
948
+ "type": "integer"
949
+ },
950
+ "maxlength": {
951
+ "description": "",
952
+ "type": "integer"
953
+ },
954
+ "id": {
955
+ "description": "",
956
+ "type": "string"
957
+ },
958
+ "class": {
959
+ "description": "",
960
+ "type": "string"
961
+ },
962
+ "style": {
963
+ "description": "",
964
+ "type": "string"
965
+ },
966
+ "placeholder": {
967
+ "description": "",
968
+ "type": "string"
969
+ },
970
+ "type": {
971
+ "description": "",
972
+ "type": "string"
973
+ }
974
+ }
975
+ }
976
+ },
977
+ "week": {
978
+ "description": "",
979
+ "type": "array",
980
+ "items": {
981
+ "type": "object",
982
+ "properties": {
983
+ "name": {
984
+ "description": "",
985
+ "type": "string"
986
+ },
987
+ "value": {
988
+ "description": "",
989
+ "type": "string"
990
+ },
991
+ "required": {
992
+ "description": "",
993
+ "type": "boolean"
994
+ },
995
+ "id": {
996
+ "description": "",
997
+ "type": "string"
998
+ },
999
+ "class": {
1000
+ "description": "",
1001
+ "type": "string"
1002
+ },
1003
+ "style": {
1004
+ "description": "",
1005
+ "type": "string"
1006
+ },
1007
+ "placeholder": {
1008
+ "description": "",
1009
+ "type": "string"
1010
+ },
1011
+ "type": {
1012
+ "description": "",
1013
+ "type": "string"
1014
+ }
1015
+ }
1016
+ }
1017
+ },
1018
+ "option": {
1019
+ "description": "",
1020
+ "type": "array",
1021
+ "items": {
1022
+ "type": "object",
1023
+ "properties": {
1024
+ "name": {
1025
+ "description": "",
1026
+ "type": "string"
1027
+ },
1028
+ "value": {
1029
+ "description": "",
1030
+ "type": "string"
1031
+ },
1032
+ "disabled": {
1033
+ "description": "",
1034
+ "type": "boolean"
1035
+ },
1036
+ "selected": {
1037
+ "description": "",
1038
+ "type": "boolean"
1039
+ },
1040
+ "id": {
1041
+ "description": "",
1042
+ "type": "string"
1043
+ },
1044
+ "class": {
1045
+ "description": "",
1046
+ "type": "string"
1047
+ },
1048
+ "style": {
1049
+ "description": "",
1050
+ "type": "string"
1051
+ }
1052
+ }
1053
+ }
1054
+ },
1055
+ "select": {
1056
+ "description": "",
1057
+ "type": "array",
1058
+ "items": {
1059
+ "type": "object",
1060
+ "properties": {
1061
+ "name": {
1062
+ "description": "",
1063
+ "type": "string"
1064
+ },
1065
+ "required": {
1066
+ "description": "",
1067
+ "type": "boolean"
1068
+ },
1069
+ "size": {
1070
+ "description": "",
1071
+ "type": "integer"
1072
+ },
1073
+ "multiple": {
1074
+ "description": "",
1075
+ "type": "integer"
1076
+ },
1077
+ "id": {
1078
+ "description": "",
1079
+ "type": "string"
1080
+ },
1081
+ "class": {
1082
+ "description": "",
1083
+ "type": "string"
1084
+ },
1085
+ "style": {
1086
+ "description": "",
1087
+ "type": "string"
1088
+ }
1089
+ }
1090
+ }
1091
+ },
1092
+ "textarea": {
1093
+ "description": "",
1094
+ "type": "array",
1095
+ "items": {
1096
+ "type": "object",
1097
+ "properties": {
1098
+ "id": {
1099
+ "description": "",
1100
+ "type": "string"
1101
+ },
1102
+ "style": {
1103
+ "description": "",
1104
+ "type": "string"
1105
+ },
1106
+ "placeholder": {
1107
+ "description": "",
1108
+ "type": "string"
1109
+ },
1110
+ "name": {
1111
+ "description": "",
1112
+ "type": "string"
1113
+ },
1114
+ "cols": {
1115
+ "description": "",
1116
+ "type": "integer"
1117
+ },
1118
+ "rows": {
1119
+ "description": "",
1120
+ "type": "integer"
1121
+ },
1122
+ "maxlength": {
1123
+ "description": "",
1124
+ "type": "integer"
1125
+ },
1126
+ "readonly": {
1127
+ "description": "",
1128
+ "type": "boolean"
1129
+ }
1130
+ }
1131
+ }
1132
+ }
1133
+ }
1134
+ }
1135
+ }
1136
+ }