I'm upgrading to swagger 2.0 and in the UI of my models I want strings to appear as "".
Right now the model schema looks like
{
"Name": "string",
"Id": "string",
"Year": 0
}
and I want it to look like
{
"Name": "",
"Id": "",
"Year": 0
}
Is there a way to set this in swagger 2.0?