Hi, I have problems formatting attribute names in .NET Core 2.2 using Hypermedia. Below is an example of the result of a formatted object:
{ "data":{ "type":"products", "id":"1", "attributes":{ "Name":"ProductA", "Price":10, "Description":"descripcion 1", "OwnerName": "OwnerA" } } }
As you see we have the attribute names with Capital letter ("Name" instead of "name").
Composite words are not dashed and also start with Capital letter ("OwnerName" instead of "owner-name").
I'm missing something?
Thanks in advance.
Versions:
.NET Core 2.2
Hypermedia 1.1.0
Hypermedia.JsonApi.AspNetCore 1.3.6