Results 5 issues of zaakn

Is there a special consideration for the absence of the `GetID()` function? https://datatracker.ietf.org/doc/html/rfc7519#section-4.1.7 https://github.com/golang-jwt/jwt/blob/8aa5d6cef84fa859f10fed5db50bee48efc5f160/claims.go#L9-L16

next

fixes #392 Before fixing this issue, if `fq_schema_naming = false` and there were duplicates of schema names traversed and formatted from all imported proto files, the wrong message could be...

use yaml type tag `!!str` to represent boolean-like and `NULL` enum values. fixes: #407

## env - protoc-gen-openapi: v0.6.8 - protoc flags: `--openapi_opt naming=proto,enum_type=string` ## proto file ```protobuf enum Trinary { NULL = 0; TRUE = 1; FALSE = 2; } message Condition {...

Related to https://github.com/google/gnostic/issues/83, https://github.com/google/gnostic/pull/84 After the PR was merged, it was rolled back in this commit: https://github.com/google/gnostic/commit/540b24903cf26557fb13493cb9a43804da98461a#diff-38bb6d02d3442ac95d8613ef4fed0b1cb70f7bc2001d1abe71bafbede04a0dd1 ```diff - SchemaOrReference items = 30; + ItemsItem items = 30; ``` As...