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

More [GET] request-response examples with different URI parameters

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

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

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

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

GET /lessons/de/easy 会 return:

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

这是我的语法(在下方)不起作用。

这是预览中的样子。

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

谢谢。