{
    "swagger": "2.0",
    "info": {
        "version": "0.0.0",
        "title": "api",
        "x-aws-apigateway": {
            "default-role": "APIGatewayLambdaExecRole"
        }
    },
    "paths": {
        "/hello": {
            "get": {
                "description": "Prints \"Hello, world\"\n",
                "responses": {
                    "200": {
                        "description": "Successful response",
                        "schema": {
                            "title": "Response",
                            "type": "object",
                            "properties": {
                                "hello": {
                                    "type": "string"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/goodbye": {
            "get": {
                "description": "Prints \"Goodbye, cruel world!\"\n",
                "responses": {
                    "200": {
                        "description": "Successful response",
                        "schema": {
                            "title": "Response",
                            "type": "object",
                            "properties": {
                                "hello": {
                                    "type": "string"
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
