ccamara
03/10/2022, 8:35 AMJoshi
03/10/2022, 8:43 AMccamara
03/10/2022, 8:45 AMyaml
version: 1
schemas:
- id: daily
title: daily
desc: ""
parent: root
children:
- journal
- id: journal
title: journal
desc: ""
parent: root
children:
- year
- id: year
title: year
pattern: "[0-2][0-9][0-9][0-9]"
children:
- month
- id: month
title: month
pattern: "[0-9][0-9]"
children:
- day
- id: day
title: day
pattern: "[0-9][0-9]"
namespace: true
Joshi
03/10/2022, 8:48 AMjournal
to be daily
instead of root
ccamara
03/10/2022, 8:48 AMyaml
version: 1
schemas:
- id: daily
title: daily
desc: ""
parent: root
children:
- journal
- id: journal
title: journal
desc: ""
parent: daily
children:
- year
- id: year
title: year
pattern: "[0-2][0-9][0-9][0-9]"
children:
- month
- id: month
title: month
pattern: "[0-9][0-9]"
children:
- day
- id: day
title: day
pattern: "[0-9][0-9]"
namespace: true
template:
# identifier for the template (for a note based template, it would be the name of the note)
id: templates.journal.day
# what sort of template we are creating. currently, only 'note' is supported
type: note
Joshi
03/10/2022, 8:56 AMdaily.journal.2022.03.10
template : templates.journal.day
instead of
template:
id: templates.journal.day
type: note
ccamara
03/10/2022, 9:04 AMyaml
version: 1
schemas:
- id: daily
title: daily
desc: ""
parent: root
children:
- journal
- id: journal
title: journal
desc: ""
parent: daily
children:
- year
- id: year
title: year
pattern: "[0-2][0-9][0-9][0-9]"
children:
- month
- id: month
title: month
pattern: "[0-9][0-9]"
children:
- day
- id: day
title: day
pattern: "[0-9][0-9]"
# namespace: true
template:
# identifier for the template (for a note based template, it would be the name of the note)
id: templates.journal.day
# what sort of template we are creating. currently, only 'note' is supported
type: note
Joshi
03/10/2022, 9:12 AMnamespace: true
will prevent applying schema further to its children. So if it is commented, schema will apply to daily.journal.2022.03.10
but not daily.journal.2022.03.10.joshi
.ccamara
03/10/2022, 2:12 PM