blob: a01e3bc9f1e145e969514717dc40bbeecc834130 [file] [log] [blame]
rajalakshmisv21b61dd2021-12-07 04:53:03 +00001{
rajalakshmisv21b61dd2021-12-07 04:53:03 +00002 "$schema": "http://json-schema.org/draft-07/schema#", "$id": "#/controls",
3 "type": "object",
4 "title": "Controls Section Schema",
5 "required": [
6 "ricHOControlgRpcServerPort",
7 "logLevel"
8 ],
9 "properties": {
10 "ricHOControlgRpcServerPort": {
11 "$id": "#/properties/ricHOControlgRpcServerPort",
12 "type": "string",
13 "title": "GRPC Port",
14 "default": "7777",
15 "examples": [
16 "7777"
17 ],
18 "logLevel" : {
19 "$id": "#/properties/logLevel",
20 "type": "int",
21 "title": "log level",
22 "default":3,
23 "examples": [3]
24 }
25 }
26 }
rajalakshmisv21b61dd2021-12-07 04:53:03 +000027}