这个问题在这里已有答案:
我在我的python-flask应用程序中使用https://github.com/rochacbruno/flasgger进行招摇。我需要在参数值中发送一个字典数组(或json)。但我在swagger(https://swagger.io/docs/specification/2-0/describing-parameters/)的文档中找不到任何这样的类型。关于用户如何实现这一目标的任何建议?
下面是一个名为test
的属性示例,它包含一个String-String字典数组:
test:
type: array
items:
type: object
additionalProperties:
type: string
希望我能帮助你。这里给出了一个类似的答案,描述了additionalProperties
字段:https://stackoverflow.com/a/41242185/8745384