Interface DataviewMarkdownTask
interface DataviewMarkdownTask {
completion?: DateTime<boolean>;
created?: DateTime<boolean>;
due?: DateTime<boolean>;
scheduled?: DateTime<boolean>;
section: Link;
start?: DateTime<boolean>;
[key: string]: any;
}
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.
Index
Properties
Properties
Optional
completion
If present, then the time that this task was completed.
Optional
created
If present, then the time that this task was created.
Optional
due
If present, then the time that this task was due.
Optional
scheduled
If present, then the day that work on this task is scheduled.
section
section: Link
The section that contains this list item.
Optional
start
If present, then the day that this task can be started.
The metadata that the obsidian-dataview plugin extracts from tasks. Extended to improve type information.