使用OpenApi speccy V0.8.1工具。该工具将显示网站,但不会掉毛。 以下是简化的Hello World示例,不会掉毛。
{
"openapi": "3.0",
"info": {
"title": "Hello",
"version": "1.0.1"
},
"paths": {
"/hello_query": {
"get": {
"description": "Hello query",
"operationId": "hello_query",
"responses": {
"200": {
"description": "search results matching criteria",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}
}
}
}
}
答案 0 :(得分:0)
与"swagger": "2.0"
不同,OpenAPI 3.0的openapi
字段需要一个3-digit version number:
"openapi": "3.0.0"
或
"openapi": "3.0.1"