有没有办法在Paw中支持JSON模式引用?

时间:2018-02-27 12:49:53

标签: paw-app

Paw有很好的工具来记录简单的API,但现在我需要做一些更复杂的事情,我想使用JSON Schema引用。

例如,与Swagger 2.0 examples中的以下代码段一样,definitions稍后会在文档中显示:

"post": {
  "description": "Creates a new pet in the store.  Duplicates are allowed",
  "operationId": "addPet",
  "parameters": [
    {
      "name": "pet",
      "in": "body",
      "description": "Pet to add to the store",
      "required": true,
      "schema": {
        "$ref": "#/definitions/NewPet"
      }
    }
  ],
...

Paw有没有办法解决这个问题?

0 个答案:

没有答案