JSON格式
| Name | Type | Read-only | Comment | 
|---|---|---|---|
| keys | array | yes | 由每一天的时间戳为单位组成的数组 | 
| values | array | yes | 每天相应的数量 | 
| id | integer | yes | 文档id | 
| title | string | yes | 文档名称 | 
| author | string | yes | 作者名称 | 
| createdTime | integer | yes | 创建时间 | 
| updatedTime | integer | yes | 最近更新时间 | 
| count_comments | integer | yes | 评论数目 | 
| count_vote | integer | yes | 点赞数目 | 
| count_view | integer | yes | 浏览次数 | 
| forumTitle | string | yes | 分类标题 | 
JSON 示例
{
    "post": {
        "keys": [
            1514736000,
            1514822400,
            1514908800
            ],
        "values": [
            1,
            1,
            1
        ],
        "title": "帮助文档"
    },
    "posts_list": [
            {
                "id": "1101100",
                "title": "售前必看",
                "values":
                    {
                        "author": "王浩",
                        "createdTime": "1511259662",
                        "updatedTime": "1511259723",
                        "replyCount": "0",
                        "forumTitle": "分类1",
                        "viewNum": 0,
                        "countVote": 0
                    }
            },
            {
                "id": "1101094",
                "title": "故障申报查询",
                "values":
                    {
                        "author": "王浩",
                        "createdTime": "1511259456",
                        "updatedTime": "1511259457",
                        "replyCount": "0",
                        "forumTitle": "分类1",
                        "viewNum": 0,
                        "countVote": 0
                    }
            },
            {
                "id": "1101089",
                "title": "保修单格式",
                "values":
                    {
                        "author": "吕贵",
                        "createdTime": "1511259194",
                        "updatedTime": "1511259194",
                        "replyCount": "0",
                        "forumTitle": "分类1",
                        "viewNum": 0,
                        "countVote": 0
                     }
            },
    ],
    "count": {
        "post": "6",
        "vote": "1",
        "view": "9",
        "comment": "0"
    }}