A hierarchical way of organising content in MindDrop.
Topics provide a hierarchical way of organising content inside of MindDrop. They can be nested inside of other topics (then referred to as subtopics). A topic can appear as a subtopic inside multiple other topics.
Topics which appear at the top level of the hierarchy are referred to as root topics. Note that root topics can still be included as subtopics inside other topics.
Property | Type | Description |
---|---|---|
id* | string | Universally unique ID. |
title* | string | The topic title. |
parents* | TopicParentReference | The references of the topic's parents, see below for details. |
subtopics* | string[] | The IDs of the (active) topics inside the topic. |
archivedSubtopics* | string[] | The IDs of the archived topics inside the topic. |
drops* | string[] | The IDs of the (active) drops inside the topic. |
archivedDrops* | string[] | The IDs of the archived drops inside the topic. |
tags* | string[] | IDs of the tags belonging to the topic. |
createdAt* | Date | The timestamp at which the topic was created. |
updatedAt* | Date | The timestamp at which the topic was last updated. Equal to the createdAt value if the topic has not been updated. |
archived | true | If true , the topic is archived. Not present if the topic is not archived. |
archivedAt | Date | Timestamp at which the topic was archived. Only set ifarchived is true . |
deleted | true | If true , the topic is in the trash. Not present if the topic is not deleted. |
deletedAt | Date | Timestamp at which the topic was deleted. Only set ifdeleted is true . |
hidden | true | If true , the topic will be hidden. Not present if the topic is not hidden. |
Property | Type | Description |
---|---|---|
type* | string | The type of parent, e.g. 'topic' |
id* | string | The ID of the parent. |