根据json模式

时间:2017-04-30 01:46:04

标签: swagger jsonschema swagger-2.0

我只有restrul api(我无法向我的api添加招摇文档)和我的json data model shcema。 我希望能够根据我的json data model架构生成客户端,以便我可以通过我的应用与restful api对话。

如何根据shema生成swagger客户端路由? 说我有这么简单的架构:

{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "house": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "type": {
            "type": "string"
          }
        }
      }
    }
  }
}

如何生成/添加get/put/delete swagger路由到我的架构,然后我可以为restful api生成一个合适的客户端?

0 个答案:

没有答案