Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extended library with Information about "responses" #127

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Expand Up @@ -169,6 +169,12 @@ methods:
type: boolean
isFormParameter:
type: boolean
responses:
type: object
description: Includes all defined response-codes and its JSONs schema
additionalProperties:
type: object
description: See the 'Response Object' section in the [Swagger 2.0 specification](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#response-object)
```

####Custom Mustache Variables
Expand Down
3 changes: 3 additions & 0 deletions lib/codegen.js
Expand Up @@ -149,6 +149,9 @@ var getViewForSwagger2 = function(opts, type){
parameter.cardinality = parameter.required ? '' : '?';
method.parameters.push(parameter);
});

method.responses = op.responses;

data.methods.push(method);
});
});
Expand Down