-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdaily.schema.yml
55 lines (55 loc) · 883 Bytes
/
daily.schema.yml
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
version: 1
schemas:
- id: daily
title: daily
desc: "Daily Journal"
parent: root
children:
- journal
- id: journal
title: journal
desc: "Journal"
children:
- year
- id: year
title: year
pattern: "[0-2][0-9][0-9][0-9]"
children:
- month
- id: month
title: month
pattern: "[0-1][0-9]"
children:
- day
- id: day
title: day
pattern: "[0-3][0-9]"
template:
id: template.daily
type: note
children:
- meet
- note
- weeklyreview
- worktime
- id: meet
title: meet
desc: "Meeting Notes"
namespace: true
template:
id: template.meeting
type: note
- id: note
namespace: true
- id: weeklyreview
title: weeklyreview
desc: "Weekly Review"
template:
id: template.weeklyreview
type: note
- id: worktime
title: worktime
desc: "Worktime"
template:
id: template.worktime
type: note