3.44城市汽车尾号限行对象
# 3.44 城市汽车尾号限行对象
</br>
## 数据结构说明
| 字段 | 数据类型 | 释义 | 取值 | 取值释义 |
|----------|----------|------------------|------|----------|
| id | int | 目标对象ID | 355| |
| city| String | 城市名称 | | |
| date| String | 日期 | | |
| week| String | 星期 || |
| time| String | 限行时间段 | | |
| area| String | 限行区域 | | |
| summary| String | 限行情况说明 | | |
| number| String | 限行尾号 | | |
| numberrule| String | 尾号规则说明 | | |
</br>
## 返回结果json示例
~~~
输入:北京今天限行吗
输出:
{
"rtext":"北京限行概况:6月1日限行区域和指定时间内,本市号牌限行尾号2和7,外地车牌全部限行。",
"outc":0,
"actions":[
{
"action":"VIEW",
"target":{
"id":355,
"city":"北京",
"date":"2023-06-01",
"week":"星期四",
"time":"07:00-20:00",
"area":"五环路(不含)以内道路",
"summary":"本市号牌尾号限行;外地号牌工作日(07:00-09:00、17:00-20:00)全部限行,其他限行时间内尾号限行;法定上班的周六周日不限行。",
"number":"2和7",
"numberrule":"车牌号码最后一位数字,尾号为字母的按0号处理"
}
}
],
"intention":"CAR_RESTRICT"
}
~~~