juzhiyuan opened a new issue #2083: URL: https://github.com/apache/apisix/issues/2083
refer to https://github.com/apache/apisix/issues/2082#issue-681772868 ## Currently ```json { "oneOf":[ { "required":[ "username", "password" ] }, { "required":{ } } ], "properties":{ "password":{ "type":"string" }, "username":{ "type":"string" } }, "type":"object" } ``` ## Expected ```json { "oneOf":[ { "title": "Here is Title for current option1", "properties":{ "password":{ "type":"string" }, "username":{ "type":"string" } }, "required":[ "username", "password" ] }, { "title": "Here is Title for current option2", "properties":{} } ], "type":"object" } ``` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
