sammy-da

Results 4 issues of sammy-da

Hello! Thanks for this library. I wanted to have a server endpoint return different response schemas depending on the media type, like so: ```json "/login": { "post": { "description": "Mint...

This works: ```json { "paths": { "/api/v1/oauth/token/introspect": { "post": { "deprecated": false, "description": "Token introspection for Daml Hub access tokens, as per [rfc7662#section-2](https://datatracker.ietf.org/doc/html/rfc7662#section-2)\n", "operationId": "introspectAccessToken", "requestBody": { "required": true, "content":...

```json { "components": { "schemas": { "TokenExpirationSeconds": { "type": "integer", "description": "The number of seconds until the generated token expires.", "format": "int32", "default": 3600, "example": 3600, "minimum": 15, "maximum": 86400...

I can't find the openapi version guardrail is targeting in the docs. (I suggest displaying this info on the docs front page, or similar) is version `3.1.0` supported?