Skip to content
Snippets Groups Projects
Commit 76581578 authored by Welter, Felix's avatar Welter, Felix
Browse files

Add multi item support to standard request format documentation

parent 24b8710e
No related branches found
No related tags found
No related merge requests found
......@@ -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",
"texts": [
{
"text": "This will hopefully be useful information.",
"url": "link_to_external_page_with_more_information"
"url": "http://example.com/"
},
{
"text": "This is about funny frog.",
"url": "/link/to/external/page"
}
]
}
```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment