Extend xapp-descriptor with controls section
[ric-app/qp-driver.git] / xapp-descriptor / controls.json
1 {
2   "$schema": "http://json-schema.org/draft-07/schema#",
3   "$id": "#/controls",
4   "type": "object",
5   "title": "Controls Section Schema",
6   "required": [
7     "example_int",
8     "example_str"
9   ],
10   "properties": {
11     "example_int": {
12       "$id": "#/properties/controls/items/properties/example_int",
13       "type": "integer",
14       "title": "An example integer property",
15       "default": 0
16     },
17     "example_str": {
18       "$id": "#/properties/controls/items/properties/example_str",
19       "type": "string",
20       "title": "An example string property",
21       "default": ""
22     }
23   }
24 }