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
Defining an array parameter as Integer within Apipie validates correctly in the HTML documentation but generates the Swagger file with an array of string type.
Parameter defined within Apipie
param :folder_ids, Array, of: Integer, desc: "Array of folder IDs"
Expected Behavior:
The Swagger file should reflect the parameter folder_ids as an array of Integer type, consistent with the definition in Apipie's DSL.
Actual Behavior:
The Swagger file represents folder_ids as an array of string type, contrary to the defined type in Apipie.
Defining an array parameter as
Integer
within Apipie validates correctly in the HTML documentation but generates the Swagger file with an array ofstring
type.Parameter defined within Apipie
Expected Behavior:
The Swagger file should reflect the parameter folder_ids as an array of
Integer
type, consistent with the definition in Apipie's DSL.Actual Behavior:
The Swagger file represents folder_ids as an array of
string
type, contrary to the defined type in Apipie.Screenshots:
1. HTML Documentation (Apipie):
2. Swagger File Output:
The text was updated successfully, but these errors were encountered: