32 lines
617 B
JSON
32 lines
617 B
JSON
{
|
|
"openapi": "3.0.0",
|
|
"info": {
|
|
"title": "Next Swagger API Example",
|
|
"version": "1.0"
|
|
},
|
|
"paths": {
|
|
"/api/endpoint/getlogin_api": {
|
|
"tags": "Hello",
|
|
"get": {
|
|
"description": "Returns the hello world",
|
|
"responses": {
|
|
"200": {
|
|
"description": "hello world"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"/api/endpoint/getlpa_api": {
|
|
"get": {
|
|
"description": "Returns the hello world",
|
|
"responses": {
|
|
"200": {
|
|
"description": "hello world"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"components": {},
|
|
"tags": []
|
|
} |