First off, awesome library! Can we add support for System.ComponentModel.DisplayNameAttribute that JSON.NET has? This enables the title on the object to be named differently like what System.ComponentModel.DataAnnotations.DisplayAttribute does for properties.
If you follow the PR, he talked about this having a conflict with a DTO. He also suggested creating your own DefaultSchemaNameGenerator via settings. This is what we ended up doing.
First off, awesome library! Can we add support for
System.ComponentModel.DisplayNameAttribute
that JSON.NET has? This enables thetitle
on the object to be named differently like whatSystem.ComponentModel.DataAnnotations.DisplayAttribute
does for properties.