-
Notifications
You must be signed in to change notification settings - Fork 2
/
nissaga-schema.json
319 lines (319 loc) · 9.14 KB
/
nissaga-schema.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
{
"title": "Nissaga",
"description": "Top level element containing the data required to build a family tree",
"type": "object",
"properties": {
"styles": {
"title": "Styles",
"type": "object"
},
"families": {
"title": "Families",
"type": "array",
"items": {
"$ref": "#/definitions/Family"
}
},
"people": {
"title": "People",
"default": {},
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/Person"
}
}
},
"additionalProperties": false,
"definitions": {
"Person": {
"title": "Person",
"description": "Represents the data of a person",
"type": "object",
"properties": {
"fullname": {
"title": "Fullname",
"description": "Surnames are placed first, followed by a comma and then the first name. If no comma, it is just considered the first name",
"type": "string"
},
"name": {
"title": "Name",
"description": "TODO: Explain difference between id, name, fullname and alias. ",
"type": "string"
},
"alias": {
"title": "Alias",
"description": "TODO: Explain difference between id, name, fullname and alias. ",
"type": "string"
},
"born": {
"title": "Born",
"description": "Date of birth or false to indicate stillborn, or true to indicate unknown date or a year or a string annotation.",
"default": true,
"anyOf": [
{
"type": "boolean"
},
{
"type": "integer"
},
{
"type": "string",
"format": "date"
},
{
"type": "string"
}
]
},
"died": {
"title": "Died",
"description": "Date of death of true to indicate dead but unknown date or a year or a string annotation.",
"default": false,
"anyOf": [
{
"type": "boolean"
},
{
"type": "integer"
},
{
"type": "string",
"format": "date"
},
{
"type": "string"
}
]
},
"age": {
"title": "Age",
"description": "Age at death, instead of `died`. Just for the record, not shown. Sometimes is the only information available in gravestones.",
"type": "integer"
},
"from": {
"title": "From",
"description": "Place of origin. Just for the record, not shown.",
"type": "string"
},
"comment": {
"title": "Comment",
"description": "Any comments regarding the person information gathering. Just for the record, not shown.",
"default": [],
"anyOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"notes": {
"title": "Notes",
"description": "Any comments regardin the person.Just for the record, not shown.",
"default": [],
"anyOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"todo": {
"title": "Todo",
"description": "A list of pending tasks about the person information gathering. Just for the record, not shown.",
"default": [],
"anyOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"pics": {
"title": "Pics",
"description": "A list of image files containing pictures of the person. The first one is used as avatar and it should have an almost squared aspect ratio.",
"default": [],
"type": "array",
"items": {
"type": "string"
}
},
"docs": {
"title": "Docs",
"description": "A list of files serving as documentation of the gathered information.",
"default": [],
"type": "array",
"items": {
"type": "string"
}
},
"links": {
"title": "Links",
"description": "A list of links related to the person. Clicking on the person box will go to the first one.",
"default": [],
"type": "array",
"items": {
"type": "string",
"minLength": 1,
"maxLength": 65536,
"format": "uri"
}
},
"gender": {
"title": "Gender",
"description": "Not used yet.",
"type": "string"
},
"class": {
"title": "Class",
"description": "Space separated style classes for the person. Specific attributes can be specified for the persons having a given class.",
"default": [],
"type": "array",
"items": {
"type": "string"
}
}
},
"additionalProperties": false
},
"Family": {
"title": "Family",
"description": "Represents a family kernel with parents and children and any descendant family",
"type": "object",
"properties": {
"parents": {
"title": "Parents",
"description": "Parents of the family. You can use the person's id, or detail the person inline.",
"default": [],
"type": "array",
"items": {
"anyOf": [
{
"type": "string"
},
{
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/Person"
}
}
]
}
},
"children": {
"title": "Children",
"description": "Children of the family. You can use the person's id, or detail the person inline.",
"default": [],
"type": "array",
"items": {
"anyOf": [
{
"type": "string"
},
{
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/Person"
}
}
]
}
},
"married": {
"title": "Married",
"description": "Date of marriage. False to indicate unmarried couple, or true to indicate unknown date or a year or a string annotation after the marriage symbol.",
"default": true,
"anyOf": [
{
"type": "boolean"
},
{
"type": "integer"
},
{
"type": "string",
"format": "date"
},
{
"type": "string"
}
]
},
"divorced": {
"title": "Divorced",
"description": "Date of divorce. If false, the default, nothing is shown. Set to true to show a divorce symbol. If it is a date, an integer (year) or any other string, will be displayeed after the divorce symbol.",
"default": false,
"anyOf": [
{
"type": "boolean"
},
{
"type": "integer"
},
{
"type": "string",
"format": "date"
},
{
"type": "string"
}
]
},
"house": {
"title": "House",
"description": "House the family belongs to. It is represented by a labeled gray box grouping the persons",
"type": "string"
},
"notes": {
"title": "Notes",
"description": "Any comments regardin the family.Just for the record, not shown.",
"default": [],
"anyOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
]
},
"docs": {
"title": "Docs",
"description": "A list of files serving as documentation of the gathered information.",
"default": [],
"type": "array",
"items": {
"type": "string"
}
},
"families": {
"title": "Families",
"description": "Subfamilies. They can be defined when children become parents in their own families. Nesting is not mandatory, just to keep data in a tree like structure if you prefer that. You could alternatively define children's families at the same level.",
"default": [],
"type": "array",
"items": {
"$ref": "#/definitions/Family"
}
}
},
"additionalProperties": false
}
}
}