diff --git a/REQUEST_FORMAT.md b/REQUEST_FORMAT.md
index 74d43fa9c227f4a5d1235e3c8ed3eb50c35a6a48..789a5716847718a3b10fef0698513fac333fa9aa 100644
--- a/REQUEST_FORMAT.md
+++ b/REQUEST_FORMAT.md
@@ -9,15 +9,32 @@ and type-dependent data. e.g.
 ```
 {
     "type": "image",
-    "path": "/path/to/image"
+    "paths": [
+        {
+            path: "/path/to/image/",
+            url: "/url/to/more/information/or/full/size/image"
+        },
+        {
+            path: "/path/to/image2/",
+            url: "/different/url/to/more/information/or/full/size/image2"
+        }
+    ]
 }
 ```
 
 ```
 {
     "type": "text",
-    "text": "This will hopefully be useful information.",
-    "url": "link_to_external_page_with_more_information"
+    "texts": [
+        {
+            "text": "This will hopefully be useful information.",
+            "url": "http://example.com/"
+        },
+        {
+            "text": "This is about funny frog.",
+            "url": "/link/to/external/page"
+        }
+    ]
 }
 ```