Created
December 8, 2021 13:53
-
-
Save nixel2007/feb7fa127b7c8dd08f8270c97870c49f to your computer and use it in GitHub Desktop.
swagger.json
This file contains 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
{ | |
"swagger": "2.0", | |
"info": { | |
"description": "Authorization service", | |
"version": "сервис авторизации", | |
"title": "AuthorizationService", | |
"termsOfService": "" | |
}, | |
"host": "", | |
"basePath": "/auth", | |
"tags": [ | |
{ | |
"name": "Kiosk", | |
"description": "" | |
} | |
], | |
"schemes": [ | |
"http", | |
"https" | |
], | |
"paths": { | |
"/kiosk": { | |
"post": { | |
"tags": [ | |
"Kiosk" | |
], | |
"summary": "Возвращает настройки для приложения \"киоск\"", | |
"description": "kioskgetAppSettings", | |
"consumes": [], | |
"produces": [], | |
"parameters": [], | |
"responses": { | |
"200": { | |
"description": "successful operation" | |
} | |
} | |
} | |
} | |
}, | |
"definitions": {}, | |
"externalDocs": { | |
"description": "Find out more about Swagger", | |
"url": "http://swagger.io" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment