更多[GET]具有不同URI参数的请求 - 响应示例

时间:2015-07-01 12:54:36

标签: parameters apiblueprint blueprint apiary.io apiary

我有一个URI:/ lessons / {language} / {type}

我希望在我的蓝图中有更多模拟请求 - 具有不同参数{language}和{type}的响应。在我看来,这对GET方法来说是不可能的。

我的想法是:GET / lessons / cs / easy会返回:

    [{
      "id": 1, "title": "Střední řada: s, l"
    }, {
      "id": 2, "title": "Střední řada: g, h"
    }]     

GET / lessons / de / easy将返回:

    [{
      "id": 1, "title": "Mittle words: s, l"
    }, {
      "id": 2, "title": "Mittle words: g, h"
    }] 

这是我的语法(如下所示)无效。

This syntax not working. I would like to have something like this

这就是它在预览中的样子。 This is how it looks like in preview.

1 个答案:

答案 0 :(得分:2)

API Blueprint目前无法实现这一目标。但是我们在https://github.com/apiaryio/api-blueprint/issues/58有一个关于此问题的功能请求,我们计划很快实现这一功能。

感谢。