Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix missing RequestBody.required
  • Loading branch information
ackintosh committed Jan 8, 2019
commit d7af1d9f40705c15fd9acd6af2f7a2a45f979f55
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ private void flattenRequestBody(OpenAPI openAPI, String pathname, Operation oper

// create request body
RequestBody rb = new RequestBody();
rb.setRequired(requestBody.getRequired());
Content content = new Content();
MediaType mt = new MediaType();
Schema schema = new Schema();
Expand Down