summaryrefslogtreecommitdiff
path: root/schemas/config/3.0.schema.json
blob: 5f135d52370c88a510d5ec4c5f817ecbe53ab9a6 (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
{
	"$id": "https://raw.githubusercontent.com/roadrunner-server/roadrunner/refs/heads/master/schemas/config/3.0.schema.json",
	"$schema": "https://json-schema.org/draft/2019-09/schema",
	"title": "RoadRunner Main Configuration File",
	"description": "This is your main RoadRunner configuration file. It contains all the plugins you want to load and their configuration.",
	"type": "object",
	"minProperties": 1,
	"properties": {
		"version": {
			"description": "RoadRunner configuration file version.",
			"type": "string",
			"default": "3",
			"enum": [
				"3"
			]
		},
		"centrifuge": {
			"description": "Centrifugo server plugin. See https://centrifugal.dev/docs",
			"type": "object",
			"additionalProperties": false,
			"properties": {
				"proxy_address": {
					"description": "The address of the Centrifugo proxy server.",
					"type": "string",
					"default": "tcp://127.0.0.1:30000"
				},
				"grpc_api_address": {
					"description": "The address/port of the gRPC server API.",
					"type": "string",
					"default": "tcp://127.0.0.1:30000"
				},
				"use_compressor": {
					"description": "Whether to use gRPC gzip compressor.",
					"type": "boolean",
					"default": false
				},
				"version": {
					"description": "Your application version.",
					"type": "string",
					"default": "v1.0.0"
				},
				"name": {
					"description": "Your application name",
					"type": "string",
					"default": "roadrunner"
				},
				"pool": {
					"$ref": "#/definitions/WorkersPool"
				},
				"tls": {
					"description": "TLS settings",
					"type": "object",
					"additionalProperties": false,
					"properties": {
						"cert": {
							"$ref": "#/definitions/TLSCertFile"
						},
						"key": {
							"$ref": "#/definitions/TLSKeyFile"
						}
					},
					"required": [
						"cert",
						"key"
					]
				}
			}
		},
		"rpc": {
			"type": "object",
			"additionalProperties": false,
			"properties": {
				"listen": {
					"description": "The address and port for the RPC server to bind to.",
					"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",
			"additionalProperties": false,
			"properties": {
				"on_init": {
					"description": "Arbitrary command to execute before RR starts allocating workers.",
					"type": "object",
					"additionalProperties": false,
					"required": [
						"command"
					],
					"properties": {
						"command": {
							"description": "Command to execute. It can be any script or binary.",
							"type": "string",
							"examples": [
								"php not-worker.php",
								"sh script.sh",
								"start script.bat"
							]
						},
						"exec_timeout": {
							"description": "Script execution timeout.",
							"$ref": "#/definitions/Duration",
							"default": "60s"
						},
						"user": {
							"description": "Username (not UID) of the user from whom the on_init command is executed. The RR process user will be used if not provided.",
							"type": "string",
							"examples": [
								"www-data"
							]
						},
						"env": {
							"description": "Environment variables for the executed command.",
							"$ref": "#/definitions/HashmapString"
						}
					}
				},
				"command": {
					"description": "The command used to start workers, including any required arguments.",
					"type": "string",
					"examples": [
						"php psr-worker.php"
					]
				},
				"user": {
					"description": "User name (not UID) for the worker processes. The RR process user will be used if not provided.",
					"type": "string",
					"examples": [
						"www-data"
					]
				},
				"group": {
					"description": "Group name (not GID) for the worker processes. The RR process user group will be used if not provided.",
					"type": "string",
					"examples": [
						"www-data"
					]
				},
				"env": {
					"description": "Environment variables for the worker processes.",
					"$ref": "#/definitions/HashmapString"
				},
				"relay": {
					"description": "Worker relay method. Can be 'pipes', a TCP address (e.g. tcp://127.0.0.1:6002) or a socket (e.g. unix:///var/run/rr.sock).",
					"type": "string",
					"default": "pipes",
					"examples": [
						"pipes",
						"tcp://127.0.0.1:6002",
						"unix:///var/run/rr.sock"
					]
				}
			},
			"required": [
				"command"
			]
		},
		"logs": {
			"type": "object",
			"additionalProperties": false,
			"properties": {
				"mode": {
					"$ref": "#/definitions/LogMode",
					"default": "development"
				},
				"level": {
					"$ref": "#/definitions/LogLevel",
					"default": "debug"
				},
				"line_ending": {
					"$ref": "#/definitions/LogLineEnding"
				},
				"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 logging for each plugin individually. The key is the plugin name and the value is logging options in same format as the parent.",
					"type": "object",
					"additionalProperties": {
						"type": "object",
						"additionalProperties": false,
						"properties": {
							"mode": {
								"$ref": "#/definitions/LogMode"
							},
							"level": {
								"$ref": "#/definitions/LogLevel"
							},
							"line_ending": {
								"$ref": "#/definitions/LogLineEnding"
							},
							"encoding": {
								"$ref": "#/definitions/LogEncoding"
							},
							"output": {
								"$ref": "#/definitions/LogOutput"
							},
							"err_output": {
								"$ref": "#/definitions/LogOutput"
							}
						}
					}
				},
				"file_logger_options": {
					"description": "File logger options.",
					"type": "object",
					"additionalProperties": false,
					"properties": {
						"log_output": {
							"type": "string",
							"description": "Path to the log file. Uses <processname>-lumberjack.log and the OS temp (i.e. `/tmp`) directory if empty."
						},
						"max_size": {
							"type": "integer",
							"description": "Maximum file size in MB.",
							"minimum": 0,
							"default": 100
						},
						"max_age": {
							"type": "integer",
							"description": "The maximum number of days to retain old log files based on the timestamp encoded in their filename.",
							"default": 1
						},
						"max_backups": {
							"type": "integer",
							"description": "The maximum number of old log files to retain. Set to zero to retain all log files.",
							"default": 5
						},
						"compress": {
							"type": "boolean",
							"description": "Whether to compress log files.",
							"default": false
						}
					}
				}
			}
		},
		"temporal": {
			"description": "Workflow and activity mesh service. See https://docs.temporal.io/docs/php/introduction/",
			"type": "object",
			"additionalProperties": false,
			"properties": {
				"address": {
					"description": "Address of the 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/HashmapString"
								},
								"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"
				},
				"tls": {
					"description": "Temporal TLS configuration",
					"type": "object",
					"required": [
						"key",
						"cert"
					],
					"properties": {
						"key": {
							"$ref": "#/definitions/TLSKeyFile"
						},
						"cert": {
							"$ref": "#/definitions/TLSCertFile"
						},
						"root_ca": {
							"$ref": "#/definitions/TLSCAFile"
						},
						"client_auth_type": {
							"$ref": "#/definitions/TLSClientAuthType"
						},
						"server_name": {
							"description": "ServerName is used to verify the hostname on the returned certificates unless InsecureSkipVerify is given. It is also included in the client's handshake to support virtual hosting unless it is an IP address.",
							"type": "string"
						}
					}
				}
			}
		},
		"kv": {
			"$ref": "https://raw.githubusercontent.com/roadrunner-server/kv/refs/heads/master/schema.json"
		},
		"service": {
			"description": "Service plugin settings",
			"type": "object",
			"patternProperties": {
				"^[a-zA-Z0-9._-]+$": {
					"description": "User defined services",
					"type": "object",
					"$ref": "#/definitions/Service"
				}
			}
		},
		"otel": {
			"description": "OpenTelemetry configuration",
			"type": "object",
			"additionalProperties": false,
			"properties": {
				"resource": {
					"type": "object",
					"additionalProperties": false,
					"properties": {
						"service_name": {
							"description": "The name of the service.",
							"type": "string",
							"default": "RoadRunner",
							"minLength": 1
						},
						"service_version": {
							"type": "string",
							"description": "The version of the service.",
							"default": "1.0.0",
							"minLength": 1
						},
						"service_namespace": {
							"type": "string",
							"description": "The namespace of the service.",
							"default": "RoadRunner",
							"minLength": 1
						},
						"service_instance_id": {
							"type": "string",
							"description": "The service instance ID. If not provided or empty, a UUID is generated.",
							"minLength": 1
						}
					}
				},
				"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",
					"enum": [
						"zipkin",
						"stdout",
						"stderr",
						"otlp",
						"jaeger",
						"jaeger_agent"
					]
				},
				"custom_url": {
					"description": "Used for the http client to override the default URL, if provided.",
					"type": "string"
				},
				"endpoint": {
					"description": "Consumer's endpoint",
					"type": "string",
					"default": "127.0.0.1:4318"
				},
				"client": {
					"description": "Client to send the spans",
					"type": "string",
					"enum": [
						"http",
						"grpc"
					]
				},
				"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/HashmapString"
				}
			}
		},
		"http": {
			"type": "object",
			"additionalProperties": false,
			"properties": {
				"address": {
					"description": "Host and port to listen on.",
					"$ref": "#/definitions/HostAndPort",
					"examples": [
						"127.0.0.1:8080",
						":8080"
					]
				},
				"internal_error_code": {
					"description": "The HTTP status code to use for internal roadrunner errors.",
					"type": "integer",
					"default": 500,
					"minimum": 100,
					"maximum": 599
				},
				"max_request_size": {
					"description": "Maximal incoming request size in MB. Zero means no limit.",
					"type": "integer",
					"minimum": 0,
					"default": 0
				},
				"raw_body": {
					"description": "Whether to send the raw, encoded body for application/x-www-form-urlencoded content. By default, PHP workers will receive decoded content of this type.",
					"type": "boolean",
					"default": false
				},
				"access_logs": {
					"description": "Whether to enable HTTP access logs.",
					"type": "boolean",
					"default": false
				},
				"middleware": {
					"description": "Middlewares to load for the HTTP plugin. The order determines the order in which the middlewares are executed.",
					"type": "array",
					"minItems": 1,
					"items": {
						"type": "string",
						"enum": [
							"headers",
							"gzip",
							"static",
							"sendfile",
							"http_metrics",
							"cache",
							"proxy_ip_parser",
							"otel"
						]
					}
				},
				"trusted_subnets": {
					"description": "Allow incoming requests only from the provided subnets. Defaults to the usual private network ranges (192.168.*, 10.0.* and 172.16.*) as well as local/loopback interfaces (127.*).",
					"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"
					]
				},
				"uploads": {
					"type": "object",
					"additionalProperties": false,
					"properties": {
						"dir": {
							"description": "Directory for file uploads. Empty/undefined value means the OS default temporary directory ($TEMP) will be used, i.e. `/tmp`.",
							"type": "string",
							"examples": [
								"/tmp"
							]
						},
						"forbid": {
							"description": "Disallow upload of files with the provided extensions.",
							"type": "array",
							"items": {
								"type": "string",
								"minLength": 1,
								"examples": [
									".php",
									".exe"
								]
							},
							"default": [
								".php",
								".exe",
								".bat"
							]
						},
						"allow": {
							"description": "Allow only upload of files with the provided extensions. Empty/undefined value means all files except explicitly disallowed (`forbid`) files are allowed.",
							"type": "array",
							"items": {
								"type": "string",
								"examples": [
									".html",
									".go"
								]
							}
						}
					}
				},
				"headers": {
					"description": "HTTP headers map",
					"type": "object",
					"additionalProperties": false,
					"properties": {
						"cors": {
							"description": "Controls which CORS headers are returned. Additional headers `Vary: Origin`, `Vary: Access-Control-Request-Method` and `Vary: Access-Control-Request-Headers` will be added to responses. Omit this section to disable CORS headers.",
							"type": "object",
							"properties": {
								"allowed_origin": {
									"description": "Controls the value of 'Access-Control-Allow-Origin'.",
									"type": "string",
									"examples": [
										"*"
									]
								},
								"allowed_origin_regex": {
									"description": "Controls the value of 'Access-Control-Allow-Origin' header value, but evaluated as regex.",
									"type": "string",
									"examples": [
										"^https://foo"
									]
								},
								"allowed_headers": {
									"description": "Controls the value of 'Access-Control-Allow-Headers'.",
									"type": "string",
									"examples": [
										"*"
									]
								},
								"allowed_methods": {
									"description": "Controls the value of 'Access-Control-Allow-Methods'. Provide a comma-separated string of HTTP verbs.",
									"type": "string",
									"examples": [
										"GET,POST,PUT,DELETE"
									]
								},
								"allow_credentials": {
									"description": "Controls the value of 'Access-Control-Allow-Credentials'.",
									"type": "boolean",
									"default": false
								},
								"exposed_headers": {
									"description": "Controls the value of 'Access-Control-Expose-Headers'. Provide a comma-separated list of HTTP headers.",
									"type": "string",
									"examples": [
										"Cache-Control,Content-Language,Content-Type,Expires,Last-Modified,Pragma"
									]
								},
								"max_age": {
									"description": "Controls the value of 'Access-Control-Max-Age' (in seconds).",
									"type": "integer",
									"examples": [
										600
									],
									"default": 0
								}
							}
						},
						"request": {
							"description": "Headers to add to every request passed to PHP.",
							"$ref": "#/definitions/HashmapString"
						},
						"response": {
							"description": "Headers added to every response.",
							"$ref": "#/definitions/HashmapString"
						}
					}
				},
				"static": {
					"description": "Configuratin options for serving static files.",
					"type": "object",
					"additionalProperties": false,
					"properties": {
						"dir": {
							"description": "Path to the directory with static assets. Defaults to the current working directory. Empty/undefined and `.` are equal and are both treated as current directory.",
							"type": "string",
							"examples": [
								".",
								"/var/www/html"
							]
						},
						"forbid": {
							"description": "File extensions of files that must not be served. Empty/undefined disallows no files. If files are specified in both `forbid` and `allow`, they will be disallowed. Defaults to an empty array, disallowing no files.",
							"type": "array",
							"items": {
								"type": "string",
								"minLength": 1,
								"examples": [
									".php",
									".htaccess",
									".sh"
								]
							}
						},
						"allow": {
							"description": "File extensions of files that may be served. Empty/undefined allows all files, except files specified in `forbid`.",
							"type": "array",
							"items": {
								"type": "string",
								"minLength": 1,
								"examples": [
									".jpg",
									".png",
									".css",
									".js"
								]
							}
						},
						"calculate_etag": {
							"description": "Whether to enable ETag computation for static files.",
							"type": "boolean",
							"default": false
						},
						"weak": {
							"description": "Whether to use a weak generator (/W), which uses only the filename to generate a CRC32 sum for et ETag. Disable to use the file contents.",
							"type": "boolean",
							"default": false
						},
						"response": {
							"description": "Custom HTTP headers to add to responses to requests for static files.",
							"$ref": "#/definitions/HashmapString"
						},
						"request": {
							"description": "Custom HTTP headers to add to requests for static files.",
							"$ref": "#/definitions/HashmapString"
						}
					}
				},
				"pool": {
					"description": "Settings for workers in the HTTP pool.",
					"$ref": "#/definitions/WorkersPool"
				},
				"ssl": {
					"title": "SSL/TLS (HTTPS) Configuration",
					"description": "Settings required to set up manual or automatic HTTPS for your server. Either `key` and `cert` *or* `acme` is required, but not both.",
					"type": "object",
					"additionalProperties": false,
					"not": {
						"anyOf": [
							{
								"required": [
									"key",
									"acme"
								]
							},
							{
								"required": [
									"cert",
									"acme"
								]
							},
							{
								"required": [
									"root_ca",
									"acme"
								]
							},
							{
								"required": [
									"client_auth_type",
									"acme"
								]
							}
						]
					},
					"anyOf": [
						{
							"required": [
								"acme"
							]
						},
						{
							"required": [
								"key",
								"cert"
							]
						}
					],
					"properties": {
						"address": {
							"description": "Host address (or port) to bind to.",
							"$ref": "#/definitions/HostAndPort",
							"examples": [
								"127.0.0.1:443",
								":8443"
							]
						},
						"acme": {
							"description": "ACME certificates provider (Let's encrypt). Do not specify this parameter if you use `key` and `cert`.",
							"type": "object",
							"additionalProperties": false,
							"properties": {
								"certs_dir": {
									"description": "Directory to use for certificates, private keys, Let's Encrypt configuration etc.",
									"type": "string",
									"default": "rr_cache"
								},
								"email": {
									"description": "User email used to create a Let's Encrypt account. This is required.",
									"type": "string",
									"examples": [
										"[email protected]"
									]
								},
								"alt_http_port": {
									"description": "Alternate port for the HTTP challenge. Challenge traffic should be redirected to this port if overridden. See https://letsencrypt.org/docs/challenge-types/#http-01-challenge",
									"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. See https://letsencrypt.org/docs/challenge-types/#tls-alpn-01",
									"type": "integer",
									"default": 443
								},
								"challenge_type": {
									"type": "string",
									"enum": [
										"http-01",
										"tlsalpn-01"
									],
									"description": "Challenge types",
									"default": "http-01"
								},
								"use_production_endpoint": {
									"description": "Whether to use the production endpoint. We recommend you use the staging endpoint to make sure everything works correctly before you deploy your certificate.",
									"type": "boolean",
									"default": false
								},
								"domains": {
									"type": "array",
									"minItems": 1,
									"items": {
										"type": "string",
										"examples": [
											"example.com"
										]
									},
									"description": "List of domains to obtain certificates for. At least one domain is required."
								}
							},
							"required": [
								"domains",
								"email"
							]
						},
						"redirect": {
							"description": "Whether to automatically redirect from HTTP to HTTPS.",
							"type": "boolean",
							"default": false
						},
						"cert": {
							"$ref": "#/definitions/TLSCertFile"
						},
						"key": {
							"$ref": "#/definitions/TLSKeyFile"
						},
						"root_ca": {
							"$ref": "#/definitions/TLSCAFile"
						},
						"client_auth_type": {
							"$ref": "#/definitions/TLSClientAuthType"
						}
					},
					"required": [
						"address"
					]
				},
				"fcgi": {
					"description": "FastCGI frontend support",
					"type": "object",
					"additionalProperties": false,
					"properties": {
						"address": {
							"description": "FastCGI connection DSN. Supports 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",
					"additionalProperties": false,
					"properties": {
						"h2c": {
							"description": "Use HTTP/2 over non-encrypted TCP connection using H2C",
							"type": "boolean",
							"default": false
						},
						"max_concurrent_streams": {
							"description": "Maximal concurrent streams.",
							"type": "integer",
							"default": 128,
							"minimum": 0
						}
					}
				}
			},
			"required": [
				"address"
			]
		},
		"redis": {
			"$ref": "https://raw.githubusercontent.com/roadrunner-server/redis/refs/heads/master/schema.json"
		},
		"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": "https://raw.githubusercontent.com/roadrunner-server/nats/refs/heads/master/schema.json#/definitions/driver"
		},
		"kafka": {
			"$ref": "https://raw.githubusercontent.com/roadrunner-server/kafka/refs/heads/master/schema.json#/definitions/driver"
		},
		"amqp": {
			"$ref": "https://raw.githubusercontent.com/roadrunner-server/amqp/refs/heads/master/schema.json#/definitions/driver"
		},
		"beanstalk": {
			"$ref": "https://raw.githubusercontent.com/roadrunner-server/beanstalk/refs/heads/master/schema.json#/definitions/driver"
		},
		"sqs": {
			"$ref": "https://raw.githubusercontent.com/roadrunner-server/sqs/refs/heads/master/schema.json#/definitions/driver"
		},
		"jobs": {
			"$ref": "https://raw.githubusercontent.com/roadrunner-server/jobs/refs/heads/master/schema.json"
		},
		"tcp": {
			"type": "object",
			"description": "Plugin to handle RAW TCP packets.",
			"additionalProperties": false,
			"properties": {
				"servers": {
					"description": "TCP servers to allocate",
					"type": "object",
					"minProperties": 1,
					"patternProperties": {
						"^[a-zA-Z0-9._-]+$": {
							"$ref": "#/definitions/TCPServers"
						}
					}
				},
				"pool": {
					"$ref": "#/definitions/WorkersPool"
				}
			}
		},
		"grpc": {
			"description": "GRPC plugin",
			"type": "object",
			"additionalProperties": false,
			"required": [
				"proto"
			],
			"properties": {
				"listen": {
					"description": "GRPC address to listen on.",
					"type": "string",
					"$ref": "#/definitions/HostAndPortWithTCP"
				},
				"proto": {
					"type": "array",
					"description": "Proto file to use. Multiple files are supported. Wildcards are allowed in the proto field.",
					"items": {
						"type": "string",
						"examples": [
							"*.proto",
							"first.proto",
							"second.proto"
						]
					}
				},
				"tls": {
					"description": "GRPC TLS configuration",
					"type": "object",
					"additionalProperties": false,
					"properties": {
						"key": {
							"$ref": "#/definitions/TLSKeyFile"
						},
						"cert": {
							"$ref": "#/definitions/TLSCertFile"
						},
						"root_ca": {
							"$ref": "#/definitions/TLSCAFile"
						},
						"client_auth_type": {
							"$ref": "#/definitions/TLSClientAuthType"
						}
					},
					"required": [
						"key",
						"cert"
					]
				},
				"max_send_msg_size": {
					"type": "integer",
					"description": "Maximum send message size in MB.",
					"default": 50
				},
				"max_recv_msg_size": {
					"description": "Maximum receive message size in MB.",
					"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. Idle duration is defined by the most recent time the number of outstanding RPCs became zero or since the connection was established.",
					"$ref": "#/definitions/Duration"
				},
				"max_connection_age": {
					"description": "The maximum duration 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": "The duration after MaxConnectionAge after which the connection will be forcibly closed.",
					"$ref": "#/definitions/Duration"
				},
				"max_concurrent_streams": {
					"description": "The maximum number of concurrent streams.",
					"type": "integer",
					"default": 10
				},
				"ping_time": {
					"description": "Duration of no activity after which the server 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",
					"default": "2h"
				},
				"timeout": {
					"description": "The duration to wait for a response to a keepalive check, after which the connection is closed.",
					"$ref": "#/definitions/Duration",
					"default": "20s"
				},
				"pool": {
					"description": "GRPC workers pool",
					"type": "object",
					"$ref": "#/definitions/WorkersPool"
				}
			}
		},
		"fileserver": {
			"description": "File server to serve static files.",
			"type": "object",
			"additionalProperties": false,
			"properties": {
				"address": {
					"description": "The address to listen on.",
					"type": "string",
					"examples": [
						"127.0.0.1:10101"
					]
				},
				"calculate_etag": {
					"description": "Whether to calculate ETag for the file and add the ETag header. See https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/ETag",
					"type": "boolean",
					"default": false
				},
				"weak": {
					"description": "Whether to use only the filename when calculating the ETag value. If `false`, the entire file content is used.",
					"default": false
				},
				"stream_request_body": {
					"type": "boolean",
					"description": "Whether to stream files larger than 4KB.",
					"default": false
				},
				"serve": {
					"description": "The URL prefixes to serve as static files. At least one entry is required.",
					"type": "array",
					"minItems": 1,
					"items": {
						"type": "object",
						"properties": {
							"prefix": {
								"description": "Files matching this prefix will be served with this configuration.",
								"type": "string",
								"examples": [
									"/img",
									"/assets"
								]
							},
							"root": {
								"description": "Directory to serve these files from. Defaults to the root of the RR application directory.",
								"default": ".",
								"type": "string"
							},
							"compress": {
								"description": "When set to true, the server attempts to minimize CPU usage by caching compressed files.",
								"type": "boolean",
								"default": false
							},
							"cache_duration": {
								"description": "Expiration duration for inactive file handlers, given in seconds. Use any negative number (-1) to disable.",
								"type": "integer",
								"default": 10
							},
							"max_age": {
								"description": "The value for the Cache-Control HTTP-header, given in seconds.",
								"type": "integer",
								"default": 10
							},
							"bytes_range": {
								"description": "Enable range requests. See https://developer.mozilla.org/en-US/docs/Web/HTTP/Range_requests",
								"type": "boolean",
								"default": false
							}
						},
						"required": [
							"prefix"
						]
					}
				}
			}
		}
	},
	"required": [
		"version"
	],
	"definitions": {
		"TLSCAFile": {
			"description": "Path to the CA certificate, if required. Always required for mTLS. Omit this option if unused.",
			"type": "string",
			"minLength": 1,
			"examples": [
				"/ssl/server/ca.crt"
			]
		},
		"TLSCertFile": {
			"description": "Path to the public certificate file.",
			"type": "string",
			"minLength": 1,
			"examples": [
				"/ssl/server/cert.crt"
			]
		},
		"TLSKeyFile": {
			"description": "Path to the private key for the certificate.",
			"type": "string",
			"minLength": 1,
			"examples": [
				"/ssl/server/key.pem"
			]
		},
		"TLSClientAuthType": {
			"description": "Authorization method for mTLS.",
			"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"
			]
		},
		"Service": {
			"type": "object",
			"description": "User defined service",
			"additionalProperties": false,
			"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/HashmapString"
				},
				"timeout_stop_sec": {
					"description": "Timeout for the process stop operation. If it takes longer for this duration for the process to stop, it will be killed.",
					"type": "integer",
					"default": 5
				},
				"process_num": {
					"description": "Number of copies (processes) to start per command execution.",
					"type": "integer",
					"default": 1
				},
				"exec_timeout": {
					"description": "The maximum duration the service is allowed to run before RR will kill it. Default/zero means unlimited.",
					"type": "string",
					"$ref": "#/definitions/Duration",
					"default": "0s"
				},
				"remain_after_exit": {
					"description": "Whether to restart the process if it exists, regardless of the exit code.",
					"type": "boolean",
					"default": false
				},
				"restart_sec": {
					"description": "Number of seconds to wait before process restart",
					"type": "integer",
					"default": 30
				},
				"service_name_in_log": {
					"description": "Whether to include the name of the service in logs (e.g. service.some_service_1).",
					"type": "boolean",
					"default": false
				}
			},
			"required": [
				"command"
			]
		},
		"WorkersPool": {
			"description": "Static pool with PHP workers.",
			"type": "object",
			"additionalProperties": false,
			"properties": {
				"debug": {
					"description": "Pool debug mode. A worker will be created right before RR passes a request to it.",
					"type": "boolean",
					"default": false
				},
				"command": {
					"type": "string",
					"description": "Command to use for the pool. If provided, this will override the value of server.command for the pool."
				},
				"num_workers": {
					"description": "The number of worker processes to start. Default/zero means the number of logical CPUs.",
					"type": "integer",
					"minimum": 0,
					"default": 0
				},
				"max_jobs": {
					"description": "The maximum number of executions a worker is allowed to perform. Zero (or nothing) means no limit. When this value is reached, the worker is terminated and a new is created.",
					"type": "integer",
					"minimum": 0,
					"default": 0
				},
				"max_queue_size": {
					"description": "Maximum size of the internal request queue. After reaching this limit, additional requests will be rejected with an error.",
					"type": "integer",
					"minimum": 0,
					"default": 0
				},
				"allocate_timeout": {
					"description": "Timeout for worker allocation. Default/zero means 60s.",
					"$ref": "#/definitions/Duration",
					"default": "60s"
				},
				"reset_timeout": {
					"description": "Timeout for the pool.Reset operation (./rr reset). Default/zero means 60s.",
					"$ref": "#/definitions/Duration",
					"default": "60s"
				},
				"stream_timeout": {
					"description": "Timeout for stream cancellation. Default/zero means 60s.",
					"$ref": "#/definitions/Duration",
					"default": "60s"
				},
				"destroy_timeout": {
					"description": "Timeout when destroying a worker. If the worker has stopped within this timeout, its process will be killed. Default/zero means 60s.",
					"$ref": "#/definitions/Duration",
					"default": "60s"
				},
				"supervisor": {
					"description": "Supervisor is used to control HTTP workers, such as restarting them and limiting their memory consumption or execution time.",
					"type": "object",
					"additionalProperties": false,
					"properties": {
						"watch_tick": {
							"description": "How often to check the state of the workers. Defaults to 1 second.",
							"$ref": "#/definitions/Duration",
							"default": "1s"
						},
						"ttl": {
							"description": "The maximum time the worker is allowed to live (soft limit). Default/zero means no limit. If the worker is processing a request while this expires, it will be restarted after it has completed its work.",
							"$ref": "#/definitions/Duration",
							"default": "0s"
						},
						"idle_ttl": {
							"description": "How long worker can spend in idle mode after its first request (soft limit). Default/zero means no limit.",
							"$ref": "#/definitions/Duration",
							"default": "0s"
						},
						"max_worker_memory": {
							"description": "The maximum amount of memory a worker is allowed to allocate in MB (soft limit). If a worker exceeds this limit during a request, it will be terminated and restarted once the request ends. Default/zero means no limit.",
							"type": "integer",
							"minimum": 0,
							"default": 0,
							"examples": [
								256
							]
						},
						"exec_ttl": {
							"description": "The maximum time a request may take in seconds (hard limit). Default/zero means no limit.",
							"$ref": "#/definitions/Duration",
							"default": "0s"
						}
					}
				}
			}
		},
		"TCPServers": {
			"description": "TCP server",
			"type": "object",
			"additionalProperties": false,
			"properties": {
				"addr": {
					"description": "Address to listen on.",
					"type": "string",
					"pattern": "^[0-9a-zA-Z_.-]+:[0-9]{1,5}$",
					"examples": [
						"127.0.0.1:7778"
					]
				},
				"delimiter": {
					"description": "Data packet delimiter. Every send should end with either EOF or this delimiter.",
					"type": "string",
					"default": "\r\n"
				},
				"read_buf_size": {
					"description": "Size of the chunks that RR reads data in, in MB. If you expect big payloads on a TCP server, you may reduce `read` system calls by using a big buffer.",
					"type": "integer",
					"minimum": 1,
					"maximum": 100,
					"default": 1
				}
			},
			"required": [
				"addr"
			]
		},
		"Duration": {
			"description": "Time duration",
			"type": "string",
			"pattern": "^([0-9]*(\\.[0-9]*)?(ms|h|m|s))+$",
			"examples": [
				"1h",
				"2.5h",
				"2m",
				".2m",
				"30s",
				"30.03s",
				"300ms",
				"1h3m40s500ms"
			]
		},
		"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",
				"${TCP:-tcp://127.0.0.1:443}",
				"tcp://127.0.0.1:${TCP_PORT}"
			]
		},
		"HostAndPort": {
			"description": "Host and port",
			"type": "string",
			"pattern": "^((([0-9a-zA-Z_.-]+|)|\\$\\{([^}]+)\\}):([0-9]{1,5})|\\$\\{([^}]+)\\})|\\$\\{([^}]+)\\}$",
			"examples": [
				"127.0.0.1:443",
				":8080",
				"0.0.0.0:${HTTP_PORT:-8080}",
				"${HTTP_HOST:-127.0.0.1:8000}"
			]
		},
		"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"
			]
		},
		"LogLineEnding": {
			"description": "Line-ending to use for logging.",
			"type": "string",
			"default": "\n"
		},
		"LogOutput": {
			"type": "string",
			"examples": [
				"stdout",
				"stderr",
				"/var/log/rr_errors.log"
			]
		},
		"HashmapString": {
			"description": "A hash map that only allows string values.",
			"type": "object",
			"patternProperties": {
				"^[a-zA-Z0-9._-]+$": {
					"type": "string"
				}
			},
			"additionalProperties": false
		}
	}
}