Gildas Lebel

Results 5 issues of Gildas Lebel

Adding support for basic json-schema validations. Related to #131 A few notes: - The list of validations supported by asyncapi can be found [here](https://www.asyncapi.com/docs/reference/specification/v3.0.0#a-nameschemaobjectaschema-object) - All validations that were straightforward...

Related to #220 Please let me know if this make sense. Hopefully, there won't be a linting issue this time ;)

Hello, I am working to implement a new tag `--convert-naming` `-C` (not sure about that option name, open to suggestions) that would override the name from the contract in the...

Allo ! Currently, when a field has "date-time" as its format, it is parsed using time.RFC3339 (it is used in multiple places): https://github.com/lerenn/asyncapi-codegen/blob/931df74017a3269ffb2d9ca0f9537314a2fa9d11/pkg/codegen/generators/v2/templates/message.tmpl#L58 That constant is defined here: https://pkg.go.dev/time#pkg-constants as...

Allo ! I noticed a generation issue affecting OneOf fields: When generating this: ```yaml components: messages: Test: description: test message payload: oneOf: - $ref: '#/components/schemas/Something' - $ref: '#/components/schemas/SomethingElse' schemas: Something:...