You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If additionalProperties exists in the fruit model, then final Schema schema = openAPI.getComponents().getSchemas().get("fruit");
returns an instance of MapSchema.
Without additionalProperties, it returns the correct type of ComposedSchema.
incorrectly returns MapSchema as the type of the above schema instance for fruit.
Requested change:
When additionalProperties is included in a composed schema, please return an instance of ComposedSchema which includes additionalProperties info.
The text was updated successfully, but these errors were encountered:
If additionalProperties exists in the fruit model, then
final Schema schema = openAPI.getComponents().getSchemas().get("fruit");
returns an instance of MapSchema.
Without additionalProperties, it returns the correct type of ComposedSchema.
incorrectly returns MapSchema as the type of the above schema instance for fruit.
correctly returns ComposedSchema as the type of the above schema instance for fruit
Requested change:
When additionalProperties is included in a composed schema, please return an instance of ComposedSchema which includes additionalProperties info.
The text was updated successfully, but these errors were encountered: