Skip to content

Instantly share code, notes, and snippets.

@blugavere
Last active April 5, 2017 23:08
Show Gist options
  • Save blugavere/dbf15ff95fa08ce785ecb84780c74eac to your computer and use it in GitHub Desktop.
Save blugavere/dbf15ff95fa08ce785ecb84780c74eac to your computer and use it in GitHub Desktop.
// swagger.json
{
"swagger": "2.0",
"info": {
"title": "Example API",
"version": "1.0.0"
},
"host": "localhost:3000",
"basePath": "/",
"produces": [
"application/json"
],
"paths": {
"data": {
"get": {
"summary": "Get a cat",
"description": "Cats ",
"responses": {
"200": {
"description": "cat",
"schema": {
"properties": {
"name": {
"type": "string"
}
}
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment