- Notes
- Images (png, svg, eps, etc)
- HTML canvas states/editable images
- This could just be saved as a png
- The UID is constructed as follows
- Required information is item content, tags, name (does not have to be unique), type (will be an enum)
- For images, the content will be the file identifier for the corresponding image stored on the file system
- Items can be retrieved quickly using a global UID
- Items can be searched by tag
- Items can be searched by title
- Future optimizations
- Caching titles/tags and the corresponding UIDs
- Maybe making a secondary table
{
"UID": "SOMERANDOMUNIQUESTRING",
"name": "maybe/uri/structure",
"content": "Markdown, base64",
"tags": [
"array",
"of",
"tags"
]
}