Last active
March 19, 2017 15:11
-
-
Save ponelat/0c312934db3ac86e5b7394c8b5b114db to your computer and use it in GitHub Desktop.
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
| swagger: '2.0' | |
| info: | |
| version: 1.0 | |
| title: GitHub API | |
| host: api.github.com | |
| schemes: | |
| - https | |
| paths: | |
| /users/{username}: | |
| get: | |
| summary: Get a single user | |
| produces: | |
| - application/json | |
| parameters: | |
| - in: path | |
| name: username | |
| description: The GitHub username of the user to get. | |
| required: true | |
| type: string | |
| responses: | |
| 200: | |
| description: Success |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment