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
For these, date, and to a lesser extent, datetime parameters are very common.
It would be very useful to be able to supply date hints in the api definitions - e.g.
#* Get the stock prices
#* @param ticker:string The ticker
#* @param from:date The first date to include (inclusive)
#* @param to:date The last date to include (inclusive)
#* @get /prices
function(ticker, from, to) {
# code here...
}
Much of the work I do involves time series
For these, date, and to a lesser extent, datetime parameters are very common.
It would be very useful to be able to supply
date
hints in the api definitions - e.g.From https://swagger.io/docs/specification/data-models/data-types/#string this can be done using:
The text was updated successfully, but these errors were encountered: