I\'m using http://editor.swagger.io to design an API and I get an error which I don\'t know how to address:
Schema error at paths[\'/employees/{employeeId}/r
The error message is misleading. The actual error is that your path parameter is missing required: true. Path parameters are always required, so remember to add required: true to them.
required: true