Swagger中的字典列表[复制]

问题描述 投票:0回答:1

我在我的python-flask应用程序中使用https://github.com/rochacbruno/flasgger进行招摇。我需要在参数值中发送一个字典数组(或json)。但我在swagger(https://swagger.io/docs/specification/2-0/describing-parameters/)的文档中找不到任何这样的类型。关于用户如何实现这一目标的任何建议?

python swagger swagger-ui
1个回答
1
投票

下面是一个名为test的属性示例,它包含一个String-String字典数组:

      test:
        type: array
        items:
          type: object
          additionalProperties:
            type: string

希望我能帮助你。这里给出了一个类似的答案,描述了additionalProperties字段:https://stackoverflow.com/a/41242185/8745384

© www.soinside.com 2019 - 2024. All rights reserved.