Created
October 14, 2022 17:09
-
-
Save bitlyfied/129bd0e6ede657fda18245f7ada1d6fb to your computer and use it in GitHub Desktop.
Testing swagger
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"basePath": "/api", | |
"consumes": [ | |
"application/json" | |
], | |
"host": "myapi.com", | |
"info": { | |
"title": "Swagger API for CollegeBackerWeb.RestApi" | |
}, | |
"paths": { | |
"/users/{uuid}": { | |
"get": { | |
"description": "", | |
"parameters": [ | |
{ | |
"description": "", | |
"in": "path", | |
"name": "uuid", | |
"required": true, | |
"type": "string" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "ok" | |
} | |
}, | |
"summary": "", | |
"tags": [ | |
"DEFAULT" | |
] | |
} | |
} | |
}, | |
"produces": [ | |
"application/json", | |
"application/vnd.api+json" | |
], | |
"schemes": [ | |
"http" | |
], | |
"swagger": "2.0", | |
"tags": [ | |
{ | |
"name": "DEFAULT" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment