filters: and: - note.type == "reading" properties: note.title: displayName: Title note.author: displayName: Author note.status: displayName: Status note.started: displayName: Started note.finished: displayName: Finished note.tags: displayName: Tags views: - type: table name: Currently reading filters: and: - note.status == "reading" order: - title - author - started - tags - type: table name: To read filters: and: - note.status == "to-read" order: - title - author - tags - type: table name: Done filters: and: - note.status == "done" order: - title - author - finished - tags sort: - property: finished direction: DESC