You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use additionalProperties to define a dictionary as suggested here.
When the dictionary value is object, the resulting markdown will have rows for summaryAsHTML , descriptionAsHTML, generatedExample with empty cells in Type and Description columns. This somehow breaks the HTML parsing of the table.
openapi: 3.0.0info:
description: Test specsversion: "0.0.0"title: Test specspaths:
/test:
get:
summary: retrieves a dictionaryresponses:
'200':
description: success responsecontent:
application/json:
schema:
type: objectadditionalProperties:
type: objectproperties:
x:
type: stringy:
type: string
The reason is that the template doesn't iterate over additionalProperties and thus you don't get them. It would be just a matter of fixing the Markdown template.
I use
additionalProperties
to define a dictionary as suggested here.When the dictionary value is object, the resulting markdown will have rows for
summaryAsHTML
,descriptionAsHTML
,generatedExample
with empty cells in Type and Description columns. This somehow breaks the HTML parsing of the table.Any suggestions?
The text was updated successfully, but these errors were encountered: