{
    "swagger": "2.0",
    "info": {
        "description": "Parse external models.",
        "title": "Swagger Example API",
        "contact": {},
        "version": "1.0"
    },
    "basePath": "/v1",
    "paths": {
        "/testapi/external_models": {
            "get": {
                "description": "get string by ID",
                "consumes": [
                    "application/json"
                ],
                "produces": [
                    "application/json"
                ],
                "summary": "parse external models",
                "operationId": "get_external_models",
                "responses": {
                    "200": {
                        "description": "ok",
                        "schema": {
                            "type": "string"
                        }
                    },
                    "400": {
                        "description": "from internal pkg",
                        "schema": {
                            "$ref": "#/definitions/http.Header"
                        }
                    }
                }
            }
        }
    },
    "definitions": {
        "http.Header": {
            "type": "object",
            "additionalProperties": {
                "type": "array",
                "items": {
                    "type": "string"
                }
            }
        }
    }
}