# --==--==--==--==--==--==--==--==--==--==--==--==--==--==--==-- # # Bruno Charest # 2022-08-09 # # __ DESCRIPTIONS __ # joplin_json_utils : Types and procedure related to json request # # [TODO] joplin_json_utils : need to create many procedures # --==--==--==--==--==--==--==--==--==--==--==--==--==--==--==-- # # --==--==--==--==--==--==--==--==--==--==-- # # TYPE : Data structure for TAGS # --==--==--==--==--==--==--==--==--==--==-- # type Tag = object id : string parent_id : string title: string type Tags = object items: seq[Tag] has_more: string