Skip to content

Instantly share code, notes, and snippets.

@bitlyfied
Created October 14, 2022 17:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bitlyfied/129bd0e6ede657fda18245f7ada1d6fb to your computer and use it in GitHub Desktop.
Save bitlyfied/129bd0e6ede657fda18245f7ada1d6fb to your computer and use it in GitHub Desktop.
Testing swagger
{
"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