github.com/rzurga/go-swagger@v0.28.1-0.20211109195225-5d1f453ffa3a/fixtures/bugs/931/fixture-931.yaml (about) 1 swagger: '2.0' 2 info: 3 title: Multi tag API 4 description: multi tag api 5 version: '0.0.1' 6 7 # the domain of the service 8 host: api.multi.tags 9 schemes: [ https ] 10 produces: [ application/json ] 11 consumes: [ application/json ] 12 13 basePath: /v1 # Prefixed to all paths 14 paths: 15 /multi: 16 get: 17 summary: A multitag route 18 tags: 19 - onetag 20 - twotag 21 responses: 22 default: 23 description: Unexpected error 24 schema: 25 type: object 26 properties: 27 type: 28 type: string 29 description: The error type 30 message: 31 type: array 32 description: Explanation of the errors 33 items: { type: string }