github.com/thetreep/go-swagger@v0.0.0-20240223100711-35af64f14f01/fixtures/bugs/2278/fixture-2278.yaml (about)

     1  ---
     2  swagger: "2.0"
     3  info:
     4    title: foo api
     5    version: "1.0.0"
     6  paths:
     7    /version:
     8      get:
     9        responses:
    10          "200":
    11            description: foo version
    12            schema:
    13              type: string
    14        summary: foo version
    15        operationId: showVersion
    16    /withtags:
    17      get:
    18        tags: [ "sometag" ]
    19        responses:
    20          "200":
    21            description: foo tagged version
    22            schema:
    23              type: string
    24        summary: foo tagged version
    25        operationId: showTaggedVersion