UNPKG

750 BJSONView Raw
1{
2 "permissions": "public",
3 "meta": {},
4 "form": ['*'],
5 "schema": {
6 "title": "Health Profile",
7 "type": "object",
8 "properties": {
9 "height": {
10 "title": "Height",
11 "type": "number"
12 },
13 "weight": {
14 "title": "Weight",
15 "type": "number"
16 },
17 "age": {
18 "title": "Age",
19 "type": "number"
20 }
21 }
22 },
23 "children": {
24 "allergy": {
25 "permissions": "public",
26 "meta": {},
27 "form": ['*'],
28 "schema": {
29 "title": "Allergy",
30 "type": "object",
31 "properties": {
32 "allergen": {
33 "title": "Allergen",
34 "type": "string"
35 }
36 },
37 "required": ["allergen"]
38 }
39 }
40 }
41}
42