-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
consolidate API help on ocelot gateway doesn't show help for nested model #12
Comments
Hi, thanks for your report. Can you please provide downstream service |
downstreamswagger.txt I have attached downstream microservice and ocelot response of swagger json. In individual service you will see SavingActuals model is present but not present in ocelot |
Thanks, but can you attached ocelot reroutes configuration? I want investigate where is a problem. |
configuration.Development.txt |
look for financial api swagger |
This bug was fixed in PR #15 and will by published as new version of package Thanks for collaboration. |
Individual API is showing swagger help for nested model, however nested model is not shown in ocelot API gateway swagger help. our model definitions is like below
public class SavingActuals
{
public double Comfort { get; set; }
public double Energy { get; set; }
public double RealEstate { get; set; }
}
SavingActuals is not rendered on swagger page present on ocelot gateway. however it is shown when I am looking individual service swagger.
The text was updated successfully, but these errors were encountered: