是否可以为对某个请求的每个响应指定描述?假设我们有一个请求
### Retrieve resource [GET]
+ Headers
If-None-Match: "Version1"
和 2 个回应
+ Response 200 (application/xml)
+ Headers
ETag: "Version2"
+ Body
<Xml>
<A>
<B />
<C />
</A>
</Xml>
+ Response 304 (application/xml)
我想在这里指定描述(请在行下方注明注释+ Response
):
+ Response 200 (application/xml)
In case if the resource hasn't changed
+ Headers
ETag: "Version2"
+ Body
<Xml>
<A>
<B />
<C />
</A>
</Xml>
+ Response 304 (application/xml)
In case if the resource has changed
可能吗?