...

Text file src/github.com/go-openapi/validate/fixtures/go-swagger/bugs/195/swagger.json

Documentation: github.com/go-openapi/validate/fixtures/go-swagger/bugs/195

     1{
     2    "consumes": [
     3        "application/json",
     4        "application/x-www-form-urlencoded"
     5    ],
     6    "paths": {
     7        "/testing": {
     8            "get": {
     9                "operationId": "getTesting",
    10                "parameters": [
    11                    {
    12                        "allowEmptyValue": false,
    13                        "in": "query",
    14                        "name": "testingThis",
    15                        "required": false,
    16                        "type": "integer"
    17                    }
    18                ],
    19                "responses": {
    20                    "200": {
    21                        "description": "Success message"
    22                    }
    23                }
    24            }
    25        }
    26    },
    27    "produces": [
    28        "application/json",
    29        "application/json; charset=utf-8"
    30    ],
    31    "swagger": "2.0"
    32}

View as plain text