我需要在Swagger仪表板的请求正文中添加示例Json,以便用户可以更改所需的属性值,并使用Swagger仪表板中的“试用”按钮进行POST校准。 其他一切工作正常,使用scalatra-swagger。 这是我的工作代码段:
val saveFormHeaders =
(apiOperation[String]("saveFormHeaders")
summary "Save a form header"
notes "POST for new form header"
parameter bodyParam[String]("body").description("Form header json to save").required //need the syntax to insert an example JSON for the req body
)
post("/data/formHeader",operation(saveFormHeaders)) {
**some code**}
我找不到使用上面的无注释swagger scalatra语法在请求正文中添加示例Json的确切语法。