generated from ergebnis/php-package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.json
485 lines (485 loc) · 13.5 KB
/
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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
{
"$schema": "https://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"definitions": {
"entry": {
"additionalProperties": false,
"description": "An entry",
"properties": {
"creationDate": {
"description": "The date and time of when the entry was created",
"format": "date-time",
"type": "string"
},
"creationDevice": {
"description": "The name of the device on which the entry was created",
"type": "string"
},
"creationDeviceModel": {
"description": "The model of the device on which the entry was created",
"type": "string"
},
"creationDeviceType": {
"description": "The type of the device on which the entry was created",
"type": "string"
},
"creationOSName": {
"description": "The name of the operating system on which the entry was created",
"type": "string"
},
"creationOSVersion": {
"description": "The version of the operating system on which the entry was created",
"type": "string"
},
"duration": {
"description": "The duration of the entry creation",
"type": "integer"
},
"editingTime": {
"description": "The editing time of the entry creation",
"type": "number"
},
"isAllDay": {
"description": "Whether the entry is for a whole day or not",
"type": "boolean"
},
"isPinned": {
"description": "Whether the entry is pinned or not",
"type": "boolean"
},
"location": {
"$ref": "#/definitions/location",
"description": "The location of the entry creation"
},
"modifiedDate": {
"description": "The date and time of when the entry was created",
"format": "date-time",
"type": "string"
},
"music": {
"$ref": "#/definitions/music",
"description": "The music that was playing when the entry was created"
},
"photos": {
"description": "The photos of the entry",
"items": {
"$ref": "#/definitions/photo"
},
"type": "array"
},
"richText": {
"description": "The rich text of the entry as JSON",
"type": "string"
},
"sourceString": {
"type": "string"
},
"starred": {
"description": "Whether the entry is starred or not",
"type": "boolean"
},
"tags": {
"description": "An array of tags",
"items": {
"type": "string"
},
"type": "array"
},
"template": {
"$ref": "#/definitions/template",
"description": "The template that was used to create the entry"
},
"text": {
"description": "The Markdown text of the entry",
"type": "string"
},
"timeZone": {
"description": "The time zone of the entry creation",
"type": "string"
},
"userActivity": {
"$ref": "#/definitions/userActivity",
"description": "The user activity at the time of entry creation"
},
"uuid": {
"description": "The UUID of the entry",
"type": "string"
},
"weather": {
"$ref": "#/definitions/weather",
"description": "The weather at the time of entry creation"
}
},
"required": [
"creationDate",
"creationDevice",
"duration",
"modifiedDate",
"starred",
"timeZone",
"uuid"
],
"type": "object"
},
"location": {
"additionalProperties": false,
"properties": {
"administrativeArea": {
"description": "The administrative area of the location",
"type": "string"
},
"country": {
"description": "The country of the location",
"type": "string"
},
"foursquareID": {
"description": "The FourSquare ID of the place",
"type": "string"
},
"latitude": {
"description": "The latitude of the location",
"type": "number"
},
"localityName": {
"description": "The name of the locality of the location",
"type": "string"
},
"longitude": {
"description": "The latitude of the location",
"type": "number"
},
"placeName": {
"description": "The name of the place",
"type": "string"
},
"region": {
"description": "The region of the location",
"properties": {
"center": {
"additionalProperties": false,
"description": "The center of the region",
"properties": {
"latitude": {
"description": "The latitude of the center",
"type": "number"
},
"longitude": {
"description": "The longitude of the center",
"type": "number"
},
"radius": {
"description": "The radius",
"type": "integer"
}
},
"required": [
"latitude",
"longitude"
],
"type": "object"
}
},
"type": "object"
},
"timeZoneName": {
"description": "The name of the timezone of the place",
"type": "string"
},
"userLabel": {
"description": "A user label for the place",
"type": "string"
}
},
"required": [
"latitude",
"longitude",
"placeName",
"region"
],
"type": "object"
},
"music": {
"additionalProperties": false,
"description": "Music",
"properties": {
"album": {
"description": "The name of the album",
"type": "string"
},
"albumYear": {
"description": "The year of the album",
"type": "integer"
},
"artist": {
"description": "The name of the artist",
"type": "string"
},
"track": {
"description": "The name of the track",
"type": "string"
}
},
"required": [
"album",
"albumYear",
"artist",
"track"
],
"type": "object"
},
"photo": {
"additionalProperties": false,
"description": "A photo",
"properties": {
"appleCloudIdentifier": {
"description": "The iCloud identifier of the photo",
"type": "string"
},
"cameraMake": {
"description": "The make of the camera with which the photo was created",
"type": "string"
},
"cameraModel": {
"description": "The model of the camera with which the photo was created",
"type": "string"
},
"creationDevice": {
"description": "The name of the device on which the photo was created",
"type": "string"
},
"date": {
"description": "The date and time of when the photo was created",
"format": "date-time",
"type": "string"
},
"duration": {
"description": "The duration of the photo creation",
"type": "integer"
},
"exposureBiasValue": {
"description": "The exposure bias value of the photo",
"type": "number"
},
"favorite": {
"description": "Whether the photo is a favorite or not",
"type": "boolean"
},
"fileSize": {
"description": "The file size of the photo",
"type": "integer"
},
"filename": {
"description": "The file name of the photo",
"type": "string"
},
"fnumber": {
"description": "The fnumber of the photo",
"type": "string"
},
"focalLength": {
"description": "The focal length of the photo",
"type": "string"
},
"height": {
"description": "The height of the photo",
"type": "integer"
},
"identifier": {
"description": "The identifier of the photo",
"type": "string"
},
"isSketch": {
"description": "Whether the photo is a sketch or not",
"type": "boolean"
},
"lensMake": {
"description": "The make of the lens with which the photo was created",
"type": "string"
},
"lensModel": {
"description": "The model of the lens with which the photo was created",
"type": "string"
},
"location": {
"$ref": "#/definitions/location",
"description": "The location of where the photo was created"
},
"md5": {
"description": "The MD5 hash of the photo",
"type": "string"
},
"orderInEntry": {
"description": "The order of the photo in the entry",
"type": "integer"
},
"type": {
"description": "The type of the photo",
"type": "string"
},
"width": {
"description": "The width of the photo",
"type": "integer"
}
},
"required": [
"creationDevice",
"duration",
"fnumber",
"focalLength",
"height",
"identifier",
"isSketch",
"md5",
"orderInEntry",
"type",
"width"
],
"type": "object"
},
"template": {
"additionalProperties": false,
"description": "A template",
"properties": {
"richTextJSON": {
"description": "The rich text of the template as JSON",
"type": "string"
},
"title": {
"description": "The title of the template",
"type": "string"
},
"userModifiedDate": {
"description": "The date and time when the template was modified",
"format": "date-time",
"type": "string"
},
"uuid": {
"description": "The UUID of the template",
"type": "string"
}
},
"required": [
"richTextJSON",
"title",
"userModifiedDate",
"uuid"
],
"type": "object"
},
"userActivity": {
"additionalProperties": false,
"description": "A user activity",
"properties": {
"activityName": {
"description": "The name of the activity",
"type": "string"
},
"stepCount": {
"description": "The number of steps",
"type": "integer"
}
},
"type": "object"
},
"weather": {
"additionalProperties": false,
"properties": {
"conditionsDescription": {
"description": "The description of the weather conditions",
"type": "string"
},
"moonPhase": {
"description": "The moon phase",
"type": "number"
},
"moonPhaseCode": {
"description": "The code of the moon phase",
"type": "string"
},
"pressureMB": {
"description": "The pressure in millibars",
"type": "number"
},
"relativeHumidity": {
"description": "The relative humidity",
"type": "integer"
},
"sunriseDate": {
"description": "The date and time of the sunrise",
"format": "date-time",
"type": "string"
},
"sunsetDate": {
"description": "The date and time of the sunset",
"format": "date-time",
"type": "string"
},
"temperatureCelsius": {
"description": "The temperature in Celsius",
"type": "number"
},
"visibilityKM": {
"description": "The visibility in kilometers",
"type": "number"
},
"weatherCode": {
"description": "The code of the weather",
"type": "string"
},
"weatherServiceName": {
"description": "The name of the weather service",
"type": "string"
},
"windBearing": {
"description": "The wind bearing",
"type": "integer"
},
"windChillCelsius": {
"description": "The wind chill in Celsius",
"type": "number"
},
"windSpeedKPH": {
"description": "The wind speed in kilometers per hour",
"type": "number"
}
},
"required": [
"conditionsDescription",
"relativeHumidity",
"temperatureCelsius",
"weatherCode",
"weatherServiceName"
],
"type": "object"
}
},
"properties": {
"entries": {
"description": "An array of entries",
"items": {
"$ref": "#/definitions/entry"
},
"type": "array"
},
"metadata": {
"additionalProperties": false,
"description": "Metadata of the journal",
"properties": {
"version": {
"description": "Version of the JSON file",
"type": "string"
}
},
"required": [
"version"
],
"type": "object"
}
},
"required": [
"entries",
"metadata"
],
"title": "DayOne JSON file",
"type": "object"
}