mirror of
https://github.com/davidebianchi/gswagger.git
synced 2026-01-07 22:58:37 -05:00
29 lines
525 B
JSON
29 lines
525 B
JSON
{
|
|
"info": {
|
|
"title": "test swagger title",
|
|
"version": "test swagger version"
|
|
},
|
|
"openapi": "3.0.0",
|
|
"paths": {
|
|
"/projects": {
|
|
"get": {
|
|
"parameters": [
|
|
{
|
|
"description": "projectId is the project id",
|
|
"in": "query",
|
|
"name": "projectId",
|
|
"schema": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
],
|
|
"responses": {
|
|
"default": {
|
|
"description": ""
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|