# 數據格式
觸發器返回的數據格式
| 名稱 | 類型 | 說明 | 例子 |
| --- | --- | --- | --- |
| text | string | 純文本 | hello |
| sleep | int | 延時多少秒后繼續 | 2000 |
| image | string | 發送圖片文件的url地址 | http://x.com/x.jpg |
| video | string | 發送視頻文件的url地址 | http://x.com/x.mp4 |
## 返回示例
> 格式為 `application/json`, `array` 數組
``` json
[
{ "type": "text", "data": "hello" },
{ "type": "sleep", "data": 2000 },
{ "type": "image", "data": "http://x.com/x.jpg" }
]
```