RapiPdf icon indicating copy to clipboard operation
RapiPdf copied to clipboard

Support Dictionary<string, string>

Open Yavari opened this issue 4 years ago • 0 comments

Dictionary<string, string> generates following schema in .net core:

"schema": {
  "type": "object",
  "additionalProperties": {
    "type": "string"
  }
}

And Swagger shows Example Value as

{
  "additionalProp1": "string",
  "additionalProp2": "string",
  "additionalProp3": "string"
}

Can the pdf report show the same example instead of an empty response?

Yavari avatar Feb 11 '21 16:02 Yavari