1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
{
"definitions": {},
"title": "Root",
"type": "object",
"required": [
"title",
"summary",
"details",
"joinIonConsent",
"leaveIonConsent"
],
"properties": {
"title": {
"$id": "#root/title",
"title": "Title",
"type": "string"
},
"summary": {
"$id": "#root/summary",
"title": "Summary",
"type": "string"
},
"details": {
"$id": "#root/details",
"title": "Details",
"type": "string"
},
"joinIonConsent": {
"$id": "#root/joinIonConsent",
"title": "JoinIonconsent",
"type": "string"
},
"leaveIonConsent": {
"$id": "#root/leaveIonConsent",
"title": "LeaveIonconsent",
"type": "string"
}
}
}
|