Lavender Shannon

Results 41 comments of Lavender Shannon

I disagree with this. Depending on what the the `JsonProperty` annotation is for, whoever uses this library may want to make sure that the JSON to deserialize contains that property,...

@dave-at-season your KotlinNullableTypeMapper seems to only work partially on schemas. I noticed it does not apply nullability directly to the result of the schema, but to the properties of data...

It looks live you've figured out all the NonNull validation stuff happens in the `NonNullMapper` class. This is included by default as a type mapper. To remove it, you can...

I'm glad you got it working. I didn't realize you also had to change the schema transformers. I only pasted in my solution and noticed most of the "not null"s...

I think the main problem is the implementation of `PublicResolverBuilder` and that it doesn't really allow for much customization. I made a Jackson specific `ResolverBuilder` that fixes this problem, which...

@HelLViS69 Here's my current implementation. I don't know if I'll get around to making a pull request because I have a few custom bits thrown into my own implementation, so...

I think that this issue is mostly fixed, however when using `indent_style = tab`, there is no way to set `continuation_indent_size` without defining how wide a tab character is. One...

I think there's an endless number of annotations that should be allow a method to be except from `UnusedMethod`, so I think the better solution would be to allow the...

I'm currently making a skill where it makes sense to use an exact date, and sometimes a time range. It would be nice to have something like `extract_datetime_range` which would...

Yeah I imagine a tuple is most intuitive. I'm going to be passing the output to a function that takes a start date (from date) and an end date (to...