Abukar Mohamed | bf6780b | 2020-03-19 13:08:53 +0000 | [diff] [blame^] | 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 | } |