Matt Sicker created CAMEL-9537:
----------------------------------
Summary: Specifying allowableValues in
RestOperationParamDefinition is not output as an enum in swagger output
Key: CAMEL-9537
URL: https://issues.apache.org/jira/browse/CAMEL-9537
Project: Camel
Issue Type: Bug
Components: camel-swagger
Affects Versions: 2.16.1
Reporter: Matt Sicker
Doing something like this:
{code}
rest("/").post("{siteKey}/{userId}")
.param()
.name("siteKey")
.allowableValues("ST1", "ST2", "ST3", "ST7", "SP1")
.endParam()
.endRest();
{code}
Is only outputting a parameter object like this:
{code}
{
"name": "siteKey",
"in": "path",
"description": "Which site to use for the login.",
"required": true,
"type": "string"
}
{code}
[There's an enum key|http://swagger.io/specification/#parameterObject].
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)