如何使用swagger重新发送重复的名称错误

时间:2017-03-10 03:32:50

标签: editor swagger

我需要在swagger 2.0的对象中定义两个名为“description”和“type”的字段,下面是示例,

  description:
   type: string
   description: ''
  type:
   type: string
   description: ''

然而,错误的“..Duplicated mapping key ...”被抛出。是否有任何解决方案来解决此错误,因为指定了字段名称?

1 个答案:

答案 0 :(得分:1)

选中此editor并且此对象定义正常工作(基于某些示例yamls):

newPet:
  type: object
  properties:
    id:
      type: integer
      format: int64
    description:
      type: string
      description: ''
    type:
      type: string
      description: ''