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
Exegesis has support for x-www-form-urlencoded bodies, but if you give it a complicated schema, it will probably have a hard time finding your properties, or may get the types wrong.
You can avoid this by using a schema where all the properties are at the top level. But what really needs to happen here is, we need to replace this with something which recursively traverses all the allOf, oneOf, and anyOf keys to extract a schema for each property.
The text was updated successfully, but these errors were encountered:
Exegesis has support for x-www-form-urlencoded bodies, but if you give it a complicated schema, it will probably have a hard time finding your properties, or may get the types wrong.
You can avoid this by using a schema where all the properties are at the top level. But what really needs to happen here is, we need to replace this with something which recursively traverses all the
allOf
,oneOf
, andanyOf
keys to extract a schema for each property.The text was updated successfully, but these errors were encountered: