我只有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
生成一个合适的客户端?