widdershins icon indicating copy to clipboard operation
widdershins copied to clipboard

Allow Parameters and RequestBody to be separate tables

Open galvo opened this issue 4 years ago • 0 comments

Is your feature request related to a problem? Please describe.

Currently the parameters and requestBody are bundled together in the one table called parameters. It would be a nice feature to allow them to be operated into different parameters and body tables.

parameters:
- name: userId"
  in: "path"
  description: "Unique id of a User"
  required: true
  schema:
    type: "string"
requestBody:
  $ref: "#/componnets/requestBodies/User"

Parameters

Name In Type Required Description
userId path string true Unique id of a User
» firstName body string false none
» lastName body string false none
» email body [string] false none

Describe the solution you'd like

Parameters

Name In Type Required Description
userId path string true Unique id of a User

Body

Name In Type Required Description
» firstName body string false none
» lastName body string false none
» email body [string] false none

Describe alternatives you've considered A clear and concise description of any alternative solutions or features you've considered.

Additional context Add any other context or screenshots about the feature request here.

galvo avatar Sep 12 '19 17:09 galvo