-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.json
More file actions
2572 lines (2572 loc) · 87.7 KB
/
schema.json
File metadata and controls
2572 lines (2572 loc) · 87.7 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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"pages": {
"type": "array",
"required": [
"name",
"columns"
],
"items": {
"$ref": "#/definitions/page-item"
}
},
"theme": {
"oneOf": [
{
"$ref": "#/definitions/theme-item"
},
{
"type": "array",
"items": {
"oneOf": [
{
"$ref": "#/definitions/theme-item"
},
{
"$ref": "#/definitions/include"
}
]
}
}
]
},
"document": {
"oneOf": [
{
"$ref": "#/definitions/document-item"
},
{
"type": "array",
"items": {
"oneOf": [
{
"$ref": "#/definitions/document-item"
},
{
"$ref": "#/definitions/include"
}
]
}
}
]
},
"auth": {
"oneOf": [
{
"$ref": "#/definitions/auth-item"
},
{
"type": "array",
"items": {
"oneOf": [
{
"$ref": "#/definitions/auth-item"
},
{
"$ref": "#/definitions/include"
}
]
}
}
]
},
"server": {
"oneOf": [
{
"$ref": "#/definitions/server-item"
},
{
"type": "array",
"items": {
"oneOf": [
{
"$ref": "#/definitions/server-item"
},
{
"$ref": "#/definitions/include"
}
]
}
}
]
},
"branding": {
"oneOf": [
{
"$ref": "#/definitions/branding-item"
},
{
"type": "array",
"items": {
"oneOf": [
{
"$ref": "#/definitions/branding-item"
},
{
"$ref": "#/definitions/include"
}
]
}
}
]
}
},
"definitions": {
"include": {
"type": "object",
"required": [
"$include"
],
"properties": {
"$include": {
"type": "string"
}
},
"additionalProperties": false
},
"widget-base": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"enum": [
"split-column",
"extension",
"docker-containers",
"iframe",
"twitch-channels",
"bookmarks",
"change-detection",
"twitch-top-games",
"server-stats",
"repository",
"lobsters",
"dns-stats",
"monitor",
"releases",
"html",
"custom-api",
"videos",
"calendar",
"reddit",
"clock",
"markets",
"weather",
"search",
"rss",
"to-do",
"group",
"hacker-news"
],
"description": "Used to specify the widget."
},
"title": {
"type": "string",
"description": "The title of the widget. If left blank it will be defined by the widget."
},
"title-url": {
"type": "string",
"description": "The URL to go to when clicking on the widget's title. If left blank it will be defined by the widget (if available)."
},
"cache": {
"type": "string",
"pattern": "^\\d+[smhd]$",
"description": "How long to keep the fetched data in memory. The value is a string and must be a number followed by one of s, m, h, d.",
"examples": [
"1h"
],
"errorMessage": "Must be a valid time duration."
},
"css-class": {
"type": "string",
"description": "Set custom CSS classes for the specific widget instance."
},
"hide-header": {
"type": "boolean",
"description": "Hides the widget header when set to true. Not available for group widgets."
}
}
},
"split-column-widget": {
"oneOf": [
{
"required": [
"widgets"
],
"properties": {
"max-columns": {
"type": "integer",
"minimum": 2,
"description": "The maximum number of columns to split the widgets into."
},
"widgets": {
"type": "array",
"minItems": 2,
"description": "A list of widgets in the same format as on a page column. Accepts any widget apart from a split column or group widget.",
"items": {
"$ref": "#/definitions/widget-item"
}
},
"type": {
"enum": [
"split-column"
]
}
}
},
{
"$ref": "#/definitions/include"
}
]
},
"extension-widget": {
"oneOf": [
{
"required": [
"url"
],
"properties": {
"url": {
"type": "string",
"description": "The URL of the extension. Note that the query gets stripped from this URL and the one defined by parameters gets used instead."
},
"fallback-content-type": {
"enum": [
"html"
],
"description": "Optionally specify the fallback content type of the extension if the URL does not return a valid Widget-Content-Type header. Currently the only supported value for this property is html."
},
"allow-potentially-dangerous-html": {
"type": "boolean",
"description": "Whether to allow the extension to display HTML. Must be enabled for html to render. Ensure you are aware the extension url you are using is safe."
},
"parameters": {
"type": "object",
"additionalProperties": true,
"examples": [
"key: value"
],
"description": "A list of keys and values that will be sent to the extension as query paramters."
},
"type": {
"enum": [
"extension"
]
}
}
},
{
"$ref": "#/definitions/include"
}
]
},
"docker-containers-widget": {
"oneOf": [
{
"properties": {
"hide-by-default": {
"type": "boolean",
"description": "Whether to hide the containers by default. If set to true you'll have to manually add a glance.hide: false label to each container you want to display. By default all containers will be shown and if you want to hide a specific container you can add a glance.hide: true label."
},
"format-container-names": {
"type": "boolean",
"description": "When set to true, automatically converts container names such as container_name_1 into Container Name 1."
},
"sock-path": {
"type": "string",
"description": "The path or URI to the Docker socket (e.g., /var/run/docker.sock or http://docker-socket-proxy:2375)."
},
"category": {
"type": "string",
"description": "Filter to only the containers which have this category specified via the glance.category label."
},
"running-only": {
"type": "boolean",
"description": "Whether to only show running containers. If set to true only containers that are currently running will be displayed. If set to false all containers will be displayed regardless of their state."
},
"containers": {
"type": "object",
"description": "Per-container customization. Each key is the container name, and the value is an object with the same properties as the labels (without the \"glance.\" prefix).\n",
"additionalProperties": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The name displayed in the UI. If not specified, the name of the container will be used."
},
"icon": {
"type": "string",
"description": "The icon displayed in the UI. Can be an external URL or an icon prefixed with si:, sh: or di:."
},
"url": {
"type": "string",
"description": "The URL that the user will be redirected to when clicking on the container."
},
"same-tab": {
"type": "boolean",
"description": "Whether to open the link in the same or a new tab. Default is false."
},
"description": {
"type": "string",
"description": "A short description displayed in the UI. Default is empty."
},
"hide": {
"type": "boolean",
"description": "Whether to hide the container. If set to true the container will not be displayed. Defaults to false."
},
"id": {
"type": "string",
"description": "The custom ID of the container. Used to group containers under a single parent."
},
"parent": {
"type": "string",
"description": "The ID of the parent container. Used to group containers under a single parent."
},
"category": {
"type": "string",
"description": "The category of the container. Used to filter containers by category."
}
}
}
},
"type": {
"enum": [
"docker-containers"
]
}
}
},
{
"$ref": "#/definitions/include"
}
]
},
"iframe-widget": {
"oneOf": [
{
"required": [
"source"
],
"properties": {
"source": {
"type": "string",
"description": "The source of the iframe."
},
"height": {
"type": "integer",
"minimum": 50,
"description": "The height of the iframe."
},
"type": {
"enum": [
"iframe"
]
}
}
},
{
"$ref": "#/definitions/include"
}
]
},
"twitch-channels-widget": {
"oneOf": [
{
"required": [
"channels"
],
"properties": {
"channels": {
"type": "array",
"description": "A list of channels to display.",
"items": {
"type": "string"
}
},
"collapse-after": {
"type": "integer",
"description": "How many channels are visible before the \"SHOW MORE\" button appears. Set to -1 to never collapse."
},
"sort-by": {
"enum": [
"viewers",
"live"
],
"description": "Can be used to specify the order in which the channels are displayed."
},
"type": {
"enum": [
"twitch-channels"
]
}
}
},
{
"$ref": "#/definitions/include"
}
]
},
"bookmarks-widget": {
"oneOf": [
{
"required": [
"groups"
],
"properties": {
"groups": {
"type": "array",
"description": "An array of groups which can optionally have a title and a custom color.",
"items": {
"type": "object",
"required": [
"links"
],
"properties": {
"title": {
"type": "string",
"description": "The title of the group."
},
"color": {
"type": "string",
"pattern": "^\\d{1,3} \\d{1,3} \\d{1,3}$",
"errorMessage": "Must be a valid HSL color in the format of \"H S L\".",
"description": "The colour of the title and the arrow of the group. The value should be a valid HSL color in the format of \"H S L\"."
},
"same-tab": {
"type": "boolean",
"description": "Whether to open the link in the same tab or a new one."
},
"hide-arrow": {
"type": "boolean",
"description": "Whether to hide the colored arrow on each link."
},
"target": {
"enum": [
"_blank",
"_self",
"_parent",
"_top"
],
"description": "Set a custom value for the link's target attribute. This property has precedence over same-tab."
},
"links": {
"type": "array",
"description": "An array of links to display in the group.",
"items": {
"type": "object",
"required": [
"title",
"url"
],
"properties": {
"title": {
"type": "string",
"description": "The title of the link."
},
"url": {
"type": "string",
"description": "The URL of the link."
},
"icon": {
"type": "string",
"description": "URL pointing to an image. You can also directly use Simple Icons via a si: prefix or Dashboard Icons via a di: prefix:"
},
"same-tab": {
"type": "boolean",
"description": "Whether to open the link in the same tab or a new one."
},
"hide-arrow": {
"type": "boolean",
"description": "Whether to hide the colored arrow on each link."
},
"target": {
"enum": [
"_blank",
"_self",
"_parent",
"_top"
],
"description": "Set a custom value for the link's target attribute. This property has precedence over same-tab."
}
}
}
}
}
}
},
"type": {
"enum": [
"bookmarks"
]
}
}
},
{
"$ref": "#/definitions/include"
}
]
},
"change-detection-widget": {
"oneOf": [
{
"properties": {
"instance-url": {
"type": "string",
"description": "The URL pointing to your instance of changedetection.io."
},
"token": {
"type": "string",
"description": "The API access token which can be found in SETTINGS > API. Optionally, you can specify this using an environment variable with the syntax ${VARIABLE_NAME}."
},
"limit": {
"type": "integer",
"description": "The maximum number of watches to show."
},
"collapse-after": {
"type": "integer",
"description": "How many watches are visible before the \"SHOW MORE\" button appears. Set to -1 to never collapse."
},
"watches": {
"type": "array",
"description": "By default all of the configured watches will be shown. Optionally, you can specify a list of UUIDs for the specific watches you want to have listed",
"items": {
"type": "string"
}
},
"type": {
"enum": [
"change-detection"
]
}
}
},
{
"$ref": "#/definitions/include"
}
]
},
"twitch-top-games-widget": {
"oneOf": [
{
"properties": {
"exclude": {
"type": "array",
"items": {
"type": "string"
},
"description": "A list of categories that will never be shown. You must provide the slug found by clicking on the category and looking at the URL."
},
"limit": {
"type": "integer",
"description": "The maximum number of games to show."
},
"collapse-after": {
"type": "integer",
"description": "How many games are visible before the \"SHOW MORE\" button appears. Set to -1 to never collapse."
},
"type": {
"enum": [
"twitch-top-games"
]
}
}
},
{
"$ref": "#/definitions/include"
}
]
},
"server-stats-widget": {
"oneOf": [
{
"properties": {
"servers": {
"type": "array",
"description": "If not provided it will display the statistics of the server Glance is running on.",
"items": {
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"enum": [
"local",
"remote"
],
"description": "Whether to display statistics for the local server or a remote server."
},
"name": {
"type": "string",
"description": "The name of the server which will be displayed on the widget. If not provided it will default to the server's hostname."
},
"hide-swap": {
"type": "boolean",
"description": "Whether to hide the swap usage."
},
"cpu-temp-sensor": {
"type": "string",
"description": "The name of the sensor to use for the CPU temperature. When not provided the widget will attempt to find the correct one, if it fails to do so the temperature will not be displayed. To view the available sensors you can use sensors command"
},
"hide-mountpoints-by-default": {
"type": "boolean",
"description": "If set to true you'll have to manually make each mountpoint visible by adding a hide: false property."
},
"mountpoints": {
"type": "object",
"description": "A map of mountpoints to display disk usage for. The key is the path to the mountpoint and the value is an object with optional properties.",
"additionalProperties": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The name of the mountpoint which will be displayed on the widget. If not provided it will default to the mountpoint's path."
},
"hide": {
"type": "boolean",
"description": "Whether to hide this mountpoint from the widget."
}
}
}
},
"url": {
"type": "string",
"description": "The URL and port of the server to fetch the statistics from."
},
"token": {
"type": "string",
"description": "The authentication token to use when fetching the statistics."
},
"timeout": {
"type": "string",
"pattern": "^\\d+[smhd]$",
"description": "The maximum time to wait for a response from the server. The value is a string and must be a number followed by one of s, m, h, d.",
"examples": [
"10s"
],
"errorMessage": "Must be a valid time duration."
}
}
}
},
"type": {
"enum": [
"server-stats"
]
}
}
},
{
"$ref": "#/definitions/include"
}
]
},
"repository-widget": {
"oneOf": [
{
"required": [
"repository"
],
"properties": {
"repository": {
"type": "string",
"description": "The owner and repository name that will have their information displayed.",
"examples": [
"glanceapp/glance"
]
},
"token": {
"type": "string",
"description": "The GitHub token to use for the API requests. Useful to exceed the unathorised rate limit of 60 requests per hour."
},
"pull-requests-limit": {
"type": "integer",
"description": "The maximum number of latest open pull requests to show. Set to -1 to not show any."
},
"issues-limit": {
"type": "integer",
"description": "The maximum number of latest open issues to show. Set to -1 to not show any."
},
"commits-limit": {
"type": "integer",
"description": "The maximum number of latest open issues to show. Set to -1 to not show any."
},
"type": {
"enum": [
"repository"
]
}
}
},
{
"$ref": "#/definitions/include"
}
]
},
"lobsters-widget": {
"oneOf": [
{
"properties": {
"instance-url": {
"type": "string",
"description": "The base URL for a lobsters instance hosted somewhere other than on lobste.rs.",
"examples": [
"https://www.journalduhacker.net/"
]
},
"custom-url": {
"type": "string",
"description": "A custom URL to retrieve lobsters posts from. If this is specified, the instance-url, sort-by and tags properties are ignored."
},
"limit": {
"type": "integer",
"description": "The maximum number of posts to show."
},
"collapse-after": {
"type": "integer",
"description": "How many posts are visible before the \"SHOW MORE\" button appears. Set to -1 to never collapse."
},
"sort-by": {
"enum": [
"hot",
"new"
],
"description": "The sort order in which posts are returned."
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"description": "Limit to posts containing one of the given tags. You cannot specify a sort order when filtering by tags, it will default to hot."
},
"type": {
"enum": [
"lobsters"
]
}
}
},
{
"$ref": "#/definitions/include"
}
]
},
"dns-stats-widget": {
"oneOf": [
{
"required": [
"url"
],
"properties": {
"service": {
"enum": [
"adguard",
"pihole",
"pihole-v6",
"technitium"
],
"description": "Either adguard, pihole (v5 and below), pihole-v6 (v6+), or technitium."
},
"allow-insecure": {
"type": "boolean",
"description": "Whether to allow invalid/self-signed certificates when making the request to the service."
},
"url": {
"type": "string",
"description": "The base URL of the service."
},
"username": {
"type": "string",
"description": "Only required when using AdGuard Home. The username used to log into the admin dashboard."
},
"password": {
"type": "string",
"description": "Required when using AdGuard Home, where the password is the one used to log into the admin dashboard. Also requried when using Pi-hole major version 6 and above, where the password is the one used to log into the admin dashboard or the application password, which can be found in Settings -> Web Interface / API -> Configure app password."
},
"token": {
"type": "string",
"description": "Required for Pi-hole v5 or earlier and for Technitium. The API token for the service."
},
"hide-graph": {
"type": "boolean",
"description": "Whether to hide the graph showing the number of queries over time."
},
"hide-top-domains": {
"type": "boolean",
"description": "Whether to hide the list of top blocked domains."
},
"hour-format": {
"enum": [
"12h",
"24h"
],
"description": "Whether to display the relative time in the graph in 12h or 24h format."
},
"type": {
"enum": [
"dns-stats"
]
}
}
},
{
"$ref": "#/definitions/include"
}
]
},
"monitor-widget": {
"oneOf": [
{
"required": [
"sites"
],
"properties": {
"show-failing-only": {
"type": "boolean",
"description": "Shows only a list of failing sites when set to true."
},
"style": {
"enum": [
"compact"
],
"description": "Used to change the appearance of the widget. See https://github.com/glanceapp/glance/blob/main/docs/configuration.md#style-3 for examples."
},
"sites": {
"type": "array",
"items": {
"type": "object",
"required": [
"title",
"url"
],
"properties": {
"title": {
"type": "string",
"description": "The title used to indicate the site."
},
"url": {
"type": "string",
"description": "The public facing URL of a monitored service, the user will be redirected here. If check-url is not specified, this is used as the status check."
},
"check-url": {
"type": "string",
"description": "The URL which will be requested and its response will determine the status of the site. If not specified, the url property is used."
},
"error-url": {
"type": "string",
"description": "If the monitored service returns an error, the user will be redirected here. If not specified, the url property is used."
},
"icon": {
"type": "string",
"description": "Optional URL to an image which will be used as the icon for the site. Can be an external URL or internal via server configured assets. You can also directly use Simple Icons via a si: prefix or Dashboard Icons via a di: prefix:"
},
"allow-insecure": {
"type": "boolean",
"description": "Whether to ignore invalid/self-signed certificates."
},
"same-tab": {
"type": "boolean",
"description": "Whether to open the link in the same or a new tab."
},
"alt-status-codes": {
"type": "array",
"description": "Status codes other than 200 that you want to return \"OK\".",
"items": {
"type": "integer"
}
},
"basic-auth": {
"type": "object",
"description": "Basic authentication credentials for the site.",
"properties": {
"username": {
"type": "string",
"description": "Username for basic authentication."
},
"password": {
"type": "string",
"description": "Password for basic authentication."
}
}
},
"timeout": {
"type": "string",
"pattern": "^\\d+[smhd]$",
"description": "The maximum time to wait for a response from the site. The value is a string and must be a number followed by one of s, m, h, d.",
"examples": [
"10s"
],
"errorMessage": "Must be a valid time duration."
}
}
}
},
"type": {
"enum": [
"monitor"
]
}
}
},
{
"$ref": "#/definitions/include"
}
]
},
"releases-widget": {
"oneOf": [
{
"required": [
"repositories"
],
"properties": {
"repositories": {
"type": "array",
"description": "A list of repositores to fetch the latest release for. Only the name/repo is required, not the full URL. A prefix can be specified for repositories hosted elsewhere such as GitLab, Codeberg and Docker Hub. See https://github.com/glanceapp/glance/blob/main/docs/configuration.md#repositories",
"examples": [
"dockerhub:glanceapp/glance"
],
"items": {
"oneOf": [
{
"type": "string"
},
{
"type": "object",
"required": [
"repository"
],
"properties": {
"repository": {
"type": "string",
"description": "The repository to fetch with prereleases enabled. Only available for Github repositories.",
"examples": [
"glanceapp/glance"
]
},
"include-prereleases": {
"type": "boolean",
"description": "Whether to include prereleases in the list of releases. Only available for Github repositories."
}
}
}
]
}
},
"show-source-icon": {
"type": "boolean",
"description": "Shows an icon of the source (GitHub/GitLab/Codeberg/Docker Hub) next to the repository name when set to true."
},
"token": {
"type": "string",
"description": "The github token to use for fetching releases. Useful to exceed the unauthorised rate limit of 60 requests per hour."
},
"gitlab-token": {
"type": "string",
"description": "The GitLab token to use for fetching releases. Useful to exceed the unauthorised rate limit."
},
"limit": {
"type": "integer",
"description": "The maximum number of releases to show."
},
"collapse-after": {
"type": "integer",
"description": "How many releases are visible before the \"SHOW MORE\" button appears. Set to -1 to never collapse."
},
"type": {
"enum": [
"releases"
]
}
}
},
{
"$ref": "#/definitions/include"
}
]
},
"html-widget": {
"oneOf": [
{
"required": [
"source"
],
"properties": {
"source": {