Alex

Results 41 issues of Alex

In Stripe APIs the filtering can be done by sending parameters with "-G" curl option, as example https://stripe.com/docs/api/accounts/list#list_accounts-created ``` curl https://api.stripe.com/v1/accounts?limit=3 \ -u sk_test_BQokikJOvBiI2HlWgH4olfQ2: \ -d created[lte]=1517443200 \ -G ```...

Needs Info

When I start this application https://github.com/swagger-api/swagger-samples/tree/master/java/java-jersey-jaxrs And open http://localhost:8002 all css/js files respond with 404 not found

Where I can find an example with sub types? https://github.com/swagger-api/swagger-core/wiki/annotations#apimodel ``` @ApiModel(value="SuperModel", discriminator = "foo", subTypes = {SubModel.class}) public class SuperModel {...} @ApiModel(value="SubModel") public class SubModel {...} ```

Why just not register them manually? Client team can make a request to backend team to register a new query, in this case backend team will be able to improve...

> It then assigns these queries ID values/hashes and produces a JSON file which maps from queries to hashes/IDs. This map can then be used by the client and server...

For example I want to validate an email field, I want to validate it against a regexp pattern, and only it is a valid email I want to check if...

enhancement
help wanted

For example a login field can be a phone or and email.

enhancement
help wanted

https://swagger.io/specification/#schema-object Swagger/OpenAPI schema contains class/object definition and validation rules. It will be great if this library will provide this information in order to be able to integrate it for full...

enhancement

How to do API versioning? Is there a documentation about this?

We usually use cursor pagination https://dev.to/jackmarchant/offset-and-cursor-pagination-explained-b89

type: enhancement
status: under consideration