blob: 10e9243b77159f867aa9af14167f5f5d0c6f8b7e [file] [log] [blame]
Abukar Mohamedbf6780b2020-03-19 13:08:53 +00001{
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}