Swagger中的词典列表

时间:2019-04-25 06:42:45

标签: python swagger swagger-ui

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

1 个答案:

答案 0 :(得分:1)

这是一个名为test的属性的示例,该属性包含一个字符串字符串字典:

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

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