ex
Fork of mbed-os-example-mbed5-blinky by
Diff: dumi_doc-master/doc/bot/duer_weather.md
- Revision:
- 44:c1d8923072ba
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/dumi_doc-master/doc/bot/duer_weather.md Tue Jul 18 16:27:22 2017 +0800
@@ -0,0 +1,104 @@
+# weather bot输出schema
+
+## 天气意图(intent:weather)
+```javascript
+//query = 今天天气咋样
+{
+ "result": {
+ "resource": {
+ "type": "weather",
+ "data": {
+ "city": "北京",
+ "current_temp": "14℃",
+ "pm25": "132",
+ "temp": "11℃~25℃",
+ "time": "周四 04月06日",
+ "weather": "多云转阴",
+ "weather_all": "多云转阴,11℃~25℃,南风微风",
+ "wind": "南风微风",
+ "weather_info": [
+ {
+ "current_temp": "14℃",
+ "icon": "http://s1.bdstatic.com/r/www/aladdin/img/new_weath/bigicon/5.png",
+ "pm25": "132",
+ "pm_level": "轻度污染",
+ "temp": "11℃~25℃",
+ "time": "周四 04月06日",
+ "weather": "多云转阴",
+ "wind": "南风微风"
+ },
+ {
+ "icon": "http://s1.bdstatic.com/r/www/aladdin/img/new_weath/icon/3.png",
+ "temp": "14℃~22℃",
+ "time": "周五 04月07日",
+ "weather": "阴",
+ "wind": "南风微风"
+ },
+ {
+ "icon": "http://s1.bdstatic.com/r/www/aladdin/img/new_weath/icon/5.png",
+ "temp": "7℃~19℃",
+ "time": "周六 04月08日",
+ "weather": "多云",
+ "wind": "南风微风"
+ },
+ {
+ "icon": "http://s1.bdstatic.com/r/www/aladdin/img/new_weath/icon/5.png",
+ "temp": "10℃~20℃",
+ "time": "周日 04月09日",
+ "weather": "多云转阴",
+ "wind": "南风微风"
+ },
+ {
+ "icon": "http://s1.bdstatic.com/r/www/aladdin/img/new_weath/icon/3.png",
+ "temp": "10℃~21℃",
+ "time": "周一 04月10日",
+ "weather": "阴转晴",
+ "wind": "南风微风"
+ }
+ ]
+ }
+ },
+ "bot_id": "duer_weather",
+ "bot_meta": {
+ "version": "1.0.0",
+ "type": "其他",
+ "description": "desc"
+ },
+ "views": [
+ {
+ "type": "list",
+ "list": [
+ {
+ "title": "北京市今天多云转阴",
+ "summary": "实时:14℃\n温度:11℃~25℃\n风力:南风微风\n空气质量指数:132,轻度污染\n来源:中国天气网",
+ "url": "https://m.baidu.com/from=2001a/s?word=北京市天气",
+ "image": "http://xiaodu.baidu.com/img/pic?pic_id=47950952"
+ }
+ ]
+ }
+ ],
+ "nlu": {
+ "domain": "duer_weather",
+ "intent": "sys_weather", //(还包括:SYS_AQI(空气指数)、SYS_CLOTHES(穿衣指数)、SYS_RAIN(下雨天)、SYS_SNOW(下雪天)
+、SYS_SUNNY(晴天)、SYS_TEMP(温度)、SYS_ULTRAVIOLET(紫外线指数)、SYS_WIND(刮风天)、SYS_LOW_TEMP(低温)、SYS_HIGH_TEMP(高温)、SYS_EXERCISE(运动指数)、SYS_TRIP(旅行指数)、SYS_WASH_CAR(洗车指数)、SYS_INFLUENZA(感冒指数),均为小写
+ "slots": {
+ "loc_city": "北京市",
+ "loc_province": "北京市",
+ "time": "2017-04-06,2017-04-06"
+ }
+ },
+ "speech": {
+ "type": "Text",
+ "content": "北京今天多云转阴,11℃~25℃,南风微风。空气质量指数为132,轻度污染。"
+ }
+ },
+ "id": "1491444790_995cbnd5u",
+ "logid": "14914447905270",
+ "user_id": "test",
+ "time": 1491444790,
+ "cuid": null,
+ "se_query": "天气咋样",
+ "msg": "ok",
+ "status": 0
+}
+```
