RIC:1060: Change in PTL
[ric-plt/xapp-frame.git] / examples / config / schema.json
1 {
2   "definitions": {},
3   "$schema": "http://json-schema.org/draft-07/schema#",
4   "$id": "http://example.com/root.json",
5   "type": "object",
6   "title": "The Root Schema",
7   "required": [
8     "subscriptionActive"
9   ],
10   "properties": {
11     "subscriptionActive": {
12       "$id": "#/properties/subscriptionActive",
13       "type": "boolean",
14       "title": "The Active Schema",
15       "default": false,
16       "examples": [
17         true
18       ]
19     }
20   }
21 }