summaryrefslogtreecommitdiff
path: root/schemas/config/2.0.schema.json
blob: e03d4998492be22c63abe3ee743392a4c97b8037 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "title": "Spiral Roadrunner config file schema version 2",
    "description": "Spiral Roadrunner config file schema version 2.",
    "type": "object",
    "additionalProperties": true,
    "minProperties": 1,
    "properties": {
        "version": {
            "description": "configuration version",
            "type": "string",
            "default": "2.7",
            "enum": [
                "2.7"
            ]
        },
        "rpc": {
            "type": "object",
            "properties": {
                "listen": {
                    "description": "TCP address:port for listening",
                    "type": "string",
                    "default": "tcp://127.0.0.1:6001",
                    "examples": [
                        "tcp://127.0.0.1:6001"
                    ],
                    "pattern": "^tcp:\/\/[0-9a-zA-Z_.-]+:[0-9]{1,5}$"
                }
            }
        },
        "server": {
            "type": "object",
            "properties": {
                "on_init": {
                    "description": "Execute command or script before RR starts allocating workers",
                    "type": "object",
                    "properties": {
                        "command": {
                            "description": "Command to execute. It can be script or binary",
                            "type": "string",
                            "examples": [
                                "php not-worker.php",
                                "sh script.sh",
                                "start script.bat"
                            ]
                        },
                        "exec_timeout": {
                            "description": "Script execute timeout",
                            "$ref": "#/definitions/Duration",
                            "default": "60s"
                        },
                        "env": {
                            "description": "Environment variables for the worker processes",
                            "type": "array",
                            "items": {
                                "type": "object",
                                "patternProperties": {
                                    "^[a-zA-Z0-9._-]+$": {
                                        "type": "string"
                                    }
                                },
                                "additionalProperties": false
                            }
                        }
                    }
                },
                "command": {
                    "description": "Worker starting command, with any required arguments",
                    "type": "string",
                    "examples": [
                        "php psr-worker.php"
                    ]
                },
                "user": {
                    "description": "User name (not UID) for the worker processes. An empty value means to use the RR process user",
                    "type": "string",
                    "default": "",
                    "examples": [
                        "www-data"
                    ]
                },
                "group": {
                    "description": "Group name (not GID) for the worker processes. An empty value means to use the RR process user",
                    "type": "string",
                    "default": "",
                    "examples": [
                        "www-data"
                    ]
                },
                "env": {
                    "description": "Environment variables for the worker processes",
                    "type": "array",
                    "items": {
                        "type": "object",
                        "patternProperties": {
                            "^[a-zA-Z0-9._-]+$": {
                                "type": "string"
                            }
                        },
                        "additionalProperties": false
                    }
                },
                "relay": {
                    "description": "Worker relay can be: 'pipes', TCP (eg.: tcp://127.0.0.1:6002), or socket (eg.: unix:///var/run/rr.sock)",
                    "type": "string",
                    "default": "pipes",
                    "examples": [
                        "pipes",
                        "tcp://127.0.0.1:6002",
                        "unix:///var/run/rr.sock"
                    ]
                },
                "relay_timeout": {
                    "description": "Timeout for relay connection establishing (only for socket and TCP port relay)",
                    "$ref": "#/definitions/Duration",
                    "default": "60s"
                }
            },
            "required": [
                "command"
            ]
        },
        "logs": {
            "type": "object",
            "properties": {
                "mode": {
                    "$ref": "#/definitions/LogMode",
                    "default": "development"
                },
                "level": {
                    "$ref": "#/definitions/LogLevel",
                    "default": "debug"
                },
                "encoding": {
                    "$ref": "#/definitions/LogEncoding",
                    "default": "console"
                },
                "output": {
                    "description": "Output",
                    "$ref": "#/definitions/LogOutput",
                    "default": "stderr"
                },
                "err_output": {
                    "description": "Errors only output",
                    "$ref": "#/definitions/LogOutput",
                    "default": "stderr"
                },
                "channels": {
                    "description": "You can configure each plugin log messages individually",
                    "type": "object",
                    "additionalProperties": {
                        "type": "object",
                        "properties": {
                            "mode": {
                                "$ref": "#/definitions/LogMode"
                            },
                            "level": {
                                "$ref": "#/definitions/LogLevel"
                            },
                            "encoding": {
                                "$ref": "#/definitions/LogEncoding"
                            },
                            "output": {
                                "$ref": "#/definitions/LogOutput"
                            },
                            "err_output": {
                                "$ref": "#/definitions/LogOutput"
                            }
                        }
                    }
                },
                "file_logger_options": {
                    "description": "file logger options",
                    "type": "object",
                    "properties": {
                        "log_output": {
                            "type": "string",
                            "description": "path to the file"
                        },
                        "max_size": {
                            "type": "integer",
                            "description": "maximum file size in MB"
                        },
                        "max_age": {
                            "type": "integer",
                            "description": "The maximum number of days to retain old log files based on the timestamp encoded in their filename"
                        },
                        "max_backups": {
                            "type": "integer",
                            "description": "The maximum number of old log files to retain"
                        },
                        "compress": {
                            "type": "boolean",
                            "description": "compress files to save a disk space"
                        }
                    }
                }
            }
        },
        "temporal": {
            "description": "Workflow and activity mesh service, https://docs.temporal.io/docs/php/introduction/",
            "type": "object",
            "properties": {
                "address": {
                    "description": "Address of temporal server",
                    "type": "string",
                    "default": "127.0.0.1:7233"
                },
                "cache_size": {
                    "description": "Sticky cache size. Sticky workflow execution is the affinity between workflow tasks of a specific workflow execution to a specific worker. The benefit of sticky execution is that the workflow does not have to reconstruct state by replaying history from the beginning. The cache is shared between workers running within same process. This must be called before any worker is started. If not called, the default size of 10K (which may change) will be used",
                    "type": "integer",
                    "default": 10000
                },
                "namespace": {
                    "description": "Namespace name for this client to work with",
                    "type": "string",
                    "default": "default"
                },
                "metrics": {
                    "description": "Temporal metrics",
                    "type": "object",
                    "default": null,
                    "properties": {
                        "driver": {
                            "description": "Metrics driver to use",
                            "type": "string",
                            "enum": [
                                "prometheus",
                                "statsd"
                            ],
                            "default": "prometheus"
                        }
                    },
                    "anyOf": [
                        {
                            "type": "object",
                            "properties": {
                                "address": {
                                    "description": "Server metrics address",
                                    "type": "string",
                                    "default": "127.0.0.1:9091"
                                },
                                "type": {
                                    "type": "string",
                                    "description": "Metrics type",
                                    "anyOf": [
                                        {
                                            "type": "string",
                                            "examples": [
                                                "summary",
                                                "histogram"
                                            ]
                                        }
                                    ]
                                },
                                "prefix": {
                                    "description": "Temporal metrics prefix",
                                    "type": "string",
                                    "default": null
                                }
                            }
                        },
                        {
                            "properties": {
                                "host_port": {
                                    "description": "The host and port of the statsd server",
                                    "type": "string",
                                    "default": "127.0.0.1:8125"
                                },
                                "prefix": {
                                    "description": "The prefix to use in reporting to statsd",
                                    "type": "string",
                                    "default": null
                                },
                                "flush_interval": {
                                    "description": "FlushInterval is the maximum interval for sending packets",
                                    "type": "string",
                                    "default": "1s"
                                },
                                "flush_bytes": {
                                    "description": "FlushBytes specifies the maximum udp packet size you wish to send. If FlushBytes is unspecified, it defaults  to 1432 bytes, which is considered safe for local traffic.",
                                    "type": "integer",
                                    "default": 1432
                                },
                                "tags": {
                                    "description": "Hashmap with tag:value values",
                                    "$ref": "#/definitions/Hashmap"
                                },
                                "tag_prefix": {
                                    "description": "Prefix for the tag",
                                    "type": "string",
                                    "default": null
                                },
                                "tag_separator": {
                                    "description": "TagSeparator allows tags to be appended with a separator. If not specified tag keys and values are embedded to the stat name directly.",
                                    "type": "string",
                                    "default": null
                                }
                            }
                        }
                    ]
                },
                "activities": {
                    "description": "Activities pool settings",
                    "type": "object",
                    "$ref": "#/definitions/WorkersPool"
                }
            }
        },
        "kv": {
            "description": "Key value storages plugin",
            "type": "object",
            "minProperties": 1,
            "patternProperties": {
                "[a-zA-Z0-9_-]*": {
                    "anyOf": [
                        {
                            "type": "object",
                            "description": "boltdb driver",
                            "properties": {
                                "driver": {
                                    "type": "string",
                                    "description": "Driver which should be used for the storage"
                                },
                                "config": {
                                    "anyOf": [
                                        {
                                            "type": "object",
                                            "$ref": "#/definitions/BoltDB"
                                        },
                                        {
                                            "type": "object",
                                            "$ref": "#/definitions/Memcached"
                                        },
                                        {
                                            "type": "object",
                                            "$ref": "#/definitions/Redis"
                                        },
                                        {
                                            "type": "object",
                                            "$ref": "#/definitions/Memory"
                                        }
                                    ]
                                }
                            },
                            "required": [
                                "driver"
                            ]
                        }
                    ]
                }
            }
        },
        "service": {
            "description": "Service plugin settings",
            "type": "object",
            "patternProperties": {
                "^[a-zA-Z0-9._-]+$": {
                    "allOf": [
                        {
                            "description": "User defined services",
                            "type": "object",
                            "$ref": "#/definitions/Service"
                        }
                    ]
                }
            }
        },
        "http": {
            "type": "object",
            "properties": {
                "address": {
                    "description": "Host and port to listen on",
                    "$ref": "#/definitions/HostAndPort",
                    "examples": [
                        "127.0.0.1:8080",
                        ":8080"
                    ]
                },
                "max_request_size": {
                    "description": "Maximal incoming request size in megabytes. Zero means no limit",
                    "type": "integer",
                    "minimum": 0,
                    "default": 0
                },
                "raw_body": {
                    "description": "Send raw body (unescaped) to the PHP worker for the application/x-www-form-urlencoded content type",
                    "type": "boolean",
                    "default": false
                },
                "access_logs": {
                    "description": "HTTP access logs",
                    "type": "boolean",
                    "default": false
                },
                "middleware": {
                    "description": "Middleware for the http plugin, order is important",
                    "type": "array",
                    "items": {
                        "type": "string",
                        "enum": [
                            "headers",
                            "gzip",
                            "static",
                            "websockets",
                            "sendfile",
                            "http_metrics",
                            "cache",
                            "proxy_ip_parser",
                            "otel"
                        ],
                        "pattern": "^[0-9a-zA-Z_]+$"
                    }
                },
                "trusted_subnets": {
                    "description": "Allow incoming requests only from the following subnets",
                    "type": "array",
                    "items": {
                        "type": "string",
                        "examples": [
                            "10.0.0.0/8",
                            "127.0.0.0/8"
                        ]
                    },
                    "default": [
                        "10.0.0.0/8",
                        "127.0.0.0/8",
                        "172.16.0.0/12",
                        "192.168.0.0/16",
                        "::1/128",
                        "fc00::/7",
                        "fe80::/10"
                    ]
                },
                "cache": {
                    "description": "RFC 7234 Souin cache: https://github.com/darkweak/souin/tree/master/plugins/roadrunner",
                    "type": "object",
                    "properties": {
                        "api": {
                            "description": "The cache-handler API cache management",
                            "type": "object",
                            "properties": {
                                "basepath": {
                                    "description": "Default route basepath for every additional APIs to avoid conflicts with existing routes",
                                    "type": "string",
                                    "default": null
                                },
                                "prometheus": {
                                    "type": "object",
                                    "description": "Prometheus exposed metrics",
                                    "properties": {
                                        "basepath": {
                                            "type": "string",
                                            "default": null
                                        }
                                    }
                                },
                                "souin": {
                                    "type": "object",
                                    "description": "Souin listing keys and cache management",
                                    "properties": {
                                        "basepath": {
                                            "type": "string",
                                            "default": null
                                        }
                                    }
                                }
                            }
                        },
                        "cache_keys": {
                            "type": "object",
                            "patternProperties": {
                                "^[a-zA-Z0-9._-]+$": {
                                    "description": "cache keys configuration",
                                    "type": "object",
                                    "properties": {
                                        "disable_body": {
                                            "type": "boolean",
                                            "default": false
                                        },
                                        "disable_host": {
                                            "type": "boolean",
                                            "default": false
                                        },
                                        "disable_method": {
                                            "type": "boolean",
                                            "default": false
                                        }
                                    }
                                }
                            }
                        },
                        "cdn": {
                            "description": "If Souin is set after a CDN fill these information",
                            "type": "object",
                            "properties": {
                                "api_key": {
                                    "type": "string",
                                    "description": "Your provider API key if mandatory"
                                },
                                "provider": {
                                    "description": "The provider placed before Souin (e.g. fastly, cloudflare, akamai, varnish)",
                                    "type": "string",
                                    "enum": [
                                        "fastly",
                                        "cloudflare",
                                        "akamai",
                                        "varnish"
                                    ]
                                },
                                "strategy": {
                                    "description": "The strategy to purge the CDN cache based on tags (e.g. soft, hard)",
                                    "type": "string",
                                    "enum": [
                                        "soft",
                                        "hard"
                                    ]
                                },
                                "dynamic": {
                                    "description": "If true, you'll be able to add custom keys than the ones defined under the surrogate_keys key",
                                    "type": "boolean",
                                    "default": false
                                }
                            }
                        },
                        "default_cache": {
                            "type": "object",
                            "properties": {
                                "allowed_http_verbs": {
                                    "type": "array",
                                    "default": [
                                        "GET",
                                        "POST"
                                    ]
                                },
                                "cache_name": {
                                    "description": "Override the cache name to use in the Cache-Status header",
                                    "type": "string",
                                    "default": "roadrunner"
                                },
                                "distributed": {
                                    "type": "boolean",
                                    "default": false,
                                    "description": "Use Olric or Etcd distributed storage"
                                },
                                "headers": {
                                    "description": "Default headers concatenated in stored keys",
                                    "type": "array",
                                    "default": null
                                },
                                "key": {
                                    "type": "object",
                                    "properties": {
                                        "disable_body": {
                                            "type": "boolean",
                                            "default": false
                                        },
                                        "disable_host": {
                                            "type": "boolean",
                                            "default": false
                                        },
                                        "disable_method": {
                                            "type": "boolean",
                                            "default": false
                                        }
                                    }
                                },
                                "etcd": {
                                    "description": "If distributed is set to true, you'll have to define either the etcd or olric section",
                                    "type": "object",
                                    "properties": {
                                        "configuration": {
                                            "type": "object",
                                            "description": "Configure directly the Etcd client",
                                            "properties": {
                                                "endpoints": {
                                                    "description": "Define multiple endpoints",
                                                    "type": "array",
                                                    "default": null
                                                }
                                            }
                                        }
                                    }
                                },
                                "olric": {
                                    "type": "object",
                                    "description": "If distributed is set to true, you'll have to define either the etcd or olric section",
                                    "properties": {
                                        "url": {
                                            "description": "Olric server",
                                            "type": "string",
                                            "default": "http://127.0.0.1:3320"
                                        }
                                    }
                                },
                                "regex": {
                                    "type": "object",
                                    "description": "Regex to exclude from cache",
                                    "properties": {
                                        "exclude": {
                                            "type": "string",
                                            "default": null
                                        }
                                    }
                                },
                                "stale": {
                                    "type": "string",
                                    "description": "Stale duration",
                                    "default": "1000s"
                                },
                                "timeout": {
                                    "description": "Timeout configuration",
                                    "type": "object",
                                    "properties": {
                                        "backend": {
                                            "description": "Backend timeout before returning an HTTP unavailable response",
                                            "type": "string",
                                            "default": "10s"
                                        },
                                        "cache": {
                                            "description": "Cache provider (badger, etcd, nutsdb, olric, depending the configuration you set) timeout before returning a miss",
                                            "type": "string",
                                            "default": "20ms"
                                        }
                                    }
                                },
                                "ttl": {
                                    "description": "Default TTL",
                                    "type": "string",
                                    "default": "1000s"
                                },
                                "default_cache_control": {
                                    "description": "Set default value for Cache-Control response header if not set by upstream",
                                    "type": "string",
                                    "default": "no-store"
                                }
                            }
                        },
                        "log_level": {
                            "type": "string",
                            "description": "Logs verbosity",
                            "default": "INFO",
                            "enum": [
                                "DEBUG",
                                "INFO",
                                "WARN",
                                "DPANIC",
                                "PANIC",
                                "ERROR",
                                "FATAL"
                            ]
                        }
                    }
                },
                "new_relic": {
                    "description": "New Relic middleware",
                    "type": "object",
                    "properties": {
                        "app_name": {
                            "type": "string",
                            "description": "Application name. NEW_RELIC_APP_NAME env variable should be set if the app_name key is empty.",
                            "default": null
                        },
                        "licence_key": {
                            "type": "string",
                            "description": "Licence key. NEW_RELIC_LICENSE_KEY env variable should be set if the license_key key is empty.",
                            "default": null
                        }
                    }
                },
                "uploads": {
                    "type": "object",
                    "properties": {
                        "dir": {
                            "description": "Directory for file uploads. Empty value means to use $TEMP based on your OS",
                            "type": "string",
                            "examples": [
                                "/tmp"
                            ],
                            "default": ""
                        },
                        "forbid": {
                            "description": "Deny files with the following extensions to upload",
                            "type": "array",
                            "items": {
                                "type": "string",
                                "examples": [
                                    ".php",
                                    ".exe"
                                ]
                            },
                            "default": [
                                ".php",
                                ".exe",
                                ".bat"
                            ]
                        },
                        "allow": {
                            "description": "Allow files with the following extensions to upload",
                            "type": "array",
                            "items": {
                                "type": "string",
                                "examples": [
                                    ".html",
                                    ".go"
                                ]
                            },
                            "default": ""
                        }
                    }
                },
                "headers": {
                    "description": "HTTP headers map",
                    "type": "object",
                    "properties": {
                        "cors": {
                            "description": "Allows to control CORS headers",
                            "type": "object",
                            "properties": {
                                "allowed_origin": {
                                    "description": "Controls 'Access-Control-Allow-Origin' header value",
                                    "type": "string",
                                    "examples": [
                                        "*"
                                    ],
                                    "default": ""
                                },
                                "allowed_headers": {
                                    "description": "Controls 'Access-Control-Allow-Headers' header value",
                                    "type": "string",
                                    "examples": [
                                        "*"
                                    ],
                                    "default": ""
                                },
                                "allowed_methods": {
                                    "description": "Controls 'Access-Control-Allow-Methods' header value",
                                    "type": "string",
                                    "examples": [
                                        "GET,POST,PUT,DELETE"
                                    ],
                                    "default": ""
                                },
                                "allow_credentials": {
                                    "description": "Controls 'Access-Control-Allow-Credentials' header value",
                                    "type": "boolean",
                                    "default": false
                                },
                                "exposed_headers": {
                                    "description": "Controls 'Access-Control-Expose-Headers' header value",
                                    "type": "string",
                                    "examples": [
                                        "Cache-Control,Content-Language,Content-Type,Expires,Last-Modified,Pragma"
                                    ],
                                    "default": ""
                                },
                                "max_age": {
                                    "description": "Controls 'Access-Control-Max-Age' header value (in seconds)",
                                    "type": "integer",
                                    "examples": [
                                        600
                                    ],
                                    "default": 0
                                }
                            }
                        },
                        "request": {
                            "description": "Automatically add headers to every request passed to PHP",
                            "$ref": "#/definitions/Hashmap"
                        },
                        "response": {
                            "description": "Automatically add headers to every response",
                            "$ref": "#/definitions/Hashmap"
                        }
                    }
                },
                "static": {
                    "description": "Static assets serving settings",
                    "type": "object",
                    "properties": {
                        "dir": {
                            "description": "Path to the directory with static assets",
                            "type": "string",
                            "examples": [
                                ".",
                                "/var/www/html"
                            ]
                        },
                        "forbid": {
                            "description": "File extensions that should not be served",
                            "type": "array",
                            "items": {
                                "type": "string",
                                "examples": [
                                    ".php",
                                    ".htaccess"
                                ]
                            }
                        },
                        "allow": {
                            "description": "File extensions which should be served",
                            "type": "array",
                            "items": {
                                "type": "string",
                                "examples": [
                                    ".php",
                                    ".htaccess"
                                ]
                            }
                        },
                        "calculate_etag": {
                            "description": "Turn on etag computation for the static file",
                            "type": "boolean"
                        },
                        "weak": {
                            "description": "Use a weak generator (/W), it uses only filename to generate a CRC32 sum",
                            "type": "boolean"
                        },
                        "response": {
                            "description": "Custom headers for the static files",
                            "$ref": "#/definitions/Hashmap"
                        }
                    },
                    "required": [
                        "dir"
                    ]
                },
                "pool": {
                    "description": "Workers pool settings",
                    "$ref": "#/definitions/WorkersPool"
                },
                "ssl": {
                    "description": "SSL (Secure Sockets Layer) settings",
                    "type": "object",
                    "properties": {
                        "address": {
                            "description": "Host and port to listen on",
                            "$ref": "#/definitions/HostAndPort",
                            "examples": [
                                "127.0.0.1:443",
                                ":8443"
                            ]
                        },
                        "acme": {
                            "description": "ACME certificates provider (Let's encrypt)",
                            "type": "object",
                            "properties": {
                                "certs_dir": {
                                    "description": "Directory to use as a certificate/pk, account info storage",
                                    "type": "string",
                                    "default": "rr_cache"
                                },
                                "email": {
                                    "description": "User email, used to create LE account",
                                    "type": "string"
                                },
                                "alt_http_port": {
                                    "description": "Alternate port for the http challenge. Challenge traffic should be redirected to this port if overridden.",
                                    "type": "integer",
                                    "default": 80
                                },
                                "alt_tlsalpn_port": {
                                    "description": "Alternate port for the tls-alpn-01 challenge. Challenge traffic should be redirected to this port if overridden.",
                                    "type": "integer",
                                    "default": 443
                                },
                                "challenge_type": {
                                    "type": "string",
                                    "enum": [
                                        "http-01",
                                        "tlsalpn-01"
                                    ],
                                    "description": "Challenge types",
                                    "default": "http-01"
                                },
                                "use_production_endpoint": {
                                    "description": "Use production or staging endpoint. NOTE, try to use staging endpoint to make sure, that everything works correctly.",
                                    "type": "boolean",
                                    "default": false
                                },
                                "domains": {
                                    "type": "array",
                                    "description": "List of your domains to obtain certificates"
                                }
                            },
                            "required": [
                                "domains",
                                "email"
                            ]
                        },
                        "redirect": {
                            "description": "Automatic redirect from http to https schema",
                            "type": "boolean",
                            "default": false
                        },
                        "cert": {
                            "description": "Path to the cert file",
                            "type": "string",
                            "minLength": 1,
                            "examples": [
                                "/ssl/server.crt"
                            ]
                        },
                        "key": {
                            "description": "Path to the cert key file",
                            "type": "string",
                            "minLength": 1,
                            "examples": [
                                "/ssl/server.key"
                            ]
                        },
                        "root_ca": {
                            "description": "Path to the root certificate authority file",
                            "type": "string",
                            "minLength": 1,
                            "examples": [
                                "/ssl/root.crt"
                            ]
                        },
                        "client_auth_type": {
                            "description": "Client auth type",
                            "type": "string",
                            "default": "no_client_certs",
                            "enum": [
                                "request_client_cert",
                                "require_any_client_cert",
                                "verify_client_cert_if_given",
                                "no_client_certs",
                                "require_and_verify_client_cert"
                            ]
                        }
                    },
                    "required": [
                        "address",
                        "cert",
                        "key"
                    ]
                },
                "fcgi": {
                    "description": "FastCGI frontend support",
                    "type": "object",
                    "properties": {
                        "address": {
                            "description": "FastCGI connection DSN. Supported TCP and Unix sockets. An empty value disables this",
                            "type": "string",
                            "examples": [
                                "tcp://0.0.0.0:7921"
                            ]
                        }
                    },
                    "required": [
                        "address"
                    ]
                },
                "http2": {
                    "description": "HTTP/2 settings",
                    "type": "object",
                    "properties": {
                        "h2c": {
                            "description": "HTTP/2 over non-encrypted TCP connection using H2C",
                            "type": "boolean",
                            "default": false
                        },
                        "max_concurrent_streams": {
                            "description": "Maximal concurrent streams count",
                            "type": "integer",
                            "default": 128,
                            "minimum": 0
                        }
                    }
                },
                "otel": {
                    "description": "OpenTelemetry configuration",
                    "type": "object",
                    "properties": {
                        "insecure": {
                            "description": "Use insecure endpoint",
                            "type": "boolean",
                            "default": false
                        },
                        "compress": {
                            "description": "Use gzip compressor",
                            "type": "boolean",
                            "default": false
                        },
                        "exporter": {
                            "description": "Provides functionality to emit telemetry to consumers",
                            "type": "string",
                            "items": {
                                "type": "string",
                                "enum": [
                                    "zipkin",
                                    "stdout",
                                    "otlp",
                                    "jaeger",
                                    "jaeger_agent"
                                ],
                                "pattern": "^[0-9a-zA-Z_]+$"
                            }
                        },
                        "custom_url": {
                            "description": "Used for the http client to override the default URL",
                            "type": "string",
                            "default": ""
                        },
                        "endpoint": {
                            "description": "Consumer's endpoint",
                            "type": "string",
                            "default": "localhost:4318"
                        },
                        "client": {
                            "description": "Client to send the spans",
                            "type": "string",
                            "items": {
                                "type": "string",
                                "enum": [
                                    "http",
                                    "grpc"
                                ],
                                "pattern": "^[0-9a-zA-Z_]+$"
                            }
                        },
                        "service_name": {
                            "description": "User's service name",
                            "type": "string",
                            "default": "RoadRunner"
                        },
                        "service_version": {
                            "description": "User's service version",
                            "type": "string",
                            "default": "1.0.0"
                        },
                        "headers": {
                            "description": "User defined headers",
                            "$ref": "#/definitions/Hashmap"
                        }
                    }
                }
            },
            "required": [
                "address"
            ]
        },
        "redis": {
            "description": "Redis section. Should be defined to use as a broadcast driver for the websockets (with no limitation to use in other plugins).",
            "type": "object",
            "$ref": "#/definitions/Redis"
        },
        "websockets": {
            "description": "Websockets plugin, HTTP middleware",
            "type": "object",
            "properties": {
                "broker": {
                    "type": "string",
                    "pattern": "^[a-zA-Z0-9._-]+$",
                    "description": "Broker to use. Brokers can be set in the broadcast plugin. For example, if you use broker: default here, broadcast plugin should have default broker in its config."
                },
                "allowed_origin": {
                    "type": "string",
                    "description": " Allowed request origin (single value). This option is optional (allowed all by default)",
                    "default": "*"
                },
                "path": {
                    "type": "string",
                    "description": "http path where to handle websockets connections",
                    "default": "/ws"
                }
            }
        },
        "broadcast": {
            "description": " Broadcast plugin. It main purpose is to broadcast published messages via all brokers. Use it in conjunction with the websockets, memory and redis plugins. LIMITATION: DO NOT use the same redis connection within different sections or messages will be duplicated. There is no limitation to use different redis connections (ie localhost:6379, localhost:6378, etc) in different sections.",
            "type": "object",
            "minProperties": 1,
            "patternProperties": {
                "^[a-zA-Z0-9._-]+$": {
                    "description": "Driver configuration sections",
                    "type": "object",
                    "properties": {
                        "driver": {
                            "description": "Driver to use. Available drivers: redis, memory. In-memory driver does not require any configuration.",
                            "type": "string",
                            "enum": [
                                "memory",
                                "redis"
                            ]
                        },
                        "config": {
                            "description": "Driver configuration",
                            "type": "object",
                            "allOf": [
                                {
                                    "description": "In-memory configuration",
                                    "type": "object",
                                    "properties": {}
                                },
                                {
                                    "type": "object",
                                    "$ref": "#/definitions/Redis"
                                }
                            ]
                        }
                    },
                    "required": [
                        "driver",
                        "config"
                    ]
                }
            }
        },
        "metrics": {
            "description": "Application metrics in Prometheus format (docs: https://roadrunner.dev/docs/beep-beep-metrics)",
            "type": "object",
            "properties": {
                "address": {
                    "description": "Prometheus client address (path /metrics added automatically).",
                    "type": "string",
                    "default": "127.0.0.1:2112"
                },
                "collect": {
                    "description": "Application-specific metrics (published using an RPC connection to the server)",
                    "type": "object",
                    "patternProperties": {
                        "^[a-zA-Z0-9._-]+$": {
                            "type": "object",
                            "properties": {
                                "type": {
                                    "type": "string",
                                    "enum": [
                                        "histogram",
                                        "gauge",
                                        "counter",
                                        "summary"
                                    ]
                                },
                                "help": {
                                    "type": "string",
                                    "description": "Help message"
                                },
                                "labels": {
                                    "type": "array",
                                    "minItems": 1,
                                    "description": "Metrics labels"
                                },
                                "buckets": {
                                    "type": "array",
                                    "items": {
                                        "type": "number"
                                    }
                                },
                                "objectives": {
                                    "title": "map[float]float",
                                    "type": "array",
                                    "items": {
                                        "type": "object",
                                        "additionalProperties": {
                                            "type": "number"
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        },
        "status": {
            "description": "Health check endpoint (docs: https://roadrunner.dev/docs/beep-beep-health). If response code is 200 - it means at least one worker ready to serve requests. 500 - there are no workers ready to service requests.",
            "type": "object",
            "properties": {
                "address": {
                    "description": "Host and port to listen on (eg.: `127.0.0.1:2114`). Use the following URL: http://127.0.0.1:2114/health?plugin=http. Multiple plugins must be separated using & - http://127.0.0.1:2114/health?plugin=http&plugin=rpc where http and rpc are active (connected) plugins.",
                    "type": "string",
                    "examples": [
                        "127.0.0.1:2114"
                    ]
                },
                "unavailable_status_code": {
                    "description": "Response status code if a requested plugin not ready to handle requests. Valid for both /health and /ready endpoints",
                    "type": "integer",
                    "default": 503
                }
            },
            "required": [
                "address"
            ]
        },
        "reload": {
            "description": "Automatically detect PHP file changes and reload connected services",
            "type": "object",
            "properties": {
                "interval": {
                    "description": "Sync interval",
                    "$ref": "#/definitions/Duration",
                    "default": "1s"
                },
                "patterns": {
                    "description": "Global patterns to sync",
                    "type": "array",
                    "items": {
                        "type": "string",
                        "examples": [
                            ".php",
                            ".json"
                        ]
                    },
                    "default": [
                        ".php"
                    ]
                },
                "services": {
                    "description": "List of included for sync services (this is a map, where key name is a plugin name)",
                    "type": "object",
                    "minProperties": 0,
                    "patternProperties": {
                        "^[a-zA-Z0-9._-]+$": {
                            "type": "object",
                            "properties": {
                                "dirs": {
                                    "description": "Directories to sync. If recursive is set to true, recursive sync will be applied only to the directories in 'dirs' section. Dot (.) means 'current working directory'",
                                    "type": "array",
                                    "default": [],
                                    "items": {
                                        "type": "string",
                                        "examples": [
                                            ".",
                                            "/app/src"
                                        ],
                                        "minLength": 1
                                    }
                                },
                                "recursive": {
                                    "description": "Recursive search for file patterns to add",
                                    "type": "boolean",
                                    "default": false
                                },
                                "ignore": {
                                    "description": "Ignored folders",
                                    "type": "array",
                                    "default": [],
                                    "items": {
                                        "type": "string",
                                        "examples": [
                                            "vendor",
                                            "/app/logs"
                                        ],
                                        "minLength": 1
                                    }
                                },
                                "patterns": {
                                    "description": "Service specific file pattens to sync",
                                    "type": "array",
                                    "default": [],
                                    "items": {
                                        "type": "string",
                                        "examples": [
                                            ".php",
                                            ".go",
                                            ".md"
                                        ],
                                        "minLength": 1
                                    }
                                }
                            }
                        }
                    },
                    "additionalProperties": false
                }
            }
        },
        "nats": {
            "$ref": "#/definitions/NATS_J"
        },
        "boltdb": {
            "$ref": "#/definitions/BoltDB_J"
        },
        "kafka": {
            "$ref": "#/definitions/KAFKA_J"
        },
        "amqp": {
            "description": "AMQP jobs driver",
            "type": "object",
            "properties": {
                "addr": {
                    "description": "AMQP Uri to connect to the rabbitmq server https://www.rabbitmq.com/uri-spec.html",
                    "type": "string",
                    "default": "amqp://guest:[email protected]:5672"
                }
            }
        },
        "beanstalk": {
            "description": "Beanstalk jobs driver",
            "type": "object",
            "properties": {
                "addr": {
                    "description": "Beanstalk server address",
                    "type": "string",
                    "default": "tcp://127.0.0.1:11300"
                },
                "timeout": {
                    "description": "Beanstalk connect timeout",
                    "type": "string",
                    "$ref": "#/definitions/Duration",
                    "default": "30s"
                }
            }
        },
        "sqs": {
            "description": "SQS jobs driver (https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html)",
            "type": "object",
            "properties": {
                "key": {
                    "description": "AccessKey ID",
                    "type": "string",
                    "default": null
                },
                "secret": {
                    "description": "Secret Access key",
                    "type": "string",
                    "default": null
                },
                "region": {
                    "description": "AWS Region",
                    "type": "string",
                    "default": null
                },
                "session_token": {
                    "description": "AWS Session token",
                    "type": "string",
                    "default": null
                },
                "endpoint": {
                    "description": "AWS SQS endpoint to connect",
                    "type": "string",
                    "default": "http://127.0.0.1:9324"
                }
            }
        },
        "jobs": {
            "description": "JOBS plugin",
            "type": "object",
            "properties": {
                "num_pollers": {
                    "description": "Number of threads which will try to obtain the job from the priority queue. Default is the number of the logical CPU cores",
                    "type": "integer",
                    "examples": [
                        10,
                        32
                    ]
                },
                "pipeline_size": {
                    "description": "Size of the internal priority queue, if the internal PQ reach the max number of elements, the Push operation will be blocked",
                    "type": "integer",
                    "default": 1000000
                },
                "consume": {
                    "description": "list of pipelines to be consumed by the server automatically at the start, keep empty if you want to start consuming manually",
                    "type": "array",
                    "items": {
                        "type": "string"
                    }
                },
                "pool": {
                    "description": "JOBS workers pool",
                    "type": "object",
                    "$ref": "#/definitions/WorkersPool"
                },
                "pipelines": {
                    "description": "List of broker pipelines associated with the drivers. This option is not required since you can declare pipelines in the runtime. Pipeline driver should exist.",
                    "type": "object",
                    "properties": {
                        "driver": {
                            "type": "array",
                            "description": "JOBS plugin driver",
                            "items": {
                                "type": "string",
                                "enum": [
                                    "amqp",
                                    "sqs",
                                    "beanstalk",
                                    "boltdb",
                                    "memory",
                                    "nats",
                                    "kafka"
                                ]
                            }
                        },
                        "config": {
                            "type": "object",
                            "description": "driver configurations",
                            "patternProperties": {
                                "^[a-zA-Z0-9._-]+$": {
                                    "type": "object",
                                    "maxProperties": 1,
                                    "oneOf": [
                                        {
                                            "properties": {
                                                "priority": {
                                                    "description": "Pipeline priority. If the job pushed to the pipeline has priority set to 0, it will inherit the pipeline's priority",
                                                    "type": "integer",
                                                    "default": 10
                                                },
                                                "prefetch": {
                                                    "description": "Number of job to prefetch from the driver",
                                                    "type": "integer",
                                                    "default": 100000
                                                },
                                                "consume_all": {
                                                    "description": "Consume all payloads, even not Job structured",
                                                    "type": "boolean",
                                                    "default": false
                                                },
                                                "queue": {
                                                    "type": "string",
                                                    "description": "Queue name",
                                                    "default": "default"
                                                },
                                                "exchange": {
                                                    "description": "Exchange name",
                                                    "type": "string",
                                                    "default": "amqp.default"
                                                },
                                                "exchange_type": {
                                                    "description": "Exchange type",
                                                    "type": "string",
                                                    "default": "direct"
                                                },
                                                "routing_key": {
                                                    "description": "Routing key for the queue",
                                                    "type": "string",
                                                    "default": null
                                                },
                                                "exclusive": {
                                                    "description": "Declare a queue exclusive at the exchange",
                                                    "type": "boolean",
                                                    "default": false
                                                },
                                                "multiple_ack": {
                                                    "description": "When multiple is true, this delivery and all prior unacknowledged deliveries on the same channel will be acknowledged. This is useful for batch processing of deliveries",
                                                    "type": "boolean",
                                                    "default": false
                                                },
                                                "requeue_on_fail": {
                                                    "description": "Use rabbitmq mechanism to requeue the job on fail",
                                                    "type": "boolean",
                                                    "default": false
                                                }
                                            }
                                        },
                                        {
                                            "properties": {
                                                "priority": {
                                                    "description": "Pipeline priority. If the job pushed to the pipeline has priority set to 0, it will inherit the pipeline's priority",
                                                    "type": "integer",
                                                    "default": 10
                                                },
                                                "topic": {
                                                    "description": "Topic name: https://kafka.apache.org/intro#intro_concepts_and_terms",
                                                    "type": "string",
                                                    "default": null
                                                },
                                                "partitions_offsets": {
                                                    "description": "Offsets for the partitions",
                                                    "type": "object",
                                                    "properties": {
                                                        "itemType": {
                                                            "$ref": "#/definitions/HashMapInt"
                                                        },
                                                        "itemCount": {
                                                            "$ref": "#/definitions/Hashmap"
                                                        }
                                                    },
                                                    "default": null
                                                },
                                                "group_id": {
                                                    "type": "string",
                                                    "description": "Kafka group id",
                                                    "default": "default"
                                                },
                                                "max_open_requests": {
                                                    "description": "Max number of outstanding requests a connection is allowed to have before sending on it blocks",
                                                    "type": "integer",
                                                    "default": 5
                                                },
                                                "client_id": {
                                                    "description": "A user provided string sent with every request to the brokers for logging, debugging, and auditing purposes.",
                                                    "type": "string",
                                                    "default": "roadrunner"
                                                },
                                                "kafka_version": {
                                                    "description": "Kafka version.",
                                                    "type": "string",
                                                    "default": "1.0.0.0"
                                                },
                                                "create_topics": {
                                                    "description": "Create topics configuration. If topic doesn't exist, RR may create a topic with provided configuration",
                                                    "type": "object",
                                                    "properties": {
                                                        "replication_factor": {
                                                            "description": "Replication factor for the data stored across several Kafka brokers.",
                                                            "type": "integer",
                                                            "default": 1
                                                        },
                                                        "replica_assignment": {
                                                            "type": "object",
                                                            "description": "Partition replica assigment.",
                                                            "default": null
                                                        },
                                                        "config_entries": {
                                                            "type": "object",
                                                            "description": "Topic creation options. Note: 'compression:type' will be replaced with 'compression.type', so ':' -> '.'. All options should use ':' as the delimiter.",
                                                            "default": null
                                                        }
                                                    }
                                                },
                                                "producer_options": {
                                                    "description": "Kafka producer options",
                                                    "type": "object",
                                                    "properties": {
                                                        "max_message_bytes": {
                                                            "type": "integer",
                                                            "default": 1000000
                                                        },
                                                        "required_acks": {
                                                            "description": "The level of acknowledgement reliability needed from the broker.",
                                                            "type": "integer",
                                                            "default": -1
                                                        },
                                                        "timeout": {
                                                            "description": "The maximum duration in seconds the broker will wait the receipt of the number of required_acks.",
                                                            "default": 10,
                                                            "type": "integer"
                                                        },
                                                        "compression_codec": {
                                                            "type": "string",
                                                            "default": "none",
                                                            "enum": [
                                                                "none",
                                                                "gzip",
                                                                "snappy",
                                                                "lz4",
                                                                "zstd"
                                                            ]
                                                        },
                                                        "compression_level": {
                                                            "description": "The level of compression to use on messages.",
                                                            "type": "integer",
                                                            "default": null
                                                        },
                                                        "idempotent": {
                                                            "description": "If enabled, the producer will ensure that exactly one copy of each message is written.",
                                                            "type": "boolean",
                                                            "default": false
                                                        }
                                                    }
                                                },
                                                "consumer_options": {
                                                    "description": "Kafka consumer options",
                                                    "type": "object",
                                                    "properties": {
                                                        "min_fetch_message_size": {
                                                            "description": "The minimum number of message bytes to fetch in a request",
                                                            "type": "integer",
                                                            "default": 1
                                                        },
                                                        "max_fetch_message_size": {
                                                            "type": "integer",
                                                            "description": "The default number of message bytes to fetch from the broker in each request",
                                                            "default": 1000000
                                                        },
                                                        "session_timeout": {
                                                            "type": "integer",
                                                            "description": "The timeout in seconds used to detect consumer failures when using Kafka's group management facility.",
                                                            "default": 10
                                                        },
                                                        "heartbeat_interval": {
                                                            "type": "integer",
                                                            "description": "The expected time in seconds between heartbeats to the consumer coordinator when using Kafka's group management facilities",
                                                            "default": 3
                                                        }
                                                    }
                                                }
                                            }
                                        },
                                        {
                                            "properties": {
                                                "priority": {
                                                    "description": "Pipeline priority. If the job pushed to the pipeline has priority set to 0, it will inherit the pipeline's priority",
                                                    "type": "integer",
                                                    "default": 10
                                                },
                                                "prefetch": {
                                                    "description": "Number of job to prefetch from the driver",
                                                    "type": "integer",
                                                    "default": 100000
                                                }
                                            }
                                        },
                                        {
                                            "properties": {
                                                "priority": {
                                                    "description": "Pipeline priority. If the job pushed to the pipeline has priority set to 0, it will inherit the pipeline's priority",
                                                    "type": "integer",
                                                    "default": 10
                                                },
                                                "prefetch": {
                                                    "description": "Number of job to prefetch from the driver",
                                                    "type": "integer",
                                                    "default": 100000
                                                },
                                                "consume_all": {
                                                    "description": "Consume all payloads, even not Job structured",
                                                    "type": "boolean",
                                                    "default": false
                                                },
                                                "tube_priority": {
                                                    "description": "Beanstalk internal tube priority",
                                                    "type": "integer",
                                                    "default": 1
                                                },
                                                "tube": {
                                                    "description": "Tube name",
                                                    "type": "string",
                                                    "default": "default"
                                                },
                                                "reserve_timeout": {
                                                    "description": "If no job is available before this timeout has passed, Reserve returns a ConnError recording ErrTimeout",
                                                    "$ref": "#/definitions/Duration",
                                                    "default": "5s"
                                                }
                                            }
                                        },
                                        {
                                            "properties": {
                                                "priority": {
                                                    "description": "Pipeline priority. If the job pushed to the pipeline has priority set to 0, it will inherit the pipeline's priority",
                                                    "type": "integer",
                                                    "default": 10
                                                },
                                                "prefetch": {
                                                    "description": "Number of job to prefetch from the driver",
                                                    "type": "integer",
                                                    "default": 100000
                                                },
                                                "skip_queue_declaration": {
                                                    "description": "Get queue URL instead of declaring it",
                                                    "type": "boolean",
                                                    "default": false
                                                },
                                                "consume_all": {
                                                    "description": "Consume all payloads, even not Job structured",
                                                    "type": "boolean",
                                                    "default": false
                                                },
                                                "visibility_timeout": {
                                                    "type": "integer",
                                                    "description": "The duration (in seconds) for which the call waits for a message to arrive in the queue before returning. If a message is available, the call returns sooner than WaitTimeSeconds. If no messages are available and the wait time expires, the call returns successfully with an empty list of messages.",
                                                    "default": 0
                                                },
                                                "wait_time_seconds": {
                                                    "description": "The duration (in seconds) for which the call waits for a message to arrive in the queue before returning. If a message is available, the call returns sooner than WaitTimeSeconds. If no messages are available and the wait time expires, the call returns successfully with an empty list of messages",
                                                    "type": "integer",
                                                    "default": 0
                                                },
                                                "queue": {
                                                    "description": "Queue name",
                                                    "type": "string",
                                                    "default": "default"
                                                },
                                                "attributes": {
                                                    "title": "map[string]number",
                                                    "type": "array",
                                                    "items": {
                                                        "type": "object",
                                                        "additionalProperties": {
                                                            "type": "number"
                                                        }
                                                    }
                                                },
                                                "tags": {
                                                    "title": "map[string]string",
                                                    "type": "array",
                                                    "items": {
                                                        "type": "object",
                                                        "additionalProperties": {
                                                            "type": "string"
                                                        }
                                                    }
                                                }
                                            }
                                        },
                                        {
                                            "properties": {
                                                "priority": {
                                                    "description": "Pipeline priority. If the job pushed to the pipeline has priority set to 0, it will inherit the pipeline's priority",
                                                    "type": "integer",
                                                    "default": 10
                                                },
                                                "prefetch": {
                                                    "description": "Number of job to prefetch from the driver",
                                                    "type": "integer",
                                                    "default": 100000
                                                },
                                                "consume_all": {
                                                    "description": "Consume all payloads, even not Job structured",
                                                    "type": "boolean",
                                                    "default": false
                                                },
                                                "subject": {
                                                    "description": "NATS subject",
                                                    "type": "string",
                                                    "default": "default"
                                                },
                                                "stream": {
                                                    "description": "NATS stream",
                                                    "type": "string",
                                                    "default": "default-stream"
                                                },
                                                "deliver_new": {
                                                    "description": "The consumer will only start receiving messages that were created after the consumer was created",
                                                    "type": "string",
                                                    "default": "default-stream"
                                                },
                                                "rate_limit": {
                                                    "description": "Consumer rate-limiter in bytes https://docs.nats.io/jetstream/concepts/consumers#ratelimit",
                                                    "type": "integer",
                                                    "default": 1000
                                                },
                                                "delete_stream_on_stop": {
                                                    "description": "Delete the stream when after pipeline was stopped",
                                                    "type": "boolean",
                                                    "default": false
                                                },
                                                "delete_after_ack": {
                                                    "description": "Delete message from the stream after successful acknowledge",
                                                    "type": "boolean",
                                                    "default": false
                                                }
                                            }
                                        }
                                    ]
                                }
                            }
                        }
                    }
                }
            }
        },
        "tcp": {
            "type": "object",
            "description": "Plugin to handle RAW TCP packets, available since RR 2.6.0",
            "properties": {
                "servers": {
                    "description": "TCP servers to allocate",
                    "type": "object",
                    "minProperties": 1,
                    "patternProperties": {
                        "^[a-zA-Z0-9._-]+$": {
                            "allOf": [
                                {
                                    "description": "User defined TCP servers",
                                    "type": "object",
                                    "$ref": "#/definitions/TCPServers"
                                }
                            ]
                        }
                    }
                },
                "pool": {
                    "type": "object",
                    "description": "PHP static workers pool",
                    "$ref": "#/definitions/WorkersPool"
                }
            }
        },
        "grpc": {
            "description": "GRPC plugin",
            "type": "object",
            "properties": {
                "listen": {
                    "description": "GRPC address to listen",
                    "type": "string",
                    "$ref": "#/definitions/HostAndPortWithTCP"
                },
                "proto": {
                    "type": "array",
                    "description": "Proto file to use, multiply files supported [SINCE 2.6]",
                    "items": {
                        "type": "string"
                    }
                },
                "enable_reflection_server": {
                    "type": "boolean",
                    "description": "[SINCE 2.11]. The reflection server might be activated to use `grpc_cli`, `grpc-ui`, `grpc-curl`, or similar tools to intercept grpc payloads",
                    "default": false
                },
                "tls": {
                    "description": "GRPC TLS configuration",
                    "type": "object",
                    "properties": {
                        "key": {
                            "description": "Path to the key file",
                            "type": "string",
                            "default": null
                        },
                        "cert": {
                            "description": "Path to the certificate",
                            "type": "string",
                            "default": null
                        },
                        "root_ca": {
                            "description": "Path to the CA certificate",
                            "type": "string",
                            "default": null
                        },
                        "client_auth_type": {
                            "description": "Client auth type",
                            "type": "string",
                            "default": "no_client_certs",
                            "enum": [
                                "request_client_cert",
                                "require_any_client_cert",
                                "verify_client_cert_if_given",
                                "no_client_certs",
                                "require_and_verify_client_cert"
                            ]
                        }
                    }
                },
                "max_send_msg_size": {
                    "type": "integer",
                    "description": "Maximum send message size",
                    "default": 50
                },
                "max_recv_msg_size": {
                    "description": "Maximum receive message size",
                    "default": 50,
                    "type": "integer"
                },
                "max_connection_idle": {
                    "description": " MaxConnectionIdle is a duration for the amount of time after which an idle connection would be closed by sending a GoAway. Idleness duration is defined since the most recent time the number of outstanding RPCs became zero or the connection establishment",
                    "$ref": "#/definitions/Duration"
                },
                "max_connection_age": {
                    "description": "MaxConnectionAge is a duration for the maximum amount of time a connection may exist before it will be closed by sending a GoAway. A random jitter of +/-10% will be added to MaxConnectionAge to spread out connection storms",
                    "$ref": "#/definitions/Duration"
                },
                "max_connection_age_grace": {
                    "description": "MaxConnectionAgeGrace is an additive period after MaxConnectionAge after which the connection will be forcibly closed",
                    "$ref": "#/definitions/Duration"
                },
                "max_concurrent_streams": {
                    "description": "MaxConnectionAgeGrace is an additive period after MaxConnectionAge after which the connection will be forcibly closed",
                    "type": "integer",
                    "default": 10
                },
                "ping_time": {
                    "description": "After a duration of this time if the server doesn't see any activity it pings the client to see if the transport is still alive. If set below 1s, a minimum value of 1s will be used instead",
                    "$ref": "#/definitions/Duration"
                },
                "timeout": {
                    "description": "After having pinged for keepalive check, the server waits for a duration of Timeout and if no activity is seen even after that the connection is closed",
                    "$ref": "#/definitions/Duration"
                },
                "pool": {
                    "description": "GRPC workers pool",
                    "type": "object",
                    "$ref": "#/definitions/WorkersPool"
                }
            }
        },
        "fileserver": {
            "description": "[SINCE 2.6] File server to serve static files",
            "type": "object",
            "properties": {
                "address": {},
                "calculate_etag": {},
                "weak": {},
                "stream_request_body": {},
                "serve": {
                    "type": "array",
                    "minItems": 1,
                    "items": {
                        "type": "object",
                        "properties": {
                            "prefix": {
                                "description": "HTTP prefix",
                                "type": "string",
                                "examples": [
                                    "/foo",
                                    "/bar/baz"
                                ]
                            },
                            "root": {
                                "description": "Directory to serve",
                                "default": ".",
                                "type": "string"
                            },
                            "compress": {
                                "description": "When set to true, the server tries minimizing CPU usage by caching compressed files",
                                "type": "boolean",
                                "default": false
                            },
                            "cache_duration": {
                                "description": "Expiration duration for inactive file handlers. Units: seconds. Use negative number to disable",
                                "type": "integer",
                                "default": 10
                            },
                            "max_age": {
                                "description": "The value for the Cache-Control HTTP-header. Units: seconds",
                                "type": "integer",
                                "default": 10
                            },
                            "bytes_range": {
                                "description": "Enable range requests: https://developer.mozilla.org/en-US/docs/Web/HTTP/Range_requests",
                                "type": "boolean",
                                "default": false
                            }
                        },
                        "required": [
                            "prefix"
                        ]
                    }
                }
            }
        }
    },
    "required": [
        "version"
    ],
    "definitions": {
        "BoltDB": {
            "description": "BoltDB config section",
            "type": "object",
            "properties": {
                "file": {
                    "description": "file name for the db",
                    "type": "string",
                    "default": "rr.db"
                },
                "permission": {
                    "description": "Access permission for the DB file.",
                    "type": "integer",
                    "default": "0777"
                },
                "interval": {
                    "description": "TTL keys check interval in seconds. It's safe to use 1 second here, but can be a little costly to performance",
                    "type": "integer",
                    "default": 60
                }
            }
        },
        "Memcached": {
            "description": "In-memory config section",
            "type": "object",
            "properties": {
                "addr": {
                    "description": "Address of the memcached node",
                    "type": "string",
                    "default": "localhost:11211"
                }
            }
        },
        "Redis": {
            "description": "Redis config section",
            "type": "object",
            "properties": {
                "addr": {
                    "description": "Redis server address",
                    "type": "array",
                    "default": "localhost:6379"
                },
                "master_name": {
                    "type": "string",
                    "default": null
                },
                "username": {
                    "type": "string",
                    "default": null
                },
                "password": {
                    "type": "string",
                    "default": null
                },
                "db": {
                    "description": "Redis db number",
                    "type": "integer",
                    "default": 0,
                    "maximum": 10
                },
                "sentinel_password": {
                    "type": "string",
                    "default": null
                },
                "route_by_latency": {
                    "type": "boolean",
                    "default": false
                },
                "route_randomly": {
                    "type": "boolean",
                    "default": false
                },
                "dial_timeout": {
                    "description": "dial timeout",
                    "$ref": "#/definitions/Duration"
                },
                "max_retries": {
                    "type": "integer",
                    "default": 1
                },
                "min_retry_backoff": {
                    "type": "integer",
                    "default": 0
                },
                "max_retry_backoff": {
                    "type": "integer",
                    "default": 0
                },
                "pool_size": {
                    "type": "integer",
                    "default": 0
                },
                "min_idle_conns": {
                    "type": "integer",
                    "default": 0
                },
                "max_conn_age": {
                    "$ref": "#/definitions/Duration"
                },
                "read_timeout": {
                    "$ref": "#/definitions/Duration"
                },
                "write_timeout": {
                    "$ref": "#/definitions/Duration"
                },
                "pool_timeout": {
                    "$ref": "#/definitions/Duration"
                },
                "idle_timeout": {
                    "$ref": "#/definitions/Duration"
                },
                "idle_check_freq": {
                    "$ref": "#/definitions/Duration"
                },
                "read_only": {
                    "type": "boolean",
                    "default": false
                }
            }
        },
        "Memory": {
            "description": "In-memory config section",
            "type": "object",
            "properties": {
                "interval": {
                    "description": "TTL keys check interval in seconds. It's safe to use 1 second here, but can be a little costly to performance",
                    "type": "integer",
                    "default": 60
                }
            }
        },
        "Service": {
            "type": "object",
            "description": "User defined service",
            "properties": {
                "command": {
                    "description": "Command to execute. Can be any command here which can be executed.",
                    "type": "string"
                },
                "env": {
                    "description": "Environment variables for the process",
                    "type": "object",
                    "$ref": "#/definitions/Hashmap"
                },
                "process_num": {
                    "description": "Number of copies (processes) to start per command",
                    "type": "integer",
                    "default": 1
                },
                "exec_timeout": {
                    "description": "Allowed time before stop",
                    "type": "integer",
                    "$ref": "#/definitions/Duration"
                },
                "remain_after_exit": {
                    "description": "Remain process after exit. In other words, restart process after exit with any exit code",
                    "type": "boolean",
                    "default": false
                },
                "restart_sec": {
                    "description": "Number of seconds to wait before process restart",
                    "type": "integer",
                    "default": 30
                }
            },
            "required": [
                "command"
            ]
        },
        "WorkersPool": {
            "description": "Static pool with PHP workers",
            "type": "object",
            "properties": {
                "debug": {
                    "description": "Pool debug mode. Worker will be created right before RR passes request to it",
                    "type": "boolean",
                    "default": false
                },
                "command": {
                    "type": "string",
                    "default": null,
                    "description": "Command to use for the pool. Will override the server's command"
                },
                "num_workers": {
                    "description": "How many worker processes will be started. Zero (or nothing) means the number of logical CPUs",
                    "type": "integer",
                    "minimum": 0,
                    "default": 0
                },
                "max_jobs": {
                    "description": "Maximal count of worker executions. Zero (or nothing) means no limit",
                    "type": "integer",
                    "minimum": 0,
                    "default": 0
                },
                "allocate_timeout": {
                    "description": "Timeout for worker allocation. Zero means no limit",
                    "$ref": "#/definitions/Duration",
                    "default": "60s"
                },
                "destroy_timeout": {
                    "description": "Timeout for worker destroying before process killing. Zero means no limit",
                    "$ref": "#/definitions/Duration",
                    "default": "60s"
                },
                "supervisor": {
                    "description": "Supervisor is used to control http workers",
                    "type": "object",
                    "properties": {
                        "watch_tick": {
                            "description": "How often to check the state of the workers",
                            "$ref": "#/definitions/Duration",
                            "default": "1s"
                        },
                        "ttl": {
                            "description": "Maximum time worker is allowed to live (soft limit). Zero means no limit",
                            "$ref": "#/definitions/Duration",
                            "default": "0s"
                        },
                        "idle_ttl": {
                            "description": "How long worker can spend in IDLE mode after first using (soft limit). Zero means no limit",
                            "$ref": "#/definitions/Duration",
                            "default": "0s"
                        },
                        "max_worker_memory": {
                            "description": "Maximal worker memory usage in megabytes (soft limit). Zero means no limit",
                            "type": "integer",
                            "minimum": 0,
                            "default": 0
                        },
                        "exec_ttl": {
                            "description": "Maximal job lifetime (hard limit). Zero means no limit",
                            "$ref": "#/definitions/Duration",
                            "default": "0s"
                        }
                    }
                }
            }
        },
        "TCPServers": {
            "description": "TCP server",
            "type": "object",
            "properties": {
                "addr": {
                    "description": "Address to listen",
                    "type": "string",
                    "pattern": "^[0-9a-zA-Z_.-]+:[0-9]{1,5}$"
                },
                "delimiter": {
                    "description": "Data packets delimiter. Every send should end either with EOF or with the delimiter",
                    "type": "string",
                    "default": "\r\n"
                },
                "read_buf_size": {
                    "description": "Chunks that RR uses to read the data. In MB. If you expect big payloads on a TCP server, to reduce `read` syscalls, would be a good practice to use a fairly big enough buffer",
                    "type": "integer",
                    "minimum": 1,
                    "maximum": 100,
                    "default": 1
                }
            },
            "required": [
                "addr"
            ]
        },
        "Duration": {
            "description": "Time duration",
            "anyOf": [
                {
                    "description": "Duration as a string. Valid time units are 'ns', 'us' (or 'µs'), 'ms', 's', 'm', 'h'",
                    "type": "string",
                    "examples": [
                        "10h",
                        "1m",
                        "1h10m10s",
                        "30s",
                        "300ms",
                        "1µs",
                        "1us"
                    ],
                    "minLength": 2
                },
                {
                    "description": "Duration in nanoseconds",
                    "type": "integer",
                    "minimum": 0
                }
            ]
        },
        "HostAndPortWithTCP": {
            "description": "Host and port with tcp:// prefix",
            "type": "string",
            "pattern": "^(tcp://[0-9a-zA-Z_.-]+|):[0-9]{1,5}$",
            "examples": [
                "tcp://127.0.0.1:443"
            ]
        },
        "HostAndPort": {
            "description": "Host and port",
            "type": "string",
            "pattern": "^([0-9a-zA-Z_.-]+|):[0-9]{1,5}$",
            "examples": [
                "127.0.0.1:443",
                ":8080"
            ]
        },
        "LogMode": {
            "description": "Logging mode",
            "type": "string",
            "enum": [
                "development",
                "production",
                "raw"
            ]
        },
        "LogLevel": {
            "description": "Logging level",
            "type": "string",
            "enum": [
                "debug",
                "info",
                "warn",
                "error",
                "panic"
            ]
        },
        "LogEncoding": {
            "description": "Encoding format",
            "type": "string",
            "enum": [
                "console",
                "json"
            ]
        },
        "LogOutput": {
            "type": "string",
            "examples": [
                "stdout",
                "stderr",
                "/var/log/rr_errors.log"
            ]
        },
        "Hashmap": {
            "description": "Hashmap",
            "type": "object",
            "patternProperties": {
                "^[a-zA-Z0-9._-]+$": {
                    "type": "string",
                    "examples": [
                        "Any header value"
                    ]
                }
            },
            "additionalProperties": false
        },
        "Bucket": {
            "description": "Hashmap with floats",
            "type": "object",
            "patternProperties": {
                "[+-]?([0-9]*[.])?[0-9]+": {
                    "type": "number",
                    "examples": [
                        1.1
                    ]
                }
            },
            "additionalProperties": false
        },
        "HashMapInt": {
            "type": "object",
            "additionalProperties": {
                "type": "integer"
            }
        },
        "NATS_J": {
            "description": "NATS jobs driver",
            "type": "object",
            "properties": {
                "addr": {
                    "description": "NATS server address",
                    "type": "string",
                    "default": "demo.nats.io"
                }
            }
        },
        "KAFKA_J": {
            "description": "Kafka jobs driver",
            "type": "object",
            "properties": {
                "addr": {
                    "description": "Kafka server addresses",
                    "type": "array"
                }
            }
        },
        "BoltDB_J": {
            "description": "Boltdb jobs driver",
            "type": "object",
            "properties": {
                "permissions": {
                    "type": "integer",
                    "default": "0777"
                }
            }
        }
    }
}