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有没有办法解决这个问题?