如何在swagger 3中实现map [string] interface {}?我在golang中有一个名为meta [map] string {}的名为元数据的struct字段,因为我希望它是自由格式的,没有特定的键。我已经在swagger 3中实现了它,如下所示:
metadata:
type: 'object'
description: 'Extra data of a collection'
additionalProperties: true
example:
layout: 'grid-3'
max-feed-item: '20'
但是我得到这个结果:
该示例未显示。为什么?