mrin9 / RapiPdf

PDF generation from OpenAPI / Swagger Spec
https://mrin9.github.io/RapiPdf
MIT License
282 stars 102 forks source link

Support Dictionary<string, string> #81

Closed Yavari closed 1 year ago

Yavari commented 3 years ago

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?