api-spec-converter
Version:
Convert API descriptions between popular formats such as OpenAPI(fka Swagger), RAML, API Blueprint, WADL, etc.
27 lines (26 loc) • 640 B
JSON
{
"info": {
"title": "Nodejs",
"version": "1.0.0"
},
"openapi": "3.0.0",
"paths": {
"/articles": {
"get": {
"operationId": "ArticleController.getAll",
"responses": {
"200": {
"content": {
"application/json": {}
},
"description": "Successful response"
}
},
"summary": "Get all",
"tags": [
"Article"
]
}
}
}
}