This repository has been archived by the owner on Mar 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
schemav2.json
139 lines (139 loc) · 3.7 KB
/
schemav2.json
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"id": "1",
"name": "Indtastning af begravelsesprotokoller",
"description": "Dette er Stadsarkivets første indtastningsprojekt",
"collection_id": "1",
"schema": {
"title": "Indtastning af begravelsesprotokoller",
"type": "object",
"properties": [
{
"title": "Begravet person",
"type": "object",
"properties": {
"6": {
"parent_id": null,
"entity_id": "1",
"entity_field_id": "6",
"title": "Alder",
"type": "integer",
"pattern": "/\\d{1,}/",
"description": null,
"validationMessage": "Skal udfyldes",
"default": null
},
"3": {
"parent_id": null,
"entity_id": "1",
"entity_field_id": "3",
"title": "Fødested",
"type": "autocomplete",
"pattern": "",
"description": "Vælg et fødested på listen",
"validationMessage": "Fødested udfyldes",
"default": null
},
"2": {
"parent_id": null,
"entity_id": "1",
"entity_field_id": "2",
"title": "Efternavn",
"type": "string",
"pattern": "",
"description": "Indtast alle andre navne end fornavnet",
"validationMessage": "Efternavn skal udfyldes",
"default": null
},
"1": {
"parent_id": null,
"entity_id": "1",
"entity_field_id": "1",
"title": "Fornavn",
"type": "string",
"pattern": "",
"description": "Indtast personens første navn her",
"validationMessage": "Fornavnet skal udfyldes",
"default": null
},
"Ægtefæller": {
"title": "Ægtefæller",
"type": "array",
"items": [
{
"parent_id": "1",
"entity_id": "2",
"entity_field_id": "5",
"title": "5",
"type": "object",
"pattern": "",
"description": "Indtast alle andre navne end fornavnet",
"validationMessage": "Efternavn skal udfyldes",
"default": null
},
{
"parent_id": "1",
"entity_id": "2",
"entity_field_id": "4",
"title": "4",
"type": "object",
"pattern": "",
"description": "Indtast personens første navn her",
"validationMessage": "Fornavnet skal udfyldes",
"default": null
}
],
"required": [
"5",
"4"
]
},
"Stillinger": {
"title": "Stillinger",
"type": "array",
"items": [
{
"parent_id": "1",
"entity_id": "3",
"entity_field_id": "7",
"title": "7",
"type": "object",
"pattern": "",
"description": null,
"validationMessage": "",
"default": null
}
],
"required": []
}
},
"required": [
"6",
"3",
"2",
"1"
]
}
]
},
"steps": [
{
"id": "1",
"name": "teststep",
"description": "første step. Ever.",
"fields": [
"1",
"7"
]
},
{
"id": "2",
"name": "test2",
"description": "andet",
"fields": [
"2",
"3",
"6"
]
}
]
}