Sure! Here's my schema (which is the same as that ...
# questions
c
Sure! Here's my schema (which is the same as that issue + the fix):
Copy code
yaml
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