Swagger:重复的映射键定义

时间:2016-10-21 17:42:17

标签: swagger

你好,我很骄傲,对于我的生活,我无法找到如何修复此错误的代码。我不断得到一个重复的映射密钥,它位于下面链接的代码的底部。

/channels/{country_code}/{category_slug}:
get:
  tags:
  - "Channels"
  summary: Get a list of all channels that a company has added to spotlight for a given category
  description: "This GET will return a list of all channels which are aviable to your API key and Category"
  operationID: "channels_slug_GET"
  parameters:
  - name: "country_code"
    in: "path"
    description: "The country the user is located in (retrievable via Geolocation service call)"
    required: true
    type: "string"
  - name: "category_slug"
    in: "path"
    description: "the category the channel(s) belong to"
    required: true
    type: "string"
  - name: "detail"
    in: "query"
    description: "As channel objects are fairly large, an optional parameter detail is introduced to most Spotlight API calls. It has two possible values - lean and partial.\n lean - specifying lean will return just the _id,title,slug, description, company, company_logo,poster, spotlight_poster,videos_thumb properties for a channel.\npartial - specifying partial will return the lean data for the channel plus limited data for the channel's video, playlist, and child channels"
    required: false
    type: "string"
  - name: "token"
    in: "query"
    description: "Your API access token (see /token route)"
    required: true
    type: "string"
  responses:
    200:
      description: "List of all available channels"
      schema:
        type: "array"
        items:
          $ref: "#/definitions/Channel"
    default:
      description: "Unexpected error"
      schema:
        $ref: "#/definitions/Error"

1 个答案:

答案 0 :(得分:0)

您可能已经在YAML中多次声明了以下网址。

"/channels/{country_code}/{category_slug}:"