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
Not sure the history behind why exportfiles may return a boolean instead of an array of objects. This isn't valid in OAS 3.0. I'm guessing the boolean result is returned with some set of parameters meant to return a slimmed down, faster response.
Options include:
always returning the exportfiles information (no boolean), perhaps with performance enhancement to speed up the response
returning the boolean separately, e.g., has_exportfiles or number_of_exportfiles (# > 0 indicates true)
always return array of exportfile pks which can be queried separately through a new endpoint (this is big shift back towards the original API design in which we made many RESTful requests)
The text was updated successfully, but these errors were encountered:
Not sure the history behind why exportfiles may return a boolean instead of an array of objects. This isn't valid in OAS 3.0. I'm guessing the boolean result is returned with some set of parameters meant to return a slimmed down, faster response.
Options include:
has_exportfiles
ornumber_of_exportfiles
(# > 0 indicatestrue
)The text was updated successfully, but these errors were encountered: