{
    "swagger": "2.0",
    "info": {
        "description": "This is a sample server Petstore server.",
        "title": "Swagger Example API",
        "termsOfService": "http://swagger.io/terms/",
        "contact": {
            "name": "API Support",
            "url": "http://www.swagger.io/support",
            "email": "support@swagger.io"
        },
        "license": {
            "name": "Apache 2.0",
            "url": "http://www.apache.org/licenses/LICENSE-2.0.html"
        },
        "version": "1.0"
    },
    "host": "petstore.swagger.io",
    "basePath": "/v2",
    "paths": {
        "/testapi/application": {
            "get": {
                "description": "test get application",
                "consumes": [
                    "application/json"
                ],
                "produces": [
                    "application/json"
                ],
                "summary": "Get application",
                "operationId": "get-application",
                "responses": {
                    "200": {
                        "description": "ok",
                        "schema": {
                            "$ref": "#/definitions/data.ApplicationResponse"
                        }
                    }
                }
            }
        }
    },
    "definitions": {
        "data.ApplicationResponse": {
            "type": "object",
            "properties": {
                "application": {
                    "$ref": "#/definitions/types.Application"
                },
                "application_array": {
                    "type": "array",
                    "items": {
                        "$ref": "#/definitions/types.Application"
                    }
                },
                "application_time": {
                    "type": "string"
                },
                "embedded": {
                    "type": "string"
                }
            }
        },
        "types.Application": {
            "type": "object",
            "properties": {
                "name": {
                    "type": "string"
                }
            }
        }
    }
}