aboutsummaryrefslogtreecommitdiff
path: root/design-notes.md
diff options
context:
space:
mode:
Diffstat (limited to 'design-notes.md')
-rw-r--r--design-notes.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/design-notes.md b/design-notes.md
index c39f98c..9bcbeb5 100644
--- a/design-notes.md
+++ b/design-notes.md
@@ -119,7 +119,7 @@ Serialised item structure:
119 119
120```json 120```json
121{ 121{
122 /* common fields */ 122 "_comment": "common fields",
123 123
124 "title": "Some title", 124 "title": "Some title",
125 "date": "2019-12-20T16:51:52+00:00", 125 "date": "2019-12-20T16:51:52+00:00",
@@ -135,7 +135,7 @@ Serialised item structure:
135 "thumbnail": { "path": "[resource path]" }, 135 "thumbnail": { "path": "[resource path]" },
136 136
137 137
138 /* type-dependent */ 138 "_comment": "type-dependent",
139 139
140 "properties": { 140 "properties": {
141 "type": "image", 141 "type": "image",
@@ -150,7 +150,7 @@ Serialised item structure:
150 150
151 "properties": { 151 "properties": {
152 "type": "directory", 152 "type": "directory",
153 "items": [ /* item objects */ ] 153 "items": [ { "_comment": "item objects..." } ]
154 } 154 }
155} 155}
156``` 156```