我有一个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"
}]
这是我的语法(如下所示)无效。
这就是它在预览中的样子。
答案 0 :(得分:2)
API Blueprint目前无法实现这一目标。但是我们在https://github.com/apiaryio/api-blueprint/issues/58有一个关于此问题的功能请求,我们计划很快实现这一功能。
感谢。