The metadata that the obsidian-dataview plugin extracts from tasks. Extended to improve type information.

interface DataviewMarkdownTask {
    completion?: DateTime<boolean>;
    created?: DateTime<boolean>;
    due?: DateTime<boolean>;
    scheduled?: DateTime<boolean>;
    section: Link;
    start?: DateTime<boolean>;
    [key: string]: any;
}
Hierarchy
  • STask
    • DataviewMarkdownTask

Indexable

  • [key: string]: any

    Additional fields added by annotations.

Properties

completion?: DateTime<boolean>

If present, then the time that this task was completed.

created?: DateTime<boolean>

If present, then the time that this task was created.

due?: DateTime<boolean>

If present, then the time that this task was due.

scheduled?: DateTime<boolean>

If present, then the day that work on this task is scheduled.

section: Link

The section that contains this list item.

start?: DateTime<boolean>

If present, then the day that this task can be started.